light-grey.scss 36 KB

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