light-grey.scss 47 KB

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