base.css 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139
  1. @charset "UTF-8";
  2. /*
  3. * These theme uses default variables at ../_variables.scss
  4. */
  5. /*
  6. * General
  7. */
  8. /*
  9. * Sidebar
  10. */
  11. /*
  12. * Top
  13. */
  14. /*
  15. * Content
  16. */
  17. /*
  18. * Buttons
  19. */
  20. /*
  21. * Inputs
  22. */
  23. /*
  24. * Messages
  25. */
  26. /*
  27. * Login
  28. */
  29. /*
  30. * jQuery UI
  31. */
  32. .hidden {
  33. display: none; }
  34. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  35. margin: 0;
  36. padding: 0;
  37. list-style: none; }
  38. .fl {
  39. float: left; }
  40. .fr {
  41. float: right; }
  42. .cf:before, .cf:after {
  43. content: "";
  44. display: table; }
  45. .cf:after {
  46. clear: both; }
  47. .p10 {
  48. padding: 10px; }
  49. .p20 {
  50. padding: 20px; }
  51. .p30 {
  52. padding: 30px; }
  53. .p40 {
  54. padding: 40px; }
  55. .p50 {
  56. padding: 50px; }
  57. .p60 {
  58. padding: 60px; }
  59. .p70 {
  60. padding: 70px; }
  61. .p80 {
  62. padding: 80px; }
  63. .pt10 {
  64. padding-top: 10px; }
  65. .pt20 {
  66. padding-top: 20px; }
  67. .pt30 {
  68. padding-top: 30px; }
  69. .pt40 {
  70. padding-top: 40px; }
  71. .pt50 {
  72. padding-top: 50px; }
  73. .pt60 {
  74. padding-top: 60px; }
  75. .pt70 {
  76. padding-top: 70px; }
  77. .pt80 {
  78. padding-top: 80px; }
  79. .pr10 {
  80. padding-right: 10px; }
  81. .pr20 {
  82. padding-right: 20px; }
  83. .pr30 {
  84. padding-right: 30px; }
  85. .pr40 {
  86. padding-right: 40px; }
  87. .pr50 {
  88. padding-right: 50px; }
  89. .pr60 {
  90. padding-right: 60px; }
  91. .pr70 {
  92. padding-right: 70px; }
  93. .pr80 {
  94. padding-right: 80px; }
  95. .pb10 {
  96. padding-bottom: 10px; }
  97. .pb20 {
  98. padding-bottom: 20px; }
  99. .pb30 {
  100. padding-bottom: 30px; }
  101. .pb40 {
  102. padding-bottom: 40px; }
  103. .pb50 {
  104. padding-bottom: 50px; }
  105. .pb60 {
  106. padding-bottom: 60px; }
  107. .pb70 {
  108. padding-bottom: 70px; }
  109. .pb80 {
  110. padding-bottom: 80px; }
  111. .pl10 {
  112. padding-left: 10px; }
  113. .pl20 {
  114. padding-left: 20px; }
  115. .pl30 {
  116. padding-left: 30px; }
  117. .pl40 {
  118. padding-left: 40px; }
  119. .pl50 {
  120. padding-left: 50px; }
  121. .pl60 {
  122. padding-left: 60px; }
  123. .pl70 {
  124. padding-left: 70px; }
  125. .pl80 {
  126. padding-left: 80px; }
  127. .m10 {
  128. margin: 10px; }
  129. .m20 {
  130. margin: 20px; }
  131. .m30 {
  132. margin: 30px; }
  133. .m40 {
  134. margin: 40px; }
  135. .m50 {
  136. margin: 50px; }
  137. .m60 {
  138. margin: 60px; }
  139. .m70 {
  140. margin: 70px; }
  141. .m80 {
  142. margin: 80px; }
  143. .mt10 {
  144. margin-top: 10px; }
  145. .mt20 {
  146. margin-top: 20px; }
  147. .mt30 {
  148. margin-top: 30px; }
  149. .mt40 {
  150. margin-top: 40px; }
  151. .mt50 {
  152. margin-top: 50px; }
  153. .mt60 {
  154. margin-top: 60px; }
  155. .mt70 {
  156. margin-top: 70px; }
  157. .mt80 {
  158. margin-top: 80px; }
  159. .mr10 {
  160. margin-right: 10px; }
  161. .mr20 {
  162. margin-right: 20px; }
  163. .mr30 {
  164. margin-right: 30px; }
  165. .mr40 {
  166. margin-right: 40px; }
  167. .mr50 {
  168. margin-right: 50px; }
  169. .mr60 {
  170. margin-right: 60px; }
  171. .mr70 {
  172. margin-right: 70px; }
  173. .mr80 {
  174. margin-right: 80px; }
  175. .mb10 {
  176. margin-bottom: 10px; }
  177. .mb20 {
  178. margin-bottom: 20px; }
  179. .mb30 {
  180. margin-bottom: 30px; }
  181. .mb40 {
  182. margin-bottom: 40px; }
  183. .mb50 {
  184. margin-bottom: 50px; }
  185. .mb60 {
  186. margin-bottom: 60px; }
  187. .mb70 {
  188. margin-bottom: 70px; }
  189. .mb80 {
  190. margin-bottom: 80px; }
  191. .ml10 {
  192. margin-left: 10px; }
  193. .ml20 {
  194. margin-left: 20px; }
  195. .ml30 {
  196. margin-left: 30px; }
  197. .ml40 {
  198. margin-left: 40px; }
  199. .ml50 {
  200. margin-left: 50px; }
  201. .ml60 {
  202. margin-left: 60px; }
  203. .ml70 {
  204. margin-left: 70px; }
  205. .ml80 {
  206. margin-left: 80px; }
  207. .pos_rel {
  208. position: relative; }
  209. .pos_abs {
  210. position: absolute; }
  211. .fill_width {
  212. width: 100% !important; }
  213. html, body {
  214. margin: 0;
  215. padding: 0;
  216. height: 100%; }
  217. body {
  218. color: #6f7e95;
  219. font-family: Arial, sans-serif;
  220. font-size: 14px; }
  221. body.non-scrollable {
  222. overflow: hidden; }
  223. a, a:visited, a:hover {
  224. color: #47bac1;
  225. font-weight: normal;
  226. text-decoration: none; }
  227. a:hover {
  228. color: #639af5; }
  229. .container {
  230. padding-left: 250px;
  231. height: 100%;
  232. position: relative; }
  233. .sidebar {
  234. position: fixed;
  235. width: 250px;
  236. height: 100%;
  237. top: 0;
  238. left: 0;
  239. overflow-y: auto; }
  240. .content {
  241. width: 100%;
  242. min-height: 100%;
  243. z-index: 1;
  244. box-shadow: -2px 0 6px 0 rgba(0, 0, 0, 0.25);
  245. position: relative; }
  246. #content {
  247. padding: 20px; }
  248. /*
  249. * General
  250. */
  251. /*
  252. * Sidebar
  253. */
  254. /*
  255. * Top
  256. */
  257. /*
  258. * Content
  259. */
  260. /*
  261. * Buttons
  262. */
  263. /*
  264. * Inputs
  265. */
  266. /*
  267. * Messages
  268. */
  269. /*
  270. * Login
  271. */
  272. /*
  273. * jQuery UI
  274. */
  275. .hidden {
  276. display: none; }
  277. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  278. margin: 0;
  279. padding: 0;
  280. list-style: none; }
  281. .fl {
  282. float: left; }
  283. .fr {
  284. float: right; }
  285. .cf:before, .cf:after {
  286. content: "";
  287. display: table; }
  288. .cf:after {
  289. clear: both; }
  290. .p10 {
  291. padding: 10px; }
  292. .p20 {
  293. padding: 20px; }
  294. .p30 {
  295. padding: 30px; }
  296. .p40 {
  297. padding: 40px; }
  298. .p50 {
  299. padding: 50px; }
  300. .p60 {
  301. padding: 60px; }
  302. .p70 {
  303. padding: 70px; }
  304. .p80 {
  305. padding: 80px; }
  306. .pt10 {
  307. padding-top: 10px; }
  308. .pt20 {
  309. padding-top: 20px; }
  310. .pt30 {
  311. padding-top: 30px; }
  312. .pt40 {
  313. padding-top: 40px; }
  314. .pt50 {
  315. padding-top: 50px; }
  316. .pt60 {
  317. padding-top: 60px; }
  318. .pt70 {
  319. padding-top: 70px; }
  320. .pt80 {
  321. padding-top: 80px; }
  322. .pr10 {
  323. padding-right: 10px; }
  324. .pr20 {
  325. padding-right: 20px; }
  326. .pr30 {
  327. padding-right: 30px; }
  328. .pr40 {
  329. padding-right: 40px; }
  330. .pr50 {
  331. padding-right: 50px; }
  332. .pr60 {
  333. padding-right: 60px; }
  334. .pr70 {
  335. padding-right: 70px; }
  336. .pr80 {
  337. padding-right: 80px; }
  338. .pb10 {
  339. padding-bottom: 10px; }
  340. .pb20 {
  341. padding-bottom: 20px; }
  342. .pb30 {
  343. padding-bottom: 30px; }
  344. .pb40 {
  345. padding-bottom: 40px; }
  346. .pb50 {
  347. padding-bottom: 50px; }
  348. .pb60 {
  349. padding-bottom: 60px; }
  350. .pb70 {
  351. padding-bottom: 70px; }
  352. .pb80 {
  353. padding-bottom: 80px; }
  354. .pl10 {
  355. padding-left: 10px; }
  356. .pl20 {
  357. padding-left: 20px; }
  358. .pl30 {
  359. padding-left: 30px; }
  360. .pl40 {
  361. padding-left: 40px; }
  362. .pl50 {
  363. padding-left: 50px; }
  364. .pl60 {
  365. padding-left: 60px; }
  366. .pl70 {
  367. padding-left: 70px; }
  368. .pl80 {
  369. padding-left: 80px; }
  370. .m10 {
  371. margin: 10px; }
  372. .m20 {
  373. margin: 20px; }
  374. .m30 {
  375. margin: 30px; }
  376. .m40 {
  377. margin: 40px; }
  378. .m50 {
  379. margin: 50px; }
  380. .m60 {
  381. margin: 60px; }
  382. .m70 {
  383. margin: 70px; }
  384. .m80 {
  385. margin: 80px; }
  386. .mt10 {
  387. margin-top: 10px; }
  388. .mt20 {
  389. margin-top: 20px; }
  390. .mt30 {
  391. margin-top: 30px; }
  392. .mt40 {
  393. margin-top: 40px; }
  394. .mt50 {
  395. margin-top: 50px; }
  396. .mt60 {
  397. margin-top: 60px; }
  398. .mt70 {
  399. margin-top: 70px; }
  400. .mt80 {
  401. margin-top: 80px; }
  402. .mr10 {
  403. margin-right: 10px; }
  404. .mr20 {
  405. margin-right: 20px; }
  406. .mr30 {
  407. margin-right: 30px; }
  408. .mr40 {
  409. margin-right: 40px; }
  410. .mr50 {
  411. margin-right: 50px; }
  412. .mr60 {
  413. margin-right: 60px; }
  414. .mr70 {
  415. margin-right: 70px; }
  416. .mr80 {
  417. margin-right: 80px; }
  418. .mb10 {
  419. margin-bottom: 10px; }
  420. .mb20 {
  421. margin-bottom: 20px; }
  422. .mb30 {
  423. margin-bottom: 30px; }
  424. .mb40 {
  425. margin-bottom: 40px; }
  426. .mb50 {
  427. margin-bottom: 50px; }
  428. .mb60 {
  429. margin-bottom: 60px; }
  430. .mb70 {
  431. margin-bottom: 70px; }
  432. .mb80 {
  433. margin-bottom: 80px; }
  434. .ml10 {
  435. margin-left: 10px; }
  436. .ml20 {
  437. margin-left: 20px; }
  438. .ml30 {
  439. margin-left: 30px; }
  440. .ml40 {
  441. margin-left: 40px; }
  442. .ml50 {
  443. margin-left: 50px; }
  444. .ml60 {
  445. margin-left: 60px; }
  446. .ml70 {
  447. margin-left: 70px; }
  448. .ml80 {
  449. margin-left: 80px; }
  450. .pos_rel {
  451. position: relative; }
  452. .pos_abs {
  453. position: absolute; }
  454. .fill_width {
  455. width: 100% !important; }
  456. .table, #changelist table, table#change-history {
  457. background: #fff;
  458. border-collapse: collapse;
  459. border-radius: 4px;
  460. margin-bottom: 2px;
  461. overflow-x: auto;
  462. width: 100%; }
  463. .table.helper, #changelist table.helper, table.helper#change-history {
  464. display: none;
  465. position: fixed;
  466. z-index: 2;
  467. top: 0;
  468. right: 20px;
  469. width: auto;
  470. border-radius: 0;
  471. box-shadow: none; }
  472. .table.helper thead th, #changelist table.helper thead th, table.helper#change-history thead th {
  473. border-radius: 0 !important; }
  474. .table caption, #changelist table caption, table#change-history caption {
  475. border-radius: 4px;
  476. padding: 6px;
  477. text-align: left;
  478. text-transform: uppercase;
  479. font-size: 11px;
  480. font-weight: bold; }
  481. .table caption a, #changelist table caption a, table#change-history caption a {
  482. color: #6f7e95;
  483. font-size: 11px;
  484. font-weight: bold; }
  485. .table thead th, #changelist table thead th, table#change-history thead th {
  486. background: #59677e;
  487. padding: 8px;
  488. font-size: 12px;
  489. font-weight: normal;
  490. text-align: left;
  491. white-space: nowrap; }
  492. .table thead th, #changelist table thead th, table#change-history thead th, .table thead th a, #changelist table thead th a, table#change-history thead th a, .table thead th a:visited, #changelist table thead th a:visited, table#change-history thead th a:visited, .table thead th a:hover, #changelist table thead th a:hover, table#change-history thead th a:hover {
  493. color: #fff;
  494. text-decoration: none;
  495. text-transform: uppercase; }
  496. .table thead th:first-child, #changelist table thead th:first-child, table#change-history thead th:first-child {
  497. border-radius: 4px 0 0 0; }
  498. .table thead th:last-child, #changelist table thead th:last-child, table#change-history thead th:last-child {
  499. border-radius: 0 4px 0 0; }
  500. .table thead th:first-child:last-child, #changelist table thead th:first-child:last-child, table#change-history thead th:first-child:last-child {
  501. border-radius: 4px 4px 0 0; }
  502. .table thead th.action-checkbox-column, #changelist table thead th.action-checkbox-column, table#change-history thead th.action-checkbox-column {
  503. width: 20px;
  504. text-align: center; }
  505. .table thead th.sorted .sortoptions, #changelist table thead th.sorted .sortoptions, table#change-history thead th.sorted .sortoptions {
  506. display: inline-block; }
  507. .table thead th.sorted .sortoptions .sortpriority, #changelist table thead th.sorted .sortoptions .sortpriority, table#change-history thead th.sorted .sortoptions .sortpriority {
  508. background: #fff;
  509. color: #6f7e95;
  510. padding: 2px 8px;
  511. margin-right: 2px;
  512. border-radius: 12px; }
  513. .table thead th.sorted .text, #changelist table thead th.sorted .text, table#change-history thead th.sorted .text {
  514. display: inline-block; }
  515. .table thead th.sorted .text:after, #changelist table thead th.sorted .text:after, table#change-history thead th.sorted .text:after {
  516. font-family: 'jet-icons';
  517. speak: none;
  518. font-style: normal;
  519. font-weight: normal;
  520. font-variant: normal;
  521. text-transform: none;
  522. line-height: 1;
  523. /* Better Font Rendering =========== */
  524. -webkit-font-smoothing: antialiased;
  525. -moz-osx-font-smoothing: grayscale;
  526. display: inline-block;
  527. color: #fff;
  528. font-size: 13px;
  529. font-weight: bold;
  530. margin-left: 4px; }
  531. .table thead th.sorted.ascending .text:after, #changelist table thead th.sorted.ascending .text:after, table#change-history thead th.sorted.ascending .text:after {
  532. content: ""; }
  533. .table thead th.sorted.descending .text:after, #changelist table thead th.sorted.descending .text:after, table#change-history thead th.sorted.descending .text:after {
  534. content: ""; }
  535. .table tbody tr, #changelist table tbody tr, table#change-history tbody tr {
  536. border-bottom: 1px solid #f4f4f4; }
  537. .table tbody tr:last-child, #changelist table tbody tr:last-child, table#change-history tbody tr:last-child {
  538. border-bottom: 0; }
  539. .table tbody tr th, #changelist table tbody tr th, table#change-history tbody tr th {
  540. text-align: left; }
  541. .table tbody tr th, #changelist table tbody tr th, table#change-history tbody tr th, .table tbody tr td, #changelist table tbody tr td, table#change-history tbody tr td {
  542. padding: 8px;
  543. font-size: 13px; }
  544. .table tbody tr th.action-checkbox, #changelist table tbody tr th.action-checkbox, table#change-history tbody tr th.action-checkbox, .table tbody tr td.action-checkbox, #changelist table tbody tr td.action-checkbox, table#change-history tbody tr td.action-checkbox {
  545. text-align: center; }
  546. .table tbody tr th img[src$="admin/img/icon-yes.gif"], #changelist table tbody tr th img[src$="admin/img/icon-yes.gif"], table#change-history tbody tr th img[src$="admin/img/icon-yes.gif"], .table tbody tr th img[src$="admin/img/icon-no.gif"], #changelist table tbody tr th img[src$="admin/img/icon-no.gif"], table#change-history tbody tr th img[src$="admin/img/icon-no.gif"], .table tbody tr th img[src$="admin/img/icon-unknown.gif"], #changelist table tbody tr th img[src$="admin/img/icon-unknown.gif"], table#change-history tbody tr th img[src$="admin/img/icon-unknown.gif"], .table tbody tr td img[src$="admin/img/icon-yes.gif"], #changelist table tbody tr td img[src$="admin/img/icon-yes.gif"], table#change-history tbody tr td img[src$="admin/img/icon-yes.gif"], .table tbody tr td img[src$="admin/img/icon-no.gif"], #changelist table tbody tr td img[src$="admin/img/icon-no.gif"], table#change-history tbody tr td img[src$="admin/img/icon-no.gif"], .table tbody tr td img[src$="admin/img/icon-unknown.gif"], #changelist table tbody tr td img[src$="admin/img/icon-unknown.gif"], table#change-history tbody tr td img[src$="admin/img/icon-unknown.gif"] {
  547. font-family: 'jet-icons';
  548. speak: none;
  549. font-style: normal;
  550. font-weight: normal;
  551. font-variant: normal;
  552. text-transform: none;
  553. line-height: 1;
  554. /* Better Font Rendering =========== */
  555. -webkit-font-smoothing: antialiased;
  556. -moz-osx-font-smoothing: grayscale;
  557. display: inline-block;
  558. content: "";
  559. font-weight: bold; }
  560. .table tbody tr th img[src$="admin/img/icon-yes.gif"]:before, #changelist table tbody tr th img[src$="admin/img/icon-yes.gif"]:before, table#change-history tbody tr th img[src$="admin/img/icon-yes.gif"]:before, .table tbody tr td img[src$="admin/img/icon-yes.gif"]:before, #changelist table tbody tr td img[src$="admin/img/icon-yes.gif"]:before, table#change-history tbody tr td img[src$="admin/img/icon-yes.gif"]:before {
  561. content: "";
  562. color: #8ecb8e; }
  563. .table tbody tr th img[src$="admin/img/icon-no.gif"]:before, #changelist table tbody tr th img[src$="admin/img/icon-no.gif"]:before, table#change-history tbody tr th img[src$="admin/img/icon-no.gif"]:before, .table tbody tr td img[src$="admin/img/icon-no.gif"]:before, #changelist table tbody tr td img[src$="admin/img/icon-no.gif"]:before, table#change-history tbody tr td img[src$="admin/img/icon-no.gif"]:before {
  564. content: "";
  565. color: #dba4a4; }
  566. .table tbody tr th img[src$="admin/img/icon-unknown.gif"]:before, #changelist table tbody tr th img[src$="admin/img/icon-unknown.gif"]:before, table#change-history tbody tr th img[src$="admin/img/icon-unknown.gif"]:before, .table tbody tr td img[src$="admin/img/icon-unknown.gif"]:before, #changelist table tbody tr td img[src$="admin/img/icon-unknown.gif"]:before, table#change-history tbody tr td img[src$="admin/img/icon-unknown.gif"]:before {
  567. content: ""; }
  568. .table tbody tr.selected, #changelist table tbody tr.selected, table#change-history tbody tr.selected {
  569. border-color: #e5e2a5; }
  570. .table tbody tr.selected:last-child th:first-child, #changelist table tbody tr.selected:last-child th:first-child, table#change-history tbody tr.selected:last-child th:first-child, .table tbody tr.selected:last-child td:first-child, #changelist table tbody tr.selected:last-child td:first-child, table#change-history tbody tr.selected:last-child td:first-child {
  571. border-radius: 0 0 0 4px; }
  572. .table tbody tr.selected:last-child th:last-child, #changelist table tbody tr.selected:last-child th:last-child, table#change-history tbody tr.selected:last-child th:last-child, .table tbody tr.selected:last-child td:last-child, #changelist table tbody tr.selected:last-child td:last-child, table#change-history tbody tr.selected:last-child td:last-child {
  573. border-radius: 0 0 4px 0; }
  574. .table tbody tr.selected th, #changelist table tbody tr.selected th, table#change-history tbody tr.selected th, .table tbody tr.selected td, #changelist table tbody tr.selected td, table#change-history tbody tr.selected td {
  575. background-color: #fffcc0; }
  576. .table tbody tr.contrast, #changelist table tbody tr.contrast, table#change-history tbody tr.contrast {
  577. background: #f6fafc; }
  578. .table tbody tr.contrast2, #changelist table tbody tr.contrast2, table#change-history tbody tr.contrast2 {
  579. background: #59677e;
  580. color: #fff;
  581. border: 0; }
  582. .table tbody tr.contrast2 a, #changelist table tbody tr.contrast2 a, table#change-history tbody tr.contrast2 a, .table tbody tr.contrast2 a:visited, #changelist table tbody tr.contrast2 a:visited, table#change-history tbody tr.contrast2 a:visited, .table tbody tr.contrast2 a:hover, #changelist table tbody tr.contrast2 a:hover, table#change-history tbody tr.contrast2 a:hover {
  583. color: #fff; }
  584. .table tbody tr.contrast3, #changelist table tbody tr.contrast3, table#change-history tbody tr.contrast3 {
  585. background: #d0dbe6; }
  586. /*
  587. * General
  588. */
  589. /*
  590. * Sidebar
  591. */
  592. /*
  593. * Top
  594. */
  595. /*
  596. * Content
  597. */
  598. /*
  599. * Buttons
  600. */
  601. /*
  602. * Inputs
  603. */
  604. /*
  605. * Messages
  606. */
  607. /*
  608. * Login
  609. */
  610. /*
  611. * jQuery UI
  612. */
  613. .hidden {
  614. display: none; }
  615. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  616. margin: 0;
  617. padding: 0;
  618. list-style: none; }
  619. .fl {
  620. float: left; }
  621. .fr {
  622. float: right; }
  623. .cf:before, .cf:after {
  624. content: "";
  625. display: table; }
  626. .cf:after {
  627. clear: both; }
  628. .p10 {
  629. padding: 10px; }
  630. .p20 {
  631. padding: 20px; }
  632. .p30 {
  633. padding: 30px; }
  634. .p40 {
  635. padding: 40px; }
  636. .p50 {
  637. padding: 50px; }
  638. .p60 {
  639. padding: 60px; }
  640. .p70 {
  641. padding: 70px; }
  642. .p80 {
  643. padding: 80px; }
  644. .pt10 {
  645. padding-top: 10px; }
  646. .pt20 {
  647. padding-top: 20px; }
  648. .pt30 {
  649. padding-top: 30px; }
  650. .pt40 {
  651. padding-top: 40px; }
  652. .pt50 {
  653. padding-top: 50px; }
  654. .pt60 {
  655. padding-top: 60px; }
  656. .pt70 {
  657. padding-top: 70px; }
  658. .pt80 {
  659. padding-top: 80px; }
  660. .pr10 {
  661. padding-right: 10px; }
  662. .pr20 {
  663. padding-right: 20px; }
  664. .pr30 {
  665. padding-right: 30px; }
  666. .pr40 {
  667. padding-right: 40px; }
  668. .pr50 {
  669. padding-right: 50px; }
  670. .pr60 {
  671. padding-right: 60px; }
  672. .pr70 {
  673. padding-right: 70px; }
  674. .pr80 {
  675. padding-right: 80px; }
  676. .pb10 {
  677. padding-bottom: 10px; }
  678. .pb20 {
  679. padding-bottom: 20px; }
  680. .pb30 {
  681. padding-bottom: 30px; }
  682. .pb40 {
  683. padding-bottom: 40px; }
  684. .pb50 {
  685. padding-bottom: 50px; }
  686. .pb60 {
  687. padding-bottom: 60px; }
  688. .pb70 {
  689. padding-bottom: 70px; }
  690. .pb80 {
  691. padding-bottom: 80px; }
  692. .pl10 {
  693. padding-left: 10px; }
  694. .pl20 {
  695. padding-left: 20px; }
  696. .pl30 {
  697. padding-left: 30px; }
  698. .pl40 {
  699. padding-left: 40px; }
  700. .pl50 {
  701. padding-left: 50px; }
  702. .pl60 {
  703. padding-left: 60px; }
  704. .pl70 {
  705. padding-left: 70px; }
  706. .pl80 {
  707. padding-left: 80px; }
  708. .m10 {
  709. margin: 10px; }
  710. .m20 {
  711. margin: 20px; }
  712. .m30 {
  713. margin: 30px; }
  714. .m40 {
  715. margin: 40px; }
  716. .m50 {
  717. margin: 50px; }
  718. .m60 {
  719. margin: 60px; }
  720. .m70 {
  721. margin: 70px; }
  722. .m80 {
  723. margin: 80px; }
  724. .mt10 {
  725. margin-top: 10px; }
  726. .mt20 {
  727. margin-top: 20px; }
  728. .mt30 {
  729. margin-top: 30px; }
  730. .mt40 {
  731. margin-top: 40px; }
  732. .mt50 {
  733. margin-top: 50px; }
  734. .mt60 {
  735. margin-top: 60px; }
  736. .mt70 {
  737. margin-top: 70px; }
  738. .mt80 {
  739. margin-top: 80px; }
  740. .mr10 {
  741. margin-right: 10px; }
  742. .mr20 {
  743. margin-right: 20px; }
  744. .mr30 {
  745. margin-right: 30px; }
  746. .mr40 {
  747. margin-right: 40px; }
  748. .mr50 {
  749. margin-right: 50px; }
  750. .mr60 {
  751. margin-right: 60px; }
  752. .mr70 {
  753. margin-right: 70px; }
  754. .mr80 {
  755. margin-right: 80px; }
  756. .mb10 {
  757. margin-bottom: 10px; }
  758. .mb20 {
  759. margin-bottom: 20px; }
  760. .mb30 {
  761. margin-bottom: 30px; }
  762. .mb40 {
  763. margin-bottom: 40px; }
  764. .mb50 {
  765. margin-bottom: 50px; }
  766. .mb60 {
  767. margin-bottom: 60px; }
  768. .mb70 {
  769. margin-bottom: 70px; }
  770. .mb80 {
  771. margin-bottom: 80px; }
  772. .ml10 {
  773. margin-left: 10px; }
  774. .ml20 {
  775. margin-left: 20px; }
  776. .ml30 {
  777. margin-left: 30px; }
  778. .ml40 {
  779. margin-left: 40px; }
  780. .ml50 {
  781. margin-left: 50px; }
  782. .ml60 {
  783. margin-left: 60px; }
  784. .ml70 {
  785. margin-left: 70px; }
  786. .ml80 {
  787. margin-left: 80px; }
  788. .pos_rel {
  789. position: relative; }
  790. .pos_abs {
  791. position: absolute; }
  792. .fill_width {
  793. width: 100% !important; }
  794. .button-group {
  795. margin: 0;
  796. line-height: normal; }
  797. .button-group-buttons span, .button-group-buttons a {
  798. padding: 6px 10px;
  799. display: inline-block; }
  800. .button-group-buttons span:first-child, .button-group-buttons a:first-child {
  801. border-radius: 4px 0 0 4px; }
  802. .button-group-buttons span:last-child, .button-group-buttons a:last-child {
  803. border-radius: 0 4px 4px 0; }
  804. .button-group-buttons span:first-child:last-child, .button-group-buttons a:first-child:last-child {
  805. border-radius: 4px; }
  806. .button-group-buttons span {
  807. background-color: #6f7e95;
  808. color: #fff; }
  809. .button-group-buttons a, .button-group-buttons a:visited, .button-group-buttons a:hover {
  810. background-color: #d0dbe6;
  811. color: #6f7e95;
  812. text-decoration: none; }
  813. .button-group-buttons a:hover {
  814. background-color: #639af5;
  815. color: #fff; }
  816. .button-group-label {
  817. margin-right: 10px; }
  818. /*
  819. * General
  820. */
  821. /*
  822. * Sidebar
  823. */
  824. /*
  825. * Top
  826. */
  827. /*
  828. * Content
  829. */
  830. /*
  831. * Buttons
  832. */
  833. /*
  834. * Inputs
  835. */
  836. /*
  837. * Messages
  838. */
  839. /*
  840. * Login
  841. */
  842. /*
  843. * jQuery UI
  844. */
  845. .hidden {
  846. display: none; }
  847. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  848. margin: 0;
  849. padding: 0;
  850. list-style: none; }
  851. .fl {
  852. float: left; }
  853. .fr {
  854. float: right; }
  855. .cf:before, .cf:after {
  856. content: "";
  857. display: table; }
  858. .cf:after {
  859. clear: both; }
  860. .p10 {
  861. padding: 10px; }
  862. .p20 {
  863. padding: 20px; }
  864. .p30 {
  865. padding: 30px; }
  866. .p40 {
  867. padding: 40px; }
  868. .p50 {
  869. padding: 50px; }
  870. .p60 {
  871. padding: 60px; }
  872. .p70 {
  873. padding: 70px; }
  874. .p80 {
  875. padding: 80px; }
  876. .pt10 {
  877. padding-top: 10px; }
  878. .pt20 {
  879. padding-top: 20px; }
  880. .pt30 {
  881. padding-top: 30px; }
  882. .pt40 {
  883. padding-top: 40px; }
  884. .pt50 {
  885. padding-top: 50px; }
  886. .pt60 {
  887. padding-top: 60px; }
  888. .pt70 {
  889. padding-top: 70px; }
  890. .pt80 {
  891. padding-top: 80px; }
  892. .pr10 {
  893. padding-right: 10px; }
  894. .pr20 {
  895. padding-right: 20px; }
  896. .pr30 {
  897. padding-right: 30px; }
  898. .pr40 {
  899. padding-right: 40px; }
  900. .pr50 {
  901. padding-right: 50px; }
  902. .pr60 {
  903. padding-right: 60px; }
  904. .pr70 {
  905. padding-right: 70px; }
  906. .pr80 {
  907. padding-right: 80px; }
  908. .pb10 {
  909. padding-bottom: 10px; }
  910. .pb20 {
  911. padding-bottom: 20px; }
  912. .pb30 {
  913. padding-bottom: 30px; }
  914. .pb40 {
  915. padding-bottom: 40px; }
  916. .pb50 {
  917. padding-bottom: 50px; }
  918. .pb60 {
  919. padding-bottom: 60px; }
  920. .pb70 {
  921. padding-bottom: 70px; }
  922. .pb80 {
  923. padding-bottom: 80px; }
  924. .pl10 {
  925. padding-left: 10px; }
  926. .pl20 {
  927. padding-left: 20px; }
  928. .pl30 {
  929. padding-left: 30px; }
  930. .pl40 {
  931. padding-left: 40px; }
  932. .pl50 {
  933. padding-left: 50px; }
  934. .pl60 {
  935. padding-left: 60px; }
  936. .pl70 {
  937. padding-left: 70px; }
  938. .pl80 {
  939. padding-left: 80px; }
  940. .m10 {
  941. margin: 10px; }
  942. .m20 {
  943. margin: 20px; }
  944. .m30 {
  945. margin: 30px; }
  946. .m40 {
  947. margin: 40px; }
  948. .m50 {
  949. margin: 50px; }
  950. .m60 {
  951. margin: 60px; }
  952. .m70 {
  953. margin: 70px; }
  954. .m80 {
  955. margin: 80px; }
  956. .mt10 {
  957. margin-top: 10px; }
  958. .mt20 {
  959. margin-top: 20px; }
  960. .mt30 {
  961. margin-top: 30px; }
  962. .mt40 {
  963. margin-top: 40px; }
  964. .mt50 {
  965. margin-top: 50px; }
  966. .mt60 {
  967. margin-top: 60px; }
  968. .mt70 {
  969. margin-top: 70px; }
  970. .mt80 {
  971. margin-top: 80px; }
  972. .mr10 {
  973. margin-right: 10px; }
  974. .mr20 {
  975. margin-right: 20px; }
  976. .mr30 {
  977. margin-right: 30px; }
  978. .mr40 {
  979. margin-right: 40px; }
  980. .mr50 {
  981. margin-right: 50px; }
  982. .mr60 {
  983. margin-right: 60px; }
  984. .mr70 {
  985. margin-right: 70px; }
  986. .mr80 {
  987. margin-right: 80px; }
  988. .mb10 {
  989. margin-bottom: 10px; }
  990. .mb20 {
  991. margin-bottom: 20px; }
  992. .mb30 {
  993. margin-bottom: 30px; }
  994. .mb40 {
  995. margin-bottom: 40px; }
  996. .mb50 {
  997. margin-bottom: 50px; }
  998. .mb60 {
  999. margin-bottom: 60px; }
  1000. .mb70 {
  1001. margin-bottom: 70px; }
  1002. .mb80 {
  1003. margin-bottom: 80px; }
  1004. .ml10 {
  1005. margin-left: 10px; }
  1006. .ml20 {
  1007. margin-left: 20px; }
  1008. .ml30 {
  1009. margin-left: 30px; }
  1010. .ml40 {
  1011. margin-left: 40px; }
  1012. .ml50 {
  1013. margin-left: 50px; }
  1014. .ml60 {
  1015. margin-left: 60px; }
  1016. .ml70 {
  1017. margin-left: 70px; }
  1018. .ml80 {
  1019. margin-left: 80px; }
  1020. .pos_rel {
  1021. position: relative; }
  1022. .pos_abs {
  1023. position: absolute; }
  1024. .fill_width {
  1025. width: 100% !important; }
  1026. .sidebar {
  1027. background-color: #354052; }
  1028. .sidebar-menu {
  1029. margin-bottom: 32px !important; }
  1030. .sidebar-menu-wrapper {
  1031. overflow-y: auto;
  1032. height: 100%; }
  1033. .sidebar-menu-item {
  1034. padding: 20px 24px;
  1035. border-bottom: 1px solid #2b3647; }
  1036. .sidebar-menu-item:last-child {
  1037. border-bottom: 0; }
  1038. .sidebar-menu-item.no-horizontal-padding {
  1039. padding-left: 0;
  1040. padding-right: 0; }
  1041. .sidebar-menu-item-icon {
  1042. font-size: 18px;
  1043. vertical-align: middle;
  1044. margin-right: 6px;
  1045. color: #6f7e95; }
  1046. .sidebar-menu-item-link, .sidebar-menu-item-link:visited, .sidebar-menu-item-link:hover {
  1047. color: #c0cad8;
  1048. font-weight: bold;
  1049. overflow: hidden;
  1050. text-overflow: ellipsis;
  1051. white-space: nowrap;
  1052. -webkit-transition: all 0.3s;
  1053. -moz-transition: all 0.3s;
  1054. -o-transition: all 0.3s;
  1055. transition: all 0.3s; }
  1056. .sidebar-menu-item-link:hover {
  1057. color: #fff; }
  1058. .sidebar-menu-item-title {
  1059. color: #6f7e95;
  1060. text-transform: uppercase;
  1061. font-size: 11px;
  1062. font-weight: bold;
  1063. overflow: hidden;
  1064. text-overflow: ellipsis;
  1065. white-space: nowrap;
  1066. padding: 0 24px; }
  1067. .sidebar-menu-item-title-icon {
  1068. float: right;
  1069. font-size: 14px;
  1070. font-weight: bold !important;
  1071. margin-right: 14px; }
  1072. .sidebar-menu-item-title-icon, .sidebar-menu-item-title-icon:visited, .sidebar-menu-item-title-icon:hover {
  1073. color: #47bac1;
  1074. -webkit-transition: all 0.3s;
  1075. -moz-transition: all 0.3s;
  1076. -o-transition: all 0.3s;
  1077. transition: all 0.3s; }
  1078. .sidebar-menu-item-title-icon:hover {
  1079. color: #639af5; }
  1080. .sidebar-menu-item-action, .sidebar-menu-item-action:visited, .sidebar-menu-item-action:hover {
  1081. display: block;
  1082. color: #47bac1;
  1083. font-size: 11px;
  1084. text-align: center;
  1085. margin-top: 10px;
  1086. padding: 8px 0;
  1087. text-transform: uppercase;
  1088. -webkit-transition: all 0.3s;
  1089. -moz-transition: all 0.3s;
  1090. -o-transition: all 0.3s;
  1091. transition: all 0.3s; }
  1092. .sidebar-menu-item-action:hover {
  1093. color: #639af5;
  1094. background-color: #2b3647; }
  1095. .sidebar-menu-item-list:not(:empty) {
  1096. margin-top: 10px !important; }
  1097. .sidebar-menu-item-list-item.empty {
  1098. display: none; }
  1099. .sidebar-menu-item-list-item-link, .sidebar-menu-item-list-item-link:visited, .sidebar-menu-item-list-item-link:hover {
  1100. display: block;
  1101. color: #c0cad8;
  1102. overflow: hidden;
  1103. text-overflow: ellipsis;
  1104. white-space: nowrap;
  1105. padding: 8px 12px 8px 24px;
  1106. vertical-align: middle;
  1107. position: relative;
  1108. -webkit-transition: all 0.3s;
  1109. -moz-transition: all 0.3s;
  1110. -o-transition: all 0.3s;
  1111. transition: all 0.3s; }
  1112. .sidebar-menu-item-list-item-link:hover, .sidebar-menu-item-list-item-link.hovered {
  1113. color: #fff;
  1114. background-color: #2b3647; }
  1115. .sidebar-menu-item-list-item-link-remove, .sidebar-menu-item-list-item-link-remove:visited, .sidebar-menu-item-list-item-link-remove:hover {
  1116. position: relative;
  1117. float: right;
  1118. display: none;
  1119. color: #47bac1;
  1120. -webkit-transition: all 0.3s;
  1121. -moz-transition: all 0.3s;
  1122. -o-transition: all 0.3s;
  1123. transition: all 0.3s; }
  1124. .sidebar-menu-item-list-item-link-remove:hover {
  1125. color: #639af5; }
  1126. .sidebar-menu-item-list-item-link-pin, .sidebar-menu-item-list-item-link-pin:visited, .sidebar-menu-item-list-item-link-pin:hover, .sidebar-menu-item-list-item-link-unpin, .sidebar-menu-item-list-item-link-unpin:visited, .sidebar-menu-item-list-item-link-unpin:hover {
  1127. position: absolute;
  1128. display: none;
  1129. left: 4px;
  1130. font-size: 14px;
  1131. color: #47bac1;
  1132. -webkit-transition: all 0.3s;
  1133. -moz-transition: all 0.3s;
  1134. -o-transition: all 0.3s;
  1135. transition: all 0.3s; }
  1136. .sidebar-menu-item-list-item-link-pin:hover, .sidebar-menu-item-list-item-link-unpin:hover {
  1137. color: #639af5; }
  1138. .sidebar-menu-item-list-item-link:hover .sidebar-menu-item-list-item-link-remove {
  1139. display: inline-block; }
  1140. .sidebar-menu-item-list-item:not(.pinned):hover .sidebar-menu-item-list-item-link-pin {
  1141. display: inline-block; }
  1142. .sidebar-menu-item-list-item.pinned:hover .sidebar-menu-item-list-item-link-unpin {
  1143. display: inline-block; }
  1144. .sidebar-menu-item-list-item-arrow {
  1145. float: right;
  1146. color: #639af5;
  1147. font-size: 16px;
  1148. font-weight: bold !important;
  1149. margin-left: 4px; }
  1150. .sidebar-popup {
  1151. position: absolute;
  1152. top: 0;
  1153. left: 250px;
  1154. bottom: 0;
  1155. width: 250px;
  1156. color: #6f7e95;
  1157. background-color: #ecf2f6;
  1158. z-index: 3;
  1159. overflow-y: auto; }
  1160. .sidebar-popup-container {
  1161. display: none; }
  1162. .sidebar-popup-item {
  1163. display: none; }
  1164. .sidebar-popup-background {
  1165. position: absolute;
  1166. top: 0;
  1167. left: 250px;
  1168. bottom: 0;
  1169. right: 0;
  1170. background-color: #000;
  1171. opacity: 0.5;
  1172. z-index: 2; }
  1173. .sidebar-popup-title {
  1174. font-size: 12px;
  1175. font-weight: bold;
  1176. text-transform: uppercase;
  1177. padding: 20px;
  1178. overflow: hidden;
  1179. text-overflow: ellipsis;
  1180. white-space: nowrap; }
  1181. .sidebar-popup-search {
  1182. background-color: #d0dbe6;
  1183. color: #6f7e95;
  1184. border-radius: 0 !important;
  1185. width: 100%;
  1186. height: 32px;
  1187. padding: 0 !important;
  1188. text-indent: 20px;
  1189. margin-bottom: 12px !important; }
  1190. .sidebar-popup-search::-webkit-input-placeholder {
  1191. color: #d0dbe6; }
  1192. .sidebar-popup-search:-moz-placeholder {
  1193. color: #d0dbe6; }
  1194. .sidebar-popup-search::-moz-placeholder {
  1195. color: #d0dbe6; }
  1196. .sidebar-popup-search:-ms-input-placeholder {
  1197. color: #d0dbe6; }
  1198. .sidebar-popup-list-item a, .sidebar-popup-list-item a:visited, .sidebar-popup-list-item a:hover {
  1199. color: #6f7e95;
  1200. padding: 8px 20px;
  1201. display: block; }
  1202. .sidebar-popup-list-item.selected a {
  1203. background-color: #639af5;
  1204. color: #fff; }
  1205. .sidebar-copyright {
  1206. background-color: #2b3647;
  1207. height: 32px;
  1208. line-height: 32px;
  1209. position: absolute;
  1210. bottom: 0;
  1211. left: 0;
  1212. right: 0;
  1213. text-align: center;
  1214. font-size: 11px;
  1215. font-weight: bold; }
  1216. /*
  1217. * General
  1218. */
  1219. /*
  1220. * Sidebar
  1221. */
  1222. /*
  1223. * Top
  1224. */
  1225. /*
  1226. * Content
  1227. */
  1228. /*
  1229. * Buttons
  1230. */
  1231. /*
  1232. * Inputs
  1233. */
  1234. /*
  1235. * Messages
  1236. */
  1237. /*
  1238. * Login
  1239. */
  1240. /*
  1241. * jQuery UI
  1242. */
  1243. .hidden {
  1244. display: none; }
  1245. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  1246. margin: 0;
  1247. padding: 0;
  1248. list-style: none; }
  1249. .fl {
  1250. float: left; }
  1251. .fr {
  1252. float: right; }
  1253. .cf:before, .cf:after {
  1254. content: "";
  1255. display: table; }
  1256. .cf:after {
  1257. clear: both; }
  1258. .p10 {
  1259. padding: 10px; }
  1260. .p20 {
  1261. padding: 20px; }
  1262. .p30 {
  1263. padding: 30px; }
  1264. .p40 {
  1265. padding: 40px; }
  1266. .p50 {
  1267. padding: 50px; }
  1268. .p60 {
  1269. padding: 60px; }
  1270. .p70 {
  1271. padding: 70px; }
  1272. .p80 {
  1273. padding: 80px; }
  1274. .pt10 {
  1275. padding-top: 10px; }
  1276. .pt20 {
  1277. padding-top: 20px; }
  1278. .pt30 {
  1279. padding-top: 30px; }
  1280. .pt40 {
  1281. padding-top: 40px; }
  1282. .pt50 {
  1283. padding-top: 50px; }
  1284. .pt60 {
  1285. padding-top: 60px; }
  1286. .pt70 {
  1287. padding-top: 70px; }
  1288. .pt80 {
  1289. padding-top: 80px; }
  1290. .pr10 {
  1291. padding-right: 10px; }
  1292. .pr20 {
  1293. padding-right: 20px; }
  1294. .pr30 {
  1295. padding-right: 30px; }
  1296. .pr40 {
  1297. padding-right: 40px; }
  1298. .pr50 {
  1299. padding-right: 50px; }
  1300. .pr60 {
  1301. padding-right: 60px; }
  1302. .pr70 {
  1303. padding-right: 70px; }
  1304. .pr80 {
  1305. padding-right: 80px; }
  1306. .pb10 {
  1307. padding-bottom: 10px; }
  1308. .pb20 {
  1309. padding-bottom: 20px; }
  1310. .pb30 {
  1311. padding-bottom: 30px; }
  1312. .pb40 {
  1313. padding-bottom: 40px; }
  1314. .pb50 {
  1315. padding-bottom: 50px; }
  1316. .pb60 {
  1317. padding-bottom: 60px; }
  1318. .pb70 {
  1319. padding-bottom: 70px; }
  1320. .pb80 {
  1321. padding-bottom: 80px; }
  1322. .pl10 {
  1323. padding-left: 10px; }
  1324. .pl20 {
  1325. padding-left: 20px; }
  1326. .pl30 {
  1327. padding-left: 30px; }
  1328. .pl40 {
  1329. padding-left: 40px; }
  1330. .pl50 {
  1331. padding-left: 50px; }
  1332. .pl60 {
  1333. padding-left: 60px; }
  1334. .pl70 {
  1335. padding-left: 70px; }
  1336. .pl80 {
  1337. padding-left: 80px; }
  1338. .m10 {
  1339. margin: 10px; }
  1340. .m20 {
  1341. margin: 20px; }
  1342. .m30 {
  1343. margin: 30px; }
  1344. .m40 {
  1345. margin: 40px; }
  1346. .m50 {
  1347. margin: 50px; }
  1348. .m60 {
  1349. margin: 60px; }
  1350. .m70 {
  1351. margin: 70px; }
  1352. .m80 {
  1353. margin: 80px; }
  1354. .mt10 {
  1355. margin-top: 10px; }
  1356. .mt20 {
  1357. margin-top: 20px; }
  1358. .mt30 {
  1359. margin-top: 30px; }
  1360. .mt40 {
  1361. margin-top: 40px; }
  1362. .mt50 {
  1363. margin-top: 50px; }
  1364. .mt60 {
  1365. margin-top: 60px; }
  1366. .mt70 {
  1367. margin-top: 70px; }
  1368. .mt80 {
  1369. margin-top: 80px; }
  1370. .mr10 {
  1371. margin-right: 10px; }
  1372. .mr20 {
  1373. margin-right: 20px; }
  1374. .mr30 {
  1375. margin-right: 30px; }
  1376. .mr40 {
  1377. margin-right: 40px; }
  1378. .mr50 {
  1379. margin-right: 50px; }
  1380. .mr60 {
  1381. margin-right: 60px; }
  1382. .mr70 {
  1383. margin-right: 70px; }
  1384. .mr80 {
  1385. margin-right: 80px; }
  1386. .mb10 {
  1387. margin-bottom: 10px; }
  1388. .mb20 {
  1389. margin-bottom: 20px; }
  1390. .mb30 {
  1391. margin-bottom: 30px; }
  1392. .mb40 {
  1393. margin-bottom: 40px; }
  1394. .mb50 {
  1395. margin-bottom: 50px; }
  1396. .mb60 {
  1397. margin-bottom: 60px; }
  1398. .mb70 {
  1399. margin-bottom: 70px; }
  1400. .mb80 {
  1401. margin-bottom: 80px; }
  1402. .ml10 {
  1403. margin-left: 10px; }
  1404. .ml20 {
  1405. margin-left: 20px; }
  1406. .ml30 {
  1407. margin-left: 30px; }
  1408. .ml40 {
  1409. margin-left: 40px; }
  1410. .ml50 {
  1411. margin-left: 50px; }
  1412. .ml60 {
  1413. margin-left: 60px; }
  1414. .ml70 {
  1415. margin-left: 70px; }
  1416. .ml80 {
  1417. margin-left: 80px; }
  1418. .pos_rel {
  1419. position: relative; }
  1420. .pos_abs {
  1421. position: absolute; }
  1422. .fill_width {
  1423. width: 100% !important; }
  1424. .top {
  1425. padding: 20px; }
  1426. .top-breadcrumbs {
  1427. text-transform: uppercase;
  1428. font-size: 12px;
  1429. font-weight: bold;
  1430. line-height: 32px; }
  1431. .top-breadcrumbs a, .top-breadcrumbs a:visited, .top-breadcrumbs a:hover {
  1432. color: #c0d4e8;
  1433. text-decoration: none;
  1434. word-spacing: normal; }
  1435. .top-breadcrumbs a:hover {
  1436. color: #639af5; }
  1437. .top-breadcrumbs-separator {
  1438. color: #c0d4e8;
  1439. margin: 0 6px 0 6px;
  1440. font-weight: bold !important;
  1441. font-size: 15px;
  1442. vertical-align: middle; }
  1443. .top-right {
  1444. float: right;
  1445. position: relative;
  1446. padding-right: 185px; }
  1447. .top-user-tools {
  1448. position: absolute;
  1449. top: 0;
  1450. right: 0;
  1451. border: 1px solid #c0d4e8;
  1452. border-radius: 4px;
  1453. font-size: 12px;
  1454. text-align: left;
  1455. width: 175px;
  1456. z-index: 1; }
  1457. .top-user-tools-welcome-msg {
  1458. font-weight: bold;
  1459. line-height: 30px;
  1460. padding: 0 10px 0 14px;
  1461. overflow: hidden;
  1462. text-overflow: ellipsis;
  1463. white-space: nowrap; }
  1464. .top-user-tools-welcome-msg-arrow {
  1465. float: right;
  1466. color: #47bac1;
  1467. font-size: 24px;
  1468. line-height: 30px !important; }
  1469. .top-user-tools-user-link {
  1470. display: none;
  1471. padding: 8px 14px; }
  1472. .top-user-tools-user-link a, .top-user-tools-user-link a:visited, .top-user-tools-user-link a:hover {
  1473. color: #ecf2f6;
  1474. text-decoration: none; }
  1475. .top-user-tools-user-link a:hover {
  1476. color: #ecf2f6;
  1477. text-decoration: underline; }
  1478. .top-user-tools-user-link-icon {
  1479. font-size: 15px;
  1480. vertical-align: middle; }
  1481. .top-user-tools.opened {
  1482. background-color: #6f7e95;
  1483. border-color: transparent;
  1484. color: #ecf2f6; }
  1485. .top-user-tools.opened .top-user-tools-welcome-msg {
  1486. border-bottom: 1px solid #76849a;
  1487. margin-bottom: 6px; }
  1488. .top-user-tools.opened .top-user-tools-user-link {
  1489. display: block; }
  1490. /*
  1491. * General
  1492. */
  1493. /*
  1494. * Sidebar
  1495. */
  1496. /*
  1497. * Top
  1498. */
  1499. /*
  1500. * Content
  1501. */
  1502. /*
  1503. * Buttons
  1504. */
  1505. /*
  1506. * Inputs
  1507. */
  1508. /*
  1509. * Messages
  1510. */
  1511. /*
  1512. * Login
  1513. */
  1514. /*
  1515. * jQuery UI
  1516. */
  1517. .hidden {
  1518. display: none; }
  1519. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  1520. margin: 0;
  1521. padding: 0;
  1522. list-style: none; }
  1523. .fl {
  1524. float: left; }
  1525. .fr {
  1526. float: right; }
  1527. .cf:before, .cf:after {
  1528. content: "";
  1529. display: table; }
  1530. .cf:after {
  1531. clear: both; }
  1532. .p10 {
  1533. padding: 10px; }
  1534. .p20 {
  1535. padding: 20px; }
  1536. .p30 {
  1537. padding: 30px; }
  1538. .p40 {
  1539. padding: 40px; }
  1540. .p50 {
  1541. padding: 50px; }
  1542. .p60 {
  1543. padding: 60px; }
  1544. .p70 {
  1545. padding: 70px; }
  1546. .p80 {
  1547. padding: 80px; }
  1548. .pt10 {
  1549. padding-top: 10px; }
  1550. .pt20 {
  1551. padding-top: 20px; }
  1552. .pt30 {
  1553. padding-top: 30px; }
  1554. .pt40 {
  1555. padding-top: 40px; }
  1556. .pt50 {
  1557. padding-top: 50px; }
  1558. .pt60 {
  1559. padding-top: 60px; }
  1560. .pt70 {
  1561. padding-top: 70px; }
  1562. .pt80 {
  1563. padding-top: 80px; }
  1564. .pr10 {
  1565. padding-right: 10px; }
  1566. .pr20 {
  1567. padding-right: 20px; }
  1568. .pr30 {
  1569. padding-right: 30px; }
  1570. .pr40 {
  1571. padding-right: 40px; }
  1572. .pr50 {
  1573. padding-right: 50px; }
  1574. .pr60 {
  1575. padding-right: 60px; }
  1576. .pr70 {
  1577. padding-right: 70px; }
  1578. .pr80 {
  1579. padding-right: 80px; }
  1580. .pb10 {
  1581. padding-bottom: 10px; }
  1582. .pb20 {
  1583. padding-bottom: 20px; }
  1584. .pb30 {
  1585. padding-bottom: 30px; }
  1586. .pb40 {
  1587. padding-bottom: 40px; }
  1588. .pb50 {
  1589. padding-bottom: 50px; }
  1590. .pb60 {
  1591. padding-bottom: 60px; }
  1592. .pb70 {
  1593. padding-bottom: 70px; }
  1594. .pb80 {
  1595. padding-bottom: 80px; }
  1596. .pl10 {
  1597. padding-left: 10px; }
  1598. .pl20 {
  1599. padding-left: 20px; }
  1600. .pl30 {
  1601. padding-left: 30px; }
  1602. .pl40 {
  1603. padding-left: 40px; }
  1604. .pl50 {
  1605. padding-left: 50px; }
  1606. .pl60 {
  1607. padding-left: 60px; }
  1608. .pl70 {
  1609. padding-left: 70px; }
  1610. .pl80 {
  1611. padding-left: 80px; }
  1612. .m10 {
  1613. margin: 10px; }
  1614. .m20 {
  1615. margin: 20px; }
  1616. .m30 {
  1617. margin: 30px; }
  1618. .m40 {
  1619. margin: 40px; }
  1620. .m50 {
  1621. margin: 50px; }
  1622. .m60 {
  1623. margin: 60px; }
  1624. .m70 {
  1625. margin: 70px; }
  1626. .m80 {
  1627. margin: 80px; }
  1628. .mt10 {
  1629. margin-top: 10px; }
  1630. .mt20 {
  1631. margin-top: 20px; }
  1632. .mt30 {
  1633. margin-top: 30px; }
  1634. .mt40 {
  1635. margin-top: 40px; }
  1636. .mt50 {
  1637. margin-top: 50px; }
  1638. .mt60 {
  1639. margin-top: 60px; }
  1640. .mt70 {
  1641. margin-top: 70px; }
  1642. .mt80 {
  1643. margin-top: 80px; }
  1644. .mr10 {
  1645. margin-right: 10px; }
  1646. .mr20 {
  1647. margin-right: 20px; }
  1648. .mr30 {
  1649. margin-right: 30px; }
  1650. .mr40 {
  1651. margin-right: 40px; }
  1652. .mr50 {
  1653. margin-right: 50px; }
  1654. .mr60 {
  1655. margin-right: 60px; }
  1656. .mr70 {
  1657. margin-right: 70px; }
  1658. .mr80 {
  1659. margin-right: 80px; }
  1660. .mb10 {
  1661. margin-bottom: 10px; }
  1662. .mb20 {
  1663. margin-bottom: 20px; }
  1664. .mb30 {
  1665. margin-bottom: 30px; }
  1666. .mb40 {
  1667. margin-bottom: 40px; }
  1668. .mb50 {
  1669. margin-bottom: 50px; }
  1670. .mb60 {
  1671. margin-bottom: 60px; }
  1672. .mb70 {
  1673. margin-bottom: 70px; }
  1674. .mb80 {
  1675. margin-bottom: 80px; }
  1676. .ml10 {
  1677. margin-left: 10px; }
  1678. .ml20 {
  1679. margin-left: 20px; }
  1680. .ml30 {
  1681. margin-left: 30px; }
  1682. .ml40 {
  1683. margin-left: 40px; }
  1684. .ml50 {
  1685. margin-left: 50px; }
  1686. .ml60 {
  1687. margin-left: 60px; }
  1688. .ml70 {
  1689. margin-left: 70px; }
  1690. .ml80 {
  1691. margin-left: 80px; }
  1692. .pos_rel {
  1693. position: relative; }
  1694. .pos_abs {
  1695. position: absolute; }
  1696. .fill_width {
  1697. width: 100% !important; }
  1698. .base_input, .sidebar-popup-search, .input, .background-form .input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"], textarea, .button, input[type="submit"], input[type="button"], .button:visited, input[type="submit"]:visited, input[type="button"]:visited, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  1699. border: 0;
  1700. border-radius: 4px;
  1701. font-size: 13px;
  1702. height: 32px;
  1703. white-space: nowrap;
  1704. outline: 0;
  1705. box-sizing: border-box;
  1706. margin: 0;
  1707. -webkit-transition: background 0.3s, box-shadow 0.3s, border 0.3s;
  1708. -moz-transition: background 0.3s, box-shadow 0.3s, border 0.3s;
  1709. -o-transition: background 0.3s, box-shadow 0.3s, border 0.3s;
  1710. transition: background 0.3s, box-shadow 0.3s, border 0.3s; }
  1711. .input, .background-form .input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"], textarea {
  1712. background-color: #fff;
  1713. color: #6f7e95;
  1714. border: 1px solid #ecf2f6;
  1715. padding: 0 12px; }
  1716. .input::-webkit-input-placeholder, .background-form .input::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  1717. color: #d0dbe6; }
  1718. .input:-moz-placeholder, input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="url"]:-moz-placeholder, input[type="number"]:-moz-placeholder, textarea:-moz-placeholder {
  1719. color: #d0dbe6; }
  1720. .input::-moz-placeholder, .background-form .input::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="number"]::-moz-placeholder, textarea::-moz-placeholder {
  1721. color: #d0dbe6; }
  1722. .input:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  1723. color: #d0dbe6; }
  1724. .input:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="url"]:focus, input[type="number"]:focus, textarea:focus {
  1725. box-shadow: 0 0 4px 0 rgba(71, 186, 193, 0.75);
  1726. border-color: #fff; }
  1727. .background-form .input, .background-form input[type="text"], .background-form input[type="email"], .background-form input[type="password"], .background-form input[type="url"], .background-form input[type="number"], .background-form textarea {
  1728. background-color: #fff;
  1729. color: #6f7e95;
  1730. border-color: #fff; }
  1731. .button, input[type="submit"], input[type="button"], .button:visited, input[type="submit"]:visited, input[type="button"]:visited, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  1732. font-weight: bold;
  1733. font-size: 12px;
  1734. text-align: center;
  1735. background-color: #47bac1;
  1736. color: #fff;
  1737. padding: 0 20px;
  1738. display: inline-block; }
  1739. .button.button-secondary, input.button-secondary[type="submit"], input.button-secondary[type="button"] {
  1740. background-color: #d0dbe6;
  1741. color: #6f7e95; }
  1742. .button.button-red, input.button-red[type="submit"], input.button-red[type="button"] {
  1743. background-color: #c14747;
  1744. color: #fff; }
  1745. .button.button-background, input.button-background[type="submit"], input.button-background[type="button"] {
  1746. background-color: #fff;
  1747. color: #6f7e95; }
  1748. .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  1749. background-color: #639af5;
  1750. color: #fff;
  1751. font-weight: bold; }
  1752. .button:active, input[type="submit"]:active, input[type="button"]:active {
  1753. background-color: #6f7e95;
  1754. color: #fff; }
  1755. a.button {
  1756. line-height: 32px; }
  1757. textarea {
  1758. height: auto;
  1759. line-height: normal;
  1760. padding: 12px;
  1761. white-space: normal; }
  1762. input[type=checkbox] {
  1763. display: none; }
  1764. input[type=checkbox]#action-toggle {
  1765. display: none !important; }
  1766. input[type=checkbox] + label:before {
  1767. font-family: 'jet-icons';
  1768. speak: none;
  1769. font-style: normal;
  1770. font-weight: normal;
  1771. font-variant: normal;
  1772. text-transform: none;
  1773. line-height: 1;
  1774. /* Better Font Rendering =========== */
  1775. -webkit-font-smoothing: antialiased;
  1776. -moz-osx-font-smoothing: grayscale;
  1777. display: inline-block;
  1778. color: #47bac1;
  1779. font-size: 12px;
  1780. content: "";
  1781. letter-spacing: 5px; }
  1782. .action-checkbox-column input[type=checkbox] + label:before {
  1783. color: #fff; }
  1784. input[type=checkbox]:checked + label:before {
  1785. content: ""; }
  1786. .form-row .vDateField, .form-row .vTimeField {
  1787. border-radius: 4px 0 0 4px !important; }
  1788. .form-row .vDateField-link, .form-row .vTimeField-link {
  1789. vertical-align: top;
  1790. display: inline-block; }
  1791. .form-row .vDateField-link span, .form-row .vTimeField-link span {
  1792. width: 32px;
  1793. height: 32px;
  1794. line-height: 32px !important;
  1795. background-color: #d0dbe6;
  1796. color: #6f7e95;
  1797. display: inline-block;
  1798. vertical-align: middle;
  1799. text-align: center;
  1800. border-radius: 0 4px 4px 0; }
  1801. .form-row .vDateField-link:hover span, .form-row .vTimeField-link:hover span {
  1802. background-color: #639af5;
  1803. color: #fff; }
  1804. .form-row .vDateField-link + .vTimeField {
  1805. margin-left: 10px; }
  1806. .form-row label.required {
  1807. font-weight: bold; }
  1808. .form-row label.required:after {
  1809. content: '*'; }
  1810. .form-row select {
  1811. min-width: 200px; }
  1812. .empty-form {
  1813. display: none; }
  1814. /*
  1815. * General
  1816. */
  1817. /*
  1818. * Sidebar
  1819. */
  1820. /*
  1821. * Top
  1822. */
  1823. /*
  1824. * Content
  1825. */
  1826. /*
  1827. * Buttons
  1828. */
  1829. /*
  1830. * Inputs
  1831. */
  1832. /*
  1833. * Messages
  1834. */
  1835. /*
  1836. * Login
  1837. */
  1838. /*
  1839. * jQuery UI
  1840. */
  1841. .hidden {
  1842. display: none; }
  1843. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  1844. margin: 0;
  1845. padding: 0;
  1846. list-style: none; }
  1847. .fl {
  1848. float: left; }
  1849. .fr {
  1850. float: right; }
  1851. .cf:before, .cf:after {
  1852. content: "";
  1853. display: table; }
  1854. .cf:after {
  1855. clear: both; }
  1856. .p10 {
  1857. padding: 10px; }
  1858. .p20 {
  1859. padding: 20px; }
  1860. .p30 {
  1861. padding: 30px; }
  1862. .p40 {
  1863. padding: 40px; }
  1864. .p50 {
  1865. padding: 50px; }
  1866. .p60 {
  1867. padding: 60px; }
  1868. .p70 {
  1869. padding: 70px; }
  1870. .p80 {
  1871. padding: 80px; }
  1872. .pt10 {
  1873. padding-top: 10px; }
  1874. .pt20 {
  1875. padding-top: 20px; }
  1876. .pt30 {
  1877. padding-top: 30px; }
  1878. .pt40 {
  1879. padding-top: 40px; }
  1880. .pt50 {
  1881. padding-top: 50px; }
  1882. .pt60 {
  1883. padding-top: 60px; }
  1884. .pt70 {
  1885. padding-top: 70px; }
  1886. .pt80 {
  1887. padding-top: 80px; }
  1888. .pr10 {
  1889. padding-right: 10px; }
  1890. .pr20 {
  1891. padding-right: 20px; }
  1892. .pr30 {
  1893. padding-right: 30px; }
  1894. .pr40 {
  1895. padding-right: 40px; }
  1896. .pr50 {
  1897. padding-right: 50px; }
  1898. .pr60 {
  1899. padding-right: 60px; }
  1900. .pr70 {
  1901. padding-right: 70px; }
  1902. .pr80 {
  1903. padding-right: 80px; }
  1904. .pb10 {
  1905. padding-bottom: 10px; }
  1906. .pb20 {
  1907. padding-bottom: 20px; }
  1908. .pb30 {
  1909. padding-bottom: 30px; }
  1910. .pb40 {
  1911. padding-bottom: 40px; }
  1912. .pb50 {
  1913. padding-bottom: 50px; }
  1914. .pb60 {
  1915. padding-bottom: 60px; }
  1916. .pb70 {
  1917. padding-bottom: 70px; }
  1918. .pb80 {
  1919. padding-bottom: 80px; }
  1920. .pl10 {
  1921. padding-left: 10px; }
  1922. .pl20 {
  1923. padding-left: 20px; }
  1924. .pl30 {
  1925. padding-left: 30px; }
  1926. .pl40 {
  1927. padding-left: 40px; }
  1928. .pl50 {
  1929. padding-left: 50px; }
  1930. .pl60 {
  1931. padding-left: 60px; }
  1932. .pl70 {
  1933. padding-left: 70px; }
  1934. .pl80 {
  1935. padding-left: 80px; }
  1936. .m10 {
  1937. margin: 10px; }
  1938. .m20 {
  1939. margin: 20px; }
  1940. .m30 {
  1941. margin: 30px; }
  1942. .m40 {
  1943. margin: 40px; }
  1944. .m50 {
  1945. margin: 50px; }
  1946. .m60 {
  1947. margin: 60px; }
  1948. .m70 {
  1949. margin: 70px; }
  1950. .m80 {
  1951. margin: 80px; }
  1952. .mt10 {
  1953. margin-top: 10px; }
  1954. .mt20 {
  1955. margin-top: 20px; }
  1956. .mt30 {
  1957. margin-top: 30px; }
  1958. .mt40 {
  1959. margin-top: 40px; }
  1960. .mt50 {
  1961. margin-top: 50px; }
  1962. .mt60 {
  1963. margin-top: 60px; }
  1964. .mt70 {
  1965. margin-top: 70px; }
  1966. .mt80 {
  1967. margin-top: 80px; }
  1968. .mr10 {
  1969. margin-right: 10px; }
  1970. .mr20 {
  1971. margin-right: 20px; }
  1972. .mr30 {
  1973. margin-right: 30px; }
  1974. .mr40 {
  1975. margin-right: 40px; }
  1976. .mr50 {
  1977. margin-right: 50px; }
  1978. .mr60 {
  1979. margin-right: 60px; }
  1980. .mr70 {
  1981. margin-right: 70px; }
  1982. .mr80 {
  1983. margin-right: 80px; }
  1984. .mb10 {
  1985. margin-bottom: 10px; }
  1986. .mb20 {
  1987. margin-bottom: 20px; }
  1988. .mb30 {
  1989. margin-bottom: 30px; }
  1990. .mb40 {
  1991. margin-bottom: 40px; }
  1992. .mb50 {
  1993. margin-bottom: 50px; }
  1994. .mb60 {
  1995. margin-bottom: 60px; }
  1996. .mb70 {
  1997. margin-bottom: 70px; }
  1998. .mb80 {
  1999. margin-bottom: 80px; }
  2000. .ml10 {
  2001. margin-left: 10px; }
  2002. .ml20 {
  2003. margin-left: 20px; }
  2004. .ml30 {
  2005. margin-left: 30px; }
  2006. .ml40 {
  2007. margin-left: 40px; }
  2008. .ml50 {
  2009. margin-left: 50px; }
  2010. .ml60 {
  2011. margin-left: 60px; }
  2012. .ml70 {
  2013. margin-left: 70px; }
  2014. .ml80 {
  2015. margin-left: 80px; }
  2016. .pos_rel {
  2017. position: relative; }
  2018. .pos_abs {
  2019. position: absolute; }
  2020. .fill_width {
  2021. width: 100% !important; }
  2022. .messagelist .warning, .messagelist .error {
  2023. margin: 0 20px 10px 20px;
  2024. border-radius: 6px;
  2025. padding: 10px;
  2026. background: #f0dada;
  2027. color: #dba4a4; }
  2028. .messagelist .info, .messagelist .debug {
  2029. margin: 0 20px 10px 20px;
  2030. border-radius: 6px;
  2031. padding: 10px;
  2032. background: #e8e8bd;
  2033. color: #bebe92; }
  2034. .messagelist .success {
  2035. margin: 0 20px 10px 20px;
  2036. border-radius: 6px;
  2037. padding: 10px;
  2038. background: #c9eaca;
  2039. color: #8ecb8e; }
  2040. /*
  2041. * General
  2042. */
  2043. /*
  2044. * Sidebar
  2045. */
  2046. /*
  2047. * Top
  2048. */
  2049. /*
  2050. * Content
  2051. */
  2052. /*
  2053. * Buttons
  2054. */
  2055. /*
  2056. * Inputs
  2057. */
  2058. /*
  2059. * Messages
  2060. */
  2061. /*
  2062. * Login
  2063. */
  2064. /*
  2065. * jQuery UI
  2066. */
  2067. .hidden {
  2068. display: none; }
  2069. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  2070. margin: 0;
  2071. padding: 0;
  2072. list-style: none; }
  2073. .fl {
  2074. float: left; }
  2075. .fr {
  2076. float: right; }
  2077. .cf:before, .cf:after {
  2078. content: "";
  2079. display: table; }
  2080. .cf:after {
  2081. clear: both; }
  2082. .p10 {
  2083. padding: 10px; }
  2084. .p20 {
  2085. padding: 20px; }
  2086. .p30 {
  2087. padding: 30px; }
  2088. .p40 {
  2089. padding: 40px; }
  2090. .p50 {
  2091. padding: 50px; }
  2092. .p60 {
  2093. padding: 60px; }
  2094. .p70 {
  2095. padding: 70px; }
  2096. .p80 {
  2097. padding: 80px; }
  2098. .pt10 {
  2099. padding-top: 10px; }
  2100. .pt20 {
  2101. padding-top: 20px; }
  2102. .pt30 {
  2103. padding-top: 30px; }
  2104. .pt40 {
  2105. padding-top: 40px; }
  2106. .pt50 {
  2107. padding-top: 50px; }
  2108. .pt60 {
  2109. padding-top: 60px; }
  2110. .pt70 {
  2111. padding-top: 70px; }
  2112. .pt80 {
  2113. padding-top: 80px; }
  2114. .pr10 {
  2115. padding-right: 10px; }
  2116. .pr20 {
  2117. padding-right: 20px; }
  2118. .pr30 {
  2119. padding-right: 30px; }
  2120. .pr40 {
  2121. padding-right: 40px; }
  2122. .pr50 {
  2123. padding-right: 50px; }
  2124. .pr60 {
  2125. padding-right: 60px; }
  2126. .pr70 {
  2127. padding-right: 70px; }
  2128. .pr80 {
  2129. padding-right: 80px; }
  2130. .pb10 {
  2131. padding-bottom: 10px; }
  2132. .pb20 {
  2133. padding-bottom: 20px; }
  2134. .pb30 {
  2135. padding-bottom: 30px; }
  2136. .pb40 {
  2137. padding-bottom: 40px; }
  2138. .pb50 {
  2139. padding-bottom: 50px; }
  2140. .pb60 {
  2141. padding-bottom: 60px; }
  2142. .pb70 {
  2143. padding-bottom: 70px; }
  2144. .pb80 {
  2145. padding-bottom: 80px; }
  2146. .pl10 {
  2147. padding-left: 10px; }
  2148. .pl20 {
  2149. padding-left: 20px; }
  2150. .pl30 {
  2151. padding-left: 30px; }
  2152. .pl40 {
  2153. padding-left: 40px; }
  2154. .pl50 {
  2155. padding-left: 50px; }
  2156. .pl60 {
  2157. padding-left: 60px; }
  2158. .pl70 {
  2159. padding-left: 70px; }
  2160. .pl80 {
  2161. padding-left: 80px; }
  2162. .m10 {
  2163. margin: 10px; }
  2164. .m20 {
  2165. margin: 20px; }
  2166. .m30 {
  2167. margin: 30px; }
  2168. .m40 {
  2169. margin: 40px; }
  2170. .m50 {
  2171. margin: 50px; }
  2172. .m60 {
  2173. margin: 60px; }
  2174. .m70 {
  2175. margin: 70px; }
  2176. .m80 {
  2177. margin: 80px; }
  2178. .mt10 {
  2179. margin-top: 10px; }
  2180. .mt20 {
  2181. margin-top: 20px; }
  2182. .mt30 {
  2183. margin-top: 30px; }
  2184. .mt40 {
  2185. margin-top: 40px; }
  2186. .mt50 {
  2187. margin-top: 50px; }
  2188. .mt60 {
  2189. margin-top: 60px; }
  2190. .mt70 {
  2191. margin-top: 70px; }
  2192. .mt80 {
  2193. margin-top: 80px; }
  2194. .mr10 {
  2195. margin-right: 10px; }
  2196. .mr20 {
  2197. margin-right: 20px; }
  2198. .mr30 {
  2199. margin-right: 30px; }
  2200. .mr40 {
  2201. margin-right: 40px; }
  2202. .mr50 {
  2203. margin-right: 50px; }
  2204. .mr60 {
  2205. margin-right: 60px; }
  2206. .mr70 {
  2207. margin-right: 70px; }
  2208. .mr80 {
  2209. margin-right: 80px; }
  2210. .mb10 {
  2211. margin-bottom: 10px; }
  2212. .mb20 {
  2213. margin-bottom: 20px; }
  2214. .mb30 {
  2215. margin-bottom: 30px; }
  2216. .mb40 {
  2217. margin-bottom: 40px; }
  2218. .mb50 {
  2219. margin-bottom: 50px; }
  2220. .mb60 {
  2221. margin-bottom: 60px; }
  2222. .mb70 {
  2223. margin-bottom: 70px; }
  2224. .mb80 {
  2225. margin-bottom: 80px; }
  2226. .ml10 {
  2227. margin-left: 10px; }
  2228. .ml20 {
  2229. margin-left: 20px; }
  2230. .ml30 {
  2231. margin-left: 30px; }
  2232. .ml40 {
  2233. margin-left: 40px; }
  2234. .ml50 {
  2235. margin-left: 50px; }
  2236. .ml60 {
  2237. margin-left: 60px; }
  2238. .ml70 {
  2239. margin-left: 70px; }
  2240. .ml80 {
  2241. margin-left: 80px; }
  2242. .pos_rel {
  2243. position: relative; }
  2244. .pos_abs {
  2245. position: absolute; }
  2246. .fill_width {
  2247. width: 100% !important; }
  2248. #changelist .changelist-filter {
  2249. margin-bottom: 20px;
  2250. line-height: 40px; }
  2251. #changelist .changelist-filter * {
  2252. vertical-align: top; }
  2253. #changelist .changelist-filter-submit-block {
  2254. white-space: nowrap; }
  2255. #changelist .results {
  2256. overflow-x: auto; }
  2257. #changelist table {
  2258. box-shadow: 0 2px 0 0 #d0dbe6;
  2259. width: 100%; }
  2260. #changelist .changelist-footer {
  2261. margin-top: 20px;
  2262. background: #ecf2f6; }
  2263. #changelist .changelist-footer.fixed {
  2264. position: fixed;
  2265. left: 270px;
  2266. right: 20px;
  2267. bottom: 0;
  2268. margin: 0;
  2269. padding: 20px 0;
  2270. border-top: 2px solid #d0dbe6; }
  2271. #changelist .changelist-footer.popup {
  2272. left: 20px; }
  2273. #changelist .changelist-footer .actions {
  2274. float: left; }
  2275. #changelist .changelist-footer .actions-label {
  2276. margin-left: 10px; }
  2277. #changelist .changelist-footer .actions span .all, #changelist .changelist-footer .actions span .action-counter, #changelist .changelist-footer .actions span .clear, #changelist .changelist-footer .actions span .question {
  2278. display: none; }
  2279. table#change-history {
  2280. box-shadow: 0 2px 0 0 #d0dbe6;
  2281. width: 100%; }
  2282. /*
  2283. * General
  2284. */
  2285. /*
  2286. * Sidebar
  2287. */
  2288. /*
  2289. * Top
  2290. */
  2291. /*
  2292. * Content
  2293. */
  2294. /*
  2295. * Buttons
  2296. */
  2297. /*
  2298. * Inputs
  2299. */
  2300. /*
  2301. * Messages
  2302. */
  2303. /*
  2304. * Login
  2305. */
  2306. /*
  2307. * jQuery UI
  2308. */
  2309. .hidden {
  2310. display: none; }
  2311. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  2312. margin: 0;
  2313. padding: 0;
  2314. list-style: none; }
  2315. .fl {
  2316. float: left; }
  2317. .fr {
  2318. float: right; }
  2319. .cf:before, .cf:after {
  2320. content: "";
  2321. display: table; }
  2322. .cf:after {
  2323. clear: both; }
  2324. .p10 {
  2325. padding: 10px; }
  2326. .p20 {
  2327. padding: 20px; }
  2328. .p30 {
  2329. padding: 30px; }
  2330. .p40 {
  2331. padding: 40px; }
  2332. .p50 {
  2333. padding: 50px; }
  2334. .p60 {
  2335. padding: 60px; }
  2336. .p70 {
  2337. padding: 70px; }
  2338. .p80 {
  2339. padding: 80px; }
  2340. .pt10 {
  2341. padding-top: 10px; }
  2342. .pt20 {
  2343. padding-top: 20px; }
  2344. .pt30 {
  2345. padding-top: 30px; }
  2346. .pt40 {
  2347. padding-top: 40px; }
  2348. .pt50 {
  2349. padding-top: 50px; }
  2350. .pt60 {
  2351. padding-top: 60px; }
  2352. .pt70 {
  2353. padding-top: 70px; }
  2354. .pt80 {
  2355. padding-top: 80px; }
  2356. .pr10 {
  2357. padding-right: 10px; }
  2358. .pr20 {
  2359. padding-right: 20px; }
  2360. .pr30 {
  2361. padding-right: 30px; }
  2362. .pr40 {
  2363. padding-right: 40px; }
  2364. .pr50 {
  2365. padding-right: 50px; }
  2366. .pr60 {
  2367. padding-right: 60px; }
  2368. .pr70 {
  2369. padding-right: 70px; }
  2370. .pr80 {
  2371. padding-right: 80px; }
  2372. .pb10 {
  2373. padding-bottom: 10px; }
  2374. .pb20 {
  2375. padding-bottom: 20px; }
  2376. .pb30 {
  2377. padding-bottom: 30px; }
  2378. .pb40 {
  2379. padding-bottom: 40px; }
  2380. .pb50 {
  2381. padding-bottom: 50px; }
  2382. .pb60 {
  2383. padding-bottom: 60px; }
  2384. .pb70 {
  2385. padding-bottom: 70px; }
  2386. .pb80 {
  2387. padding-bottom: 80px; }
  2388. .pl10 {
  2389. padding-left: 10px; }
  2390. .pl20 {
  2391. padding-left: 20px; }
  2392. .pl30 {
  2393. padding-left: 30px; }
  2394. .pl40 {
  2395. padding-left: 40px; }
  2396. .pl50 {
  2397. padding-left: 50px; }
  2398. .pl60 {
  2399. padding-left: 60px; }
  2400. .pl70 {
  2401. padding-left: 70px; }
  2402. .pl80 {
  2403. padding-left: 80px; }
  2404. .m10 {
  2405. margin: 10px; }
  2406. .m20 {
  2407. margin: 20px; }
  2408. .m30 {
  2409. margin: 30px; }
  2410. .m40 {
  2411. margin: 40px; }
  2412. .m50 {
  2413. margin: 50px; }
  2414. .m60 {
  2415. margin: 60px; }
  2416. .m70 {
  2417. margin: 70px; }
  2418. .m80 {
  2419. margin: 80px; }
  2420. .mt10 {
  2421. margin-top: 10px; }
  2422. .mt20 {
  2423. margin-top: 20px; }
  2424. .mt30 {
  2425. margin-top: 30px; }
  2426. .mt40 {
  2427. margin-top: 40px; }
  2428. .mt50 {
  2429. margin-top: 50px; }
  2430. .mt60 {
  2431. margin-top: 60px; }
  2432. .mt70 {
  2433. margin-top: 70px; }
  2434. .mt80 {
  2435. margin-top: 80px; }
  2436. .mr10 {
  2437. margin-right: 10px; }
  2438. .mr20 {
  2439. margin-right: 20px; }
  2440. .mr30 {
  2441. margin-right: 30px; }
  2442. .mr40 {
  2443. margin-right: 40px; }
  2444. .mr50 {
  2445. margin-right: 50px; }
  2446. .mr60 {
  2447. margin-right: 60px; }
  2448. .mr70 {
  2449. margin-right: 70px; }
  2450. .mr80 {
  2451. margin-right: 80px; }
  2452. .mb10 {
  2453. margin-bottom: 10px; }
  2454. .mb20 {
  2455. margin-bottom: 20px; }
  2456. .mb30 {
  2457. margin-bottom: 30px; }
  2458. .mb40 {
  2459. margin-bottom: 40px; }
  2460. .mb50 {
  2461. margin-bottom: 50px; }
  2462. .mb60 {
  2463. margin-bottom: 60px; }
  2464. .mb70 {
  2465. margin-bottom: 70px; }
  2466. .mb80 {
  2467. margin-bottom: 80px; }
  2468. .ml10 {
  2469. margin-left: 10px; }
  2470. .ml20 {
  2471. margin-left: 20px; }
  2472. .ml30 {
  2473. margin-left: 30px; }
  2474. .ml40 {
  2475. margin-left: 40px; }
  2476. .ml50 {
  2477. margin-left: 50px; }
  2478. .ml60 {
  2479. margin-left: 60px; }
  2480. .ml70 {
  2481. margin-left: 70px; }
  2482. .ml80 {
  2483. margin-left: 80px; }
  2484. .pos_rel {
  2485. position: relative; }
  2486. .pos_abs {
  2487. position: absolute; }
  2488. .fill_width {
  2489. width: 100% !important; }
  2490. .module {
  2491. border: 0;
  2492. margin: 0;
  2493. padding: 20px;
  2494. background-color: #fff;
  2495. border-radius: 4px; }
  2496. .module .form-row {
  2497. padding: 6px 0;
  2498. overflow: hidden; }
  2499. .module .form-row label {
  2500. display: block;
  2501. padding: 6px 10px 0 0;
  2502. float: left;
  2503. width: 150px;
  2504. word-wrap: break-word; }
  2505. .module .form-row.errors label {
  2506. color: #c14747; }
  2507. .module .form-row .checkbox-row label {
  2508. float: none;
  2509. display: inline; }
  2510. .module .form-row .help {
  2511. color: #d0dbe6;
  2512. margin: 12px 0 0 160px; }
  2513. .module .form-row .checkbox-row .help {
  2514. margin-left: 0; }
  2515. .module .form-row .errorlist {
  2516. color: #c14747; }
  2517. .module .form-row .datetime {
  2518. margin-left: 160px; }
  2519. .module .form-row .add-related span {
  2520. font-size: 18px;
  2521. vertical-align: middle; }
  2522. .module .form-row .change-related span {
  2523. font-size: 20px;
  2524. vertical-align: middle; }
  2525. .module .form-row .add-another {
  2526. margin-left: 4px; }
  2527. .module .form-row .add-another:before {
  2528. font-family: 'jet-icons';
  2529. speak: none;
  2530. font-style: normal;
  2531. font-weight: normal;
  2532. font-variant: normal;
  2533. text-transform: none;
  2534. line-height: 1;
  2535. /* Better Font Rendering =========== */
  2536. -webkit-font-smoothing: antialiased;
  2537. -moz-osx-font-smoothing: grayscale;
  2538. display: inline-block;
  2539. vertical-align: middle;
  2540. font-size: 18px;
  2541. content: ""; }
  2542. .module .form-row .add-another img {
  2543. display: none; }
  2544. .module .form-row .field-box {
  2545. padding-top: 6px; }
  2546. .module .form-row .field-box:first-child {
  2547. padding-top: 0; }
  2548. .module .form-row .file-upload {
  2549. background: #f6fafc;
  2550. display: inline-block;
  2551. margin: 0;
  2552. line-height: 1.5em;
  2553. padding: 10px;
  2554. border-radius: 4px; }
  2555. .module .form-row .file-upload .clearable-file-input label {
  2556. display: inline;
  2557. float: none;
  2558. padding: 0;
  2559. width: auto;
  2560. margin-left: 10px; }
  2561. .submit-row {
  2562. padding: 20px 0; }
  2563. .submit-row .deletelink-box {
  2564. float: right;
  2565. padding: 0;
  2566. margin: 0; }
  2567. .changeform {
  2568. background-color: #fff;
  2569. border-radius: 4px;
  2570. min-width: 800px; }
  2571. .changeform-tabs {
  2572. border-bottom: 2px solid #ecf2f6;
  2573. padding-left: 16px !important; }
  2574. .changeform-tabs-item {
  2575. display: inline-block; }
  2576. .changeform-tabs-item a, .changeform-tabs-item a:hover, .changeform-tabs-item a:visited {
  2577. display: inline-block;
  2578. padding: 12px 4px;
  2579. margin: 0 4px;
  2580. border-bottom: 2px solid transparent;
  2581. position: relative;
  2582. top: 2px;
  2583. color: #d0dbe6;
  2584. font-weight: bold;
  2585. font-size: 11px;
  2586. text-transform: uppercase; }
  2587. .changeform-tabs-item a:hover {
  2588. color: #6f7e95; }
  2589. .changeform-tabs-item.selected a, .changeform-tabs-item.selected a:hover, .changeform-tabs-item.selected a:visited {
  2590. color: #6f7e95;
  2591. border-color: #639af5; }
  2592. .changeform-tabs-item.errors a, .changeform-tabs-item.errors a:hover, .changeform-tabs-item.errors a:visited {
  2593. border-color: #c14747; }
  2594. .changeform-tabs ~ .module {
  2595. display: none; }
  2596. .changeform-tabs ~ .module.selected {
  2597. display: block; }
  2598. .changeform-tabs ~ .module .stacked.inline-related {
  2599. display: none; }
  2600. .changeform-tabs ~ .module .stacked.inline-related.selected {
  2601. display: block; }
  2602. .changeform .module {
  2603. padding: 0;
  2604. background: none;
  2605. border-radius: 0; }
  2606. .changeform .module .form-row .select2 {
  2607. max-width: 586px; }
  2608. .changeform .aligned {
  2609. padding: 20px 20px 0 20px; }
  2610. .changeform .inline-group .errornote {
  2611. color: #c14747;
  2612. margin: 0;
  2613. padding: 20px; }
  2614. .changeform .tabular.inline-related .module {
  2615. border: 0;
  2616. margin: 0;
  2617. padding: 0; }
  2618. .changeform .tabular.inline-related .module .errornote {
  2619. background-color: #f6fafc; }
  2620. .changeform .tabular.inline-related .module .errorlist {
  2621. color: #c14747; }
  2622. .changeform .tabular.inline-related .module table {
  2623. border-collapse: collapse;
  2624. width: 100%; }
  2625. .changeform .tabular.inline-related .module table thead th {
  2626. background: -webkit-linear-gradient(to top, #fff 0%, #f6fafc 100%);
  2627. background: linear-gradient(to top, #fff 0%, #f6fafc 100%);
  2628. padding: 8px;
  2629. font-size: 12px;
  2630. font-weight: bold;
  2631. text-align: left;
  2632. text-transform: uppercase; }
  2633. .changeform .tabular.inline-related .module table thead th.action-checkbox-column {
  2634. width: 20px;
  2635. text-align: center; }
  2636. .changeform .tabular.inline-related .module table tbody tr {
  2637. border-bottom: 1px solid #f4f4f4; }
  2638. .changeform .tabular.inline-related .module table tbody tr:last-child {
  2639. border-bottom: 0; }
  2640. .changeform .tabular.inline-related .module table tbody tr th, .changeform .tabular.inline-related .module table tbody tr td {
  2641. padding: 8px;
  2642. text-align: left;
  2643. font-size: 13px; }
  2644. .changeform .tabular.inline-related .module table tbody tr th.original, .changeform .tabular.inline-related .module table tbody tr td.original {
  2645. text-align: center;
  2646. font-size: 18px;
  2647. width: 36px;
  2648. padding-right: 0;
  2649. white-space: nowrap; }
  2650. .changeform .tabular.inline-related .module table tbody tr th.original p, .changeform .tabular.inline-related .module table tbody tr td.original p {
  2651. margin: 0; }
  2652. .changeform .tabular.inline-related .module table tbody tr th.original .icon-new, .changeform .tabular.inline-related .module table tbody tr td.original .icon-new {
  2653. font-size: 18px;
  2654. vertical-align: middle; }
  2655. .changeform .tabular.inline-related .module table tbody tr th.original .icon-edit, .changeform .tabular.inline-related .module table tbody tr td.original .icon-edit {
  2656. font-size: 18px;
  2657. vertical-align: middle; }
  2658. .changeform .tabular.inline-related .module table tbody tr th.original .icon-open-external, .changeform .tabular.inline-related .module table tbody tr td.original .icon-open-external {
  2659. font-size: 18px;
  2660. vertical-align: middle; }
  2661. .changeform .tabular.inline-related .module table tbody .add-row td {
  2662. padding: 16px; }
  2663. .changeform .tabular.inline-related .module table tbody .add-row td a {
  2664. font-size: 12px;
  2665. font-weight: bold; }
  2666. .changeform .tabular.inline-related .module table tbody .add-row td a span {
  2667. vertical-align: middle; }
  2668. .changeform .stacked-inline {
  2669. position: relative; }
  2670. .changeform .stacked-inline.side {
  2671. margin-left: 250px; }
  2672. .changeform .stacked-inline-side {
  2673. float: left;
  2674. width: 250px;
  2675. margin-left: -250px;
  2676. background: #f6fafc;
  2677. max-height: 60vh;
  2678. overflow-y: auto; }
  2679. .changeform .stacked-inline-side-top {
  2680. height: 40px;
  2681. background: -webkit-linear-gradient(to bottom, #fff 0%, #f6fafc 100%);
  2682. background: linear-gradient(to bottom, #fff 0%, #f6fafc 100%); }
  2683. .changeform .stacked-inline-side-bottom {
  2684. height: 40px;
  2685. background: -webkit-linear-gradient(to top, #fff 0%, #f6fafc 100%);
  2686. background: linear-gradient(to top, #fff 0%, #f6fafc 100%); }
  2687. .changeform .stacked-inline-content {
  2688. float: right;
  2689. width: 100%; }
  2690. .changeform .stacked-inline-content .actions {
  2691. margin: 20px 20px 0 20px; }
  2692. .changeform .stacked-inline-content .actions .icon-new {
  2693. font-size: 18px;
  2694. vertical-align: middle; }
  2695. .changeform .stacked-inline-content .actions .icon-edit {
  2696. font-size: 18px;
  2697. vertical-align: middle; }
  2698. .changeform .stacked-inline-content .actions .icon-open-external {
  2699. font-size: 18px;
  2700. vertical-align: middle; }
  2701. .changeform .stacked-inline-content .delete {
  2702. margin: 20px 20px 0 20px;
  2703. border-radius: 4px;
  2704. padding: 10px;
  2705. border: 2px solid #f0dada;
  2706. box-sizing: border-box; }
  2707. .changeform .stacked-inline .add-row {
  2708. position: absolute;
  2709. top: 0;
  2710. left: -250px;
  2711. width: 250px;
  2712. height: 40px;
  2713. line-height: 40px;
  2714. padding: 0 20px;
  2715. overflow: hidden;
  2716. text-overflow: ellipsis;
  2717. white-space: nowrap;
  2718. box-sizing: border-box;
  2719. background: -webkit-linear-gradient(to bottom, #fff 0%, #f6fafc 100%);
  2720. background: linear-gradient(to bottom, #fff 0%, #f6fafc 100%); }
  2721. .changeform .stacked-inline .add-row a {
  2722. font-size: 12px;
  2723. font-weight: bold; }
  2724. .changeform .stacked-inline .add-row a span {
  2725. vertical-align: middle; }
  2726. .changeform .stacked-inline-list-item-link-remove {
  2727. position: relative;
  2728. float: right;
  2729. display: none; }
  2730. .changeform .stacked-inline-list-item-link:hover .stacked-inline-list-item-link-remove {
  2731. display: inline-block; }
  2732. .changeform .stacked-inline-list-item a, .changeform .stacked-inline-list-item a:visited, .changeform .stacked-inline-list-item a:hover {
  2733. display: block;
  2734. padding: 8px 10px 8px 20px;
  2735. color: #d0dbe6;
  2736. overflow: hidden;
  2737. text-overflow: ellipsis;
  2738. white-space: nowrap;
  2739. -webkit-transition: all 0.2s;
  2740. -moz-transition: all 0.2s;
  2741. -o-transition: all 0.2s;
  2742. transition: all 0.2s; }
  2743. .changeform .stacked-inline-list-item a:hover {
  2744. color: #fff;
  2745. background-color: #639af5; }
  2746. .changeform .stacked-inline-list-item.selected a, .changeform .stacked-inline-list-item.selected a:visited, .changeform .stacked-inline-list-item.selected a:hover {
  2747. color: #6f7e95; }
  2748. .changeform .stacked-inline-list-item.selected a:hover {
  2749. color: #6f7e95;
  2750. background-color: transparent; }
  2751. .changeform .stacked-inline-list-item.empty {
  2752. display: none; }
  2753. .changeform .stacked-inline-list-item.delete a, .changeform .stacked-inline-list-item.delete a:visited, .changeform .stacked-inline-list-item.delete a:hover {
  2754. text-decoration: line-through; }
  2755. .changeform .stacked-inline-list-item.errors a, .changeform .stacked-inline-list-item.errors a:visited, .changeform .stacked-inline-list-item.errors a:hover {
  2756. color: #c14747; }
  2757. .changeform .submit-row {
  2758. padding: 20px; }
  2759. .related-lookup {
  2760. margin-left: 10px; }
  2761. .related-lookup:before {
  2762. font-family: 'jet-icons';
  2763. speak: none;
  2764. font-style: normal;
  2765. font-weight: normal;
  2766. font-variant: normal;
  2767. text-transform: none;
  2768. line-height: 1;
  2769. /* Better Font Rendering =========== */
  2770. -webkit-font-smoothing: antialiased;
  2771. -moz-osx-font-smoothing: grayscale;
  2772. display: inline-block;
  2773. color: #6f7e95;
  2774. vertical-align: middle;
  2775. font-size: 20px;
  2776. content: ""; }
  2777. .related-lookup img {
  2778. display: none; }
  2779. .related-lookup + strong {
  2780. font-weight: normal;
  2781. font-size: 12px; }
  2782. /*
  2783. * General
  2784. */
  2785. /*
  2786. * Sidebar
  2787. */
  2788. /*
  2789. * Top
  2790. */
  2791. /*
  2792. * Content
  2793. */
  2794. /*
  2795. * Buttons
  2796. */
  2797. /*
  2798. * Inputs
  2799. */
  2800. /*
  2801. * Messages
  2802. */
  2803. /*
  2804. * Login
  2805. */
  2806. /*
  2807. * jQuery UI
  2808. */
  2809. .hidden {
  2810. display: none; }
  2811. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  2812. margin: 0;
  2813. padding: 0;
  2814. list-style: none; }
  2815. .fl {
  2816. float: left; }
  2817. .fr {
  2818. float: right; }
  2819. .cf:before, .cf:after {
  2820. content: "";
  2821. display: table; }
  2822. .cf:after {
  2823. clear: both; }
  2824. .p10 {
  2825. padding: 10px; }
  2826. .p20 {
  2827. padding: 20px; }
  2828. .p30 {
  2829. padding: 30px; }
  2830. .p40 {
  2831. padding: 40px; }
  2832. .p50 {
  2833. padding: 50px; }
  2834. .p60 {
  2835. padding: 60px; }
  2836. .p70 {
  2837. padding: 70px; }
  2838. .p80 {
  2839. padding: 80px; }
  2840. .pt10 {
  2841. padding-top: 10px; }
  2842. .pt20 {
  2843. padding-top: 20px; }
  2844. .pt30 {
  2845. padding-top: 30px; }
  2846. .pt40 {
  2847. padding-top: 40px; }
  2848. .pt50 {
  2849. padding-top: 50px; }
  2850. .pt60 {
  2851. padding-top: 60px; }
  2852. .pt70 {
  2853. padding-top: 70px; }
  2854. .pt80 {
  2855. padding-top: 80px; }
  2856. .pr10 {
  2857. padding-right: 10px; }
  2858. .pr20 {
  2859. padding-right: 20px; }
  2860. .pr30 {
  2861. padding-right: 30px; }
  2862. .pr40 {
  2863. padding-right: 40px; }
  2864. .pr50 {
  2865. padding-right: 50px; }
  2866. .pr60 {
  2867. padding-right: 60px; }
  2868. .pr70 {
  2869. padding-right: 70px; }
  2870. .pr80 {
  2871. padding-right: 80px; }
  2872. .pb10 {
  2873. padding-bottom: 10px; }
  2874. .pb20 {
  2875. padding-bottom: 20px; }
  2876. .pb30 {
  2877. padding-bottom: 30px; }
  2878. .pb40 {
  2879. padding-bottom: 40px; }
  2880. .pb50 {
  2881. padding-bottom: 50px; }
  2882. .pb60 {
  2883. padding-bottom: 60px; }
  2884. .pb70 {
  2885. padding-bottom: 70px; }
  2886. .pb80 {
  2887. padding-bottom: 80px; }
  2888. .pl10 {
  2889. padding-left: 10px; }
  2890. .pl20 {
  2891. padding-left: 20px; }
  2892. .pl30 {
  2893. padding-left: 30px; }
  2894. .pl40 {
  2895. padding-left: 40px; }
  2896. .pl50 {
  2897. padding-left: 50px; }
  2898. .pl60 {
  2899. padding-left: 60px; }
  2900. .pl70 {
  2901. padding-left: 70px; }
  2902. .pl80 {
  2903. padding-left: 80px; }
  2904. .m10 {
  2905. margin: 10px; }
  2906. .m20 {
  2907. margin: 20px; }
  2908. .m30 {
  2909. margin: 30px; }
  2910. .m40 {
  2911. margin: 40px; }
  2912. .m50 {
  2913. margin: 50px; }
  2914. .m60 {
  2915. margin: 60px; }
  2916. .m70 {
  2917. margin: 70px; }
  2918. .m80 {
  2919. margin: 80px; }
  2920. .mt10 {
  2921. margin-top: 10px; }
  2922. .mt20 {
  2923. margin-top: 20px; }
  2924. .mt30 {
  2925. margin-top: 30px; }
  2926. .mt40 {
  2927. margin-top: 40px; }
  2928. .mt50 {
  2929. margin-top: 50px; }
  2930. .mt60 {
  2931. margin-top: 60px; }
  2932. .mt70 {
  2933. margin-top: 70px; }
  2934. .mt80 {
  2935. margin-top: 80px; }
  2936. .mr10 {
  2937. margin-right: 10px; }
  2938. .mr20 {
  2939. margin-right: 20px; }
  2940. .mr30 {
  2941. margin-right: 30px; }
  2942. .mr40 {
  2943. margin-right: 40px; }
  2944. .mr50 {
  2945. margin-right: 50px; }
  2946. .mr60 {
  2947. margin-right: 60px; }
  2948. .mr70 {
  2949. margin-right: 70px; }
  2950. .mr80 {
  2951. margin-right: 80px; }
  2952. .mb10 {
  2953. margin-bottom: 10px; }
  2954. .mb20 {
  2955. margin-bottom: 20px; }
  2956. .mb30 {
  2957. margin-bottom: 30px; }
  2958. .mb40 {
  2959. margin-bottom: 40px; }
  2960. .mb50 {
  2961. margin-bottom: 50px; }
  2962. .mb60 {
  2963. margin-bottom: 60px; }
  2964. .mb70 {
  2965. margin-bottom: 70px; }
  2966. .mb80 {
  2967. margin-bottom: 80px; }
  2968. .ml10 {
  2969. margin-left: 10px; }
  2970. .ml20 {
  2971. margin-left: 20px; }
  2972. .ml30 {
  2973. margin-left: 30px; }
  2974. .ml40 {
  2975. margin-left: 40px; }
  2976. .ml50 {
  2977. margin-left: 50px; }
  2978. .ml60 {
  2979. margin-left: 60px; }
  2980. .ml70 {
  2981. margin-left: 70px; }
  2982. .ml80 {
  2983. margin-left: 80px; }
  2984. .pos_rel {
  2985. position: relative; }
  2986. .pos_abs {
  2987. position: absolute; }
  2988. .fill_width {
  2989. width: 100% !important; }
  2990. .delete-summary {
  2991. background: #f0dada;
  2992. color: #dba4a4;
  2993. border-radius: 4px;
  2994. padding: 20px;
  2995. margin-bottom: 20px; }
  2996. .delete-summary h2 {
  2997. font-size: 14px;
  2998. font-weight: bold;
  2999. margin: 0 0 10px 0; }
  3000. .delete-summary-buttons {
  3001. float: right; }
  3002. .delete-objects {
  3003. background: #fff;
  3004. border-radius: 4px;
  3005. box-shadow: 0 2px 0 0 #d0dbe6; }
  3006. .delete-objects-list-item {
  3007. border-bottom: 1px solid #f4f4f4;
  3008. font-size: 13px; }
  3009. .delete-objects-list-item:last-child {
  3010. border-bottom: 0; }
  3011. .delete-objects-list-item-row {
  3012. padding: 8px; }
  3013. .delete-objects-list-item-row-collapse {
  3014. float: right; }
  3015. .delete-objects-list-item-row-collapse span {
  3016. vertical-align: middle;
  3017. font-weight: bold;
  3018. font-size: 16px; }
  3019. .delete-objects-list-item-collapsable {
  3020. background-color: #d0dbe6;
  3021. padding: 20px 20px 20px 0;
  3022. display: none; }
  3023. .delete-objects-list-item-collapsable-list {
  3024. list-style-type: disc; }
  3025. /*
  3026. * General
  3027. */
  3028. /*
  3029. * Sidebar
  3030. */
  3031. /*
  3032. * Top
  3033. */
  3034. /*
  3035. * Content
  3036. */
  3037. /*
  3038. * Buttons
  3039. */
  3040. /*
  3041. * Inputs
  3042. */
  3043. /*
  3044. * Messages
  3045. */
  3046. /*
  3047. * Login
  3048. */
  3049. /*
  3050. * jQuery UI
  3051. */
  3052. .hidden {
  3053. display: none; }
  3054. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  3055. margin: 0;
  3056. padding: 0;
  3057. list-style: none; }
  3058. .fl {
  3059. float: left; }
  3060. .fr {
  3061. float: right; }
  3062. .cf:before, .cf:after {
  3063. content: "";
  3064. display: table; }
  3065. .cf:after {
  3066. clear: both; }
  3067. .p10 {
  3068. padding: 10px; }
  3069. .p20 {
  3070. padding: 20px; }
  3071. .p30 {
  3072. padding: 30px; }
  3073. .p40 {
  3074. padding: 40px; }
  3075. .p50 {
  3076. padding: 50px; }
  3077. .p60 {
  3078. padding: 60px; }
  3079. .p70 {
  3080. padding: 70px; }
  3081. .p80 {
  3082. padding: 80px; }
  3083. .pt10 {
  3084. padding-top: 10px; }
  3085. .pt20 {
  3086. padding-top: 20px; }
  3087. .pt30 {
  3088. padding-top: 30px; }
  3089. .pt40 {
  3090. padding-top: 40px; }
  3091. .pt50 {
  3092. padding-top: 50px; }
  3093. .pt60 {
  3094. padding-top: 60px; }
  3095. .pt70 {
  3096. padding-top: 70px; }
  3097. .pt80 {
  3098. padding-top: 80px; }
  3099. .pr10 {
  3100. padding-right: 10px; }
  3101. .pr20 {
  3102. padding-right: 20px; }
  3103. .pr30 {
  3104. padding-right: 30px; }
  3105. .pr40 {
  3106. padding-right: 40px; }
  3107. .pr50 {
  3108. padding-right: 50px; }
  3109. .pr60 {
  3110. padding-right: 60px; }
  3111. .pr70 {
  3112. padding-right: 70px; }
  3113. .pr80 {
  3114. padding-right: 80px; }
  3115. .pb10 {
  3116. padding-bottom: 10px; }
  3117. .pb20 {
  3118. padding-bottom: 20px; }
  3119. .pb30 {
  3120. padding-bottom: 30px; }
  3121. .pb40 {
  3122. padding-bottom: 40px; }
  3123. .pb50 {
  3124. padding-bottom: 50px; }
  3125. .pb60 {
  3126. padding-bottom: 60px; }
  3127. .pb70 {
  3128. padding-bottom: 70px; }
  3129. .pb80 {
  3130. padding-bottom: 80px; }
  3131. .pl10 {
  3132. padding-left: 10px; }
  3133. .pl20 {
  3134. padding-left: 20px; }
  3135. .pl30 {
  3136. padding-left: 30px; }
  3137. .pl40 {
  3138. padding-left: 40px; }
  3139. .pl50 {
  3140. padding-left: 50px; }
  3141. .pl60 {
  3142. padding-left: 60px; }
  3143. .pl70 {
  3144. padding-left: 70px; }
  3145. .pl80 {
  3146. padding-left: 80px; }
  3147. .m10 {
  3148. margin: 10px; }
  3149. .m20 {
  3150. margin: 20px; }
  3151. .m30 {
  3152. margin: 30px; }
  3153. .m40 {
  3154. margin: 40px; }
  3155. .m50 {
  3156. margin: 50px; }
  3157. .m60 {
  3158. margin: 60px; }
  3159. .m70 {
  3160. margin: 70px; }
  3161. .m80 {
  3162. margin: 80px; }
  3163. .mt10 {
  3164. margin-top: 10px; }
  3165. .mt20 {
  3166. margin-top: 20px; }
  3167. .mt30 {
  3168. margin-top: 30px; }
  3169. .mt40 {
  3170. margin-top: 40px; }
  3171. .mt50 {
  3172. margin-top: 50px; }
  3173. .mt60 {
  3174. margin-top: 60px; }
  3175. .mt70 {
  3176. margin-top: 70px; }
  3177. .mt80 {
  3178. margin-top: 80px; }
  3179. .mr10 {
  3180. margin-right: 10px; }
  3181. .mr20 {
  3182. margin-right: 20px; }
  3183. .mr30 {
  3184. margin-right: 30px; }
  3185. .mr40 {
  3186. margin-right: 40px; }
  3187. .mr50 {
  3188. margin-right: 50px; }
  3189. .mr60 {
  3190. margin-right: 60px; }
  3191. .mr70 {
  3192. margin-right: 70px; }
  3193. .mr80 {
  3194. margin-right: 80px; }
  3195. .mb10 {
  3196. margin-bottom: 10px; }
  3197. .mb20 {
  3198. margin-bottom: 20px; }
  3199. .mb30 {
  3200. margin-bottom: 30px; }
  3201. .mb40 {
  3202. margin-bottom: 40px; }
  3203. .mb50 {
  3204. margin-bottom: 50px; }
  3205. .mb60 {
  3206. margin-bottom: 60px; }
  3207. .mb70 {
  3208. margin-bottom: 70px; }
  3209. .mb80 {
  3210. margin-bottom: 80px; }
  3211. .ml10 {
  3212. margin-left: 10px; }
  3213. .ml20 {
  3214. margin-left: 20px; }
  3215. .ml30 {
  3216. margin-left: 30px; }
  3217. .ml40 {
  3218. margin-left: 40px; }
  3219. .ml50 {
  3220. margin-left: 50px; }
  3221. .ml60 {
  3222. margin-left: 60px; }
  3223. .ml70 {
  3224. margin-left: 70px; }
  3225. .ml80 {
  3226. margin-left: 80px; }
  3227. .pos_rel {
  3228. position: relative; }
  3229. .pos_abs {
  3230. position: absolute; }
  3231. .fill_width {
  3232. width: 100% !important; }
  3233. .login {
  3234. background: #354052;
  3235. position: relative; }
  3236. .login-title {
  3237. width: 100%;
  3238. color: #6f7e95;
  3239. font-size: 36px;
  3240. text-transform: uppercase;
  3241. text-align: center;
  3242. position: absolute;
  3243. top: 50%;
  3244. margin-top: -175px; }
  3245. .login-title .bright {
  3246. color: #fff;
  3247. font-weight: bold; }
  3248. .login-container {
  3249. border-radius: 4px;
  3250. width: 400px;
  3251. overflow: hidden;
  3252. position: absolute;
  3253. top: 50%;
  3254. left: 50%;
  3255. margin-left: -200px;
  3256. margin-top: -115px; }
  3257. .login-container-header {
  3258. background: #59677e;
  3259. color: #fff;
  3260. text-transform: uppercase;
  3261. padding: 10px;
  3262. font-size: 11px;
  3263. font-weight: bold; }
  3264. .login-container-content {
  3265. background: #fff;
  3266. height: 100%;
  3267. padding: 30px; }
  3268. .login-container-submit-row {
  3269. text-align: center;
  3270. margin-top: 20px; }
  3271. .login-form .form-row {
  3272. padding: 6px 0; }
  3273. .login-form .form-row label {
  3274. display: block;
  3275. padding: 6px 10px 0 0;
  3276. float: left;
  3277. width: 130px;
  3278. word-wrap: break-word; }
  3279. .login-form .form-row.errors label {
  3280. color: #c14747; }
  3281. .login-form .form-row input[type="text"], .login-form .form-row input[type="password"] {
  3282. width: 170px; }
  3283. .login-form .form-row .errorlist {
  3284. color: #c14747; }
  3285. .login-form .submit-row {
  3286. margin-top: 20px;
  3287. text-align: center; }
  3288. /*
  3289. * General
  3290. */
  3291. /*
  3292. * Sidebar
  3293. */
  3294. /*
  3295. * Top
  3296. */
  3297. /*
  3298. * Content
  3299. */
  3300. /*
  3301. * Buttons
  3302. */
  3303. /*
  3304. * Inputs
  3305. */
  3306. /*
  3307. * Messages
  3308. */
  3309. /*
  3310. * Login
  3311. */
  3312. /*
  3313. * jQuery UI
  3314. */
  3315. .hidden {
  3316. display: none; }
  3317. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  3318. margin: 0;
  3319. padding: 0;
  3320. list-style: none; }
  3321. .fl {
  3322. float: left; }
  3323. .fr {
  3324. float: right; }
  3325. .cf:before, .cf:after {
  3326. content: "";
  3327. display: table; }
  3328. .cf:after {
  3329. clear: both; }
  3330. .p10 {
  3331. padding: 10px; }
  3332. .p20 {
  3333. padding: 20px; }
  3334. .p30 {
  3335. padding: 30px; }
  3336. .p40 {
  3337. padding: 40px; }
  3338. .p50 {
  3339. padding: 50px; }
  3340. .p60 {
  3341. padding: 60px; }
  3342. .p70 {
  3343. padding: 70px; }
  3344. .p80 {
  3345. padding: 80px; }
  3346. .pt10 {
  3347. padding-top: 10px; }
  3348. .pt20 {
  3349. padding-top: 20px; }
  3350. .pt30 {
  3351. padding-top: 30px; }
  3352. .pt40 {
  3353. padding-top: 40px; }
  3354. .pt50 {
  3355. padding-top: 50px; }
  3356. .pt60 {
  3357. padding-top: 60px; }
  3358. .pt70 {
  3359. padding-top: 70px; }
  3360. .pt80 {
  3361. padding-top: 80px; }
  3362. .pr10 {
  3363. padding-right: 10px; }
  3364. .pr20 {
  3365. padding-right: 20px; }
  3366. .pr30 {
  3367. padding-right: 30px; }
  3368. .pr40 {
  3369. padding-right: 40px; }
  3370. .pr50 {
  3371. padding-right: 50px; }
  3372. .pr60 {
  3373. padding-right: 60px; }
  3374. .pr70 {
  3375. padding-right: 70px; }
  3376. .pr80 {
  3377. padding-right: 80px; }
  3378. .pb10 {
  3379. padding-bottom: 10px; }
  3380. .pb20 {
  3381. padding-bottom: 20px; }
  3382. .pb30 {
  3383. padding-bottom: 30px; }
  3384. .pb40 {
  3385. padding-bottom: 40px; }
  3386. .pb50 {
  3387. padding-bottom: 50px; }
  3388. .pb60 {
  3389. padding-bottom: 60px; }
  3390. .pb70 {
  3391. padding-bottom: 70px; }
  3392. .pb80 {
  3393. padding-bottom: 80px; }
  3394. .pl10 {
  3395. padding-left: 10px; }
  3396. .pl20 {
  3397. padding-left: 20px; }
  3398. .pl30 {
  3399. padding-left: 30px; }
  3400. .pl40 {
  3401. padding-left: 40px; }
  3402. .pl50 {
  3403. padding-left: 50px; }
  3404. .pl60 {
  3405. padding-left: 60px; }
  3406. .pl70 {
  3407. padding-left: 70px; }
  3408. .pl80 {
  3409. padding-left: 80px; }
  3410. .m10 {
  3411. margin: 10px; }
  3412. .m20 {
  3413. margin: 20px; }
  3414. .m30 {
  3415. margin: 30px; }
  3416. .m40 {
  3417. margin: 40px; }
  3418. .m50 {
  3419. margin: 50px; }
  3420. .m60 {
  3421. margin: 60px; }
  3422. .m70 {
  3423. margin: 70px; }
  3424. .m80 {
  3425. margin: 80px; }
  3426. .mt10 {
  3427. margin-top: 10px; }
  3428. .mt20 {
  3429. margin-top: 20px; }
  3430. .mt30 {
  3431. margin-top: 30px; }
  3432. .mt40 {
  3433. margin-top: 40px; }
  3434. .mt50 {
  3435. margin-top: 50px; }
  3436. .mt60 {
  3437. margin-top: 60px; }
  3438. .mt70 {
  3439. margin-top: 70px; }
  3440. .mt80 {
  3441. margin-top: 80px; }
  3442. .mr10 {
  3443. margin-right: 10px; }
  3444. .mr20 {
  3445. margin-right: 20px; }
  3446. .mr30 {
  3447. margin-right: 30px; }
  3448. .mr40 {
  3449. margin-right: 40px; }
  3450. .mr50 {
  3451. margin-right: 50px; }
  3452. .mr60 {
  3453. margin-right: 60px; }
  3454. .mr70 {
  3455. margin-right: 70px; }
  3456. .mr80 {
  3457. margin-right: 80px; }
  3458. .mb10 {
  3459. margin-bottom: 10px; }
  3460. .mb20 {
  3461. margin-bottom: 20px; }
  3462. .mb30 {
  3463. margin-bottom: 30px; }
  3464. .mb40 {
  3465. margin-bottom: 40px; }
  3466. .mb50 {
  3467. margin-bottom: 50px; }
  3468. .mb60 {
  3469. margin-bottom: 60px; }
  3470. .mb70 {
  3471. margin-bottom: 70px; }
  3472. .mb80 {
  3473. margin-bottom: 80px; }
  3474. .ml10 {
  3475. margin-left: 10px; }
  3476. .ml20 {
  3477. margin-left: 20px; }
  3478. .ml30 {
  3479. margin-left: 30px; }
  3480. .ml40 {
  3481. margin-left: 40px; }
  3482. .ml50 {
  3483. margin-left: 50px; }
  3484. .ml60 {
  3485. margin-left: 60px; }
  3486. .ml70 {
  3487. margin-left: 70px; }
  3488. .ml80 {
  3489. margin-left: 80px; }
  3490. .pos_rel {
  3491. position: relative; }
  3492. .pos_abs {
  3493. position: absolute; }
  3494. .fill_width {
  3495. width: 100% !important; }
  3496. .content {
  3497. background-color: #ecf2f6; }
  3498. .dashboard #content {
  3499. width: 500px; }
  3500. .small, .module .form-row .help, .module .form-row .errorlist, .changeform .tabular.inline-related .module .errorlist, .login-form .form-row .errorlist {
  3501. font-size: 12px; }
  3502. .changeform-object-tools {
  3503. text-align: right; }
  3504. ul.object-tools {
  3505. margin-bottom: 20px !important; }
  3506. ul.object-tools li {
  3507. margin-top: 10px;
  3508. text-align: right; }
  3509. ul.object-tools li:first-child {
  3510. margin-top: 0; }
  3511. ul.object-tools li a {
  3512. display: inline-block;
  3513. background-color: #d0dbe6;
  3514. padding: 8px;
  3515. border-radius: 4px; }
  3516. ul.object-tools li a.addlink:before {
  3517. font-family: 'jet-icons';
  3518. speak: none;
  3519. font-style: normal;
  3520. font-weight: normal;
  3521. font-variant: normal;
  3522. text-transform: none;
  3523. line-height: 1;
  3524. /* Better Font Rendering =========== */
  3525. -webkit-font-smoothing: antialiased;
  3526. -moz-osx-font-smoothing: grayscale;
  3527. display: inline-block;
  3528. color: #6f7e95;
  3529. font-size: 13px;
  3530. content: ""; }
  3531. ul.object-tools li a, ul.object-tools li a:visited, ul.object-tools li a:hover {
  3532. color: #6f7e95; }
  3533. ul.object-tools li a:hover {
  3534. background-color: #639af5;
  3535. color: #fff; }
  3536. ul.object-tools li a:hover.addlink:before {
  3537. color: #fff; }
  3538. ul.object-tools li a:active {
  3539. background-color: #6f7e95;
  3540. color: #fff; }
  3541. ul.object-tools li a:active.addlink:before {
  3542. color: #fff; }
  3543. ul.object-tools.horizontal {
  3544. line-height: 40px; }
  3545. ul.object-tools.horizontal li {
  3546. display: inline;
  3547. margin-top: 0;
  3548. line-height: normal; }
  3549. .content-sidebar {
  3550. float: right;
  3551. width: 18em;
  3552. margin: 0 20px; }
  3553. .dashboard .module table td a {
  3554. display: inline !important; }
  3555. .dialog-confirm {
  3556. display: none; }
  3557. .cleared {
  3558. clear: both; }
  3559. .loading-indicator {
  3560. font-size: 32px;
  3561. color: #639af5;
  3562. -webkit-animation: spin 4s linear infinite;
  3563. -moz-animation: spin 4s linear infinite;
  3564. animation: spin 4s linear infinite; }
  3565. .loading-indicator-wrapper {
  3566. text-align: center;
  3567. padding: 40px 0; }
  3568. @-moz-keyframes spin {
  3569. 100% {
  3570. -moz-transform: rotate(360deg); } }
  3571. @-webkit-keyframes spin {
  3572. 100% {
  3573. -webkit-transform: rotate(360deg); } }
  3574. @keyframes spin {
  3575. 100% {
  3576. -webkit-transform: rotate(360deg);
  3577. transform: rotate(360deg); } }
  3578. /*
  3579. * General
  3580. */
  3581. /*
  3582. * Sidebar
  3583. */
  3584. /*
  3585. * Top
  3586. */
  3587. /*
  3588. * Content
  3589. */
  3590. /*
  3591. * Buttons
  3592. */
  3593. /*
  3594. * Inputs
  3595. */
  3596. /*
  3597. * Messages
  3598. */
  3599. /*
  3600. * Login
  3601. */
  3602. /*
  3603. * jQuery UI
  3604. */
  3605. .hidden {
  3606. display: none; }
  3607. .clear-list, .sidebar-menu, .sidebar-menu-item-list, .sidebar-popup-list, .top-user-tools, .messagelist, .module .form-row .errorlist, .changeform-tabs, .changeform .tabular.inline-related .module .errorlist, .changeform .stacked-inline-list, .delete-summary ul, .delete-objects-list, .login-form .form-row .errorlist, ul.object-tools, .dashboard-item-content ul:not(.inline), .dashboard-item-content ul.inline {
  3608. margin: 0;
  3609. padding: 0;
  3610. list-style: none; }
  3611. .fl {
  3612. float: left; }
  3613. .fr {
  3614. float: right; }
  3615. .cf:before, .cf:after {
  3616. content: "";
  3617. display: table; }
  3618. .cf:after {
  3619. clear: both; }
  3620. .p10 {
  3621. padding: 10px; }
  3622. .p20 {
  3623. padding: 20px; }
  3624. .p30 {
  3625. padding: 30px; }
  3626. .p40 {
  3627. padding: 40px; }
  3628. .p50 {
  3629. padding: 50px; }
  3630. .p60 {
  3631. padding: 60px; }
  3632. .p70 {
  3633. padding: 70px; }
  3634. .p80 {
  3635. padding: 80px; }
  3636. .pt10 {
  3637. padding-top: 10px; }
  3638. .pt20 {
  3639. padding-top: 20px; }
  3640. .pt30 {
  3641. padding-top: 30px; }
  3642. .pt40 {
  3643. padding-top: 40px; }
  3644. .pt50 {
  3645. padding-top: 50px; }
  3646. .pt60 {
  3647. padding-top: 60px; }
  3648. .pt70 {
  3649. padding-top: 70px; }
  3650. .pt80 {
  3651. padding-top: 80px; }
  3652. .pr10 {
  3653. padding-right: 10px; }
  3654. .pr20 {
  3655. padding-right: 20px; }
  3656. .pr30 {
  3657. padding-right: 30px; }
  3658. .pr40 {
  3659. padding-right: 40px; }
  3660. .pr50 {
  3661. padding-right: 50px; }
  3662. .pr60 {
  3663. padding-right: 60px; }
  3664. .pr70 {
  3665. padding-right: 70px; }
  3666. .pr80 {
  3667. padding-right: 80px; }
  3668. .pb10 {
  3669. padding-bottom: 10px; }
  3670. .pb20 {
  3671. padding-bottom: 20px; }
  3672. .pb30 {
  3673. padding-bottom: 30px; }
  3674. .pb40 {
  3675. padding-bottom: 40px; }
  3676. .pb50 {
  3677. padding-bottom: 50px; }
  3678. .pb60 {
  3679. padding-bottom: 60px; }
  3680. .pb70 {
  3681. padding-bottom: 70px; }
  3682. .pb80 {
  3683. padding-bottom: 80px; }
  3684. .pl10 {
  3685. padding-left: 10px; }
  3686. .pl20 {
  3687. padding-left: 20px; }
  3688. .pl30 {
  3689. padding-left: 30px; }
  3690. .pl40 {
  3691. padding-left: 40px; }
  3692. .pl50 {
  3693. padding-left: 50px; }
  3694. .pl60 {
  3695. padding-left: 60px; }
  3696. .pl70 {
  3697. padding-left: 70px; }
  3698. .pl80 {
  3699. padding-left: 80px; }
  3700. .m10 {
  3701. margin: 10px; }
  3702. .m20 {
  3703. margin: 20px; }
  3704. .m30 {
  3705. margin: 30px; }
  3706. .m40 {
  3707. margin: 40px; }
  3708. .m50 {
  3709. margin: 50px; }
  3710. .m60 {
  3711. margin: 60px; }
  3712. .m70 {
  3713. margin: 70px; }
  3714. .m80 {
  3715. margin: 80px; }
  3716. .mt10 {
  3717. margin-top: 10px; }
  3718. .mt20 {
  3719. margin-top: 20px; }
  3720. .mt30 {
  3721. margin-top: 30px; }
  3722. .mt40 {
  3723. margin-top: 40px; }
  3724. .mt50 {
  3725. margin-top: 50px; }
  3726. .mt60 {
  3727. margin-top: 60px; }
  3728. .mt70 {
  3729. margin-top: 70px; }
  3730. .mt80 {
  3731. margin-top: 80px; }
  3732. .mr10 {
  3733. margin-right: 10px; }
  3734. .mr20 {
  3735. margin-right: 20px; }
  3736. .mr30 {
  3737. margin-right: 30px; }
  3738. .mr40 {
  3739. margin-right: 40px; }
  3740. .mr50 {
  3741. margin-right: 50px; }
  3742. .mr60 {
  3743. margin-right: 60px; }
  3744. .mr70 {
  3745. margin-right: 70px; }
  3746. .mr80 {
  3747. margin-right: 80px; }
  3748. .mb10 {
  3749. margin-bottom: 10px; }
  3750. .mb20 {
  3751. margin-bottom: 20px; }
  3752. .mb30 {
  3753. margin-bottom: 30px; }
  3754. .mb40 {
  3755. margin-bottom: 40px; }
  3756. .mb50 {
  3757. margin-bottom: 50px; }
  3758. .mb60 {
  3759. margin-bottom: 60px; }
  3760. .mb70 {
  3761. margin-bottom: 70px; }
  3762. .mb80 {
  3763. margin-bottom: 80px; }
  3764. .ml10 {
  3765. margin-left: 10px; }
  3766. .ml20 {
  3767. margin-left: 20px; }
  3768. .ml30 {
  3769. margin-left: 30px; }
  3770. .ml40 {
  3771. margin-left: 40px; }
  3772. .ml50 {
  3773. margin-left: 50px; }
  3774. .ml60 {
  3775. margin-left: 60px; }
  3776. .ml70 {
  3777. margin-left: 70px; }
  3778. .ml80 {
  3779. margin-left: 80px; }
  3780. .pos_rel {
  3781. position: relative; }
  3782. .pos_abs {
  3783. position: absolute; }
  3784. .fill_width {
  3785. width: 100% !important; }
  3786. .dashboard {
  3787. min-height: 100%; }
  3788. .dashboard.columns_1 .dashboard-column-wrapper {
  3789. width: 100%; }
  3790. .dashboard.columns_2 .dashboard-column-wrapper {
  3791. width: 50%; }
  3792. .dashboard.columns_3 .dashboard-column-wrapper {
  3793. width: 33.33333%; }
  3794. .dashboard.columns_4 .dashboard-column-wrapper {
  3795. width: 25%; }
  3796. .dashboard.columns_5 .dashboard-column-wrapper {
  3797. width: 20%; }
  3798. .dashboard-column {
  3799. margin-left: 10px;
  3800. border: 2px dashed transparent;
  3801. min-height: 100px;
  3802. border-radius: 4px; }
  3803. .dashboard-column-wrapper {
  3804. float: left;
  3805. min-width: 200px; }
  3806. .dashboard-column.first {
  3807. margin-left: 0; }
  3808. .dashboard-column.active {
  3809. border-color: #d0dbe6; }
  3810. .dashboard-item {
  3811. background: #ecf2f6;
  3812. border-radius: 4px;
  3813. margin-bottom: 20px;
  3814. -webkit-transition: background 0.3s;
  3815. -moz-transition: background 0.3s;
  3816. -o-transition: background 0.3s;
  3817. transition: background 0.3s; }
  3818. .dashboard-item:last-child {
  3819. margin-bottom: 0; }
  3820. .dashboard-item.collapsed {
  3821. background-color: #d0dbe6; }
  3822. .dashboard-item.ui-sortable-helper {
  3823. box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25); }
  3824. .dashboard-item.placeholder {
  3825. background-color: #fffcc0; }
  3826. .dashboard-item-header {
  3827. padding: 0 10px 0 6px; }
  3828. .dashboard-item-header-title {
  3829. font-size: 11px;
  3830. font-weight: bold;
  3831. text-transform: uppercase;
  3832. line-height: 30px; }
  3833. .dashboard-item-header-drag {
  3834. float: right;
  3835. line-height: 30px !important; }
  3836. .dashboard-item-header-collapse-button {
  3837. font-size: 13px;
  3838. vertical-align: middle;
  3839. font-weight: bold !important; }
  3840. .dashboard-item-header-buttons {
  3841. margin-left: 10px;
  3842. font-size: 13px;
  3843. vertical-align: middle;
  3844. visibility: hidden; }
  3845. .dashboard-item-header:hover .dashboard-item-header-buttons {
  3846. visibility: visible; }
  3847. .dashboard-item-content {
  3848. background: #fff;
  3849. border-radius: 4px;
  3850. box-shadow: 0 2px 0 0 #d0dbe6;
  3851. overflow: hidden; }
  3852. .dashboard-item-content.contrast {
  3853. background: #59677e;
  3854. color: #fff; }
  3855. .dashboard-item-content.contrast .loading-indicator {
  3856. color: #fff; }
  3857. .dashboard-item-content ul:not(.inline) li {
  3858. border-bottom: 1px solid #f4f4f4;
  3859. font-size: 13px;
  3860. padding: 8px; }
  3861. .dashboard-item-content ul:not(.inline) li.nowrap {
  3862. overflow: hidden;
  3863. text-overflow: ellipsis;
  3864. white-space: nowrap; }
  3865. .dashboard-item-content ul:not(.inline) li.contrast {
  3866. background: #59677e;
  3867. font-size: 12px; }
  3868. .dashboard-item-content ul:not(.inline) li.contrast, .dashboard-item-content ul:not(.inline) li.contrast a, .dashboard-item-content ul:not(.inline) li.contrast a:visited, .dashboard-item-content ul:not(.inline) li.contrast a:hover {
  3869. color: #fff;
  3870. text-decoration: none;
  3871. text-transform: uppercase; }
  3872. .dashboard-item-content ul:not(.inline) li:last-child {
  3873. border-bottom: 0; }
  3874. .dashboard-item-content ul:not(.inline) li .float-right {
  3875. float: right;
  3876. position: relative; }
  3877. .dashboard-item-content ul:not(.inline) li .dim {
  3878. text-transform: lowercase;
  3879. font-size: 11px;
  3880. color: #d0dbe6; }
  3881. .dashboard-item-content ul:not(.inline) li .warning {
  3882. color: #c14747; }
  3883. .dashboard-item-content ul.inline {
  3884. display: inline-block; }
  3885. .dashboard-item-content ul.inline li {
  3886. display: inline-block;
  3887. margin-left: 10px; }
  3888. .dashboard-item-content ul.inline li:first-child {
  3889. margin-left: 0; }
  3890. .dashboard-item-content ul.inline li .nowrap {
  3891. white-space: nowrap; }
  3892. .dashboard-item-content ul.inline.bordered li {
  3893. border-left: 1px solid #d0dbe6;
  3894. margin-left: 0;
  3895. padding: 0 10px; }
  3896. .dashboard-item-content ul.inline.bordered li:first-child {
  3897. border-left: 0; }
  3898. .dashboard-item-content .padding {
  3899. padding: 10px; }
  3900. .dashboard-item-content .center {
  3901. text-align: center; }
  3902. .dashboard-item-content .big {
  3903. font-size: 20px;
  3904. font-weight: bold; }
  3905. .dashboard-item-content .highlight {
  3906. color: #47bac1; }
  3907. .dashboard-item-content .dim {
  3908. color: #d0dbe6; }
  3909. .dashboard-item-content canvas .chart-fillColor {
  3910. color: rgba(99, 154, 245, 0.25); }
  3911. .dashboard-item-content canvas .chart-strokeColor {
  3912. color: #639af5; }
  3913. .dashboard-item-content canvas .chart-pointColor {
  3914. color: #fff; }
  3915. .dashboard-item-content canvas .chart-pointHighlightFill {
  3916. color: #639af5; }
  3917. .dashboard-item-content canvas .chart-scaleGridLineColor {
  3918. color: rgba(0, 0, 0, 0.1); }
  3919. .dashboard-item-content canvas .chart-scaleLineColor {
  3920. color: rgba(0, 0, 0, 0.1); }
  3921. .dashboard-item-content canvas .chart-scaleFontColor {
  3922. color: #fff; }
  3923. .dashboard-item-collapse .icon-arrow-up {
  3924. display: inline; }
  3925. .dashboard-item-collapse .icon-arrow-down {
  3926. display: none; }
  3927. .dashboard-item.collapsed .dashboard-item-content {
  3928. display: none; }
  3929. .dashboard-item.collapsed .dashboard-item-collapse .icon-arrow-up {
  3930. display: none; }
  3931. .dashboard-item.collapsed .dashboard-item-collapse .icon-arrow-down {
  3932. display: inline; }
  3933. .add-dashboard + .select2 {
  3934. border-radius: 4px 0 0 4px !important;
  3935. background-color: #fff; }
  3936. .add-dashboard-link {
  3937. border-radius: 0 4px 4px 0 !important;
  3938. padding: 0 10px !important; }
  3939. /*# sourceMappingURL=base.css.map */