light-grey.css 47 KB

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