light-grey.scss 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521
  1. @import 'css-variables.scss';
  2. $hilight-color = $highlight-color;
  3. $summary-details-background = $grey-color;
  4. $main-header-background = $frame-background-color;
  5. $table-even-background = $frame-background-color;
  6. $popup-menu-highlight-color = $highlight-color;
  7. $popup-menu-text-color: #000;
  8. $popup-menu-background-color: #fff;
  9. $popup-menu-text-higlight-color: #fff;
  10. /* CSS Document */
  11. body {
  12. font-family: Tahoma, Verdana, Arial, Helvetica;
  13. font-size: 10pt;
  14. color: $text-color;
  15. margin: 0; /* Remove body margin/padding */
  16. padding: 0;
  17. overflow: hidden; /* Remove scroll bars on browser window */
  18. }
  19. body.printable-version {
  20. margin:1.5em;
  21. overflow:auto;
  22. }
  23. /* to prevent flicker, hide the pane's content until it's ready */
  24. .ui-layout-center, .ui-layout-north, .ui-layout-south {
  25. display: none;
  26. }
  27. .ui-layout-content {
  28. padding-left: 10px;
  29. }
  30. .raw_output {
  31. font-family: Courier-New, Courier, Arial, Helvetica;
  32. font-size: 8pt;
  33. background-color: #eeeeee;
  34. color: $text-color;
  35. border: 1px dashed $text-color;
  36. padding: 0.25em;
  37. margin-top: 1em;
  38. }
  39. h1 {
  40. font-family: Tahoma, Verdana, Arial, Helvetica;
  41. color: $text-color;
  42. font-weight: bold;
  43. font-size: 12pt;
  44. }
  45. h2 {
  46. font-family: Tahoma, Verdana, Arial, Helvetica;
  47. color: $text-color;
  48. font-weight: normal;
  49. font-size: 12pt;
  50. }
  51. h3 {
  52. font-family: Tahoma, Verdana, Arial, Helvetica;
  53. color: $text-color;
  54. font-weight: normal;
  55. font-size: 10pt;
  56. }
  57. .hilite, .hilite a, .hilite a:visited {
  58. color: $hilight-color;
  59. text-decoration: none;
  60. }
  61. table.datatable {
  62. width: 100%;
  63. border: 0;
  64. padding: 0;
  65. }
  66. td.menucontainer {
  67. text-align: right;
  68. }
  69. table.listResults {
  70. padding: 0px;
  71. border-top: 3px solid $frame-background-color;
  72. border-left: 3px solid $frame-background-color;
  73. border-bottom: 3px solid #e6e6e1;
  74. border-right: 3px solid #e6e6e1;
  75. width: 100%;
  76. background-color: #fff;
  77. }
  78. table.listResults td {
  79. padding: 2px;
  80. }
  81. table.listContainer {
  82. border: 0;
  83. padding: 0;
  84. margin:0;
  85. width: 100%;
  86. clear: both;
  87. }
  88. tr.containerHeader, tr.containerHeader td {
  89. background: transparent;
  90. }
  91. tr.even td, .wizContainer tr.even td {
  92. background-color: $table-even-background;
  93. }
  94. tr.red_even td, .wizContainer tr.red_even td {
  95. background-color: #f97e75;
  96. color: #fff;
  97. }
  98. tr.red td, .wizContainer tr.red td {
  99. background-color: #f9a397;
  100. color: #fff;
  101. }
  102. tr.orange_even td, .wizContainer tr.orange_even td {
  103. background-color: #f4d07a;
  104. }
  105. tr.orange td, .wizContainer tr.orange td {
  106. background-color: #f4e96c;
  107. }
  108. tr.green_even td, .wizContainer tr.green_even td {
  109. background-color: #bee5a3;
  110. }
  111. tr.green td, .wizContainer tr.green td {
  112. background-color: #b3e5b4;
  113. }
  114. tr td.hover, tr.even td.hover, .hover a, .hover a:visited, .hover a:hover, .wizContainer tr.even td.hover, .wizContainer tr td.hover {
  115. background-color: #fdf5d0;
  116. color: $text-color;
  117. }
  118. th {
  119. font-family: Tahoma, Verdana, Arial, Helvetica;
  120. font-size: 8pt;
  121. color: $complement-color;
  122. height:20px;
  123. background: $frame-background-color bottom repeat-x;
  124. }
  125. th.header {
  126. cursor: pointer;
  127. background-repeat: no-repeat;
  128. background-position: center right;
  129. background-repeat: no-repeat;
  130. padding-right: 16px; // some space for the asc/desc icons
  131. }
  132. th.headerSortUp {
  133. background-image: url(../images/asc.gif);
  134. text-decoration: underline;
  135. cursor: pointer;
  136. }
  137. th.headerSortDown {
  138. background-image: url(../images/desc.gif);
  139. text-decoration: underline;
  140. cursor: pointer;
  141. }
  142. td {
  143. font-family: Tahoma, Verdana, Arial, Helvetica;
  144. font-size: 12px;
  145. color:#696969;
  146. nobackground-color: #ffffff;
  147. padding: 0px;
  148. }
  149. tr.clicked td {
  150. font-family: Tahoma, Verdana, Arial, Helvetica;
  151. font-size: smaller;
  152. background-color: #ffcfe8;
  153. }
  154. td.label {
  155. vertical-align: top;
  156. }
  157. td.label span {
  158. font-family: Tahoma, Verdana, Arial, Helvetica;
  159. font-size: 12px;
  160. color: #000000;
  161. padding: 5px;
  162. padding-right: 10px;
  163. font-weight:bold;
  164. vertical-align: top;
  165. text-align: right;
  166. display: block;
  167. }
  168. fieldset td.label span {
  169. padding: 3px;
  170. padding-right: 10px;
  171. }
  172. fieldset {
  173. margin-top: 3px;
  174. -moz-border-radius: 6px;
  175. -webkit-border-radius: 6px;
  176. border-radius: 6px;
  177. border-style: solid;
  178. border-color: #ddd;
  179. }
  180. legend {
  181. font-family: Tahoma, Verdana, Arial, Helvetica;
  182. font-size: 12px;
  183. padding:8px;
  184. color: #fff;
  185. background-color: $complement-color;
  186. font-weight: bold;
  187. -moz-border-radius: 6px;
  188. -webkit-border-radius: 6px;
  189. border-radius: 6px;
  190. }
  191. legend.transparent {
  192. background: transparent;
  193. color: #333333;
  194. font-size: 1em;
  195. font-weight: normal;
  196. padding: 0;
  197. }
  198. .ui-widget-content td legend a, .ui-widget-content td legend a:hover, .ui-widget-content td legend a:visited {
  199. color: #fff;
  200. }
  201. .ui-widget-content td a, p a, p a:visited, td a, td a:visited {
  202. text-decoration:none;
  203. color: $complement-color;
  204. padding-left:14px;
  205. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  206. }
  207. p a:hover, td a:hover {
  208. text-decoration:underline;
  209. color:$highlight-color;
  210. padding-left:14px;
  211. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  212. }
  213. td a.no-arrow, td a.no-arrow:visited, .SearchDrawer a.no-arrow, .SearchDrawer a.no-arrow:visited {
  214. text-decoration:none;
  215. color:#000000;
  216. padding-left:0px;
  217. background: inherit;
  218. }
  219. td a.no-arrow:hover {
  220. text-decoration:underline;
  221. color:#d81515;
  222. padding-left:0px;
  223. background: inherit;
  224. }
  225. td a.mailto, td a.mailto:visited {
  226. text-decoration:none;
  227. color:#000000;
  228. padding-left:20px;
  229. background: url(../images/mail.png) no-repeat left;
  230. }
  231. td a.mailto:hover {
  232. text-decoration:underline;
  233. color:$highlight-color;
  234. padding-left:20px;
  235. background: url(../images/mail.png) no-repeat left;
  236. }
  237. a.small_action {
  238. font-family: Tahoma, Verdana, Arial, Helvetica;
  239. font-size: 8pt;
  240. color: #000000;
  241. text-decoration:none;
  242. }
  243. .display_block {
  244. padding:0.25em;
  245. }
  246. .actions_details {
  247. float:right;
  248. margin-top:10px;
  249. margin-right:10px;
  250. padding-left: 5px;
  251. padding-top: 2px;
  252. padding-bottom: 2px;
  253. background: url(../images/actions_left.png) no-repeat left;
  254. }
  255. .actions_details span{
  256. background: url(../images/actions_right.png) no-repeat right;
  257. color: #fff;
  258. font-weight: bold;
  259. padding-top: 2px;
  260. padding-bottom: 2px;
  261. padding-right: 12px;
  262. }
  263. .actions_details a {
  264. text-decoration:none;
  265. }
  266. .loading {
  267. noborder: 1px dashed #CCC;
  268. background: #b9c1c8;
  269. padding:0.25em;
  270. }
  271. input.textSearch {
  272. border:1px solid #000;
  273. font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
  274. font-size: 12px;
  275. color:#000000;
  276. }
  277. .ac_input {
  278. border: 1px solid #7f9db9;
  279. background: #fff url(../images/ac-background.gif) no-repeat right;
  280. }
  281. /* By Rom */
  282. .csvimport_createobj {
  283. color: #AA0000;
  284. background-color:#EEEEEE;
  285. }
  286. .csvimport_error {
  287. font-weight: bold;
  288. color: #FF0000;
  289. background-color:#EEEEEE;
  290. }
  291. .csvimport_warning {
  292. color: #CC8888;
  293. background-color:#EEEEEE;
  294. }
  295. .csvimport_ok {
  296. color: #00000;
  297. background-color:#BBFFBB;
  298. }
  299. .csvimport_reconkey {
  300. font-style: italic;
  301. color: #888888;
  302. background-color:#FFFFF;
  303. }
  304. .csvimport_extreconkey {
  305. color: #888888;
  306. background-color:#FFFFFF;
  307. }
  308. #accordion h3 {
  309. padding: 10px;
  310. }
  311. .ui-accordion-content ul {
  312. list-style:none;
  313. list-style-image: url(data:0);
  314. padding-left:16px;
  315. margin-top: 8px;
  316. }
  317. .ui-accordion-content li.submenu {
  318. margin-top: 8px;
  319. }
  320. .ui-accordion-content ul ul {
  321. padding: 8px 0px 8px 8px;
  322. margin:0;
  323. list-style:none;
  324. list-style-image: url(data:0);
  325. border: 0;
  326. }
  327. .nothing {
  328. noborder-top: 1px solid #8b8b8b;
  329. padding: 4px 0px 0px 16px;
  330. font-size:8pt;
  331. background: url(../images/green-square.gif) no-repeat bottom left;
  332. color:#83b217;
  333. font-weight:bold;
  334. text-decoration:none;
  335. }
  336. div.ui-accordion-content {
  337. padding-top: 10px;
  338. padding-left: 10px;
  339. }
  340. .ui-accordion-content a, ui-accordion-content a:visited {
  341. color: $complement-color;
  342. text-decoration:none;
  343. }
  344. .ui-accordion-content a:hover {
  345. color: $highlight-color;
  346. text-decoration: none;
  347. }
  348. .ui-accordion-content ul {
  349. padding-left: 0;
  350. margin-top: 0;
  351. }
  352. .ui-accordion-content li {
  353. color:$grey-color;
  354. text-decoration:none;
  355. margin: 0;
  356. padding: 0px 0pt 0px 16px;
  357. font-size: 9pt;
  358. background: url(../images/mini-arrow-orange.gif) no-repeat top left;
  359. font-weight:normal;
  360. border: 0;
  361. }
  362. a.CollapsibleLabel, td a.CollapsibleLabel {
  363. margin: 0;
  364. padding: 0px 0pt 0px 16px;
  365. font-size:8pt;
  366. text-decoration:none;
  367. color:$grey-color;
  368. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  369. }
  370. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  371. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  372. margin: 0;
  373. padding: 0px 0pt 0px 16px;
  374. font-size:8pt;
  375. text-decoration:none;
  376. color: $highlight-color;
  377. background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
  378. }
  379. .page_header {
  380. background-color:$frame-background-color;
  381. padding:5px;
  382. }
  383. /* move up a header immediately following a display block (i.e. "actions" menu) */
  384. .display_block + .page_header {
  385. margin-top: -8px;
  386. }
  387. .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  388. .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  389. .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
  390. .notreeview .last { background-image: url(../images/tv-item-last.gif); }
  391. .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  392. .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  393. #OrganizationSelection {
  394. padding:5px 0px 16px 20px;
  395. }
  396. /* popup menus */
  397. div.itop_popup {
  398. margin: 0;
  399. padding: 0;
  400. float:right;
  401. }
  402. div.itop_popup > ul > li {
  403. list-style: none;
  404. cursor: pointer;
  405. }
  406. div.actions_menu > ul {
  407. height:19px;
  408. line-height: 17px;
  409. vertical-align: middle;
  410. display:block;
  411. nowidth:70px; /* Nasty work-around for IE... en attendant mieux */
  412. padding-left: 5px;
  413. background: url(../images/actions_left.png) no-repeat top left;
  414. cursor: pointer;
  415. margin: 0;
  416. }
  417. div.actions_menu > ul > li {
  418. float: left;
  419. list-style: none;
  420. font-size: 11px;
  421. font-family: Tahoma,sans-serif;
  422. height: 17px;
  423. padding-right: 16px;
  424. padding-left: 4px;
  425. background: url(../images/actions_right.png) no-repeat top right transparent;
  426. font-weight: bold;
  427. color: $popup-menu-text-higlight-color;
  428. vertical-align: middle;
  429. margin: 0;
  430. }
  431. #logOffBtn > ul > li {
  432. list-style: none;
  433. vertical-align: middle;
  434. margin: 0;
  435. padding: 0;
  436. cursor: pointer;
  437. }
  438. #logOffBtn > ul {
  439. list-style: none;
  440. vertical-align: middle;
  441. margin: 0;
  442. padding: 0;
  443. height: 25px;
  444. noline-height: 25px;
  445. }
  446. .itop_popup li a, #logOffBtn li a {
  447. display: block;
  448. padding: 5px 12px;
  449. text-decoration: none;
  450. nowidth: 70px;
  451. color: $popup-menu-text-color;
  452. font-weight: bold;
  453. white-space: nowrap;
  454. background: $popup-menu-background-color;
  455. }
  456. #logOffBtn li span {
  457. display: block;
  458. padding: 5px 12px;
  459. text-decoration: none;
  460. nowidth: 70px;
  461. color: $popup-menu-text-color;
  462. white-space: nowrap;
  463. background: $popup-menu-background-color;
  464. }
  465. .itop_popup ul {
  466. padding-left: 0;
  467. }
  468. .menucontainer div.toolkit_menu {
  469. margin-left: 10px;
  470. }
  471. .itop_popup li a:hover, #logOffBtn li a:hover {
  472. background: #1A4473;
  473. }
  474. .itop_popup ul > li > ul, #logOffBtn ul > li > ul
  475. {
  476. border: 1px solid black;
  477. background: #fff;
  478. }
  479. .itop_popup li > ul, #logOffBtn li > ul
  480. { margin: 0;
  481. padding: 0;
  482. position: absolute;
  483. display: none;
  484. border-top: 1px solid white;
  485. z-index: 999;
  486. }
  487. .itop_popup li ul li, #logOffBtn li ul li {
  488. float: none;
  489. display: inline;
  490. }
  491. .itop_popup li ul li a, #logOffBtn li ul li a {
  492. width: auto;
  493. text-align: left;
  494. }
  495. .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
  496. background: $popup-menu-highlight-color;
  497. color: $popup-menu-text-higlight-color;
  498. font-weight: bold;
  499. }
  500. .itop_popup > ul {
  501. margin: 0;
  502. }
  503. hr.menu-separator {
  504. border: none 0;
  505. border-top: 1px solid #ccc;
  506. color: #ccc;
  507. background-color: transparent;
  508. height: 1px;
  509. margin: 3px;
  510. cursor: default;
  511. }
  512. /************************************/
  513. .wizHeader {
  514. background: $complement-color;
  515. padding: 15px;
  516. }
  517. .wizContainer {
  518. border: 5px solid $complement-color;
  519. background: $complement-light;
  520. padding: 5px;
  521. }
  522. .wizContainer table tr td {
  523. background: transparent;
  524. }
  525. .alignRight {
  526. text-align: right;
  527. padding: 3px;
  528. }
  529. .alignLeft {
  530. text-align: left;
  531. padding: 3px;
  532. }
  533. .red {
  534. background-color: #ff6000;
  535. color: #000;
  536. }
  537. th.red {
  538. background: url(../images/red-header.gif) bottom left repeat-x;
  539. color: #000;
  540. }
  541. .green {
  542. background-color: #00cc00;
  543. color: #000;
  544. }
  545. th.green {
  546. background: url(../images/green-header.gif) bottom left repeat-x;
  547. color: #000;
  548. }
  549. .orange {
  550. background-color: #ffde00;
  551. color: #000;
  552. }
  553. th.orange {
  554. background: url(../images/orange-header.gif) bottom left repeat-x;
  555. color: #000;
  556. }
  557. /* For Date Picker: Creates a little calendar icon
  558. * instead of a text link for "Choose date"
  559. */
  560. td a.dp-choose-date, a.dp-choose-date, td a.dp-choose-date:hover, a.dp-choose-date:hover, td a.dp-choose-date:visited, a.dp-choose-date:visited {
  561. float: left;
  562. width: 16px;
  563. height: 16px;
  564. padding: 0;
  565. margin: 5px 3px 0;
  566. display: block;
  567. text-indent: -2000px;
  568. overflow: hidden;
  569. background: url(../images/calendar.png) no-repeat;
  570. }
  571. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  572. background-position: 0 -20px;
  573. cursor: default;
  574. }
  575. /* For Date Picker: makes the input field shorter once the date picker code
  576. * has run (to allow space for the calendar icon)
  577. */
  578. input.dp-applied {
  579. width: 140px;
  580. float: left;
  581. }
  582. /* For search forms */
  583. .SearchDrawer {
  584. //background: $complement-color url(../images/search-top-left-corner.png) top left no-repeat;
  585. border-top: 5px solid $complement-color;
  586. border-left: 5px solid $complement-color;
  587. border-right: 5px solid $complement-color;
  588. border-bottom: 0;
  589. background: $complement-light;
  590. color: #000;
  591. padding: 10px;
  592. margin: 0;
  593. font-size: 12px;
  594. }
  595. .SearchDrawer label {
  596. background: $complement-light;
  597. color: #000;
  598. }
  599. .SearchDrawer h1 {
  600. color: #000;
  601. }
  602. .DrawerClosed {
  603. display: none;
  604. }
  605. .DrawerHandle {
  606. margin: 0;
  607. padding: 5px;
  608. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  609. color: #fff;
  610. cursor: pointer;
  611. text-align: center;
  612. /* center the block */
  613. width: 100px;
  614. margin-left: auto;
  615. margin-right: auto;
  616. margin-top: 0;
  617. margin-bottom: 0;
  618. display: block;
  619. font-size: 12px;
  620. }
  621. div.HRDrawer {
  622. height: 5px;
  623. width: 100%;
  624. margin: 0;
  625. background-color: $complement-color;
  626. margin: 0;
  627. padding: 0;
  628. border: 0;
  629. display: block;
  630. }
  631. .mini_tabs a {
  632. text-decoration: none;
  633. font-weight:bold;
  634. color: #ccc;
  635. background-color:#333;
  636. padding-left: 1em;
  637. padding-right: 1em;
  638. padding-bottom: 0.25em;
  639. }
  640. .mini_tabs a.selected {
  641. color: #fff;
  642. background-color: $complement-color;
  643. padding-top: 0.25em;
  644. }
  645. .mini_tabs ul {
  646. margin: -10px;
  647. }
  648. .mini_tabs ul li {
  649. float: right;
  650. list-style: none;
  651. nopadding-left: 1em;
  652. nopadding-right: 1em;
  653. margin-top: 0;
  654. }
  655. .mandatory {
  656. border: 1px solid #f00;
  657. }
  658. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  659. table.listResults tr.odd td.truncated, table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, .wizContainer table.listResults tr td.truncated {
  660. background: url(../images/truncated.png) bottom repeat-x;
  661. }
  662. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  663. table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even td.truncated {
  664. background: #f9f9f1 url(../images/truncated.png) bottom repeat-x;
  665. }
  666. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  667. table.listResults tr.even td.hover.truncated, , .wizContainer table.listResults tr.even td.hover.truncated {
  668. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  669. }
  670. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  671. table.listResults tr.odd td.hover.truncated, table.listResults tr td.hover.truncated, .wizContainer table.listResults tr.odd td.hover.truncated, .wizContainer table.listResults tr td.hover.truncated {
  672. background: #fdf5d0 url(../images/truncated.png) bottom repeat-x;
  673. }
  674. table.listResults.truncated {
  675. border-bottom: 0;
  676. padding-bottom: 0;
  677. }
  678. tr.csv_row0 td {
  679. padding-top:5px;
  680. padding-bottom:5px;
  681. padding-left:10px;
  682. padding-right:10px;
  683. background: #fff;
  684. border-left: #000 1px solid;
  685. }
  686. tr.csv_row1 td {
  687. padding-top:5px;
  688. padding-bottom:5px;
  689. padding-left:10px;
  690. padding-right:10px;
  691. background: #f9f9f1;
  692. border-left: #000 1px solid;
  693. }
  694. tr.csv_row1 th, tr.csv_row0 th {
  695. padding-top:5px;
  696. padding-bottom:5px;
  697. padding-left:10px;
  698. padding-right:10px;
  699. border-left: #000 1px solid;
  700. }
  701. td.cell_modified {
  702. font-weight: bold;
  703. color: #000;
  704. }
  705. td.cell_error {
  706. font-weight: bold;
  707. color: #D81515;
  708. }
  709. table.transparent, table.transparent td {
  710. background: transparent;
  711. }
  712. p.page-header {
  713. color:$complement-color;
  714. font-weight: bold;
  715. font-size: 12pt;
  716. font-family: Verdana, Arial, Helvetica, Sans-Serif
  717. }
  718. td.dashboard {
  719. vertical-align:top;
  720. border: 1px solid #ccc;
  721. padding: 0.5em;
  722. width: 50%;
  723. }
  724. .white {
  725. background-color: #fff;
  726. }
  727. /*** New Lacanau layout ***/
  728. .ui-layout-pane { /* all 'panes' */
  729. overflow: auto;
  730. }
  731. .ui-layout-resizer { /* all 'resizer-bars' */
  732. background: #f1f1f1;
  733. }
  734. .ui-layout-toggler { /* all 'toggler-buttons' */
  735. background: #AAA;
  736. }
  737. div#top-left {
  738. width: 28px;
  739. height: 70px;
  740. background: $frame-background-color;
  741. float:left;
  742. }
  743. div#header-logo {
  744. width: 100%;
  745. height: 70px;
  746. background: $frame-background-color;
  747. }
  748. .ui-layout-pane-west {
  749. background: $frame-background-color;
  750. }
  751. div#right {
  752. min-width: 260px;
  753. }
  754. div#menu {
  755. width: 100%;
  756. overflow: auto;
  757. }
  758. .header-menu {
  759. padding-left: 24px;
  760. padding-right: 8px;
  761. padding-bottom: 24px;
  762. background: transparent;
  763. }
  764. div#inner_menu {
  765. padding-left: 24px;
  766. padding-right: 8px;
  767. background: transparent;
  768. }
  769. div#logo {
  770. height: 70px;
  771. nowidth: 100%;
  772. text-align: center;
  773. }
  774. div#logo div {
  775. height: 88px;
  776. width: 244px;
  777. background: url(../images/itop-logo-2.png) left no-repeat;
  778. }
  779. #left-pane .ui-layout-north {
  780. overflow: hidden;
  781. }
  782. #top-bar {
  783. height: 55px;
  784. background: $frame-background-color;
  785. text-align: right;
  786. }
  787. #admin-banner {
  788. float: left;
  789. margin-top: 2px;
  790. padding: 8px;
  791. border: 1px solid #c33;
  792. background-color: #fee;
  793. -moz-border-radius: 0.5em;
  794. }
  795. #global-search {
  796. height: 55px;
  797. float: right;
  798. background: url(../images/banner-search.png) no-repeat;
  799. nopadding-top: 15px;
  800. text-align: right;
  801. overflow-y: hidden;
  802. }
  803. #global-search > form div {
  804. padding-left: 4px;
  805. }
  806. #global-search table, #global-search tr td, #global-search tr {
  807. padding: 0;
  808. border: 0;
  809. height: 55px;
  810. margin: 0;
  811. background: transparent;
  812. overflow-y: hidden;
  813. vertical-align: middle;
  814. }
  815. #global-search > form input[type="text"] {
  816. border: 0;
  817. height: 18px;
  818. width: 180px;
  819. padding-top: 4;
  820. background: transparent;
  821. }
  822. #global-search > form tr td#g-search-input {
  823. padding-top: 3px;
  824. padding-left: 3px;
  825. background: transparent;
  826. }
  827. div.icon {
  828. width: 20px;
  829. height: 20px;
  830. margin: 2px;
  831. float: right;
  832. }
  833. span.ui-icon {
  834. float:left;
  835. margin:0 2px;
  836. }
  837. .ui-layout-button-pin-down {
  838. background: url(../images/splitter-bkg.png) transparent;
  839. width: 16px;
  840. background-position: -144px -144px;
  841. }
  842. .ui-layout-resizer-west-open {
  843. background-color: $frame-background-color;
  844. width: 8px;
  845. }
  846. div.footer img {
  847. border: 0;
  848. margin-bottom: 5px;
  849. margin-top: 5px;
  850. }
  851. div.footer{
  852. text-align:center;
  853. }
  854. #SearchResultsToAdd table.listResults tbody {
  855. height: 300px;
  856. overflow-y: auto;
  857. }
  858. tr.row_unchanged td {
  859. border-bottom: 1px #ccc solid;
  860. padding: 2px;
  861. }
  862. .wizContainer table tr.row_error td {
  863. border-bottom: 1px #ccc solid;
  864. background-color: #fdd;
  865. padding: 2px;
  866. }
  867. tr.row_modified td {
  868. border-bottom: 1px #ccc solid;
  869. padding: 2px;
  870. }
  871. tr.row_added td {
  872. border-bottom: 1px #ccc solid;
  873. padding: 2px;
  874. }
  875. a.truncated {
  876. cursor: pointer;
  877. }
  878. .org_combo
  879. {
  880. font-size:x-small;
  881. width: auto;
  882. max-width: 200px;
  883. }
  884. span.form_validation {
  885. width:24px;
  886. text-align:center;
  887. }
  888. .notification {
  889. border: 1px solid #c33;
  890. background-color: #fee;
  891. padding: 0.5em;
  892. margin: 0.5em;
  893. text-align:center;
  894. width: 95%;
  895. -moz-border-radius: 0.5em;
  896. }
  897. .wiki_broken_link {
  898. text-decoration: line-through;
  899. }
  900. .synoptics, .synoptics tr td {
  901. background: transparent;
  902. padding:10px;
  903. font-size:1em;
  904. vertical-align:middle;
  905. color:#fff;
  906. text-align:center;
  907. }
  908. .synoptics tr td.arrow {
  909. color:#333;
  910. border-top: 1px dashed #333;
  911. width:100px;
  912. }
  913. .synoptics tr.synoptics_header td {
  914. color:#000; font-size:1em;
  915. vertical-align:middle;
  916. text-align:center;
  917. }
  918. .mono_value {
  919. display: inline-block;
  920. background-color: #3c3;
  921. color: #fff;
  922. font-weight:bold;
  923. padding: 3px;
  924. padding-left: 5px;
  925. padding-right: 5px;
  926. margin-left:3px;
  927. -moz-border-radius: 10px;
  928. -webkit-border-radius: 10px;
  929. border-radius: 10px;
  930. }
  931. .multi_values {
  932. display: inline-block;
  933. background-color: #c33;
  934. color: #fff;
  935. font-weight:bold;
  936. padding: 3px;
  937. padding-left: 5px;
  938. padding-right: 5px;
  939. margin-left:3px;
  940. -moz-border-radius: 10px;
  941. -webkit-border-radius: 10px;
  942. border-radius: 10px;
  943. }
  944. .caselog {
  945. overflow-x: hidden;
  946. display: block;
  947. overflow-y: auto;
  948. border: 1px #ddd solid;
  949. font-family: Tahoma, Verdana, Arial, Helvetica;
  950. font-size: 12px;
  951. }
  952. .caselog_input_header {
  953. padding-top:3px;
  954. padding-bottom:3px;
  955. border-top:1px solid #fff;
  956. background: #ddd;
  957. width:100%;
  958. }
  959. .caselog_header {
  960. padding:3px;
  961. border-top:1px solid #fff;
  962. background: #ddd url(../images/plus.gif) left no-repeat;
  963. padding-left: 16px;
  964. cursor: pointer;
  965. width:100%;
  966. }
  967. .caselog_header.open {
  968. background: #ddd url(../images/minus.gif) left no-repeat;
  969. }
  970. .caselog_entry {
  971. padding:3px;
  972. padding-left: 16px;
  973. border-bottom:1px #999 solid;
  974. margin-left:0;
  975. margin-right:0;
  976. white-space: pre-wrap; /* css-3 */
  977. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  978. white-space: -pre-wrap; /* Opera 4-6 */
  979. white-space: -o-pre-wrap; /* Opera 7 */
  980. word-wrap: break-word; /* Internet Explorer 5.5+, CSS3 */
  981. }
  982. table.details {
  983. border-collapse: collapse;
  984. noborder-bottom: 2px #fff solid;
  985. width:100%;
  986. }
  987. table.details>tbody>tr>td {
  988. border-bottom: 2px #ddd solid;
  989. padding-bottom: 5px;
  990. padding-top: 3px;
  991. }
  992. fieldset table.details>tbody>tr>td {
  993. padding-top: 3px;
  994. background: transparent;
  995. border: 0;
  996. }
  997. .ac_dlg_loading {
  998. background: white url('../images/indicator.gif') right center no-repeat;
  999. }
  1000. table.pagination {
  1001. display:inline-block;
  1002. }
  1003. table.pagination tr td {
  1004. padding: 3px;
  1005. }
  1006. .pagination_container {
  1007. padding-left: 3px;
  1008. }
  1009. .pager p {
  1010. margin-top: 0;
  1011. margin-bottom: 0;
  1012. }
  1013. .pager td span {
  1014. min-width: 20px;
  1015. padding-left: 2px;
  1016. padding-right: 2px;
  1017. display:inline-block;
  1018. text-align: center;
  1019. cursor: pointer;
  1020. }
  1021. .pager td span.curr_page {
  1022. color: #fff;
  1023. background: #999;
  1024. -moz-border-radius: 4px;
  1025. -webkit-border-radius: 4px;
  1026. border-radius: 4px;
  1027. }
  1028. img.prev, img.first, img.next, img.last {
  1029. cursor: pointer;
  1030. }
  1031. div.actions_button {
  1032. float:right;
  1033. background: url("../images/actions_left.png") no-repeat scroll left top transparent;
  1034. padding-left: 5px;
  1035. margin-top: 0;
  1036. margin-right: 10px;
  1037. height:17px;
  1038. vertical-align: middle;
  1039. }
  1040. div.actions_button a, .actions_button a:hover, .actions_button a:visited {
  1041. background:url(../images/actions_bkg.png) no-repeat scroll right top transparent;
  1042. color:#fff;
  1043. padding-right: 8px;
  1044. cursor:pointer;
  1045. font-family: Tahoma,sans-serif;
  1046. font-size: 11px;
  1047. font-weight: bold;
  1048. padding-left: 4px;
  1049. text-decoration: none;
  1050. height:17px;
  1051. line-height: 17px;
  1052. display: block;
  1053. }
  1054. select#org_id {
  1055. max-width: 90%;
  1056. }
  1057. /*********** Dashboards ***********/
  1058. .itop-dashboard {
  1059. background-color: #fff;
  1060. }
  1061. .dragHover {
  1062. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1063. }
  1064. .edit_mode .dashlet {
  1065. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png);
  1066. padding: 5px;
  1067. margin:0;
  1068. position:relative;
  1069. }
  1070. .edit_mode .dashlet-selected {
  1071. background: $highlight-color !important;
  1072. padding: 5px;
  1073. margin:0;
  1074. }
  1075. td.layout_cell {
  1076. height: 50px; /* min-height does not work */
  1077. vertical-align: top;
  1078. }
  1079. .dashlet-content {
  1080. background: #fff;
  1081. margin:0;
  1082. }
  1083. table.prop_table {
  1084. border-bottom: 2px solid #F9F9F1;
  1085. padding: 1px;
  1086. width: 100%;
  1087. }
  1088. .close-box {
  1089. margin: 5px;
  1090. width: 20px;
  1091. height: 20px;
  1092. position: absolute;
  1093. top: 0;
  1094. right: 0;
  1095. z-index: 10;
  1096. background: transparent url(../images/delete.png) no-repeat center;
  1097. }
  1098. td.prop_value {
  1099. text-align: left;
  1100. }
  1101. tr.itop-property-field-modified td {
  1102. background: #fbb;
  1103. }
  1104. tr.itop-property-field-modified td.hover {
  1105. background: #f99;
  1106. }
  1107. td.prop_value textarea, td.prop_value input[type=text]{
  1108. width: 98%;
  1109. }
  1110. td.prop_icon {
  1111. width: 20px;
  1112. }
  1113. .dashlet {
  1114. text-align:left;
  1115. }
  1116. .dashlet-inline {
  1117. display: inline-block;
  1118. }
  1119. .dashlet-badge a.actions {
  1120. background: none repeat scroll 0 0 transparent;
  1121. color: #666666;
  1122. font-size: 16px;
  1123. text-decoration: none;
  1124. }
  1125. .dashlet-content .display_block {
  1126. text-align:left;
  1127. }
  1128. .prop_apply .ui-icon-alert {
  1129. display: none;
  1130. }
  1131. .prop_apply .ui-state-error .ui-icon-alert {
  1132. display: block;
  1133. }
  1134. .ui-state-error .ui-icon-circle-check {
  1135. display: none;
  1136. }
  1137. .summary-details {
  1138. float: right;
  1139. margin-top: 5px;
  1140. }
  1141. .summary-details th {
  1142. background: none repeat scroll 0 0 $summary-details-background;
  1143. color: #EEEEEE;
  1144. padding: 5px;
  1145. text-align: center;
  1146. }
  1147. .main_header {
  1148. background-color: $main-header-background;
  1149. min-height: 60px;
  1150. width: 100%;
  1151. }
  1152. .main_header h1 {
  1153. color: $complement-color;
  1154. line-height: 16px;
  1155. margin-bottom: 0;
  1156. margin-top: 0;
  1157. padding-bottom: 10px;
  1158. padding-top: 10px;
  1159. }
  1160. .main_header img {
  1161. margin-top: 10px;
  1162. margin-right: 10px;
  1163. float:left;
  1164. }
  1165. a.summary, a.summary:hover {
  1166. background: none repeat scroll 0 0 transparent;
  1167. color: #666666;
  1168. text-decoration: none;
  1169. padding-left: 0;
  1170. }
  1171. .summary-details td {
  1172. background: none repeat scroll 0 0 transparent;
  1173. padding: 5px;
  1174. text-align: center;
  1175. }
  1176. #DashboardMenu > ul > li {
  1177. list-style: none;
  1178. vertical-align: middle;
  1179. margin: 0;
  1180. padding: 0;
  1181. cursor: pointer;
  1182. }
  1183. #DashboardMenu > ul {
  1184. list-style: none;
  1185. vertical-align: middle;
  1186. margin: 0;
  1187. padding: 0;
  1188. height: 25px;
  1189. }
  1190. #DashboardMenu li a {
  1191. display: block;
  1192. padding: 5px 12px;
  1193. text-decoration: none;
  1194. color: #000;
  1195. font-weight: bold;
  1196. text-align: left;
  1197. white-space: nowrap;
  1198. background: #fff;
  1199. }
  1200. #DashboardMenu li span {
  1201. display: block;
  1202. padding: 5px 12px;
  1203. text-decoration: none;
  1204. color: #000;
  1205. white-space: nowrap;
  1206. background: #fff;
  1207. }
  1208. #DashboardMenu li {
  1209. list-style: none;
  1210. }
  1211. #DashboardMenu li a:hover {
  1212. background: #1A4473;
  1213. }
  1214. #DashboardMenu ul > li > ul
  1215. {
  1216. border: 1px solid black;
  1217. background: #fff;
  1218. }
  1219. #DashboardMenu li > ul
  1220. { margin: 0;
  1221. padding: 0;
  1222. position: absolute;
  1223. display: none;
  1224. border-top: 1px solid white;
  1225. z-index: 999;
  1226. }
  1227. #DashboardMenu li ul li a:hover{
  1228. background: #D81515;
  1229. color: #fff;
  1230. font-weight: bold;
  1231. list-style: none;
  1232. }
  1233. .sortable_field_list {
  1234. display: inline-block;
  1235. width: 250px;
  1236. height: 150px;
  1237. border: 1px #333 solid;
  1238. overflow: auto;
  1239. padding-left: 0;
  1240. margin: 0;
  1241. }
  1242. .sortable_field_list li {
  1243. list-style: none;
  1244. font-size: 11px;
  1245. }
  1246. .sort_order {
  1247. display: inline-block;
  1248. width: 16px;
  1249. height: 12px;
  1250. }
  1251. .sort_none {
  1252. background: url(../images/bg.gif) no-repeat center;
  1253. }
  1254. .sort_asc {
  1255. background: url(../images/desc.gif) no-repeat center;
  1256. }
  1257. .sort_desc {
  1258. background: url(../images/asc.gif) no-repeat center;
  1259. }
  1260. .sort_hidden {
  1261. display: none;
  1262. }
  1263. .sortable_field_list > li.selected {
  1264. background: #F6A828;
  1265. }
  1266. .itop-deleted-object {
  1267. text-decoration: line-through;
  1268. }
  1269. .header_message {
  1270. padding: 1em;
  1271. font-size: 10pt;
  1272. background: #fff;
  1273. border: 1px solid #999;
  1274. -moz-border-radius: 4px;
  1275. -webkit-border-radius: 4px;
  1276. border-radius: 4px;
  1277. margin-bottom: 10px;
  1278. }
  1279. .header_message {
  1280. padding: 1em;
  1281. font-size: 10pt;
  1282. background: #fff;
  1283. border: 1px solid #999;
  1284. -moz-border-radius: 4px;
  1285. -webkit-border-radius: 4px;
  1286. border-radius: 4px;
  1287. margin-bottom: 10px;
  1288. }
  1289. .message_info {
  1290. border: 1px solid #993;
  1291. background: url(../images/info-mini.png) 1em 1em no-repeat #ffc;
  1292. padding-left: 3em;
  1293. }
  1294. .message_ok {
  1295. border: 1px solid #393;
  1296. background: url(../images/ok.png) 1em 1em no-repeat #cfc;
  1297. padding-left: 3em;
  1298. }
  1299. .message_error {
  1300. border: 1px solid #933;
  1301. background: url(../images/error.png) 1em 1em no-repeat #fcc;
  1302. padding-left: 3em;
  1303. }
  1304. .fg-menu a img {
  1305. border: 0;
  1306. }
  1307. div.ui-dialog-header {
  1308. padding-bottom: 10px;
  1309. padding-top: 7px;
  1310. }
  1311. .form_field_error {
  1312. border: 1px solid #933;
  1313. background: #fcc;
  1314. }
  1315. .simple-graph, .graph_config {
  1316. background: #fff;
  1317. }
  1318. .graph_config {
  1319. padding: 0.25em;
  1320. }
  1321. .graph_config button.ui-widget {
  1322. font-size: 12px;
  1323. }
  1324. .ui-tooltip, .arrow:after {
  1325. background: $frame-background-color;
  1326. border: 1px solid $grey-color;
  1327. }
  1328. .ui-tooltip {
  1329. padding: 10px 10px;
  1330. box-shadow: 0 0 7px black;
  1331. }
  1332. .ui-tooltip .arrow {
  1333. width: 70px;
  1334. height: 16px;
  1335. overflow: hidden;
  1336. position: absolute;
  1337. left: 50%;
  1338. margin-left: -35px;
  1339. bottom: -16px;
  1340. }
  1341. .ui-tooltip .arrow.top {
  1342. top: -16px;
  1343. bottom: auto;
  1344. }
  1345. .ui-tooltip .arrow.left {
  1346. left: 20%;
  1347. }
  1348. .ui-tooltip .arrow:after {
  1349. content: "";
  1350. position: absolute;
  1351. left: 20px;
  1352. top: -20px;
  1353. width: 25px;
  1354. height: 25px;
  1355. box-shadow: 6px 5px 9px -9px black;
  1356. -webkit-transform: rotate(45deg);
  1357. -ms-transform: rotate(45deg);
  1358. transform: rotate(45deg);
  1359. }
  1360. .ui-tooltip .arrow.top:after {
  1361. bottom: -20px;
  1362. top: auto;
  1363. }
  1364. table.export_parameters td {
  1365. padding-right: 2em;
  1366. }
  1367. .table_preview > table {
  1368. border-collapse: collapse;
  1369. max-height: 150px;
  1370. overflow: auto;
  1371. display: block;
  1372. }
  1373. .table_preview > table > thead > tr > th, .table_preview > table > tbody > tr > td {
  1374. border: 1px $grey-color solid;
  1375. min-height: 1em;
  1376. padding-left: 0.25em;
  1377. padding-right: 0.25em;
  1378. font-size: 10pt;
  1379. }
  1380. .table_preview > table > tbody > tr > td {
  1381. vertical-align: top;
  1382. }
  1383. .table_preview .drag-handle {
  1384. cursor: move;
  1385. }
  1386. .table_preview div.text-preview {
  1387. white-space: pre-wrap;
  1388. }
  1389. .graph_zoom {
  1390. display: inline-block;
  1391. float: right;
  1392. margin-right: 2em;
  1393. }
  1394. .graph_zoom_slider {
  1395. display: inline-block;
  1396. width: 10em;
  1397. }
  1398. .graph_zoom_plus, .graph_zoom_minus {
  1399. display: inline-block;
  1400. margin-left: 1em;
  1401. margin-right: 1em;
  1402. }
  1403. div.explain-printable {
  1404. border: 5px solid $complement-color;
  1405. background: $complement-light;
  1406. color: #000;
  1407. padding: 10px;
  1408. margin: 0;
  1409. font-size: 12px;
  1410. }
  1411. .hideable-chapter {
  1412. cursor: pointer;
  1413. }
  1414. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span {
  1415. padding-left: 20px;
  1416. background: url(../images/eye-open-555.png) 2px center no-repeat;
  1417. }
  1418. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span {
  1419. text-decoration: line-through;
  1420. background: url(../images/eye-closed-555.png) 2px center no-repeat;
  1421. }
  1422. .printable-version legend {
  1423. padding-left: 26px;
  1424. background: $complement-color url(../images/eye-open-fff.png) 8px center no-repeat;
  1425. }
  1426. .printable-version .strikethrough legend {
  1427. background: $complement-color url(../images/eye-closed-fff.png) 8px center no-repeat;
  1428. }
  1429. .printable-version fieldset.strikethrough span {
  1430. display: none;
  1431. }
  1432. .strikethrough {
  1433. text-decoration: line-through;
  1434. }
  1435. select.multiselect {
  1436. max-width: 150px;
  1437. }