light-grey.scss 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  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 {
  327. display:none;
  328. }
  329. #accordion h3 {
  330. padding: 10px;
  331. }
  332. .ui-accordion-content ul {
  333. list-style:none;
  334. list-style-image: url(data:0);
  335. padding-left:16px;
  336. margin-top: 8px;
  337. }
  338. .ui-accordion-content li.submenu {
  339. margin-top: 8px;
  340. }
  341. .ui-accordion-content ul ul {
  342. padding: 8px 0px 8px 8px;
  343. margin:0;
  344. list-style:none;
  345. list-style-image: url(data:0);
  346. border: 0;
  347. }
  348. .nothing {
  349. noborder-top: 1px solid #8b8b8b;
  350. padding: 4px 0px 0px 16px;
  351. font-size:8pt;
  352. background: url(../images/green-square.gif) no-repeat bottom left;
  353. color:#83b217;
  354. font-weight:bold;
  355. text-decoration:none;
  356. }
  357. div.ui-accordion-content {
  358. padding-top: 10px;
  359. padding-left: 10px;
  360. }
  361. .ui-accordion-content a, ui-accordion-content a:visited {
  362. color: $complement-color;
  363. text-decoration:none;
  364. }
  365. .ui-accordion-content a:hover {
  366. color: $highlight-color;
  367. text-decoration: none;
  368. }
  369. .ui-accordion-content ul {
  370. padding-left: 0;
  371. margin-top: 0;
  372. }
  373. .ui-accordion-content li {
  374. color:$grey-color;
  375. text-decoration:none;
  376. margin: 0;
  377. padding: 0px 0pt 0px 16px;
  378. font-size: 9pt;
  379. background: url(../images/mini-arrow-orange.gif) no-repeat top left;
  380. font-weight:normal;
  381. border: 0;
  382. }
  383. a.CollapsibleLabel, td a.CollapsibleLabel {
  384. margin: 0;
  385. padding: 0px 0pt 0px 16px;
  386. font-size:8pt;
  387. text-decoration:none;
  388. color:$grey-color;
  389. background: url(../images/mini-arrow-orange.gif) no-repeat left;
  390. }
  391. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  392. a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
  393. margin: 0;
  394. padding: 0px 0pt 0px 16px;
  395. font-size:8pt;
  396. text-decoration:none;
  397. color: $highlight-color;
  398. background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
  399. }
  400. .page_header {
  401. background-color:$frame-background-color;
  402. padding:5px;
  403. }
  404. /* move up a header immediately following a display block (i.e. "actions" menu) */
  405. .display_block + .page_header {
  406. margin-top: -8px;
  407. }
  408. .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  409. .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  410. .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
  411. .notreeview .last { background-image: url(../images/tv-item-last.gif); }
  412. .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  413. .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  414. #OrganizationSelection {
  415. padding:5px 0px 16px 20px;
  416. }
  417. /* popup menus */
  418. div.itop_popup {
  419. margin: 0;
  420. padding: 0;
  421. float:right;
  422. }
  423. div.itop_popup > ul > li {
  424. list-style: none;
  425. cursor: pointer;
  426. }
  427. div.actions_menu > ul {
  428. height:19px;
  429. line-height: 17px;
  430. vertical-align: middle;
  431. display:block;
  432. nowidth:70px; /* Nasty work-around for IE... en attendant mieux */
  433. padding-left: 5px;
  434. background: $highlight-color url(../images/actions_left.png?v=#{$version}) no-repeat top left;
  435. cursor: pointer;
  436. margin: 0;
  437. }
  438. div.actions_menu > ul > li {
  439. float: left;
  440. list-style: none;
  441. font-size: 11px;
  442. font-family: Tahoma,sans-serif;
  443. height: 17px;
  444. padding-right: 16px;
  445. padding-left: 4px;
  446. background: url(../images/actions_right.png?v=#{$version}) no-repeat top right transparent;
  447. font-weight: bold;
  448. color: $popup-menu-text-higlight-color;
  449. vertical-align: middle;
  450. margin: 0;
  451. }
  452. #logOffBtn > ul > li {
  453. list-style: none;
  454. vertical-align: middle;
  455. margin: 0;
  456. padding-left: 10px;
  457. padding-right: 10px;
  458. cursor: pointer;
  459. }
  460. #logOffBtn > ul {
  461. list-style: none;
  462. vertical-align: middle;
  463. margin: 0;
  464. padding: 0;
  465. height: 25px;
  466. }
  467. .itop_popup li a, #logOffBtn li a {
  468. display: block;
  469. padding: 5px 12px;
  470. text-decoration: none;
  471. nowidth: 70px;
  472. color: $popup-menu-text-color;
  473. font-weight: bold;
  474. white-space: nowrap;
  475. background: $popup-menu-background-color;
  476. }
  477. #logOffBtn li span {
  478. display: block;
  479. padding: 5px 12px;
  480. text-decoration: none;
  481. nowidth: 70px;
  482. color: $popup-menu-text-color;
  483. white-space: nowrap;
  484. background: $popup-menu-background-color;
  485. }
  486. .itop_popup ul {
  487. padding-left: 0;
  488. }
  489. .menucontainer div.toolkit_menu {
  490. margin-left: 10px;
  491. }
  492. .itop_popup li a:hover, #logOffBtn li a:hover {
  493. background: #1A4473;
  494. }
  495. .itop_popup ul > li > ul, #logOffBtn ul > li > ul
  496. {
  497. border: 1px solid black;
  498. background: #fff;
  499. }
  500. .itop_popup li > ul, #logOffBtn li > ul
  501. { margin: 0;
  502. padding: 0;
  503. position: absolute;
  504. display: none;
  505. border-top: 1px solid white;
  506. z-index: 999;
  507. }
  508. .itop_popup li ul li, #logOffBtn li ul li {
  509. float: none;
  510. display: inline;
  511. }
  512. .itop_popup li ul li a, #logOffBtn li ul li a {
  513. width: auto;
  514. text-align: left;
  515. }
  516. .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
  517. background: $popup-menu-highlight-color;
  518. color: $popup-menu-text-higlight-color;
  519. font-weight: bold;
  520. }
  521. .itop_popup > ul {
  522. margin: 0;
  523. }
  524. hr.menu-separator {
  525. border: none 0;
  526. border-top: 1px solid #ccc;
  527. color: #ccc;
  528. background-color: transparent;
  529. height: 1px;
  530. margin: 3px;
  531. cursor: default;
  532. }
  533. /************************************/
  534. .wizHeader {
  535. background: $complement-color;
  536. padding: 15px;
  537. }
  538. .wizContainer {
  539. border: 5px solid $complement-color;
  540. background: $complement-light;
  541. padding: 5px;
  542. }
  543. .wizContainer table tr td {
  544. background: transparent;
  545. }
  546. .alignRight {
  547. text-align: right;
  548. padding: 3px;
  549. }
  550. .alignLeft {
  551. text-align: left;
  552. padding: 3px;
  553. }
  554. .red {
  555. background-color: #ff6000;
  556. color: #000;
  557. }
  558. th.red {
  559. background: url(../images/red-header.gif) bottom left repeat-x;
  560. color: #000;
  561. }
  562. .green {
  563. background-color: #00cc00;
  564. color: #000;
  565. }
  566. th.green {
  567. background: url(../images/green-header.gif) bottom left repeat-x;
  568. color: #000;
  569. }
  570. .orange {
  571. background-color: #ffde00;
  572. color: #000;
  573. }
  574. th.orange {
  575. background: url(../images/orange-header.gif) bottom left repeat-x;
  576. color: #000;
  577. }
  578. /* For Date Picker: Creates a little calendar icon
  579. * instead of a text link for "Choose date"
  580. */
  581. 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 {
  582. float: left;
  583. width: 16px;
  584. height: 16px;
  585. padding: 0;
  586. margin: 5px 3px 0;
  587. display: block;
  588. text-indent: -2000px;
  589. overflow: hidden;
  590. background: url(../images/calendar.png?v=#{$version}) no-repeat;
  591. }
  592. td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
  593. background-position: 0 -20px;
  594. cursor: default;
  595. }
  596. /* For Date Picker: makes the input field shorter once the date picker code
  597. * has run (to allow space for the calendar icon)
  598. */
  599. input.dp-applied {
  600. width: 140px;
  601. float: left;
  602. }
  603. /* For search forms */
  604. .SearchDrawer {
  605. //background: $complement-color url(../images/search-top-left-corner.png?v=#{$version}) top left no-repeat;
  606. border-top: 5px solid $complement-color;
  607. border-left: 5px solid $complement-color;
  608. border-right: 5px solid $complement-color;
  609. border-bottom: 0;
  610. background: $complement-light;
  611. color: #000;
  612. padding: 10px;
  613. margin: 0;
  614. font-size: 12px;
  615. }
  616. .SearchDrawer label {
  617. background: $complement-light;
  618. color: #000;
  619. text-align: right;
  620. }
  621. .SearchDrawer h1 {
  622. color: #000;
  623. }
  624. .DrawerClosed {
  625. display: none;
  626. }
  627. .DrawerHandle {
  628. margin: 0;
  629. padding: 5px;
  630. background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
  631. color: #fff;
  632. cursor: pointer;
  633. text-align: center;
  634. /* center the block */
  635. width: 100px;
  636. margin-left: auto;
  637. margin-right: auto;
  638. margin-top: 0;
  639. margin-bottom: 0;
  640. display: block;
  641. font-size: 12px;
  642. }
  643. div.HRDrawer {
  644. height: 5px;
  645. width: 100%;
  646. margin: 0;
  647. background-color: $complement-color;
  648. margin: 0;
  649. padding: 0;
  650. border: 0;
  651. display: block;
  652. }
  653. .mini_tabs a {
  654. text-decoration: none;
  655. font-weight:bold;
  656. color: #ccc;
  657. background-color:#333;
  658. padding-left: 1em;
  659. padding-right: 1em;
  660. padding-bottom: 0.25em;
  661. }
  662. .mini_tabs a.selected {
  663. color: #fff;
  664. background-color: $complement-color;
  665. padding-top: 0.25em;
  666. }
  667. .mini_tabs ul {
  668. margin: -10px;
  669. }
  670. .mini_tabs ul li {
  671. float: right;
  672. list-style: none;
  673. nopadding-left: 1em;
  674. nopadding-right: 1em;
  675. margin-top: 0;
  676. }
  677. .mandatory {
  678. border: 1px solid #f00;
  679. }
  680. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  681. table.listResults tr.odd td.truncated, table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, .wizContainer table.listResults tr td.truncated {
  682. background: url(../images/truncated.png?v=#{$version}) bottom repeat-x;
  683. }
  684. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  685. table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even td.truncated {
  686. background: #f9f9f1 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
  687. }
  688. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  689. table.listResults tr.even td.hover.truncated, , .wizContainer table.listResults tr.even td.hover.truncated {
  690. background: #fdf5d0 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
  691. }
  692. /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
  693. 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 {
  694. background: #fdf5d0 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
  695. }
  696. table.listResults.truncated {
  697. border-bottom: 0;
  698. padding-bottom: 0;
  699. }
  700. tr.csv_row0 td {
  701. padding-top:5px;
  702. padding-bottom:5px;
  703. padding-left:10px;
  704. padding-right:10px;
  705. background: #fff;
  706. border-left: #000 1px solid;
  707. }
  708. tr.csv_row1 td {
  709. padding-top:5px;
  710. padding-bottom:5px;
  711. padding-left:10px;
  712. padding-right:10px;
  713. background: #f9f9f1;
  714. border-left: #000 1px solid;
  715. }
  716. tr.csv_row1 th, tr.csv_row0 th {
  717. padding-top:5px;
  718. padding-bottom:5px;
  719. padding-left:10px;
  720. padding-right:10px;
  721. border-left: #000 1px solid;
  722. }
  723. td.cell_modified {
  724. font-weight: bold;
  725. color: #000;
  726. }
  727. td.cell_error {
  728. font-weight: bold;
  729. color: #D81515;
  730. }
  731. table.transparent, table.transparent td {
  732. background: transparent;
  733. }
  734. p.page-header {
  735. color:$complement-color;
  736. font-weight: bold;
  737. font-size: 12pt;
  738. font-family: Verdana, Arial, Helvetica, Sans-Serif
  739. }
  740. td.dashboard {
  741. vertical-align:top;
  742. border: 1px solid #ccc;
  743. padding: 0.5em;
  744. width: 50%;
  745. }
  746. .white {
  747. background-color: #fff;
  748. }
  749. /*** New Lacanau layout ***/
  750. .ui-layout-pane { /* all 'panes' */
  751. overflow: auto;
  752. }
  753. .ui-layout-resizer { /* all 'resizer-bars' */
  754. background: #f1f1f1;
  755. }
  756. .ui-layout-toggler { /* all 'toggler-buttons' */
  757. background: #AAA;
  758. }
  759. div#top-left {
  760. width: 28px;
  761. height: 70px;
  762. background: $frame-background-color;
  763. float:left;
  764. }
  765. div#header-logo {
  766. width: 100%;
  767. height: 70px;
  768. background: $frame-background-color;
  769. }
  770. .ui-layout-pane-west {
  771. background: $frame-background-color;
  772. }
  773. div#right {
  774. min-width: 260px;
  775. }
  776. div#menu {
  777. width: 100%;
  778. overflow: auto;
  779. }
  780. .header-menu {
  781. padding-left: 24px;
  782. padding-right: 8px;
  783. padding-bottom: 24px;
  784. background: transparent;
  785. }
  786. div#inner_menu {
  787. padding-left: 24px;
  788. padding-right: 8px;
  789. background: transparent;
  790. }
  791. div#logo {
  792. height: 70px;
  793. nowidth: 100%;
  794. text-align: center;
  795. }
  796. div#logo div {
  797. height: 88px;
  798. width: 244px;
  799. background: url(../images/itop-logo-2.png?v=#{$version}) left no-repeat;
  800. }
  801. #left-pane .ui-layout-north {
  802. overflow: hidden;
  803. }
  804. #top-bar {
  805. background: $frame-background-color;
  806. text-align: right;
  807. }
  808. #admin-banner {
  809. float: left;
  810. margin-top: 2px;
  811. padding: 8px;
  812. border: 1px solid #c33;
  813. background-color: #fee;
  814. -moz-border-radius: 0.5em;
  815. }
  816. #global-search {
  817. height: 55px;
  818. float: right;
  819. text-align: right;
  820. overflow-y: hidden;
  821. }
  822. #global-search table, #global-search tr td, #global-search tr {
  823. padding: 0;
  824. border: 0;
  825. height: 55px;
  826. margin: 0;
  827. background: transparent;
  828. overflow-y: hidden;
  829. vertical-align: middle;
  830. }
  831. #global-search-area {
  832. line-height: 55px;
  833. }
  834. #global-search-input {
  835. vertical-align: middle;
  836. -moz-border-radius: 6px;
  837. -webkit-border-radius: 6px;
  838. border-radius: 6px;
  839. border: 1px #CCC solid;
  840. height: 18px;
  841. width: 180px;
  842. padding: 3px;
  843. background: #fff;
  844. display: inline-block;
  845. }
  846. #global-search-image {
  847. vertical-align: middle;
  848. background: url(../images/search.png?v=#{$version}) center center no-repeat;
  849. display:inline-block;
  850. width: 28px;
  851. height: 30px;
  852. margin-left: -8px;
  853. cursor: pointer;
  854. }
  855. #help-link img {
  856. padding: 0;
  857. border: 0;
  858. }
  859. #help-link {
  860. padding: 0;
  861. border: 0;
  862. background: transparent;
  863. margin-left: 15px;
  864. margin-right: 10px;
  865. }
  866. div.icon {
  867. width: 20px;
  868. height: 20px;
  869. margin: 2px;
  870. float: right;
  871. }
  872. span.ui-icon {
  873. float:left;
  874. margin:0 2px;
  875. }
  876. .ui-layout-button-pin-down {
  877. background: url(../images/splitter-bkg.png?v=#{$version}) transparent;
  878. width: 16px;
  879. background-position: -144px -144px;
  880. }
  881. .ui-layout-resizer-west-open {
  882. background-color: $frame-background-color;
  883. width: 8px;
  884. }
  885. div.footer img {
  886. border: 0;
  887. margin-bottom: 5px;
  888. margin-top: 5px;
  889. }
  890. div.footer{
  891. text-align:center;
  892. }
  893. #SearchResultsToAdd table.listResults tbody {
  894. height: 300px;
  895. overflow-y: auto;
  896. }
  897. tr.row_unchanged td {
  898. border-bottom: 1px #ccc solid;
  899. padding: 2px;
  900. }
  901. .wizContainer table tr.row_error td {
  902. border-bottom: 1px #ccc solid;
  903. background-color: #fdd;
  904. padding: 2px;
  905. }
  906. tr.row_modified td {
  907. border-bottom: 1px #ccc solid;
  908. padding: 2px;
  909. }
  910. tr.row_added td {
  911. border-bottom: 1px #ccc solid;
  912. padding: 2px;
  913. }
  914. a.truncated {
  915. cursor: pointer;
  916. }
  917. .org_combo
  918. {
  919. font-size:x-small;
  920. width: auto;
  921. max-width: 200px;
  922. }
  923. span.form_validation {
  924. width:24px;
  925. text-align:center;
  926. }
  927. .notification {
  928. border: 1px solid #c33;
  929. background-color: #fee;
  930. padding: 0.5em;
  931. margin: 0.5em;
  932. text-align:center;
  933. width: 95%;
  934. -moz-border-radius: 0.5em;
  935. }
  936. .wiki_broken_link {
  937. text-decoration: line-through;
  938. }
  939. .synoptics, .synoptics tr td {
  940. background: transparent;
  941. padding:10px;
  942. font-size:1em;
  943. vertical-align:middle;
  944. color:#fff;
  945. text-align:center;
  946. }
  947. .synoptics tr td.arrow {
  948. color:#333;
  949. border-top: 1px dashed #333;
  950. width:100px;
  951. }
  952. .synoptics tr.synoptics_header td {
  953. color:#000; font-size:1em;
  954. vertical-align:middle;
  955. text-align:center;
  956. }
  957. .mono_value {
  958. display: inline-block;
  959. background-color: #3c3;
  960. color: #fff;
  961. font-weight:bold;
  962. padding: 3px;
  963. padding-left: 5px;
  964. padding-right: 5px;
  965. margin-left:3px;
  966. -moz-border-radius: 10px;
  967. -webkit-border-radius: 10px;
  968. border-radius: 10px;
  969. }
  970. .multi_values {
  971. display: inline-block;
  972. background-color: #c33;
  973. color: #fff;
  974. font-weight:bold;
  975. padding: 3px;
  976. padding-left: 5px;
  977. padding-right: 5px;
  978. margin-left:3px;
  979. -moz-border-radius: 10px;
  980. -webkit-border-radius: 10px;
  981. border-radius: 10px;
  982. }
  983. .caselog {
  984. overflow-x: hidden;
  985. display: block;
  986. overflow-y: auto;
  987. border: 1px #ddd solid;
  988. font-family: Tahoma, Verdana, Arial, Helvetica;
  989. font-size: 12px;
  990. }
  991. .caselog_input_header {
  992. padding-top:3px;
  993. padding-bottom:3px;
  994. border-top:1px solid #fff;
  995. background: #ddd;
  996. width:100%;
  997. height: 21px;
  998. }
  999. .caselog_input_header:empty {
  1000. display: none;
  1001. }
  1002. .editor_magnifier:hover {
  1003. background-color: #CCC;
  1004. }
  1005. .caselog_header {
  1006. padding:3px;
  1007. border-top:1px solid #fff;
  1008. background: #ddd url(../images/plus.gif) left no-repeat;
  1009. padding-left: 16px;
  1010. cursor: pointer;
  1011. width:100%;
  1012. }
  1013. .caselog_header.open {
  1014. background: #ddd url(../images/minus.gif) left no-repeat;
  1015. }
  1016. .caselog_entry {
  1017. padding:3px;
  1018. padding-left: 16px;
  1019. border-bottom:1px #999 solid;
  1020. margin-left:0;
  1021. margin-right:0;
  1022. white-space: pre-wrap; /* css-3 */
  1023. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  1024. white-space: -pre-wrap; /* Opera 4-6 */
  1025. white-space: -o-pre-wrap; /* Opera 7 */
  1026. word-wrap: break-word; /* Internet Explorer 5.5+, CSS3 */
  1027. }
  1028. .caselog_entry_html p, .HTML p {
  1029. margin-top: 0.25em;
  1030. margin-bottom: 0.25em;
  1031. }
  1032. table.details {
  1033. border-collapse: collapse;
  1034. noborder-bottom: 2px #fff solid;
  1035. nowidth:100%;
  1036. }
  1037. table.details>tbody>tr>td {
  1038. border-bottom: 2px #ddd solid;
  1039. padding-bottom: 5px;
  1040. padding-top: 3px;
  1041. }
  1042. fieldset table.details>tbody>tr>td {
  1043. padding-top: 3px;
  1044. background: transparent;
  1045. border: 0;
  1046. }
  1047. .ac_dlg_loading {
  1048. background: white url('../images/indicator.gif') right center no-repeat;
  1049. }
  1050. table.pagination {
  1051. display:inline-block;
  1052. }
  1053. table.pagination tr td {
  1054. padding: 3px;
  1055. }
  1056. .pagination_container {
  1057. padding-left: 3px;
  1058. }
  1059. .pager p {
  1060. margin-top: 0;
  1061. margin-bottom: 0;
  1062. }
  1063. .pager td span {
  1064. min-width: 20px;
  1065. padding-left: 2px;
  1066. padding-right: 2px;
  1067. display:inline-block;
  1068. text-align: center;
  1069. cursor: pointer;
  1070. }
  1071. .pager td span.curr_page {
  1072. color: #fff;
  1073. background: #999;
  1074. -moz-border-radius: 4px;
  1075. -webkit-border-radius: 4px;
  1076. border-radius: 4px;
  1077. }
  1078. img.prev, img.first, img.next, img.last {
  1079. cursor: pointer;
  1080. }
  1081. div.actions_button {
  1082. float:right;
  1083. background: $highlight-color url("../images/actions_left.png?v=#{$version}") no-repeat scroll left top;
  1084. padding-left: 5px;
  1085. margin-top: 0;
  1086. margin-right: 10px;
  1087. height:19px;
  1088. vertical-align: middle;
  1089. }
  1090. div.actions_button a, .actions_button a:hover, .actions_button a:visited {
  1091. background: $highlight-color url(../images/actions_bkg.png?v=#{$version}) no-repeat scroll right top;
  1092. color:#fff;
  1093. padding-right: 8px;
  1094. cursor:pointer;
  1095. font-family: Tahoma,sans-serif;
  1096. font-size: 11px;
  1097. font-weight: bold;
  1098. padding-left: 4px;
  1099. text-decoration: none;
  1100. height:19px;
  1101. line-height: 17px;
  1102. display: block;
  1103. }
  1104. select#org_id {
  1105. max-width: 90%;
  1106. }
  1107. /*********** Dashboards ***********/
  1108. .itop-dashboard {
  1109. background-color: #fff;
  1110. }
  1111. .itop-dashboard a {
  1112. cursor: unquote("not-allowed");
  1113. }
  1114. .dragHover {
  1115. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=#{$version});
  1116. }
  1117. .edit_mode .dashlet {
  1118. background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=#{$version});
  1119. padding: 5px;
  1120. margin:0;
  1121. position:relative;
  1122. }
  1123. .edit_mode .dashlet-selected {
  1124. background: $highlight-color !important;
  1125. padding: 5px;
  1126. margin:0;
  1127. }
  1128. td.layout_cell {
  1129. height: 50px; /* min-height does not work */
  1130. vertical-align: top;
  1131. }
  1132. .dashlet-content {
  1133. background: #fff;
  1134. margin:0;
  1135. }
  1136. table.prop_table {
  1137. border-bottom: 2px solid #F9F9F1;
  1138. padding: 1px;
  1139. width: 100%;
  1140. }
  1141. .close-box {
  1142. margin: 5px;
  1143. width: 20px;
  1144. height: 20px;
  1145. position: absolute;
  1146. top: 0;
  1147. right: 0;
  1148. z-index: 10;
  1149. background: transparent url(../images/delete.png?v=#{$version}) no-repeat center;
  1150. }
  1151. td.prop_value {
  1152. text-align: left;
  1153. }
  1154. tr.itop-property-field-modified td {
  1155. background: #fbb;
  1156. }
  1157. tr.itop-property-field-modified td.hover {
  1158. background: #f99;
  1159. }
  1160. td.prop_value textarea, td.prop_value input[type=text]{
  1161. width: 98%;
  1162. }
  1163. td.prop_icon {
  1164. width: 20px;
  1165. }
  1166. .dashlet {
  1167. text-align:left;
  1168. }
  1169. .dashlet-inline {
  1170. display: inline-block;
  1171. }
  1172. .dashlet-badge a.actions {
  1173. background: none repeat scroll 0 0 transparent;
  1174. color: #666666;
  1175. font-size: 16px;
  1176. text-decoration: none;
  1177. }
  1178. .dashlet-content .display_block {
  1179. text-align:left;
  1180. }
  1181. .prop_apply .ui-icon-alert {
  1182. display: none;
  1183. }
  1184. .prop_apply .ui-state-error .ui-icon-alert {
  1185. display: block;
  1186. }
  1187. .ui-state-error .ui-icon-circle-check {
  1188. display: none;
  1189. }
  1190. .summary-details {
  1191. float: right;
  1192. margin-top: 5px;
  1193. }
  1194. .summary-details th {
  1195. background: none repeat scroll 0 0 $summary-details-background;
  1196. color: #EEEEEE;
  1197. padding: 5px;
  1198. text-align: center;
  1199. }
  1200. .main_header {
  1201. background-color: $main-header-background;
  1202. min-height: 60px;
  1203. width: 100%;
  1204. }
  1205. .main_header h1 {
  1206. color: $complement-color;
  1207. line-height: 16px;
  1208. margin-bottom: 0;
  1209. margin-top: 0;
  1210. padding-bottom: 10px;
  1211. padding-top: 10px;
  1212. }
  1213. .main_header img {
  1214. margin-top: 10px;
  1215. margin-right: 10px;
  1216. float:left;
  1217. }
  1218. a.summary, a.summary:hover {
  1219. background: none repeat scroll 0 0 transparent;
  1220. color: #666666;
  1221. text-decoration: none;
  1222. padding-left: 0;
  1223. }
  1224. .summary-details td {
  1225. background: none repeat scroll 0 0 transparent;
  1226. padding: 5px;
  1227. text-align: center;
  1228. }
  1229. #DashboardMenu > ul > li {
  1230. list-style: none;
  1231. vertical-align: middle;
  1232. margin: 0;
  1233. padding: 0;
  1234. cursor: pointer;
  1235. }
  1236. #DashboardMenu > ul {
  1237. list-style: none;
  1238. vertical-align: middle;
  1239. margin: 0;
  1240. padding: 0;
  1241. height: 25px;
  1242. }
  1243. #DashboardMenu li a {
  1244. display: block;
  1245. padding: 5px 12px;
  1246. text-decoration: none;
  1247. color: #000;
  1248. font-weight: bold;
  1249. text-align: left;
  1250. white-space: nowrap;
  1251. background: #fff;
  1252. }
  1253. #DashboardMenu li span {
  1254. display: block;
  1255. padding: 5px 12px;
  1256. text-decoration: none;
  1257. color: #000;
  1258. white-space: nowrap;
  1259. background: #fff;
  1260. }
  1261. #DashboardMenu li {
  1262. list-style: none;
  1263. }
  1264. #DashboardMenu li a:hover {
  1265. background: #1A4473;
  1266. }
  1267. #DashboardMenu ul > li > ul
  1268. {
  1269. border: 1px solid black;
  1270. background: #fff;
  1271. }
  1272. #DashboardMenu li > ul
  1273. { margin: 0;
  1274. padding: 0;
  1275. position: absolute;
  1276. display: none;
  1277. border-top: 1px solid white;
  1278. z-index: 999;
  1279. }
  1280. #DashboardMenu li ul li a:hover{
  1281. background: $popup-menu-highlight-color;
  1282. color: $popup-menu-text-higlight-color;
  1283. font-weight: bold;
  1284. list-style: none;
  1285. }
  1286. .sortable_field_list {
  1287. display: inline-block;
  1288. width: 250px;
  1289. height: 150px;
  1290. border: 1px #333 solid;
  1291. overflow: auto;
  1292. padding-left: 0;
  1293. margin: 0;
  1294. }
  1295. .sortable_field_list li {
  1296. list-style: none;
  1297. font-size: 11px;
  1298. }
  1299. .sort_order {
  1300. display: inline-block;
  1301. width: 16px;
  1302. height: 12px;
  1303. }
  1304. .sort_none {
  1305. background: url(../images/bg.gif) no-repeat center;
  1306. }
  1307. .sort_asc {
  1308. background: url(../images/desc.gif) no-repeat center;
  1309. }
  1310. .sort_desc {
  1311. background: url(../images/asc.gif) no-repeat center;
  1312. }
  1313. .sort_hidden {
  1314. display: none;
  1315. }
  1316. .sortable_field_list > li.selected {
  1317. background: #F6A828;
  1318. }
  1319. .itop-deleted-object {
  1320. text-decoration: line-through;
  1321. }
  1322. .header_message {
  1323. padding: 1em;
  1324. font-size: 10pt;
  1325. background: #fff;
  1326. border: 1px solid #999;
  1327. -moz-border-radius: 4px;
  1328. -webkit-border-radius: 4px;
  1329. border-radius: 4px;
  1330. margin-bottom: 10px;
  1331. }
  1332. .header_message {
  1333. padding: 1em;
  1334. font-size: 10pt;
  1335. background: #fff;
  1336. border: 1px solid #999;
  1337. -moz-border-radius: 4px;
  1338. -webkit-border-radius: 4px;
  1339. border-radius: 4px;
  1340. margin-bottom: 10px;
  1341. }
  1342. .message_info {
  1343. border: 1px solid #993;
  1344. background: url(../images/info-mini.png?v=#{$version}) 1em 1em no-repeat #ffc;
  1345. padding-left: 3em;
  1346. }
  1347. .message_ok {
  1348. border: 1px solid #393;
  1349. background: url(../images/ok.png?v=#{$version}) 1em 1em no-repeat #cfc;
  1350. padding-left: 3em;
  1351. }
  1352. .message_error {
  1353. border: 1px solid #933;
  1354. background: url(../images/error.png?v=#{$version}) 1em 1em no-repeat #fcc;
  1355. padding-left: 3em;
  1356. }
  1357. .fg-menu a img {
  1358. border: 0;
  1359. }
  1360. div.ui-dialog-header {
  1361. padding-bottom: 10px;
  1362. padding-top: 7px;
  1363. }
  1364. .form_field_error {
  1365. border: 1px solid #933;
  1366. background: #fcc;
  1367. }
  1368. .simple-graph, .graph_config {
  1369. background: #fff;
  1370. }
  1371. .graph_config {
  1372. padding: 0.25em;
  1373. }
  1374. .graph_config button.ui-widget {
  1375. font-size: 12px;
  1376. }
  1377. .ui-tooltip, .arrow:after {
  1378. background: $frame-background-color;
  1379. border: 1px solid $grey-color;
  1380. }
  1381. .ui-tooltip {
  1382. padding: 10px 10px;
  1383. box-shadow: 0 0 7px black;
  1384. }
  1385. .ui-tooltip .arrow {
  1386. width: 70px;
  1387. height: 16px;
  1388. overflow: hidden;
  1389. position: absolute;
  1390. left: 50%;
  1391. margin-left: -35px;
  1392. bottom: -16px;
  1393. }
  1394. .ui-tooltip .arrow.top {
  1395. top: -16px;
  1396. bottom: auto;
  1397. }
  1398. .ui-tooltip .arrow.left {
  1399. left: 20%;
  1400. }
  1401. .ui-tooltip .arrow:after {
  1402. content: "";
  1403. position: absolute;
  1404. left: 20px;
  1405. top: -20px;
  1406. width: 25px;
  1407. height: 25px;
  1408. box-shadow: 6px 5px 9px -9px black;
  1409. -webkit-transform: rotate(45deg);
  1410. -ms-transform: rotate(45deg);
  1411. transform: rotate(45deg);
  1412. }
  1413. .ui-tooltip .arrow.top:after {
  1414. bottom: -20px;
  1415. top: auto;
  1416. }
  1417. table.export_parameters td {
  1418. padding-right: 2em;
  1419. }
  1420. .table_preview > table {
  1421. border-collapse: collapse;
  1422. max-height: 150px;
  1423. overflow: auto;
  1424. display: block;
  1425. }
  1426. .table_preview > table > thead > tr > th, .table_preview > table > tbody > tr > td {
  1427. border: 1px $grey-color solid;
  1428. min-height: 1em;
  1429. padding-left: 0.25em;
  1430. padding-right: 0.25em;
  1431. font-size: 10pt;
  1432. }
  1433. .table_preview > table > tbody > tr > td {
  1434. vertical-align: top;
  1435. }
  1436. .table_preview .drag-handle {
  1437. cursor: move;
  1438. }
  1439. .table_preview div.text-preview {
  1440. white-space: pre-wrap;
  1441. }
  1442. .graph_zoom {
  1443. display: inline-block;
  1444. float: right;
  1445. margin-right: 2em;
  1446. }
  1447. .graph_zoom_slider {
  1448. display: inline-block;
  1449. width: 10em;
  1450. }
  1451. .graph_zoom_plus, .graph_zoom_minus {
  1452. display: inline-block;
  1453. margin-left: 1em;
  1454. margin-right: 1em;
  1455. }
  1456. div.explain-printable {
  1457. border: 5px solid $complement-color;
  1458. background: $complement-light;
  1459. color: #000;
  1460. padding: 10px;
  1461. margin: 0;
  1462. font-size: 12px;
  1463. }
  1464. .hideable-chapter {
  1465. cursor: pointer;
  1466. }
  1467. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span {
  1468. padding-left: 20px;
  1469. background: url(../images/eye-open-555.png?v=#{$version}) 2px center no-repeat;
  1470. }
  1471. #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span {
  1472. text-decoration: line-through;
  1473. background: url(../images/eye-closed-555.png?v=#{$version}) 2px center no-repeat;
  1474. }
  1475. .printable-version legend {
  1476. padding-left: 26px;
  1477. background: $complement-color url(../images/eye-open-fff.png?v=#{$version}) 8px center no-repeat;
  1478. }
  1479. .printable-version .strikethrough legend {
  1480. background: $complement-color url(../images/eye-closed-fff.png?v=#{$version}) 8px center no-repeat;
  1481. }
  1482. .printable-version fieldset.strikethrough span {
  1483. display: none;
  1484. }
  1485. h2.printable-tab-title {
  1486. border-bottom: 2px solid;
  1487. }
  1488. .strikethrough {
  1489. text-decoration: line-through;
  1490. }
  1491. select.multiselect {
  1492. max-width: 150px;
  1493. }
  1494. span.refresh-button {
  1495. display: inline-block;
  1496. width: 21px;
  1497. height: 18px;
  1498. cursor: pointer;
  1499. background: transparent url(../images/refresh-fff.png?v=#{$version}) left center no-repeat;
  1500. }
  1501. .case-log-history-entry {
  1502. display: block;
  1503. }
  1504. .case-log-history-entry-end {
  1505. display: none;
  1506. }
  1507. .expanded .case-log-history-entry-end {
  1508. display: inline;
  1509. }
  1510. .case-log-history-entry-more {
  1511. display: inline;
  1512. }
  1513. .expanded .case-log-history-entry-more {
  1514. display: none;
  1515. }
  1516. .case-log-history-entry .case-log-history-entry-toggle {
  1517. display: inline-block;
  1518. float: none;
  1519. pointer: cursor;
  1520. vertical-align: bottom;
  1521. }
  1522. .printable-tab .case-log-history-entry-end {
  1523. display: inline;
  1524. }
  1525. .printable-tab .case-log-history-entry-more {
  1526. display: none;
  1527. }
  1528. .printable-tab .case-log-history-entry .case-log-history-entry-toggle {
  1529. display: none;
  1530. }
  1531. .history_entry {
  1532. position: relative !important;
  1533. max-width: 100%;
  1534. }
  1535. .history_entry_truncated {
  1536. max-height: 7em;
  1537. overflow: hidden;
  1538. }
  1539. .history_truncated_toggler {
  1540. position: absolute !important;
  1541. bottom: 0;
  1542. right: 0;
  1543. display: block;
  1544. cursor: pointer;
  1545. width: 16px;
  1546. height: 16px;
  1547. background-image: url(ui-lightness/images/ui-icons_222222_256x240.png);
  1548. background-position: -16px -192px;
  1549. }
  1550. .history_entry_truncated .history_truncated_toggler {
  1551. background-position: 0 -192px;
  1552. }
  1553. #top-bar-table {
  1554. width: 100%;
  1555. padding-left: 5px;
  1556. $top-button-width: 40px;
  1557. $top-button-heigth: 55px;
  1558. $top-button-spacer: 35px;
  1559. #open-left-pane {
  1560. text-align: center;
  1561. width: $top-button-width !important;
  1562. cursor: pointer;
  1563. }
  1564. #go-home {
  1565. text-align: center;
  1566. width: $top-button-width !important;
  1567. a {
  1568. text-decoration: none;
  1569. color: #555;
  1570. font-size: 9pt;
  1571. padding: 0;
  1572. background: none;
  1573. // Make the whole cell clickable
  1574. display: inline-block;
  1575. line-height: $top-button-heigth;
  1576. width: 100%;
  1577. }
  1578. }
  1579. .top-bar-spacer{
  1580. width: $top-button-spacer !important;
  1581. }
  1582. #top-bar-table-search{
  1583. width: 347px;
  1584. }
  1585. }
  1586. #itop-breadcrumb{
  1587. overflow: hidden;
  1588. float: left;
  1589. background: $frame-background-color;
  1590. .breadcrumb-item{
  1591. float: left;
  1592. margin: 3px 22px 2px 0px;
  1593. .icon img{
  1594. height: 15px;
  1595. width: auto;
  1596. margin-right: 5px;
  1597. -webkit-filter: unquote("grayscale(100%)");
  1598. filter: unquote("grayscale(100%)");
  1599. filter: unquote("gray");
  1600. 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");
  1601. // IE has no filter option: at least, have some effect when hovering...
  1602. opacity: 0.5;
  1603. }
  1604. a{
  1605. text-decoration: none;
  1606. color: #555;
  1607. font-size: 9pt;
  1608. padding: 0;
  1609. background: none;
  1610. &:hover .icon img{
  1611. -webkit-filter: none;
  1612. filter: none;
  1613. opacity: 1;
  1614. }
  1615. span.truncate
  1616. {
  1617. // Ellipsis
  1618. max-width: 200px;
  1619. white-space: nowrap;
  1620. overflow: hidden;
  1621. text-overflow: ellipsis;
  1622. display: inline-block;
  1623. }
  1624. &:hover{
  1625. text-decoration: none;
  1626. color: $highlight-color;
  1627. }
  1628. &::after{
  1629. content:'';
  1630. position: absolute;
  1631. background-image: url(../images/breadcrumb-separator.png?v=#{$version});
  1632. background-repeat: no-repeat;
  1633. width: 8px;
  1634. height: 16px;
  1635. margin-left: 5px;
  1636. }
  1637. }
  1638. &:last-child a::after{
  1639. display: none;
  1640. }
  1641. &.breadcrumb-current{
  1642. text-decoration: none;
  1643. color: #555;
  1644. font-size: 9pt;
  1645. padding: 0;
  1646. background: none;
  1647. span.truncate
  1648. {
  1649. // Ellipsis
  1650. max-width: 200px;
  1651. white-space: nowrap;
  1652. overflow: hidden;
  1653. text-overflow: ellipsis;
  1654. display: inline-block;
  1655. }
  1656. }
  1657. }
  1658. }
  1659. .ui-datepicker-buttonpane, .ui-timepicker-div {
  1660. font-size: 9pt;
  1661. font-family: Tahoma, Verdana, Arial, Helvetica;
  1662. }
  1663. .date_format_tooltip td {
  1664. padding: 0.25em;
  1665. }
  1666. #setup {
  1667. .module-selection-banner img {
  1668. max-height: 48px;
  1669. }
  1670. .module-selection-body {
  1671. height: 28em;
  1672. overflow: auto;
  1673. border: #ccc 1px solid;
  1674. }
  1675. }
  1676. .mfp-close {
  1677. cursor: pointer !important;
  1678. }