123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307 |
- @import 'css-variables.scss';
- $hilight-color: $highlight-color;
- $summary-details-background: $grey-color;
- $main-header-background: $frame-background-color;
- $table-even-background: $frame-background-color;
- $popup-menu-highlight-color: $highlight-color;
- $popup-menu-text-color: #000;
- $popup-menu-background-color: #fff;
- $popup-menu-text-higlight-color: #fff;
- $breadcrumb-color: #555;
- $breadcrumb-text-color: #fff;
- $breadcrumb-highlight-color: $highlight-color;
- $breadcrumb-text-highlight-color: #fff;
- /* CSS Document */
- body {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 10pt;
- color: $text-color;
- margin: 0; /* Remove body margin/padding */
- padding: 0;
- overflow: hidden; /* Remove scroll bars on browser window */
- }
- body.printable-version {
- margin:1.5em;
- overflow:auto;
- }
- /* to prevent flicker, hide the pane's content until it's ready */
- .ui-layout-center, .ui-layout-north, .ui-layout-south {
- display: none;
- }
- .ui-layout-content {
- padding-left: 10px;
- }
- .raw_output {
- font-family: Courier-New, Courier, Arial, Helvetica;
- font-size: 8pt;
- background-color: #eeeeee;
- color: $text-color;
- border: 1px dashed $text-color;
- padding: 0.25em;
- margin-top: 1em;
- }
- h1 {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- color: $text-color;
- font-weight: bold;
- font-size: 12pt;
- }
- h2 {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- color: $text-color;
- font-weight: normal;
- font-size: 12pt;
- }
- h3 {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- color: $text-color;
- font-weight: normal;
- font-size: 10pt;
- }
- .hilite, .hilite a, .hilite a:visited {
- color: $hilight-color;
- text-decoration: none;
- }
- table.datatable {
- width: 100%;
- border: 0;
- padding: 0;
- }
- td.menucontainer {
- text-align: right;
- }
- table.listResults {
- padding: 0px;
- border-top: 3px solid $frame-background-color;
- border-left: 3px solid $frame-background-color;
- border-bottom: 3px solid #e6e6e1;
- border-right: 3px solid #e6e6e1;
- width: 100%;
- background-color: #fff;
- }
- table.listResults td {
- padding: 2px;
- }
- table.listResults td .view-image {
- // Counteract the forced dimensions (usefull for displaying in the details view)
- width: inherit !important;
- height: inherit !important;
- img {
- max-width: 48px !important;
- max-height: 48px !important;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- }
- .edit-image {
- .view-image {
- display: inline-block;
- &.dirty {
- // The image will be modified when saving the changes
- &.compat {
- // Browser not supporting FileReader
- background-image: url("ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png");
- img {
- opacity: 0.3;
- }
- }
- }
- }
- .edit-buttons {
- display: inline-block;
- vertical-align: top;
- margin-top: 4px;
- margin-left: 3px;
- .button {
- cursor: pointer;
- margin-bottom: 3px;
- padding: 2px;
- background-color: $highlight-color;
- &.disabled {
- cursor: default;
- background-color: $grey-color;
- opacity: 0.3;
- }
- .ui-icon {
- background-image: url("ui-lightness/images/ui-icons_ffffff_256x240.png");
- }
- }
- }
- .file-input {
- display: block;
- }
- }
- /* Center the image both horizontally and vertically, withing a box which size is fixed (depends on the attribute definition) */
- .details .view-image {
- text-align: center;
- padding: 2px;
- border: 2px solid #DDDDDD;
- border-radius: 6px;
- img {
- display: inline-block;
- vertical-align: middle;
- max-width: 90% !important;
- max-height: 90% !important;
- }
- .helper-middle {
- // Helper to center the image (requires a span dedicated to this)
- display: inline-block;
- height: 100%;
- vertical-align: middle;
- }
- }
- table.listContainer {
- border: 0;
- padding: 0;
- margin: 0;
- width: 100%;
- clear: both;
- }
- tr.containerHeader, tr.containerHeader td {
- background: transparent;
- }
- tr.even td, .wizContainer tr.even td {
- background-color: $table-even-background;
- }
- tr.red_even td, .wizContainer tr.red_even td {
- background-color: #f97e75;
- color: #fff;
- }
- tr.red td, .wizContainer tr.red td {
- background-color: #f9a397;
- color: #fff;
- }
- tr.orange_even td, .wizContainer tr.orange_even td {
- background-color: #f4d07a;
- }
- tr.orange td, .wizContainer tr.orange td {
- background-color: #f4e96c;
- }
- tr.green_even td, .wizContainer tr.green_even td {
- background-color: #bee5a3;
- }
- tr.green td, .wizContainer tr.green td {
- background-color: #b3e5b4;
- }
- tr td.hover, tr.even td.hover, .hover a, .hover a:visited, .hover a:hover, .wizContainer tr.even td.hover, .wizContainer tr td.hover {
- background-color: #fdf5d0;
- color: $text-color;
- }
- th {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 8pt;
- color: $complement-color;
- height:20px;
- background: $frame-background-color bottom repeat-x;
- }
- th.header {
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center right;
- background-repeat: no-repeat;
- padding-right: 16px; // some space for the asc/desc icons
- }
- th.headerSortUp {
- background-image: url(../images/asc.gif);
- text-decoration: underline;
- cursor: pointer;
- }
- th.headerSortDown {
- background-image: url(../images/desc.gif);
- text-decoration: underline;
- cursor: pointer;
- }
- td {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 12px;
- color:#696969;
- nobackground-color: #ffffff;
- padding: 0px;
- }
- tr.clicked td {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: smaller;
- background-color: #ffcfe8;
- }
- td.label {
- vertical-align: top;
- }
- td.label span {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 12px;
- color: #000000;
- padding: 5px;
- padding-right: 10px;
- font-weight:bold;
- vertical-align: top;
- text-align: right;
- display: block;
- }
- fieldset td.label span {
- padding: 3px;
- padding-right: 10px;
- }
- fieldset {
- margin-top: 3px;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- border-radius: 6px;
- border-style: solid;
- border-color: #ddd;
- }
- legend {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 12px;
- padding:8px;
- color: #fff;
- background-color: $complement-color;
- font-weight: bold;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- border-radius: 6px;
- }
- legend.transparent {
- background: transparent;
- color: #333333;
- font-size: 1em;
- font-weight: normal;
- padding: 0;
- }
- .ui-widget-content td legend a, .ui-widget-content td legend a:hover, .ui-widget-content td legend a:visited {
- color: #fff;
- }
- .ui-widget-content td a, p a, p a:visited, td a, td a:visited {
- text-decoration:none;
- color: $complement-color;
- }
- .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 {
- padding-left: 0;
- background-image: none;
- }
- .ui-widget-content td a:hover, p a:hover, td a:hover {
- text-decoration:underline;
- color:$highlight-color;
- }
- .cke_reset_all *:hover {
- text-decoration: none;
- color: #000;
- }
- table.cke_dialog_contents a.cke_dialog_ui_button_ok {
- color: #000;
- border-color: $highlight-color;
- background: $highlight-color;
- }
- .cke_notifications_area {
- display: none;
- }
- td a.no-arrow, td a.no-arrow:visited, .SearchDrawer a.no-arrow, .SearchDrawer a.no-arrow:visited {
- text-decoration:none;
- color:#000000;
- padding-left:0px;
- background: inherit;
- }
- td a.no-arrow:hover {
- text-decoration:underline;
- color:#d81515;
- padding-left:0px;
- background: inherit;
- }
- td a.mailto, td a.mailto:visited {
- text-decoration:none;
- color:#000000;
- padding-left:20px;
- background: url(../images/mail.png?v=#{$version}) no-repeat left;
- }
- td a.mailto:hover {
- text-decoration:underline;
- color:$highlight-color;
- padding-left:20px;
- background: url(../images/mail.png?v=#{$version}) no-repeat left;
- }
- a.small_action {
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 8pt;
- color: #000000;
- text-decoration:none;
- }
- .display_block {
- padding:0.25em;
- }
- .actions_details {
- float:right;
- margin-top:10px;
- margin-right:10px;
- padding-left: 5px;
- padding-top: 2px;
- padding-bottom: 2px;
- background: $highlight-color url(../images/actions_left.png?v=#{$version}) no-repeat left;
- }
- .actions_details span{
- background: url(../images/actions_right.png?v=#{$version}) no-repeat right;
- color: #fff;
- font-weight: bold;
- padding-top: 2px;
- padding-bottom: 2px;
- padding-right: 12px;
- }
- .actions_details a {
- text-decoration:none;
- }
- .loading {
- noborder: 1px dashed #CCC;
- background: #b9c1c8;
- padding:0.25em;
- }
- input.textSearch {
- border:1px solid #000;
- font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
- color:#000000;
- }
- .ac_input {
- border: 1px solid #7f9db9;
- background: #fff url(../images/ac-background.gif) no-repeat right;
- }
- /* By Rom */
- .csvimport_createobj {
- color: #AA0000;
- background-color:#EEEEEE;
- }
- .csvimport_error {
- font-weight: bold;
- color: #FF0000;
- background-color:#EEEEEE;
- }
- .csvimport_warning {
- color: #CC8888;
- background-color:#EEEEEE;
- }
- .csvimport_ok {
- color: #00000;
- background-color:#BBFFBB;
- }
- .csvimport_reconkey {
- font-style: italic;
- color: #888888;
- background-color:#FFFFF;
- }
- .csvimport_extreconkey {
- color: #888888;
- background-color:#FFFFFF;
- }
- #accordion {
- display:none;
- }
- #accordion h3 {
- padding: 10px;
- }
- .ui-accordion-content ul {
- list-style:none;
- list-style-image: url(data:0);
- padding-left:16px;
- margin-top: 8px;
- }
- .ui-accordion-content li.submenu {
- margin-top: 8px;
- }
- .ui-accordion-content ul ul {
- padding: 8px 0px 8px 8px;
- margin:0;
- list-style:none;
- list-style-image: url(data:0);
- border: 0;
- }
-
- .nothing {
- noborder-top: 1px solid #8b8b8b;
- padding: 4px 0px 0px 16px;
- font-size:8pt;
- background: url(../images/green-square.gif) no-repeat bottom left;
- color:#83b217;
- font-weight:bold;
- text-decoration:none;
- }
- div.ui-accordion-content {
- padding-top: 10px;
- padding-left: 10px;
- }
- .ui-accordion-content a, ui-accordion-content a:visited {
- color: $complement-color;
- text-decoration:none;
- }
- .ui-accordion-content a:hover {
- color: $highlight-color;
- text-decoration: none;
- }
- .ui-accordion-content ul {
- padding-left: 0;
- margin-top: 0;
- }
- .ui-accordion-content li {
- color:$grey-color;
- text-decoration:none;
- margin: 0;
- padding: 0px 0pt 0px 16px;
- font-size: 9pt;
- background: url(../images/mini-arrow-orange.gif) no-repeat top left;
- font-weight:normal;
- border: 0;
- }
- a.CollapsibleLabel, td a.CollapsibleLabel {
- margin: 0;
- padding: 0px 0pt 0px 16px;
- font-size:8pt;
- text-decoration:none;
- color:$grey-color;
- background: url(../images/mini-arrow-orange.gif) no-repeat left;
- }
- /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
- a.CollapsibleLabel.open, td a.CollapsibleLabel.open {
- margin: 0;
- padding: 0px 0pt 0px 16px;
- font-size:8pt;
- text-decoration:none;
- color: $highlight-color;
- background: url(../images/mini-arrow-orange-open.gif) no-repeat left;
- }
- .page_header {
- background-color:$frame-background-color;
- padding:5px;
- }
- /* move up a header immediately following a display block (i.e. "actions" menu) */
- .display_block + .page_header {
- margin-top: -8px;
- }
- .notreeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
- .notreeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
- .notreeview .expandable { background-image: url(../images/tv-expandable.gif); }
- .notreeview .last { background-image: url(../images/tv-item-last.gif); }
- .notreeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
- .notreeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
- #OrganizationSelection {
- padding:5px 0px 16px 20px;
- }
- /* popup menus */
- div.itop_popup {
- margin: 0;
- padding: 0;
- float:right;
- }
- div.itop_popup > ul > li {
- list-style: none;
- cursor: pointer;
- position: relative;
- }
- div.actions_menu > ul {
- height:19px;
- line-height: 17px;
- vertical-align: middle;
- display:block;
- nowidth:70px; /* Nasty work-around for IE... en attendant mieux */
- padding-left: 5px;
- background: $highlight-color url(../images/actions_left.png?v=#{$version}) no-repeat top left;
- cursor: pointer;
- margin: 0;
- }
- div.actions_menu > ul > li {
- float: left;
- list-style: none;
- font-size: 11px;
- font-family: Tahoma,sans-serif;
- height: 17px;
- padding-right: 16px;
- padding-left: 4px;
- background: url(../images/actions_right.png?v=#{$version}) no-repeat top right transparent;
- font-weight: bold;
- color: $popup-menu-text-higlight-color;
- vertical-align: middle;
- margin: 0;
- }
- #logOffBtn > ul > li {
- list-style: none;
- vertical-align: middle;
- margin: 0;
- padding-left: 10px;
- padding-right: 10px;
- cursor: pointer;
- }
- #logOffBtn > ul {
- list-style: none;
- vertical-align: middle;
- margin: 0;
- padding: 0;
- height: 25px;
- }
-
- .itop_popup li a, #logOffBtn li a {
- display: block;
- padding: 5px 12px;
- text-decoration: none;
- nowidth: 70px;
- color: $popup-menu-text-color;
- font-weight: bold;
- white-space: nowrap;
- background: $popup-menu-background-color;
- }
- #logOffBtn li span {
- display: block;
- padding: 5px 12px;
- text-decoration: none;
- nowidth: 70px;
- color: $popup-menu-text-color;
- white-space: nowrap;
- background: $popup-menu-background-color;
- }
- .itop_popup ul {
- padding-left: 0;
- }
- .menucontainer div.toolkit_menu {
- margin-left: 10px;
- }
- .itop_popup li a:hover, #logOffBtn li a:hover {
- background: #1A4473;
- }
- .itop_popup ul > li > ul, #logOffBtn ul > li > ul
- {
- border: 1px solid black;
- background: #fff;
- }
-
- .itop_popup li > ul, #logOffBtn li > ul
- { margin: 0;
- padding: 0;
- position: absolute;
- display: none;
- border-top: 1px solid white;
- z-index: 999;
- }
- .itop_popup li ul li, #logOffBtn li ul li {
- float: none;
- display: inline;
- }
- .itop_popup li ul li a, #logOffBtn li ul li a {
- width: auto;
- text-align: left;
- }
- .itop_popup li ul li a:hover, #logOffBtn li ul li a:hover{
- background: $popup-menu-highlight-color;
- color: $popup-menu-text-higlight-color;
- font-weight: bold;
- }
- .itop_popup > ul {
- margin: 0;
- }
- hr.menu-separator {
- border: none 0;
- border-top: 1px solid #ccc;
- color: #ccc;
- background-color: transparent;
- height: 1px;
- margin: 3px;
- cursor: default;
- }
- /************************************/
- .wizHeader {
- background: $complement-color;
- padding: 15px;
- }
- .wizContainer {
- border: 5px solid $complement-color;
- background: $complement-light;
- padding: 5px;
- }
- .wizContainer table tr td {
- background: transparent;
- }
- .alignRight {
- text-align: right;
- padding: 3px;
- }
- .alignLeft {
- text-align: left;
- padding: 3px;
- }
- .red {
- background-color: #ff6000;
- color: #000;
- }
- th.red {
- background: url(../images/red-header.gif) bottom left repeat-x;
- color: #000;
- }
- .green {
- background-color: #00cc00;
- color: #000;
- }
- th.green {
- background: url(../images/green-header.gif) bottom left repeat-x;
- color: #000;
- }
- .orange {
- background-color: #ffde00;
- color: #000;
- }
- th.orange {
- background: url(../images/orange-header.gif) bottom left repeat-x;
- color: #000;
- }
- /* For Date Picker: Creates a little calendar icon
- * instead of a text link for "Choose date"
- */
- 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 {
- float: left;
- width: 16px;
- height: 16px;
- padding: 0;
- margin: 5px 3px 0;
- display: block;
- text-indent: -2000px;
- overflow: hidden;
- background: url(../images/calendar.png?v=#{$version}) no-repeat;
- }
- td a.dp-choose-date.dp-disabled, a.dp-choose-date.dp-disabled {
- background-position: 0 -20px;
- cursor: default;
- }
- /* For Date Picker: makes the input field shorter once the date picker code
- * has run (to allow space for the calendar icon)
- */
- input.dp-applied {
- width: 140px;
- float: left;
- }
- /* For search forms */
- .SearchDrawer {
- //background: $complement-color url(../images/search-top-left-corner.png?v=#{$version}) top left no-repeat;
- border-top: 5px solid $complement-color;
- border-left: 5px solid $complement-color;
- border-right: 5px solid $complement-color;
- border-bottom: 0;
- background: $complement-light;
- color: #000;
- padding: 10px;
- margin: 0;
- font-size: 12px;
- }
- .SearchDrawer label {
- background: $complement-light;
- color: #000;
- text-align: right;
- }
- .SearchDrawer h1 {
- color: #000;
- }
- .SearchDrawer .SearchAttribute{
- > .field_input_zone{
- display: inline-block;
- > .field_select_wrapper{
- display: inline-block;
- }
- }
- }
- .DrawerClosed {
- display: none;
- }
- .DrawerHandle {
- margin: 0;
- padding: 5px;
- background: url(../images/drawer-handle.gif) bottom no-repeat transparent;
- color: #fff;
- cursor: pointer;
- text-align: center;
- /* center the block */
- width: 100px;
- margin-left: auto;
- margin-right: auto;
- margin-top: 0;
- margin-bottom: 0;
- display: block;
- font-size: 12px;
- }
- div.HRDrawer {
- height: 5px;
- width: 100%;
- margin: 0;
- background-color: $complement-color;
- margin: 0;
- padding: 0;
- border: 0;
- display: block;
- }
- .mini_tabs a {
- text-decoration: none;
- font-weight:bold;
- color: #ccc;
- background-color:#333;
- padding-left: 1em;
- padding-right: 1em;
- padding-bottom: 0.25em;
- }
- .mini_tabs a.selected {
- color: #fff;
- background-color: $complement-color;
- padding-top: 0.25em;
- }
- .mini_tabs ul {
- margin: -10px;
- }
- .mini_tabs ul li {
- float: right;
- list-style: none;
- nopadding-left: 1em;
- nopadding-right: 1em;
- margin-top: 0;
- }
- .mandatory {
- border: 1px solid #f00;
- }
- /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
- table.listResults tr.odd td.truncated, table.listResults tr td.truncated, .wizContainer table.listResults tr.odd td.truncated, .wizContainer table.listResults tr td.truncated {
- background: url(../images/truncated.png?v=#{$version}) bottom repeat-x;
- }
- /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
- table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even td.truncated {
- background: #f9f9f1 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
- }
- /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
- table.listResults tr.even td.hover.truncated, , .wizContainer table.listResults tr.even td.hover.truncated {
- background: #fdf5d0 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
- }
- /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
- 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 {
- background: #fdf5d0 url(../images/truncated.png?v=#{$version}) bottom repeat-x;
- }
- table.listResults.truncated {
- border-bottom: 0;
- padding-bottom: 0;
- }
- tr.csv_row0 td {
- padding-top:5px;
- padding-bottom:5px;
- padding-left:10px;
- padding-right:10px;
- background: #fff;
- border-left: #000 1px solid;
-
- }
- tr.csv_row1 td {
- padding-top:5px;
- padding-bottom:5px;
- padding-left:10px;
- padding-right:10px;
- background: #f9f9f1;
- border-left: #000 1px solid;
-
- }
- tr.csv_row1 th, tr.csv_row0 th {
- padding-top:5px;
- padding-bottom:5px;
- padding-left:10px;
- padding-right:10px;
- border-left: #000 1px solid;
-
- }
- td.cell_modified {
- font-weight: bold;
- color: #000;
- }
- td.cell_error {
- font-weight: bold;
- color: #D81515;
- }
- table.transparent, table.transparent td {
- background: transparent;
- }
- p.page-header {
- color:$complement-color;
- font-weight: bold;
- font-size: 12pt;
- font-family: Verdana, Arial, Helvetica, Sans-Serif
- }
- td.dashboard {
- vertical-align:top;
- border: 1px solid #ccc;
- padding: 0.5em;
- width: 50%;
- }
- .white {
- background-color: #fff;
- }
- /*** New Lacanau layout ***/
- .ui-layout-pane { /* all 'panes' */
- overflow: auto;
- }
- .ui-layout-resizer { /* all 'resizer-bars' */
- background: #f1f1f1;
- }
- .ui-layout-toggler { /* all 'toggler-buttons' */
- background: #AAA;
- }
- div#top-left {
- width: 28px;
- height: 70px;
- background: $frame-background-color;
- float:left;
- }
- div#header-logo {
- width: 100%;
- height: 70px;
- background: $frame-background-color;
- }
- .ui-layout-pane-west {
- background: $frame-background-color;
- }
- div#right {
- min-width: 260px;
- }
- div#menu {
- width: 100%;
- overflow: auto;
- }
- .header-menu {
- padding-left: 24px;
- padding-right: 8px;
- padding-bottom: 24px;
- background: transparent;
- }
- div#inner_menu {
- padding-left: 24px;
- padding-right: 8px;
- background: transparent;
- }
- div#logo {
- height: 70px;
- nowidth: 100%;
- text-align: center;
- }
- div#logo div {
- height: 88px;
- width: 244px;
- background: url(../images/itop-logo-2.png?v=#{$version}) left no-repeat;
- }
- #left-pane .ui-layout-north {
- overflow: hidden;
- }
- #top-bar {
- background: $frame-background-color;
- text-align: right;
- }
- .app-banner {
- }
- .app-message {
- float: left;
- margin-top: 2px;
- margin-right: 4px;
- padding: 6px 9px;
- background-color: $highlight-color;
- color: white;
- border-radius: 6px;
- text-align: left;
- }
- .app-message-icon {
- margin-right: 5px;
- }
- .app-message-body {
- }
- .fa-sm {
- font-size: 0.66em;
- }
- .object-details-header {
- margin-top: 7px;
- margin-bottom: 7px;
- }
- .object-icon {
- display: table-cell;
- vertical-align: middle;
- padding-left: 10px;
- padding-right: 10px;
- }
- .object-infos {
- display: table-cell;
- vertical-align: middle;
- }
- .object-name {
- margin-top: 0px;
- margin-bottom: 0px;
- }
- .tags {
- margin-top: 5px;
- }
- .tag {
- font-size: 10px;
- font-weight: initial;
- display: inline-block;
- color:white;
- background-color:#555;
- padding: 3px 6px;
- -webkit-border-radius:4px;
- -moz-border-radius:4px;
- border-radius:4px;
- }
- .text-danger {
- color: red;
- }
- #global-search {
- height: 55px;
- float: right;
- text-align: right;
- overflow-y: hidden;
- }
- #global-search table, #global-search tr td, #global-search tr {
- padding: 0;
- border: 0;
- height: 55px;
- margin: 0;
- background: transparent;
- overflow-y: hidden;
- vertical-align: middle;
- }
- #global-search-area {
- line-height: 55px;
- }
- #global-search-input {
- vertical-align: middle;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- border-radius: 6px;
- border: 1px #CCC solid;
- height: 18px;
- width: 180px;
- padding: 3px;
- background: #fff;
- display: inline-block;
- }
- #global-search-image {
- vertical-align: middle;
- background: url(../images/search.png?v=#{$version}) center center no-repeat;
- display:inline-block;
- width: 28px;
- height: 30px;
- margin-left: -8px;
- cursor: pointer;
- }
- #help-link img {
- padding: 0;
- border: 0;
- }
- #help-link {
- padding: 0;
- border: 0;
- background: transparent;
- margin-left: 15px;
- margin-right: 10px;
- }
- div.icon {
- width: 20px;
- height: 20px;
- margin: 2px;
- float: right;
- }
- span.ui-icon {
- float:left;
- margin:0 2px;
- }
- .ui-layout-button-pin-down {
- background: url(../images/splitter-bkg.png?v=#{$version}) transparent;
- width: 16px;
- background-position: -144px -144px;
- }
- .ui-layout-resizer-west-open {
- background-color: $frame-background-color;
- width: 8px;
- }
- div.footer img {
- border: 0;
- margin-bottom: 5px;
- margin-top: 5px;
- }
- div.footer{
- text-align:center;
- }
- #SearchResultsToAdd table.listResults tbody {
- height: 300px;
- overflow-y: auto;
- }
- tr.row_unchanged td {
- border-bottom: 1px #ccc solid;
- padding: 2px;
- }
- .wizContainer table tr.row_error td {
- border-bottom: 1px #ccc solid;
- background-color: #fdd;
- padding: 2px;
- }
- tr.row_modified td {
- border-bottom: 1px #ccc solid;
- padding: 2px;
- }
- tr.row_added td {
- border-bottom: 1px #ccc solid;
- padding: 2px;
- }
- a.truncated {
- cursor: pointer;
- }
- .org_combo
- {
- font-size:x-small;
- width: auto;
- max-width: 200px;
- }
- span.form_validation {
- width:24px;
- text-align:center;
- }
- .notification {
- border: 1px solid #c33;
- background-color: #fee;
- padding: 0.5em;
- margin: 0.5em;
- text-align:center;
- width: 95%;
- -moz-border-radius: 0.5em;
- }
- .wiki_broken_link {
- text-decoration: line-through;
- }
- .synoptics, .synoptics tr td {
- background: transparent;
- padding:10px;
- font-size:1em;
- vertical-align:middle;
- color:#fff;
- text-align:center;
- }
- .synoptics tr td.arrow {
- color:#333;
- border-top: 1px dashed #333;
- width:100px;
- }
- .synoptics tr.synoptics_header td {
- color:#000; font-size:1em;
- vertical-align:middle;
- text-align:center;
- }
- .mono_value {
- display: inline-block;
- background-color: #3c3;
- color: #fff;
- font-weight:bold;
- padding: 3px;
- padding-left: 5px;
- padding-right: 5px;
- margin-left:3px;
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- border-radius: 10px;
- }
- .multi_values {
- display: inline-block;
- background-color: #c33;
- color: #fff;
- font-weight:bold;
- padding: 3px;
- padding-left: 5px;
- padding-right: 5px;
- margin-left:3px;
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- border-radius: 10px;
- }
- .caselog {
- overflow-x: hidden;
- display: block;
- overflow-y: auto;
- border: 1px #ddd solid;
- font-family: Tahoma, Verdana, Arial, Helvetica;
- font-size: 12px;
- }
- .caselog_input_header {
- padding-top:3px;
- padding-bottom:3px;
- border-top:1px solid #fff;
- background: #ddd;
- width:100%;
- height: 21px;
- }
- .caselog_input_header:empty {
- display: none;
- }
- .editor_magnifier{
- /* !important so it overrides the .cke_reset_all style */
- background-position: center center !important;
- background-repeat: no-repeat !important;
- background-size: 100% !important;
- }
- .editor_magnifier:hover {
- background-color: #CCC;
- }
- .caselog_header {
- padding:3px;
- border-top:1px solid #fff;
- background: #ddd url(../images/plus.gif) left no-repeat;
- padding-left: 16px;
- cursor: pointer;
- width:100%;
- }
- .caselog_header.open {
- background: #ddd url(../images/minus.gif) left no-repeat;
- }
- .caselog_entry {
- padding:3px;
- padding-left: 16px;
- border-bottom:1px #999 solid;
- margin-left:0;
- margin-right:0;
- white-space: pre-wrap; /* css-3 */
- white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
- white-space: -pre-wrap; /* Opera 4-6 */
- white-space: -o-pre-wrap; /* Opera 7 */
- word-wrap: break-word; /* Internet Explorer 5.5+, CSS3 */
- }
- .caselog_entry_html p, .HTML p {
- margin-top: 0.25em;
- margin-bottom: 0.25em;
- }
- .details {
- border-collapse: collapse;
- noborder-bottom: 2px #fff solid;
- nowidth:100%;
- * {
- box-sizing: border-box;
- }
- }
- fieldset .details>.field_container {
- background: transparent;
- border: 0;
- }
- .field_container {
- display: table;
- width: 100%;
- margin-bottom: 5px;
- border-bottom: 2px #ddd solid;
- box-sizing: border-box;
- &:last-child {
- margin-bottom: 0px;
- }
- &.field_large{
- display: inherit;
- /* .field_label, .field_data */
- > div {
- display: inherit;
- &.field_label{
- width: inherit;
- margin-bottom: 5px;
- }
- /* .field_value, .field_comments, .field_infos */
- > div {
- }
- }
- }
- * {
- box-sizing: border-box;
- }
- /* .field_label, .field_data */
- > div {
- display: table-cell;
- vertical-align: top;
- &.field_label {
- min-width: 100px;
- max-width: 145px;
- width: 30%;
- padding-right: 10px;
- > label,span {
- color: #000000;
- font-weight:bold;
- }
- }
- &.field_data {
- display: table;
- width: 100%;
- margin-bottom: 5px;
- }
- /* .field_value, .field_comments, .field_infos */
- > div {
- display: table-cell;
- width: auto;
- &.field_comments,
- &.field_infos{
- width: 50px;
- }
- &.field_value{
- .attribute-edit{
- display: table;
- width: 100%;
- /* TODO: Refactor so status icon show over mandatory icon */
- .form_validation, .field_status{
- display: table-cell;
- width: 20px;
- padding-left: 0.4em;
- vertical-align: middle;
- }
- .field_input_zone{
- width: 100%; /* auto; */
- &.field_input_string,
- &.field_input_password{
- > select, input{
- width: 100%;
- }
- }
- &.field_input_onewaypassword{
- display: table-cell;
- width: auto;
- > *{
- display: block;
- width: 100%;
- }
- > span{
- margin-bottom: 3px;
- }
- }
- &.field_input_date,
- &.field_input_datetime{
- display: table;
- width: 100%;
- > input {
- display: table-cell;
- width: 100%;
- }
- > span {
- display: table-cell;
- width: 20px;
- padding-left: 0.4em;
- vertical-align: middle;
- > img {
- width: 20px;
- cursor: pointer;
- }
- }
- }
- &.field_input_text{
- border: none;
- .f_i_text_header{
- /* Inspired by .cke_top */
- padding: 6px 8px 6px;
- white-space: normal;
- border-bottom: 1px solid #fff;
- background: #f2f2f2;
- .fullscreen_button{
- display: block;
- width: 15px;
- height: 15px;
- border: 1px #A6A6A6 solid;
- cursor: pointer;
- background-image: url('../images/full-screen.png');
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 98%;
- }
- .fullscreen_button:hover,
- .fullscreen_button:focus{
- background-color: #CCCCCC;
- }
- }
- textarea{
- /* Size for default display */
- width: 100%;
- height: 100%;
- padding: 5px 10px;
- border: none;
- resize: none;
- }
- &.fullscreen{
- z-index: 100;
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- textarea{
- /* Size set again here to override resize value when in fullscreen */
- width: 100% !important;
- height: 100% !important;
- }
- .fullscreen_button{
- width: 22px;
- height: 22px;
- background-color: #CCCCCC;
- }
- }
- }
- &.field_input_html{
- // Nothing
- }
- &.field_input_document{
- > input{
- width: 100%;
- }
- > span {
- display: inline-block;
- margin-bottom: 2px;
- }
- }
- &.field_input_image{
- input{
- width: 100%;
- }
- }
- &.field_input_extkey{
- display: table;
- width: 100%;
- > .field_select_wrapper{
- display: table-cell;
- width: auto;
- > select {
- width: 100%;
- }
- }
- > .field_autocomplete{
- display: table-cell;
- width: 100%;
- }
- > .field_input_btn{
- display: table-cell;
- width: 25px;
- padding-left: 0.4em;
- > img {
- max-width: 20px;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- /* This is extracted from the ".details > .field_container ..." because of the fullscreen option (element is moved at the end of the body */
- .field_input_text{
- border: none;
- .f_i_text_header{
- /* Inspired by .cke_top */
- padding: 6px 8px 6px;
- white-space: normal;
- border-bottom: 1px solid #fff;
- background: #f2f2f2;
- .fullscreen_button{
- display: block;
- width: 15px;
- height: 15px;
- border: 1px #A6A6A6 solid;
- cursor: pointer;
- background-image: url('../images/full-screen.png');
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 98%;
- }
- .fullscreen_button:hover,
- .fullscreen_button:focus{
- background-color: #CCCCCC;
- }
- }
- textarea{
- /* Size for default display */
- width: 100%;
- height: 100%;
- margin: 0px;
- padding: 5px 10px;
- border: none;
- resize: none;
- }
- &.fullscreen{
- z-index: 100;
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- textarea{
- /* Size set again here to override resize value when in fullscreen */
- width: 100% !important;
- height: 100% !important;
- }
- .fullscreen_button{
- width: 22px;
- height: 22px;
- background-color: #CCCCCC;
- }
- }
- }
- #SiloSelection{
- padding-top: 3px;
- padding-right: 30px;
- text-align: left;
- *{
- box-sizing: border-box;
- vertical-align: middle;
- }
- .field_input_extkey{
- display: table;
- width: 100%;
- .field_select_wrapper{
- display: table-cell;
- width: 100%;
- > select{
- width: 100%;
- max-width: initial;
- }
- }
- .field_input_btn{
- display: table-cell;
- width: 20px;
- margin-left: 0.4em;
- }
- }
- }
- .ac_dlg_loading {
- background: white url('../images/indicator.gif') right center no-repeat;
- }
- table.pagination {
- display:inline-block;
- }
- table.pagination tr td {
- padding: 3px;
- }
- .pagination_container {
- padding-left: 3px;
- }
- .pager p {
- margin-top: 0;
- margin-bottom: 0;
- }
- .pager td span {
- min-width: 20px;
- padding-left: 2px;
- padding-right: 2px;
- display:inline-block;
- text-align: center;
- cursor: pointer;
- }
- .pager td span.curr_page {
- color: #fff;
- background: #999;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- }
- img.prev, img.first, img.next, img.last {
- cursor: pointer;
- }
- div.actions_button {
- float:right;
- background: $highlight-color url("../images/actions_left.png?v=#{$version}") no-repeat scroll left top;
- padding-left: 5px;
- margin-top: 0;
- margin-right: 10px;
- height:19px;
- vertical-align: middle;
- }
- div.actions_button a, .actions_button a:hover, .actions_button a:visited {
- background: $highlight-color url(../images/actions_bkg.png?v=#{$version}) no-repeat scroll right top;
- color:#fff;
- padding-right: 8px;
- cursor:pointer;
- font-family: Tahoma,sans-serif;
- font-size: 11px;
- font-weight: bold;
- padding-left: 4px;
- text-decoration: none;
- height:19px;
- line-height: 17px;
- display: block;
- }
- select#org_id {
- max-width: 90%;
- }
- /*********** Dashboards ***********/
- .itop-dashboard {
- background-color: #fff;
- }
- .itop-dashboard a {
- cursor: not-allowed;
- }
- .dragHover {
- background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=#{$version});
- }
- .edit_mode .dashlet {
- background: url(./ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=#{$version});
- padding: 5px;
- margin:0;
- position:relative;
- }
- .edit_mode .dashlet-selected {
- background: $highlight-color !important;
- padding: 5px;
- margin:0;
- }
- td.layout_cell {
- height: 50px; /* min-height does not work */
- vertical-align: top;
- }
- .dashlet-content {
- background: #fff;
- margin:0;
- }
- table.prop_table {
- border-bottom: 2px solid #F9F9F1;
- padding: 1px;
- width: 100%;
- }
- .close-box {
- margin: 5px;
- width: 20px;
- height: 20px;
- position: absolute;
- top: 0;
- right: 0;
- z-index: 10;
- background: transparent url(../images/delete.png?v=#{$version}) no-repeat center;
- }
- td.prop_value {
- text-align: left;
- }
- tr.itop-property-field-modified td {
- background: #fbb;
- }
- tr.itop-property-field-modified td.hover {
- background: #f99;
- }
- td.prop_value textarea, td.prop_value input[type=text]{
- width: 98%;
- }
- td.prop_icon {
- width: 20px;
- }
- .dashlet {
- text-align:left;
- }
- .dashlet-inline {
- display: inline-block;
- }
- .dashlet-badge a.actions {
- background: none repeat scroll 0 0 transparent;
- color: #666666;
- font-size: 16px;
- text-decoration: none;
- }
- .dashlet-content .display_block {
- text-align:left;
- }
- .prop_apply .ui-icon-alert {
- display: none;
- }
- .prop_apply .ui-state-error .ui-icon-alert {
- display: block;
- }
- .ui-state-error .ui-icon-circle-check {
- display: none;
- }
- .summary-details {
- float: right;
- margin-top: 5px;
- }
- .summary-details th {
- background: none repeat scroll 0 0 $summary-details-background;
- color: #EEEEEE;
- padding: 5px;
- text-align: center;
- }
- .main_header {
- background-color: $main-header-background;
- min-height: 60px;
- width: 100%;
- }
- .main_header h1 {
- color: $complement-color;
- line-height: 16px;
- margin-bottom: 0;
- margin-top: 0;
- padding-bottom: 10px;
- padding-top: 10px;
- }
- .main_header img {
- margin-top: 10px;
- margin-right: 10px;
- float:left;
- }
- a.summary, a.summary:hover {
- background: none repeat scroll 0 0 transparent;
- color: #666666;
- text-decoration: none;
- padding-left: 0;
- }
- .summary-details td {
- background: none repeat scroll 0 0 transparent;
- padding: 5px;
- text-align: center;
- }
- #DashboardMenu > ul > li {
- list-style: none;
- vertical-align: middle;
- margin: 0;
- padding: 0;
- cursor: pointer;
- }
- #DashboardMenu > ul {
- list-style: none;
- vertical-align: middle;
- margin: 0;
- padding: 0;
- height: 25px;
- }
- #DashboardMenu li a {
- display: block;
- padding: 5px 12px;
- text-decoration: none;
- color: #000;
- font-weight: bold;
- text-align: left;
- white-space: nowrap;
- background: #fff;
- }
- #DashboardMenu li span {
- display: block;
- padding: 5px 12px;
- text-decoration: none;
- color: #000;
- white-space: nowrap;
- background: #fff;
- }
- #DashboardMenu li {
- list-style: none;
- }
- #DashboardMenu li a:hover {
- background: #1A4473;
- }
- #DashboardMenu ul > li > ul
- {
- border: 1px solid black;
- background: #fff;
- }
-
- #DashboardMenu li > ul
- { margin: 0;
- padding: 0;
- position: absolute;
- display: none;
- border-top: 1px solid white;
- z-index: 999;
- }
- #DashboardMenu li ul li a:hover{
- background: $popup-menu-highlight-color;
- color: $popup-menu-text-higlight-color;
- font-weight: bold;
- list-style: none;
- }
- .sortable_field_list {
- display: inline-block;
- width: 250px;
- height: 150px;
- border: 1px #333 solid;
- overflow: auto;
- padding-left: 0;
- margin: 0;
- }
- .sortable_field_list li {
- list-style: none;
- font-size: 11px;
- }
- .sort_order {
- display: inline-block;
- width: 16px;
- height: 12px;
- }
- .sort_none {
- background: url(../images/bg.gif) no-repeat center;
- }
- .sort_asc {
- background: url(../images/desc.gif) no-repeat center;
- }
- .sort_desc {
- background: url(../images/asc.gif) no-repeat center;
- }
- .sort_hidden {
- display: none;
- }
- .sortable_field_list > li.selected {
- background: #F6A828;
- }
- .itop-deleted-object {
- text-decoration: line-through;
- }
- .header_message {
- padding: 1em;
- font-size: 10pt;
- background: #fff;
- border: 1px solid #999;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- margin-bottom: 10px;
- }
- .header_message {
- padding: 1em;
- font-size: 10pt;
- background: #fff;
- border: 1px solid #999;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- margin-bottom: 10px;
- }
- .message_info {
- border: 1px solid #993;
- background: url(../images/info-mini.png?v=#{$version}) 1em 1em no-repeat #ffc;
- padding-left: 3em;
- }
- .message_ok {
- border: 1px solid #393;
- background: url(../images/ok.png?v=#{$version}) 1em 1em no-repeat #cfc;
- padding-left: 3em;
- }
- .message_error {
- border: 1px solid #933;
- background: url(../images/error.png?v=#{$version}) 1em 1em no-repeat #fcc;
- padding-left: 3em;
- }
- .fg-menu a img {
- border: 0;
- }
- div.ui-dialog-header {
- padding-bottom: 10px;
- padding-top: 7px;
- }
- .form_field_error {
- border: 1px solid #933;
- background: #fcc;
- }
- .simple-graph, .graph_config {
- background: #fff;
- }
- .graph_config {
- padding: 0.25em;
- }
- .graph_config button.ui-widget {
- font-size: 12px;
- }
- .ui-tooltip, .arrow:after {
- background: $frame-background-color;
- border: 1px solid $grey-color;
- }
- .ui-tooltip {
- padding: 10px 10px;
- box-shadow: 0 0 7px black;
- max-width: 350px;
- overflow: hidden;
- }
- .ui-tooltip .arrow {
- width: 70px;
- height: 16px;
- overflow: hidden;
- position: absolute;
- left: 50%;
- margin-left: -35px;
- bottom: -16px;
- }
- .ui-tooltip .arrow.top {
- top: -16px;
- bottom: auto;
- }
- .ui-tooltip .arrow.left {
- left: 20%;
- }
- .ui-tooltip .arrow:after {
- content: "";
- position: absolute;
- left: 20px;
- top: -20px;
- width: 25px;
- height: 25px;
- box-shadow: 6px 5px 9px -9px black;
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .ui-tooltip .arrow.top:after {
- bottom: -20px;
- top: auto;
- }
- .ui-tooltip .ui-tooltip-content{
- overflow-x: auto;
- }
- table.export_parameters td {
- padding-right: 2em;
- }
- .table_preview > table {
- border-collapse: collapse;
- max-height: 150px;
- overflow: auto;
- display: block;
- }
- .table_preview > table > thead > tr > th, .table_preview > table > tbody > tr > td {
- border: 1px $grey-color solid;
- min-height: 1em;
- padding-left: 0.25em;
- padding-right: 0.25em;
- font-size: 10pt;
- }
- .table_preview > table > tbody > tr > td {
- vertical-align: top;
- }
- .table_preview .drag-handle {
- cursor: move;
- }
- .table_preview div.text-preview {
- white-space: pre-wrap;
- }
- /* Format for the PDF output */
- .table_preview .view-image {
- // Counteract the forced dimensions (usefull for displaying in the details view)
- width: inherit !important;
- height: inherit !important;
- text-align: center;
- img {
- max-width: 48px !important;
- max-height: 48px !important;
- display: inline-block;
- }
- }
- .graph_zoom {
- display: inline-block;
- float: right;
- margin-right: 2em;
- }
- .graph_zoom_slider {
- display: inline-block;
- width: 10em;
- }
- .graph_zoom_plus, .graph_zoom_minus {
- display: inline-block;
- margin-left: 1em;
- margin-right: 1em;
- }
- div.explain-printable {
- border: 5px solid $complement-color;
- background: $complement-light;
- color: #000;
- padding: 10px;
- margin: 0;
- font-size: 12px;
- }
- .hideable-chapter {
- cursor: pointer;
- }
- #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span {
- padding-left: 20px;
- background: url(../images/eye-open-555.png?v=#{$version}) 2px center no-repeat;
- }
- #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span {
- text-decoration: line-through;
- background: url(../images/eye-closed-555.png?v=#{$version}) 2px center no-repeat;
- }
- .printable-version legend {
- padding-left: 26px;
- background: $complement-color url(../images/eye-open-fff.png?v=#{$version}) 8px center no-repeat;
- }
- .printable-version .strikethrough legend {
- background: $complement-color url(../images/eye-closed-fff.png?v=#{$version}) 8px center no-repeat;
- }
- .printable-version fieldset.strikethrough span {
- display: none;
- }
- h2.printable-tab-title {
- border-bottom: 2px solid;
- }
- .strikethrough {
- text-decoration: line-through;
- }
- select.multiselect {
- max-width: 150px;
- }
- span.refresh-button {
- display: inline-block;
- width: 21px;
- height: 18px;
- cursor: pointer;
- background: transparent url(../images/refresh-fff.png?v=#{$version}) left center no-repeat;
- }
- .case-log-history-entry {
- display: block;
- }
- .case-log-history-entry-end {
- display: none;
- }
- .expanded .case-log-history-entry-end {
- display: inline;
- }
- .case-log-history-entry-more {
- display: inline;
- }
- .expanded .case-log-history-entry-more {
- display: none;
- }
- .case-log-history-entry .case-log-history-entry-toggle {
- display: inline-block;
- float: none;
- pointer: cursor;
- vertical-align: bottom;
- }
- .printable-tab .case-log-history-entry-end {
- display: inline;
- }
- .printable-tab .case-log-history-entry-more {
- display: none;
- }
- .printable-tab .case-log-history-entry .case-log-history-entry-toggle {
- display: none;
- }
- .history_entry {
- position: relative !important;
- max-width: 100%;
- }
- .history_entry_truncated {
- max-height: 7em;
- overflow: hidden;
- }
- .history_truncated_toggler {
- position: absolute !important;
- bottom: 0;
- right: 0;
- display: block;
- cursor: pointer;
- width: 16px;
- height: 16px;
- background-image: url(ui-lightness/images/ui-icons_222222_256x240.png);
- background-position: -16px -192px;
- }
- .history_entry_truncated .history_truncated_toggler {
- background-position: 0 -192px;
- }
- #top-bar-table {
- width: 100%;
- padding-left: 5px;
- $top-button-width: 40px;
- $top-button-heigth: 55px;
- $top-button-spacer: 35px;
- #open-left-pane {
- text-align: center;
- width: $top-button-width !important;
- cursor: pointer;
- }
- #go-home {
- text-align: center;
- width: $top-button-width !important;
- a {
- text-decoration: none;
- color: #555;
- font-size: 9pt;
- padding: 0;
- background: none;
- // Make the whole cell clickable
- display: inline-block;
- line-height: $top-button-heigth;
- width: 100%;
- }
- }
- .top-bar-spacer{
- width: $top-button-spacer !important;
- }
- #top-bar-table-search{
- min-width: 370px;
- }
- }
- #itop-breadcrumb{
- overflow: hidden;
- float: left;
- background: $frame-background-color;
- .breadcrumb-item{
- float: left;
- margin: 3px 22px 2px 0px;
- .icon img{
- height: 15px;
- width: auto;
- margin-right: 5px;
- -webkit-filter: grayscale(100%);
- filter: grayscale(100%);
- filter: gray;
- 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");
- // IE has no filter option: at least, have some effect when hovering...
- opacity: 0.5;
- }
- a{
- text-decoration: none;
- color: #555;
- font-size: 9pt;
- padding: 0;
- background: none;
- &:hover .icon img{
- -webkit-filter: none;
- filter: none;
- opacity: 1;
- }
- span.truncate
- {
- // Ellipsis
- max-width: 200px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: inline-block;
- }
- &:hover{
- text-decoration: none;
- color: $highlight-color;
- }
- &::after{
- content:'';
- position: absolute;
- background-image: url(../images/breadcrumb-separator.png?v=#{$version});
- background-repeat: no-repeat;
- width: 8px;
- height: 16px;
- margin-left: 5px;
- }
- }
- &:last-child a::after{
- display: none;
- }
- &.breadcrumb-current{
- text-decoration: none;
- color: #555;
- font-size: 9pt;
- padding: 0;
- background: none;
- span.truncate
- {
- // Ellipsis
- max-width: 200px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: inline-block;
- }
- }
- }
- }
- .ui-datepicker-buttonpane, .ui-timepicker-div {
- font-size: 9pt;
- font-family: Tahoma, Verdana, Arial, Helvetica;
- }
- .date_format_tooltip td {
- padding: 0.25em;
- }
- #setup {
- .module-selection-banner img {
- max-height: 48px;
- }
- .module-selection-body {
- height: 28em;
- overflow: auto;
- border: #ccc 1px solid;
- }
- }
- .mfp-close {
- cursor: pointer !important;
- }
- .qtip-content {
- font-size: 12px;
- }
- .qtip-content p:first-child {
- margin-top: 0px;
- }
- .qtip-content p:last-child {
- margin-bottom: 0px;
- }
- .synchro-source {
- }
- .synchro-source-title {
- font-weight: bolder;
- }
- .synchro-source-description {
- font-size: smaller;
- margin-top: 3px;
- margin-bottom: 1px;
- }
- .object-ref.archived {
- }
- .object-ref-icon.fa {
- color: $highlight-color;
- font-size: smaller;
- vertical-align: 1px;
- margin-right: 1px;
- }
- .object-ref-icon-disabled.fa {
- color: $grey-color;
- font-size: smaller;
- margin-right: 1px;
- }
- .object-ref-link {
- background: none;
- }
- .extension-source {
- display:inline-block;
- background-color: $grey-color;
- padding:3px;
- font-size:10px;
- color:#fff;
- border-radius: 4px;
- }
|