light-grey.scss 47 KB

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