light-grey.css 37 KB

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