ace-part2.css 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715
  1. .timeline-style2 .timeline-info {
  2. width: 100px;
  3. }
  4. .timeline-style2 .timeline-indicator {
  5. font-size: 0;
  6. height: 12px;
  7. line-height: 12px;
  8. width: 12px;
  9. border-width: 1px !important;
  10. background-color: #FFFFFF !important;
  11. position: absolute;
  12. left: 85px;
  13. top: 3px;
  14. opacity: 1;
  15. border-radius: 100%;
  16. display: inline-block;
  17. padding: 0;
  18. }
  19. .timeline-style2 .timeline-date {
  20. display: inline-block;
  21. width: 72px;
  22. text-align: right;
  23. margin-right: 25px;
  24. color: #777;
  25. }
  26. .timeline-style2 .timeline-item .widget-box {
  27. margin-left: 112px;
  28. }
  29. .timeline-style2 .timeline-label {
  30. width: 75px;
  31. text-align: center;
  32. margin-left: 0;
  33. margin-bottom: 10px;
  34. text-align: right;
  35. color: #666;
  36. font-size: 14px;
  37. }
  38. .timeline-time {
  39. text-align: center;
  40. position: static;
  41. }
  42. .dataTables_length select {
  43. width: 70px;
  44. height: 25px;
  45. padding: 2px 3px;
  46. }
  47. .dataTables_length label {
  48. font-weight: normal;
  49. }
  50. .dataTables_filter {
  51. text-align: right;
  52. }
  53. .dataTables_filter input[type=text],
  54. .dataTables_filter input[type=search] {
  55. width: 125px;
  56. height: 18px;
  57. line-height: 18px;
  58. -webkit-box-sizing: content-box;
  59. -moz-box-sizing: content-box;
  60. box-sizing: content-box;
  61. padding: 4px 6px;
  62. }
  63. .dataTables_filter label {
  64. font-weight: normal;
  65. }
  66. .dataTables_info {
  67. font-size: 14px;
  68. }
  69. .dataTables_paginate {
  70. text-align: right;
  71. }
  72. .dataTables_paginate .pagination {
  73. margin: 0 12px;
  74. }
  75. .dataTables_wrapper label {
  76. display: inline-block;
  77. font-size: 13px;
  78. }
  79. .dataTables_wrapper input[type=text],
  80. .dataTables_wrapper input[type=search],
  81. .dataTables_wrapper select {
  82. margin-bottom: 0 !important;
  83. margin: 0 4px;
  84. }
  85. .dataTables_wrapper .row {
  86. margin: 0 !important;
  87. }
  88. .dataTables_wrapper .row:first-child {
  89. padding-top: 12px;
  90. padding-bottom: 12px;
  91. background-color: #EFF3F8;
  92. }
  93. .dataTables_wrapper .row:first-child + .dataTable {
  94. border-top: 1px solid #dddddd;
  95. border-bottom: 1px solid #dddddd;
  96. }
  97. .dataTables_wrapper .row:last-child {
  98. border-bottom: 1px solid #e0e0e0;
  99. padding-top: 12px;
  100. padding-bottom: 12px;
  101. background-color: #EFF3F8;
  102. }
  103. .dataTables_wrapper .dataTables_scroll + .row {
  104. border-top: 1px solid #e0e0e0;
  105. }
  106. .dataTable {
  107. margin-bottom: 0;
  108. }
  109. .dataTable > thead > tr > th[class*=sort] {
  110. cursor: pointer;
  111. }
  112. .dataTable > thead > tr > th[class*=sort]:after {
  113. float: right;
  114. display: inline;
  115. content: "\f0dc";
  116. font-family: FontAwesome;
  117. font-size: 13px;
  118. font-weight: normal;
  119. color: #555;
  120. }
  121. .dataTable > thead > tr > th[class*=sort]:hover {
  122. color: #547ea8;
  123. }
  124. .dataTable > thead > tr > th[class*=sorting_] {
  125. color: #307ecc;
  126. }
  127. .dataTable > thead > tr > th.sorting_desc,
  128. .dataTable > thead > tr > th.sorting_asc {
  129. background-image: -webkit-linear-gradient(top, #eff3f8 0%, #e3e7ed 100%);
  130. background-image: -o-linear-gradient(top, #eff3f8 0%, #e3e7ed 100%);
  131. background-image: linear-gradient(to bottom, #eff3f8 0%, #e3e7ed 100%);
  132. background-repeat: repeat-x;
  133. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeff3f8', endColorstr='#ffe3e7ed', GradientType=0);
  134. }
  135. .dataTable > thead > tr > th.sorting_desc:after {
  136. content: "\f0dd";
  137. top: -6px;
  138. color: #307ecc;
  139. }
  140. .dataTable > thead > tr > th.sorting_asc:after {
  141. content: "\f0de";
  142. top: 4px;
  143. color: #307ecc;
  144. }
  145. .dataTable > thead > tr > th.sorting_disabled {
  146. cursor: inherit;
  147. }
  148. .dataTable > thead > tr > th.sorting_disabled:after {
  149. display: none;
  150. }
  151. .dataTables_scrollHead + .dataTables_scrollBody > .dataTable > thead > tr > th:after {
  152. display: none;
  153. }
  154. .dataTables_scrollHeadInner {
  155. width: auto !important;
  156. }
  157. .dataTables_scrollHeadInner > .dataTable > thead > tr > th {
  158. border-bottom-width: 0 !important;
  159. }
  160. .dataTables_borderWrap .dataTables_scrollBody,
  161. .dataTables_borderWrap .dataTables_scrollHead {
  162. border: 1px solid #dddddd !important;
  163. border-width: 0 1px !important;
  164. }
  165. .dataTables_borderWrap .dataTables_scrollBody .table-bordered,
  166. .dataTables_borderWrap .dataTables_scrollHead .table-bordered {
  167. border-left-width: 0;
  168. border-right-width: 0;
  169. }
  170. .dataTables_borderWrap .dataTables_scrollBody .table-bordered > thead > tr > th:first-child,
  171. .dataTables_borderWrap .dataTables_scrollHead .table-bordered > thead > tr > th:first-child,
  172. .dataTables_borderWrap .dataTables_scrollBody .table-bordered > tbody > tr > td:first-child,
  173. .dataTables_borderWrap .dataTables_scrollHead .table-bordered > tbody > tr > td:first-child {
  174. border-left-width: 0;
  175. }
  176. .dataTables_borderWrap .dataTables_scrollBody .table-bordered > thead > tr > th:last-child,
  177. .dataTables_borderWrap .dataTables_scrollHead .table-bordered > thead > tr > th:last-child,
  178. .dataTables_borderWrap .dataTables_scrollBody .table-bordered > tbody > tr > td:last-child,
  179. .dataTables_borderWrap .dataTables_scrollHead .table-bordered > tbody > tr > td:last-child {
  180. border-right-width: 0;
  181. }
  182. table.dataTable {
  183. clear: both;
  184. max-width: none !important;
  185. }
  186. table.dataTable th:active {
  187. outline: none;
  188. }
  189. div.dataTables_scrollHead table {
  190. margin-bottom: 0 !important;
  191. border-bottom-left-radius: 0;
  192. border-bottom-right-radius: 0;
  193. }
  194. div.dataTables_scrollHead table thead tr:last-child th:first-child,
  195. div.dataTables_scrollHead table thead tr:last-child td:first-child {
  196. border-bottom-left-radius: 0 !important;
  197. border-bottom-right-radius: 0 !important;
  198. }
  199. div.dataTables_scrollBody table {
  200. border-top: none;
  201. margin-top: 0 !important;
  202. margin-bottom: 0 !important;
  203. }
  204. div.dataTables_scrollBody tbody tr:first-child th,
  205. div.dataTables_scrollBody tbody tr:first-child td {
  206. border-top: none;
  207. }
  208. div.dataTables_scrollFoot table {
  209. margin-top: 0 !important;
  210. border-top: none;
  211. }
  212. .DTTT_Print .main-content {
  213. margin-left: 0 !important;
  214. margin-right: 0 !important;
  215. }
  216. .DTTT_Print .navbar-fixed-top + .main-container {
  217. padding-top: 0;
  218. }
  219. .tableTools-container {
  220. margin-bottom: 8px;
  221. }
  222. .tableTools-alert.gritter-item-wrapper {
  223. padding: 12px 11px 8px;
  224. z-index: 1999;
  225. }
  226. ul.ColVis_collection {
  227. z-index: 2002;
  228. }
  229. ul.ColVis_collection > li > a {
  230. padding: 0;
  231. }
  232. ul.ColVis_collection > li > a:focus {
  233. outline: none;
  234. }
  235. ul.ColVis_collection > li.ColVis_Special {
  236. border-top: 1px solid #DDD;
  237. }
  238. ul.ColVis_collection > li.ColVis_Special > a {
  239. padding: 6px 11px 7px;
  240. text-align: center;
  241. }
  242. ul.ColVis_collection label {
  243. margin: auto;
  244. padding: 6px 11px 7px;
  245. display: block;
  246. cursor: pointer;
  247. }
  248. div.ColVis_catcher {
  249. position: absolute;
  250. z-index: 1101;
  251. }
  252. div.ColVis_collectionBackground {
  253. position: fixed;
  254. top: 0;
  255. left: 0;
  256. height: 100%;
  257. width: 100%;
  258. background-color: black;
  259. z-index: 1100;
  260. }
  261. .fc-toolbar h2 {
  262. font-size: 22px;
  263. color: #65A0CE;
  264. }
  265. .fc-unthemed th,
  266. .fc-unthemed td,
  267. .fc-unthemed hr,
  268. .fc-unthemed thead,
  269. .fc-unthemed tbody,
  270. .fc-unthemed .fc-row,
  271. .fc-unthemed .fc-popover {
  272. border-color: #BCD4E5;
  273. }
  274. .fc-unthemed .fc-today {
  275. background: #FFC;
  276. }
  277. .fc-event {
  278. border-width: 0;
  279. color: #ffffff;
  280. padding: 1px 1px 2px 2px;
  281. border-radius: 0;
  282. }
  283. .fc-event:not([class*="label-"]) {
  284. background-color: #abbac3;
  285. }
  286. .fc-event.label-yellow {
  287. color: #996633;
  288. }
  289. .fc-event.label-light {
  290. color: #888888;
  291. }
  292. .label-yellow .fc-event {
  293. color: #996633;
  294. }
  295. .label-light .fc-event {
  296. color: #888;
  297. }
  298. [class*="label-"] > .fc-event,
  299. [class*="label-"] > .fc-event > .fc-event-skin.fc-event-head {
  300. background-color: inherit;
  301. }
  302. .fc-event.ui-draggable-dragging {
  303. cursor: move;
  304. }
  305. .fc-event.fc-event-vert,
  306. .fc-event-vert > .fc-event {
  307. padding: 0 0 1px;
  308. }
  309. .fc-day-number {
  310. color: #2E6589;
  311. opacity: 1;
  312. filter: alpha(opacity=100);
  313. }
  314. .fc-widget-header,
  315. .fc .fc-axis {
  316. background: #ECF2F7;
  317. color: #8090A0;
  318. }
  319. .fc-event-hori,
  320. .fc-event-vert {
  321. border-radius: 0 !important;
  322. border-color: transparent;
  323. }
  324. .fc-event-vert .fc-event-content {
  325. padding-left: 1px;
  326. padding-right: 1px;
  327. }
  328. .fc-event-vert .fc-event-time {
  329. padding: 0;
  330. }
  331. .fc-state-default {
  332. border: none;
  333. }
  334. .fc-state-default,
  335. .fc-state-default .fc-button-inner {
  336. border: none;
  337. background-color: #abbac3;
  338. color: #FFF;
  339. background-image: none;
  340. box-shadow: none;
  341. text-shadow: none;
  342. border-radius: 0 !important;
  343. margin-left: 2px;
  344. }
  345. .fc-state-default .fc-button-effect {
  346. display: none;
  347. }
  348. .fc-state-disabled,
  349. .fc-state-disabled .fc-button-inner {
  350. opacity: 0.75;
  351. filter: alpha(opacity=75);
  352. color: #DDD;
  353. }
  354. .fc-state-active,
  355. .fc-state-active .fc-button-inner {
  356. border-color: #4F99C6;
  357. background-color: #6FB3E0;
  358. }
  359. .fc-state-hover,
  360. .fc-state-hover .fc-button-inner {
  361. background-color: #8B9AA3;
  362. }
  363. .fc .fc-button-group > * {
  364. margin: 0 1px 0 0;
  365. }
  366. .external-event {
  367. margin: 6px 0;
  368. padding: 0;
  369. cursor: default;
  370. display: block;
  371. font-size: 13px;
  372. line-height: 28px;
  373. color: #ffffff;
  374. }
  375. .external-event:not([class*="label-"]) {
  376. background-color: #abbac3;
  377. }
  378. .external-event:hover {
  379. opacity: 1;
  380. filter: alpha(opacity=100);
  381. }
  382. .external-event.ui-draggable-dragging {
  383. cursor: move;
  384. }
  385. .external-event.label-yellow {
  386. color: #996633;
  387. }
  388. .external-event.label-light {
  389. color: #888888;
  390. }
  391. .external-event > .ace-icon:first-child {
  392. display: inline-block;
  393. height: 32px;
  394. width: 32px;
  395. text-align: center;
  396. line-height: 30px;
  397. margin-right: 5px;
  398. font-size: 15px;
  399. border-right: 1px solid #FFF;
  400. }
  401. /**
  402. .widget-main {
  403. .fc {
  404. position:relative;
  405. top:-40px;
  406. > .fc-header {
  407. position:relative;
  408. z-index:10;
  409. }
  410. .fc-header-space {
  411. padding-left:2px;
  412. }
  413. }
  414. .fc-header-title > h2 {
  415. font-size: floor(@base-font-size * 1.4);
  416. line-height: 36px;
  417. }
  418. .fc-content {
  419. top:-14px;
  420. z-index:11;
  421. }
  422. .fc-button-content {
  423. height:37px;
  424. line-height:36px;
  425. }
  426. }
  427. */
  428. @media only screen and (max-width: 480px) {
  429. .fc-header td {
  430. display: block;
  431. width: auto;
  432. text-align: left;
  433. }
  434. }
  435. .chosen-container + .help-inline {
  436. vertical-align: middle;
  437. }
  438. /**
  439. .chosen-select {
  440. display: inline !important; //for validation plugin to work it must be displayed
  441. visibility: hidden;
  442. opacity: 0;
  443. position: absolute;
  444. z-index: -1;
  445. width: 0;
  446. height: 0;
  447. border-width: 0;
  448. }
  449. */
  450. .chosen-container,
  451. [class*="chosen-container"] {
  452. vertical-align: middle;
  453. }
  454. .chosen-container > .chosen-single,
  455. [class*="chosen-container"] > .chosen-single {
  456. line-height: 28px;
  457. height: 32px;
  458. box-shadow: none;
  459. background: #FAFAFA;
  460. }
  461. .chosen-choices {
  462. box-shadow: none !important;
  463. }
  464. .chosen-container-single .chosen-single abbr {
  465. background: none;
  466. }
  467. .chosen-container-single .chosen-single abbr:after {
  468. content: "\f00d";
  469. display: inline-block;
  470. color: #888;
  471. font-family: FontAwesome;
  472. font-size: 13px;
  473. position: absolute;
  474. right: 0;
  475. top: -7px;
  476. }
  477. .chosen-container-single .chosen-single abbr:hover:after {
  478. color: #464646;
  479. }
  480. .chosen-container-single.chosen-disabled .chosen-single abbr:hover:after {
  481. color: #464646;
  482. }
  483. .chosen-single div b {
  484. background: none !important;
  485. }
  486. .chosen-single div b:before {
  487. content: "\f0d7";
  488. display: inline-block;
  489. color: #888;
  490. font-family: FontAwesome;
  491. font-size: 12px;
  492. position: relative;
  493. top: -1px;
  494. left: 1px;
  495. }
  496. .chosen-container-active.chosen-with-drop .chosen-single div b:before {
  497. content: "\f0d8";
  498. }
  499. .chosen-container-single .chosen-search {
  500. position: relative;
  501. }
  502. .chosen-container-single .chosen-search input[type="text"] {
  503. background: none;
  504. border-radius: 0;
  505. line-height: 28px;
  506. height: 28px;
  507. }
  508. .chosen-container-single .chosen-search:after {
  509. content: "\f002";
  510. display: inline-block;
  511. color: #888;
  512. font-family: FontAwesome;
  513. font-size: 14px;
  514. position: absolute;
  515. top: 8px;
  516. right: 12px;
  517. }
  518. .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  519. height: 25px;
  520. }
  521. .chosen-container-multi .chosen-choices li.search-choice {
  522. line-height: 16px;
  523. padding-bottom: 4px;
  524. }
  525. .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  526. background: none;
  527. }
  528. .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
  529. content: "\f00d";
  530. display: inline-block;
  531. color: #888;
  532. font-family: FontAwesome;
  533. font-size: 13px;
  534. position: absolute;
  535. right: 2px;
  536. top: -1px;
  537. }
  538. .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  539. text-decoration: none;
  540. }
  541. .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover:before {
  542. color: #464646;
  543. }
  544. .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close:before {
  545. color: #464646;
  546. }
  547. .chosen-container .chosen-results-scroll-down span,
  548. .chosen-container .chosen-results-scroll-up span {
  549. background: none;
  550. }
  551. .chosen-container .chosen-results-scroll-down span:before,
  552. .chosen-container .chosen-results-scroll-up span:before {
  553. content: "\f0d7";
  554. display: inline-block;
  555. color: #888;
  556. font-family: FontAwesome;
  557. font-size: 12px;
  558. position: relative;
  559. top: -1px;
  560. left: 1px;
  561. }
  562. .chosen-container .chosen-results-scroll-up span:before {
  563. content: "\f0d8";
  564. }
  565. .chosen-container-active .chosen-single-with-drop div b:before {
  566. content: "\f0d8";
  567. }
  568. .chosen-rtl .chosen-search input[type="text"] {
  569. background: none;
  570. }
  571. .chosen-rtl .chosen-search:after {
  572. content: "";
  573. display: none;
  574. }
  575. .chosen-rtl .chosen-search:before {
  576. content: "\f002";
  577. display: inline-block;
  578. color: #888;
  579. font-family: FontAwesome;
  580. font-size: 14px;
  581. position: absolute;
  582. top: 9px;
  583. left: 12px;
  584. }
  585. /** chosen - etc */
  586. .chosen-container-single .chosen-single {
  587. border-radius: 0;
  588. }
  589. .chosen-container .chosen-results li.highlighted {
  590. background: #316AC5;
  591. color: #FFF;
  592. }
  593. .chosen-container-single .chosen-drop {
  594. border-radius: 0;
  595. border-bottom: 3px solid #4492C9;
  596. border-color: #4492C9;
  597. }
  598. .chosen-single.chosen-single-with-drop,
  599. .chosen-container-active .chosen-single {
  600. border-color: #4492C9;
  601. }
  602. .form-group.has-error .chosen-single {
  603. border-color: #f2a696 !important;
  604. }
  605. .form-group.has-info .chosen-single {
  606. border-color: #72aec2 !important;
  607. }
  608. .form-group.has-warning .chosen-single {
  609. border-color: #e3c94c !important;
  610. }
  611. .form-group.has-success .chosen-single {
  612. border-color: #9cc573 !important;
  613. }
  614. .chosen-container-active.chosen-with-drop .chosen-single {
  615. border-color: #4492C9;
  616. }
  617. .chosen-container .chosen-drop {
  618. display: none;
  619. }
  620. .chosen-container.chosen-with-drop .chosen-drop {
  621. left: auto;
  622. right: auto;
  623. display: block;
  624. }
  625. @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  626. .chosen-rtl .chosen-search input[type="text"],
  627. .chosen-container-single .chosen-single abbr,
  628. .chosen-container-single .chosen-single div b,
  629. .chosen-container-single .chosen-search input[type="text"],
  630. .chosen-container-multi .chosen-choices li.search-choice .search-choice-close,
  631. .chosen-container .chosen-results-scroll-down span,
  632. .chosen-container .chosen-results-scroll-up span {
  633. background-image: none !important;
  634. background-repeat: no-repeat !important;
  635. background-size: auto !important;
  636. }
  637. }
  638. .tag-input-style + .chosen-container-multi .chosen-choices li.search-choice {
  639. background-image: none;
  640. background-color: #91b8d0;
  641. color: #FFFFFF;
  642. display: inline-block;
  643. font-size: 13px;
  644. font-weight: normal;
  645. margin-bottom: 3px;
  646. margin-right: 3px;
  647. padding: 6px 22px 7px 9px;
  648. position: relative;
  649. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  650. transition: all 0.2s ease 0s;
  651. vertical-align: baseline;
  652. white-space: nowrap;
  653. border: none;
  654. -webkit-box-shadow: none;
  655. box-shadow: none;
  656. border-radius: 0;
  657. }
  658. .tag-input-style + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  659. position: absolute;
  660. top: 0;
  661. bottom: 0;
  662. right: 0;
  663. width: 18px;
  664. height: auto;
  665. line-height: 25px;
  666. text-align: center;
  667. }
  668. .tag-input-style + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
  669. color: #FFF;
  670. position: static;
  671. font-size: 11px;
  672. }
  673. .tag-input-style + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  674. background-color: rgba(0, 0, 0, 0.2);
  675. }
  676. .tag-input-style + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover:before {
  677. color: #FFF;
  678. }
  679. .tag-input-style + .chosen-container-multi.chosen-rtl .chosen-choices li.search-choice {
  680. padding: 6px 9px 7px 22px;
  681. margin-left: 0;
  682. margin-right: 3px !important;
  683. }
  684. .tag-input-style + .chosen-container-multi.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  685. right: auto;
  686. left: 0;
  687. }
  688. .select2-container .select2-choice {
  689. border-radius: 0;
  690. height: 32px;
  691. line-height: 28px;
  692. }
  693. .select2-container.select2-drop-above .select2-choice {
  694. border-radius: 0;
  695. }
  696. .select2-container[class*="input-"] {
  697. max-width: none;
  698. }
  699. .select2-container.input-mini {
  700. min-width: 100px;
  701. }
  702. .select2-container .select2-choice abbr,
  703. .select2-search-choice-close {
  704. background: none;
  705. }
  706. .select2-container .select2-choice abbr:before,
  707. .select2-search-choice-close:before {
  708. font-family: FontAwesome;
  709. font-size: 12px;
  710. display: inline;
  711. content: "\f00d";
  712. color: #888;
  713. position: relative;
  714. top: -1px;
  715. }
  716. .select2-container .select2-choice abbr:hover:before,
  717. .select2-search-choice-close:hover:before {
  718. color: #555;
  719. }
  720. .select2-container .select2-choice abbr:before {
  721. top: -7px;
  722. }
  723. .select2-search-choice-close:hover {
  724. text-decoration: none !important;
  725. }
  726. .select2-drop {
  727. border-radius: 0;
  728. border: 1px solid #4492C9;
  729. border-width: 0 1px 3px;
  730. }
  731. .select2-drop.select2-drop-above {
  732. border-radius: 0;
  733. }
  734. .select2-container .select2-choice {
  735. background: #FAFAFA none;
  736. }
  737. .select2-container-active .select2-choice,
  738. .select2-container-active .select2-choices,
  739. .select2-dropdown-open.select2-drop-above .select2-choice,
  740. .select2-dropdown-open.select2-drop-above .select2-choices,
  741. .select2-container-multi.select2-container-active .select2-choices {
  742. border-color: #4492C9;
  743. }
  744. .select2-results .select2-highlighted {
  745. background: #316AC5;
  746. }
  747. .select2-container .select2-choice .select2-arrow {
  748. border-radius: 0;
  749. background: transparent none;
  750. border: none;
  751. }
  752. .select2-container .select2-choice .select2-arrow b {
  753. background: none;
  754. }
  755. .select2-container .select2-choice .select2-arrow b:before {
  756. font-family: FontAwesome;
  757. font-size: 12px;
  758. display: inline;
  759. content: "\f0d7";
  760. color: #888;
  761. position: relative;
  762. left: 5px;
  763. }
  764. .select2-dropdown-open .select2-choice .select2-arrow b:before {
  765. content: "\f0d8";
  766. }
  767. .select2-search .select2-input {
  768. background: #fff none;
  769. margin-top: 4px;
  770. }
  771. .select2-search:after {
  772. font-family: FontAwesome;
  773. font-size: 14px;
  774. display: inline;
  775. content: "\f002";
  776. color: #777;
  777. position: relative;
  778. top: 0;
  779. left: -20px;
  780. z-index: 0;
  781. }
  782. .select2-dropdown-open.select2-drop-above .select2-choice,
  783. .select2-dropdown-open.select2-drop-above .select2-choices {
  784. background-image: none;
  785. background-color: #F6F6F6;
  786. }
  787. .select2-container-multi .select2-choices .select2-search-field input {
  788. border: none !important;
  789. -webkit-box-shadow: none !important;
  790. box-shadow: none !important;
  791. background: none !important;
  792. font-size: 14px;
  793. }
  794. .select2-container-multi .select2-choices .select2-search-choice {
  795. line-height: 16px;
  796. padding-bottom: 4px;
  797. }
  798. .select2-container-active .select2-choice,
  799. .select2-container-active .select2-choices,
  800. .select2-container-multi.select2-container-active .select2-choices,
  801. .select2-dropdown-open.select2-drop-above .select2-choice,
  802. .select2-dropdown-open.select2-drop-above .select2-choices {
  803. -webkit-box-shadow: none;
  804. box-shadow: none;
  805. }
  806. .select2-search input.select2-active {
  807. background-color: #FFF;
  808. position: relative;
  809. z-index: 1;
  810. }
  811. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  812. .select2-search input,
  813. .select2-search-choice-close,
  814. .select2-container .select2-choice abbr,
  815. .select2-container .select2-choice div b {
  816. background-image: none !important;
  817. background-size: auto !important;
  818. }
  819. .select2-search input {
  820. background-position: auto !important;
  821. }
  822. }
  823. .select2-container-active.select2-dropdown-open .select2-choice {
  824. background-image: -webkit-linear-gradient(top, #eeeeee 0%, #ffffff 100%);
  825. background-image: -o-linear-gradient(top, #eeeeee 0%, #ffffff 100%);
  826. background-image: linear-gradient(to bottom, #eeeeee 0%, #ffffff 100%);
  827. background-repeat: repeat-x;
  828. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffffffff', GradientType=0);
  829. }
  830. .select2-container-active.select2-drop-above .select2-choice {
  831. background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  832. background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  833. background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  834. background-repeat: repeat-x;
  835. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
  836. }
  837. .form-group.has-error .select2-choice,
  838. .form-group.has-error .select2-choices {
  839. border-color: #f2a696 !important;
  840. }
  841. .form-group.has-info .select2-choice,
  842. .form-group.has-info .select2-choices {
  843. border-color: #72aec2 !important;
  844. }
  845. .form-group.has-warning .select2-choice,
  846. .form-group.has-warning .select2-choices {
  847. border-color: #e3c94c !important;
  848. }
  849. .form-group.has-success .select2-choice,
  850. .form-group.has-success .select2-choices {
  851. border-color: #9cc573 !important;
  852. }
  853. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  854. .select2-search input,
  855. .select2-search-choice-close,
  856. .select2-container .select2-choice abbr,
  857. .select2-container .select2-choice .select2-arrow b {
  858. background-image: none !important;
  859. background-repeat: no-repeat !important;
  860. background-size: auto !important;
  861. }
  862. .select2-search input {
  863. background-position: auto !important;
  864. }
  865. }
  866. .select2-container-multi.tag-input-style .select2-choices .select2-search-choice {
  867. background-image: none;
  868. background-color: #91b8d0;
  869. color: #FFFFFF;
  870. display: inline-block;
  871. font-size: 13px;
  872. font-weight: normal;
  873. margin-bottom: 3px;
  874. margin-right: 0;
  875. padding: 6px 22px 7px 9px;
  876. position: relative;
  877. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  878. transition: all 0.2s ease 0s;
  879. vertical-align: baseline;
  880. white-space: nowrap;
  881. border: none;
  882. -webkit-box-shadow: none;
  883. box-shadow: none;
  884. border-radius: 0;
  885. }
  886. .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close {
  887. position: absolute;
  888. top: 0;
  889. bottom: 0;
  890. right: 0;
  891. left: auto;
  892. width: 18px;
  893. height: auto;
  894. line-height: 25px;
  895. text-align: center;
  896. }
  897. .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:before {
  898. color: #FFF;
  899. position: static;
  900. font-size: 11px;
  901. }
  902. .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  903. background-color: rgba(0, 0, 0, 0.2);
  904. }
  905. .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:hover:before {
  906. color: #FFF;
  907. }
  908. #colorbox:focus,
  909. #colorbox:active {
  910. outline: none;
  911. }
  912. #cboxTopLeft,
  913. #cboxTopCenter,
  914. #cboxTopRight,
  915. #cboxMiddleLeft,
  916. #cboxMiddleRight,
  917. #cboxBottomLeft,
  918. #cboxBottomCenter,
  919. #cboxBottomRight {
  920. background: none !important;
  921. opacity: 0;
  922. }
  923. #cboxContent {
  924. border: 12px solid #000;
  925. background-color: #FFF;
  926. padding: 7px;
  927. }
  928. #cboxOverlay {
  929. background: rgba(0, 0, 0, 0.95);
  930. background: #000;
  931. }
  932. #cboxCurrent {
  933. left: 64px;
  934. margin-bottom: 4px;
  935. font-size: 14px;
  936. }
  937. #cboxTitle {
  938. margin-bottom: 4px;
  939. font-size: 14px;
  940. color: #777;
  941. }
  942. #cboxNext,
  943. #cboxPrevious,
  944. #cboxClose {
  945. background: none;
  946. text-indent: 0;
  947. width: 26px;
  948. height: 26px;
  949. line-height: 22px;
  950. padding: 0 4px;
  951. text-align: center;
  952. border: 2px solid #999;
  953. border-radius: 16px;
  954. color: #666;
  955. font-size: 12px;
  956. margin-left: 5px;
  957. margin-bottom: 5px;
  958. }
  959. #cboxNext:hover,
  960. #cboxPrevious:hover {
  961. color: #333;
  962. border-color: #666;
  963. }
  964. #cboxContent {
  965. overflow: visible;
  966. }
  967. #cboxClose {
  968. background-color: #000;
  969. border: 2px solid #FFF;
  970. border-radius: 32px;
  971. color: #FFF;
  972. font-size: 21px;
  973. height: 28px;
  974. width: 28px;
  975. padding-bottom: 2px;
  976. margin-left: 0;
  977. right: -14px;
  978. top: -14px;
  979. }
  980. #cboxLoadingOverlay {
  981. background: none !important;
  982. }
  983. #cboxLoadingGraphic {
  984. background: #FFF none !important;
  985. text-align: center;
  986. }
  987. #cboxLoadingGraphic > .ace-icon {
  988. display: inline-block;
  989. background-color: #FFF;
  990. border-radius: 8px;
  991. width: 32px;
  992. height: 32px;
  993. position: relative;
  994. top: 48%;
  995. text-align: center;
  996. vertical-align: middle;
  997. font-size: 24px;
  998. color: #FE7E3E;
  999. }
  1000. .ace-spinner {
  1001. display: inline-block;
  1002. }
  1003. .ace-spinner .spinbox-buttons.btn-group-vertical {
  1004. min-width: 18px;
  1005. }
  1006. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn {
  1007. font-size: 10px;
  1008. padding: 0;
  1009. width: 22px;
  1010. height: 16px;
  1011. line-height: 8px;
  1012. margin-left: 0;
  1013. }
  1014. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn:first-child {
  1015. margin-top: 0;
  1016. }
  1017. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn > .ace-icon {
  1018. margin: 0;
  1019. padding: 0;
  1020. }
  1021. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn + .btn {
  1022. margin-top: 2px;
  1023. }
  1024. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn-xs {
  1025. height: 14px;
  1026. line-height: 7px;
  1027. }
  1028. .ace-spinner .spinbox-buttons.btn-group-vertical > .btn-lg {
  1029. height: 22px;
  1030. line-height: 10px;
  1031. width: 22px;
  1032. }
  1033. .ace-spinner .spinbox-buttons > button.btn.spinbox-up:active {
  1034. top: -1px;
  1035. }
  1036. .ace-spinner:not(.touch-spinner) .spinbox-buttons > .btn > .ace-icon {
  1037. margin-top: -1px;
  1038. }
  1039. .ace-spinner.touch-spinner .spinbox-buttons {
  1040. margin: 0;
  1041. font-size: 0;
  1042. }
  1043. .ace-spinner.touch-spinner .spinbox-buttons .btn-sm {
  1044. width: 32px;
  1045. }
  1046. .ace-spinner.touch-spinner .spinbox-buttons .btn-xs {
  1047. width: 24px;
  1048. }
  1049. .ace-spinner.touch-spinner .spinbox-buttons .btn-lg {
  1050. width: 40px;
  1051. }
  1052. .ace-spinner.touch-spinner .spinbox-buttons > .btn {
  1053. margin: 0 1px !important;
  1054. }
  1055. .ace-spinner.touch-spinner .spinbox-buttons > .btn-xs {
  1056. padding-top: 3px;
  1057. padding-bottom: 3px;
  1058. }
  1059. .ace-spinner.touch-spinner .spinbox-buttons > .btn > .ace-icon {
  1060. vertical-align: middle;
  1061. display: inline-block;
  1062. }
  1063. .steps {
  1064. list-style: none;
  1065. display: table;
  1066. width: 100%;
  1067. padding: 0;
  1068. margin: 0;
  1069. position: relative;
  1070. }
  1071. .steps li {
  1072. display: table-cell;
  1073. text-align: center;
  1074. width: 1%;
  1075. }
  1076. .steps li .step {
  1077. border: 5px solid #ced1d6;
  1078. color: #546474;
  1079. font-size: 15px;
  1080. border-radius: 100%;
  1081. background-color: #FFF;
  1082. position: relative;
  1083. z-index: 2;
  1084. display: inline-block;
  1085. width: 40px;
  1086. height: 40px;
  1087. line-height: 30px;
  1088. text-align: center;
  1089. }
  1090. .steps li:before {
  1091. display: block;
  1092. content: "";
  1093. width: 100%;
  1094. height: 1px;
  1095. font-size: 0;
  1096. overflow: hidden;
  1097. border-top: 4px solid #CED1D6;
  1098. position: relative;
  1099. top: 21px;
  1100. z-index: 1;
  1101. }
  1102. .steps li.last-child:before {
  1103. max-width: 50%;
  1104. width: 50%;
  1105. }
  1106. .steps li:last-child:before {
  1107. max-width: 50%;
  1108. width: 50%;
  1109. }
  1110. .steps li:first-child:before {
  1111. max-width: 51%;
  1112. left: 50%;
  1113. }
  1114. .steps li.active:before,
  1115. .steps li.complete:before,
  1116. .steps li.active .step,
  1117. .steps li.complete .step {
  1118. border-color: #5293c4;
  1119. }
  1120. .steps li.complete .step {
  1121. cursor: default;
  1122. color: #FFF;
  1123. -webkit-transition: transform ease 0.1s;
  1124. -o-transition: transform ease 0.1s;
  1125. transition: transform ease 0.1s;
  1126. }
  1127. .steps li.complete .step:before {
  1128. display: block;
  1129. position: absolute;
  1130. top: 0;
  1131. left: 0;
  1132. bottom: 0;
  1133. right: 0;
  1134. line-height: 30px;
  1135. text-align: center;
  1136. border-radius: 100%;
  1137. content: "\f00c";
  1138. background-color: #FFF;
  1139. z-index: 3;
  1140. font-family: FontAwesome;
  1141. font-size: 17px;
  1142. color: #87ba21;
  1143. }
  1144. .steps li.complete:hover .step {
  1145. -moz-transform: scale(1.1);
  1146. -webkit-transform: scale(1.1);
  1147. -o-transform: scale(1.1);
  1148. -ms-transform: scale(1.1);
  1149. transform: scale(1.1);
  1150. border-color: #80afd4;
  1151. }
  1152. .steps li.complete:hover:before {
  1153. border-color: #80afd4;
  1154. }
  1155. .steps li .title {
  1156. display: block;
  1157. margin-top: 4px;
  1158. max-width: 100%;
  1159. color: #949ea7;
  1160. font-size: 14px;
  1161. z-index: 104;
  1162. text-align: center;
  1163. table-layout: fixed;
  1164. word-wrap: break-word;
  1165. }
  1166. .steps li.complete .title,
  1167. .steps li.active .title {
  1168. color: #2b3d53;
  1169. }
  1170. .step-content {
  1171. position: relative;
  1172. }
  1173. .step-content .step-pane {
  1174. display: none;
  1175. min-height: 200px;
  1176. padding: 4px 8px 12px;
  1177. }
  1178. .step-content .step-pane.active {
  1179. display: block;
  1180. }
  1181. .wizard-actions {
  1182. text-align: right;
  1183. }
  1184. @media only screen and (max-width: 767px) {
  1185. .steps li .step {
  1186. width: 30px;
  1187. height: 30px;
  1188. line-height: 24px;
  1189. border-width: 3px;
  1190. }
  1191. .steps li:before,
  1192. .steps li:after {
  1193. border-width: 3px;
  1194. }
  1195. .steps li.complete .step:before {
  1196. line-height: 24px;
  1197. font-size: 13px;
  1198. }
  1199. .steps li:before {
  1200. top: 16px;
  1201. }
  1202. .step-content .step-pane {
  1203. padding: 4px 4px 6px;
  1204. min-height: 150px;
  1205. }
  1206. }
  1207. .tree {
  1208. margin: auto;
  1209. padding: 0 0 0 9px;
  1210. overflow-x: hidden;
  1211. overflow-y: auto;
  1212. position: relative;
  1213. }
  1214. .tree:before {
  1215. display: inline-block;
  1216. content: "";
  1217. position: absolute;
  1218. top: -20px;
  1219. bottom: 16px;
  1220. left: 0;
  1221. z-index: 1;
  1222. border: 1px dotted #67b2dd;
  1223. border-width: 0 0 0 1px;
  1224. }
  1225. .tree .tree-branch-name,
  1226. .tree .tree-item-name {
  1227. cursor: pointer;
  1228. }
  1229. .tree .tree-branch {
  1230. width: auto;
  1231. min-height: 20px;
  1232. cursor: pointer;
  1233. }
  1234. .tree .tree-branch .tree-branch-header {
  1235. position: relative;
  1236. height: 20px;
  1237. line-height: 20px;
  1238. }
  1239. .tree .tree-branch .tree-branch-header:hover {
  1240. background-color: #F0F7FC;
  1241. }
  1242. .tree .tree-branch .tree-branch-header .tree-branch-name,
  1243. .tree .tree-item .tree-item-name {
  1244. display: inline;
  1245. z-index: 2;
  1246. }
  1247. .tree .tree-branch .tree-branch-header > .tree-branch-name > .ace-icon:first-child,
  1248. .tree .tree-item > .tree-item-name > .ace-icon:first-child {
  1249. display: inline-block;
  1250. position: relative;
  1251. z-index: 2;
  1252. top: -1px;
  1253. }
  1254. .tree .tree-branch > .tree-branch-header > .tree-branch-name > .tree-label {
  1255. margin-left: 2px;
  1256. }
  1257. .tree .tree-branch > .tree-branch-header > .tree-branch-name > .ace-icon:first-child {
  1258. margin: -2px 0 0 -2px;
  1259. }
  1260. .tree .tree-branch:last-child:after {
  1261. display: inline-block;
  1262. content: "";
  1263. position: absolute;
  1264. z-index: 1;
  1265. top: 15px;
  1266. bottom: 0;
  1267. left: -15px;
  1268. border-left: 1px solid #FFF;
  1269. }
  1270. .tree .tree-branch .tree-branch-children {
  1271. margin: 0 0 0 23px;
  1272. padding: 0;
  1273. position: relative;
  1274. }
  1275. .tree .tree-branch .tree-branch-children:before {
  1276. display: inline-block;
  1277. content: "";
  1278. position: absolute;
  1279. z-index: 1;
  1280. top: -14px;
  1281. bottom: 16px;
  1282. left: -14px;
  1283. border: 1px dotted #67b2dd;
  1284. border-width: 0 0 0 1px;
  1285. }
  1286. .tree .tree-item {
  1287. position: relative;
  1288. height: 20px;
  1289. line-height: 20px;
  1290. cursor: pointer;
  1291. }
  1292. .tree .tree-item:hover {
  1293. background-color: #F0F7FC;
  1294. }
  1295. .tree .tree-item > .tree-item-name > .ace-icon:first-child {
  1296. margin-right: 3px;
  1297. }
  1298. .tree .tree-item > .tree-item-name > .tree-label > .ace-icon:first-child {
  1299. margin-left: 3px;
  1300. margin-right: 3px;
  1301. }
  1302. .tree .tree-item > .ace-icon:first-child {
  1303. margin-top: -1px;
  1304. }
  1305. .tree .tree-branch,
  1306. .tree .tree-item {
  1307. position: relative;
  1308. list-style: none;
  1309. }
  1310. .tree .tree-branch:before,
  1311. .tree .tree-item:before {
  1312. display: inline-block;
  1313. content: "";
  1314. position: absolute;
  1315. top: 14px;
  1316. left: -13px;
  1317. width: 18px;
  1318. height: 0;
  1319. border-top: 1px dotted #67b2dd;
  1320. z-index: 1;
  1321. }
  1322. .tree .tree-selected {
  1323. background-color: rgba(98, 168, 209, 0.1);
  1324. color: #6398B0;
  1325. }
  1326. .tree .tree-selected:hover {
  1327. background-color: rgba(98, 168, 209, 0.1);
  1328. }
  1329. .tree .tree-item,
  1330. .tree .tree-branch {
  1331. border: 1px solid #FFF;
  1332. }
  1333. .tree .tree-branch .tree-branch-header {
  1334. border-radius: 0;
  1335. }
  1336. .tree .tree-item,
  1337. .tree .tree-branch .tree-branch-header {
  1338. margin: 0;
  1339. padding: 5px;
  1340. color: #4D6878;
  1341. -webkit-box-sizing: content-box;
  1342. -moz-box-sizing: content-box;
  1343. box-sizing: content-box;
  1344. }
  1345. .tree .tree-item > .tree-item-name > .ace-icon:first-child {
  1346. color: #F9E8CE;
  1347. width: 13px;
  1348. height: 13px;
  1349. line-height: 13px;
  1350. font-size: 11px;
  1351. text-align: center;
  1352. border-radius: 3px;
  1353. -webkit-box-sizing: content-box;
  1354. -moz-box-sizing: content-box;
  1355. box-sizing: content-box;
  1356. background-color: #FAFAFA;
  1357. border: 1px solid #CCC;
  1358. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  1359. }
  1360. .tree .tree-selected > .tree-item-name > .ace-icon:first-child {
  1361. background-color: #F9A021;
  1362. border-color: #F9A021;
  1363. color: #FFF;
  1364. }
  1365. .tree .tree-plus.ace-icon:first-child,
  1366. .tree .tree-minus.ace-icon:first-child {
  1367. display: inline-block;
  1368. font-style: normal;
  1369. border: 1px solid #DDD;
  1370. vertical-align: middle;
  1371. height: 11px;
  1372. width: 11px;
  1373. -webkit-box-sizing: content-box;
  1374. -moz-box-sizing: content-box;
  1375. box-sizing: content-box;
  1376. text-align: center;
  1377. border: 1px solid #8BAEBF;
  1378. line-height: 10px;
  1379. background-color: #FFF;
  1380. position: relative;
  1381. z-index: 2;
  1382. }
  1383. .tree .tree-plus.ace-icon:first-child:before,
  1384. .tree .tree-minus.ace-icon:first-child:before {
  1385. content: "";
  1386. display: block;
  1387. width: 7px;
  1388. height: 0;
  1389. border-top: 1px solid #4D6878;
  1390. position: absolute;
  1391. top: 5px;
  1392. left: 2px;
  1393. }
  1394. .tree .tree-plus.ace-icon:first-child:after {
  1395. content: "";
  1396. display: block;
  1397. height: 7px;
  1398. width: 0;
  1399. border-left: 1px solid #4D6878;
  1400. position: absolute;
  1401. top: 2px;
  1402. left: 5px;
  1403. }
  1404. .tree .tree-unselectable .tree-item > .tree-item-name > .tree-label > .ace-icon:first-child {
  1405. color: #5084A0;
  1406. width: 13px;
  1407. height: 13px;
  1408. line-height: 13px;
  1409. font-size: 10px;
  1410. text-align: center;
  1411. border-radius: 0;
  1412. background-color: transparent;
  1413. border: none;
  1414. box-shadow: none;
  1415. }
  1416. .tree .ace-icon[class*="-down"] {
  1417. transform: rotate(-45deg);
  1418. }
  1419. .tree .ace-icon[class*="-download"] {
  1420. transform: none;
  1421. }
  1422. .tree .fa-spin {
  1423. height: auto;
  1424. }
  1425. .tree .tree-loading {
  1426. margin-left: 36px;
  1427. }
  1428. .tree img {
  1429. display: inline;
  1430. veritcal-align: middle;
  1431. }
  1432. .gritter-item-wrapper {
  1433. background-image: none !important;
  1434. box-shadow: 0 2px 10px rgba(50, 50, 50, 0.5);
  1435. background: rgba(50, 50, 50, 0.92);
  1436. }
  1437. .gritter-item-wrapper.gritter-info {
  1438. background: rgba(49, 81, 133, 0.92);
  1439. }
  1440. .gritter-item-wrapper.gritter-error {
  1441. background: rgba(153, 40, 18, 0.92);
  1442. }
  1443. .gritter-item-wrapper.gritter-success {
  1444. background: rgba(89, 131, 75, 0.92);
  1445. }
  1446. .gritter-item-wrapper.gritter-warning {
  1447. background: rgba(190, 112, 31, 0.92);
  1448. }
  1449. .gritter-item-wrapper.gritter-light {
  1450. background: rgba(245, 245, 245, 0.95);
  1451. border: 1px solid #BBB;
  1452. }
  1453. .gritter-item-wrapper.gritter-light.gritter-info {
  1454. background: rgba(232, 242, 255, 0.95);
  1455. }
  1456. .gritter-item-wrapper.gritter-light.gritter-info .gritter-item {
  1457. color: #4A577D;
  1458. }
  1459. .gritter-item-wrapper.gritter-light.gritter-error {
  1460. background: rgba(255, 235, 235, 0.95);
  1461. }
  1462. .gritter-item-wrapper.gritter-light.gritter-error .gritter-item {
  1463. color: #894A38;
  1464. }
  1465. .gritter-item-wrapper.gritter-light.gritter-success {
  1466. background: rgba(239, 250, 227, 0.95);
  1467. }
  1468. .gritter-item-wrapper.gritter-light.gritter-success .gritter-item {
  1469. color: #416131;
  1470. }
  1471. .gritter-item-wrapper.gritter-light.gritter-warning {
  1472. background: rgba(252, 248, 227, 0.95);
  1473. }
  1474. .gritter-item-wrapper.gritter-light.gritter-warning .gritter-item {
  1475. color: #946446;
  1476. }
  1477. .gritter-item p {
  1478. line-height: 1.8;
  1479. }
  1480. .gritter-top,
  1481. .gritter-bottom,
  1482. .gritter-item {
  1483. background-image: none;
  1484. }
  1485. .gritter-close {
  1486. left: auto;
  1487. right: 3px;
  1488. background-image: none;
  1489. width: 18px;
  1490. height: 18px;
  1491. line-height: 17px;
  1492. text-align: center;
  1493. border: 2px solid transparent;
  1494. border-radius: 16px;
  1495. color: #E17B67;
  1496. }
  1497. .gritter-close:before {
  1498. font-family: FontAwesome;
  1499. font-size: 16px;
  1500. content: "\f00d";
  1501. }
  1502. .gritter-info .gritter-close {
  1503. color: #FFA500;
  1504. }
  1505. .gritter-error .gritter-close,
  1506. .gritter-success .gritter-close,
  1507. .gritter-warning .gritter-close {
  1508. color: #FFEA07;
  1509. }
  1510. .gritter-close:hover {
  1511. color: #FFF !important;
  1512. }
  1513. .gritter-title {
  1514. text-shadow: none;
  1515. }
  1516. .gritter-light .gritter-item,
  1517. .gritter-light .gritter-bottom,
  1518. .gritter-light .gritter-top,
  1519. .gritter-light .gritter-close {
  1520. background-image: none;
  1521. color: #444;
  1522. }
  1523. .gritter-light .gritter-title {
  1524. text-shadow: none;
  1525. }
  1526. .gritter-light .gritter-close:hover {
  1527. color: #8A3104 !important;
  1528. }
  1529. .gritter-center {
  1530. position: fixed;
  1531. left: 33%;
  1532. right: 33%;
  1533. top: 33%;
  1534. }
  1535. @media only screen and (max-width: 767px) {
  1536. .gritter-center {
  1537. left: 16%;
  1538. right: 16%;
  1539. top: 30%;
  1540. }
  1541. }
  1542. @media only screen and (max-width: 480px) {
  1543. .gritter-center {
  1544. left: 30px;
  1545. right: 30px;
  1546. }
  1547. }
  1548. @media only screen and (max-width: 320px) {
  1549. .gritter-center {
  1550. left: 10px;
  1551. right: 10px;
  1552. }
  1553. }
  1554. .wysiwyg-editor {
  1555. max-height: 250px;
  1556. height: 250px;
  1557. background-color: #F7F8FA;
  1558. border-collapse: separate;
  1559. border: 1px solid #BBC0CA;
  1560. padding: 4px;
  1561. box-sizing: content-box;
  1562. overflow-y: scroll;
  1563. overflow-x: hidden;
  1564. outline: none;
  1565. }
  1566. .wysiwyg-editor:focus {
  1567. background-color: #FFF;
  1568. }
  1569. .wysiwyg-toolbar {
  1570. line-height: 33px;
  1571. margin: 0 !important;
  1572. position: relative;
  1573. }
  1574. .wysiwyg-toolbar .dropdown-menu {
  1575. text-align: left;
  1576. }
  1577. .wysiwyg-toolbar .btn-group {
  1578. float: none !important;
  1579. font-size: 0;
  1580. }
  1581. .wysiwyg-toolbar .btn-group > .btn {
  1582. float: none;
  1583. padding-left: 0;
  1584. padding-right: 0;
  1585. text-align: center;
  1586. margin-left: 1px;
  1587. /**
  1588. &.active:after {
  1589. border-color: transparent;
  1590. border-style: solid;
  1591. border-top-color: inherit;
  1592. border-width: 6px 14px;
  1593. bottom: -13px;
  1594. left: 0;
  1595. right: 0;
  1596. }
  1597. */
  1598. }
  1599. .wysiwyg-toolbar .btn-group > .btn > .ace-icon:first-child {
  1600. font-size: 14px;
  1601. width: 25px;
  1602. max-width: 25px;
  1603. display: inline-block;
  1604. border-width: 1px !important;
  1605. }
  1606. .wysiwyg-toolbar .btn-group > .btn.dropdown-toggle > .ace-icon:last-child {
  1607. margin-right: 4px;
  1608. }
  1609. .wysiwyg-style1 .btn-group > .btn,
  1610. .wysiwyg-style2 .btn-group > .btn,
  1611. .wysiwyg-style1 .btn-group > .inline > .btn,
  1612. .wysiwyg-style2 .btn-group > .inline > .btn {
  1613. margin: 0 !important;
  1614. background: #FFF !important;
  1615. border-width: 0 !important;
  1616. color: #ADB3BE !important;
  1617. text-shadow: none !important;
  1618. }
  1619. .wysiwyg-style1 .btn-group > .btn.active,
  1620. .wysiwyg-style2 .btn-group > .btn.active,
  1621. .wysiwyg-style1 .btn-group > .inline > .btn.active,
  1622. .wysiwyg-style2 .btn-group > .inline > .btn.active {
  1623. color: #5B80CE !important;
  1624. }
  1625. .wysiwyg-style1 .btn-group > .btn.active:after,
  1626. .wysiwyg-style2 .btn-group > .btn.active:after,
  1627. .wysiwyg-style1 .btn-group > .inline > .btn.active:after,
  1628. .wysiwyg-style2 .btn-group > .inline > .btn.active:after {
  1629. display: none;
  1630. }
  1631. .wysiwyg-style1 .btn-group,
  1632. .wysiwyg-style2 .btn-group {
  1633. position: relative;
  1634. }
  1635. .wysiwyg-style1 .btn-group:after,
  1636. .wysiwyg-style2 .btn-group:after {
  1637. display: block;
  1638. content: "";
  1639. position: absolute;
  1640. left: -2px;
  1641. top: 6px;
  1642. bottom: 6px;
  1643. width: 0;
  1644. max-width: 0;
  1645. border-left: 1px solid #E1E6EA;
  1646. }
  1647. .wysiwyg-style1 .btn-group:first-child:after,
  1648. .wysiwyg-style2 .btn-group:first-child:after {
  1649. display: none;
  1650. }
  1651. .wysiwyg-style2 {
  1652. background-color: #E5E5E5;
  1653. }
  1654. .wysiwyg-style2 + .wysiwyg-editor {
  1655. border-color: #DDD;
  1656. background-color: #FFF;
  1657. border-top: none;
  1658. }
  1659. .wysiwyg-style2 .btn-group > .btn,
  1660. .wysiwyg-style2 .btn-group > .inline > .btn {
  1661. margin: 0 1px 0 0 !important;
  1662. background: #FFF !important;
  1663. border: none !important;
  1664. color: #8D939E !important;
  1665. text-shadow: none !important;
  1666. }
  1667. .wysiwyg-style2 .btn-group > .btn.active,
  1668. .wysiwyg-style2 .btn-group > .inline > .btn.active {
  1669. color: #FFF !important;
  1670. background: #6AAEDF !important;
  1671. }
  1672. .wysiwyg-style2 .btn-group:after {
  1673. display: none;
  1674. }
  1675. .wysiwyg-toolbar .btn-colorpicker {
  1676. width: 24px;
  1677. height: 24px;
  1678. position: relative;
  1679. background: #87B87F;
  1680. /* Old browsers */
  1681. background: -moz-linear-gradient(top, #cf3e73 10%, #ffffff 20%, #2283c5 30%, #ffffff 40%, #87b87f 50%, #ffffff 60%, #ffb752 70%, #ffffff 80%, #d15b47 90%, #ffffff 100%);
  1682. /* FF3.6+ */
  1683. background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #cf3e73), color-stop(20%, #ffffff), color-stop(30%, #2283c5), color-stop(40%, #ffffff), color-stop(50%, #87b87f), color-stop(60%, #ffffff), color-stop(70%, #ffb752), color-stop(80%, #ffffff), color-stop(90%, #d15b47), color-stop(100%, #ffffff));
  1684. /* Chrome,Safari4+ */
  1685. background: -webkit-linear-gradient(top, #cf3e73 10%, #ffffff 20%, #2283c5 30%, #ffffff 40%, #87b87f 50%, #ffffff 60%, #ffb752 70%, #ffffff 80%, #d15b47 90%, #ffffff 100%);
  1686. /* Chrome10+,Safari5.1+ */
  1687. background: -o-linear-gradient(top, #cf3e73 10%, #ffffff 20%, #2283c5 30%, #ffffff 40%, #87b87f 50%, #ffffff 60%, #ffb752 70%, #ffffff 80%, #d15b47 90%, #ffffff 100%);
  1688. /* Opera11.10+ */
  1689. background: -ms-linear-gradient(top, #cf3e73 10%, #ffffff 20%, #2283c5 30%, #ffffff 40%, #87b87f 50%, #ffffff 60%, #ffb752 70%, #ffffff 80%, #d15b47 90%, #ffffff 100%);
  1690. /* IE10+ */
  1691. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#CF3E73', endColorstr='#FFB752', GradientType=0);
  1692. /* IE6-9 */
  1693. background: linear-gradient(top, #cf3e73 10%, #ffffff 20%, #2283c5 30%, #ffffff 40%, #87b87f 50%, #ffffff 60%, #ffb752 70%, #ffffff 80%, #d15b47 90%, #ffffff 100%);
  1694. /* W3C */
  1695. }
  1696. .wysiwyg-toolbar .dropdown-colorpicker > .dropdown-menu {
  1697. top: auto;
  1698. }
  1699. .wysiwyg-toolbar input[type=file] {
  1700. position: fixed;
  1701. z-index: -10;
  1702. opacity: 0;
  1703. max-width: 0;
  1704. max-height: 0;
  1705. display: block;
  1706. }
  1707. .wysiwyg-toolbar .wysiwyg-choose-file {
  1708. display: inline-block;
  1709. width: auto;
  1710. margin: 4px auto 0;
  1711. padding-left: 5px;
  1712. padding-right: 5px;
  1713. }
  1714. .wysiwyg-toolbar .dropdown-menu input[type=text] {
  1715. margin-left: 8px;
  1716. margin-bottom: 0;
  1717. }
  1718. .wysiwyg-toolbar .dropdown-menu input[type=text].form-control {
  1719. min-width: 150px;
  1720. }
  1721. .wysiwyg-toolbar .dropdown-menu .btn {
  1722. margin-right: 8px;
  1723. margin-left: 8px;
  1724. }
  1725. .wysiwyg-style1 .btn-colorpicker {
  1726. width: 20px;
  1727. height: 20px;
  1728. margin-left: 4px;
  1729. }
  1730. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1731. /* for adding image resize functionality in chrome and safari */
  1732. .wysiwyg-editor img {
  1733. display: inline !important;
  1734. }
  1735. .wysiwyg-editor .ui-wrapper {
  1736. border: 1px dotted #D00;
  1737. overflow: visible !important;
  1738. /* because it's image only, so it's ok */
  1739. display: inline-block !important;
  1740. vertical-align: middle;
  1741. }
  1742. .wysiwyg-editor .ui-wrapper:after {
  1743. content: "";
  1744. display: block;
  1745. position: absolute;
  1746. right: -3px;
  1747. bottom: -3px;
  1748. width: 7px;
  1749. height: 7px;
  1750. border: 1px solid #D00;
  1751. background-color: #FFF;
  1752. z-index: 1;
  1753. }
  1754. }
  1755. /* inside widget */
  1756. .widget-header .wysiwyg-toolbar {
  1757. background-color: transparent;
  1758. }
  1759. .widget-header .wysiwyg-toolbar .btn-group > .btn,
  1760. .widget-header .wysiwyg-toolbar .btn-group > .inline > .btn {
  1761. border-color: transparent;
  1762. background: rgba(255, 255, 255, 0.25) !important;
  1763. color: #FFF !important;
  1764. min-width: 32px;
  1765. border-width: 1px !important;
  1766. border-radius: 4px !important;
  1767. padding: 2px 1px 4px;
  1768. }
  1769. .widget-header .wysiwyg-toolbar .btn-group > .btn.active,
  1770. .widget-header .wysiwyg-toolbar .btn-group > .inline > .btn.active {
  1771. background: rgba(0, 0, 0, 0.25) !important;
  1772. }
  1773. .widget-body .wysiwyg-editor {
  1774. border-width: 0;
  1775. }
  1776. .wysiwyg-speech-input {
  1777. width: 20px !important;
  1778. color: transparent !important;
  1779. background: transparent none !important;
  1780. border-width: 0 !important;
  1781. -moz-transform: scale(2.0, 2.0);
  1782. -webkit-transform: scale(2.0, 2.0);
  1783. -o-transform: scale(2.0, 2.0);
  1784. -ms-transform: scale(2.0, 2.0);
  1785. transform: scale(2.0, 2.0);
  1786. -webkit-box-shadow: none !important;
  1787. box-shadow: none !important;
  1788. position: absolute;
  1789. right: 0;
  1790. top: -10px;
  1791. cursor: pointer;
  1792. }
  1793. .wysiwyg-speech-input:focus {
  1794. -webkit-box-shadow: none !important;
  1795. box-shadow: none !important;
  1796. }
  1797. .widget-body .md-header {
  1798. margin-top: -30px;
  1799. margin-left: 9px;
  1800. }
  1801. .widget-body .md-header .btn {
  1802. border-color: transparent;
  1803. background: rgba(255, 255, 255, 0.25) !important;
  1804. color: #FFF !important;
  1805. text-align: center;
  1806. min-width: 32px;
  1807. border-width: 1px !important;
  1808. border-radius: 4px !important;
  1809. padding: 2px 4px 4px;
  1810. }
  1811. .widget-body .md-header .btn > .ace-icon {
  1812. font-size: 14px;
  1813. width: 25px;
  1814. max-width: 25px;
  1815. display: inline-block;
  1816. }
  1817. .widget-body .md-header .btn-inverse {
  1818. background: rgba(0, 0, 0, 0.25) !important;
  1819. padding-right: 5px;
  1820. margin-left: 4px;
  1821. }
  1822. .md-fullscreen-controls {
  1823. display: none;
  1824. }
  1825. .widget-body .md-preview {
  1826. padding: 8px;
  1827. min-height: 200px;
  1828. }
  1829. .widget-body .md-input {
  1830. border: none !important;
  1831. box-shadow: none !important;
  1832. display: block;
  1833. margin-bottom: 0;
  1834. background-color: rgba(48, 126, 204, 0.07);
  1835. padding: 8px;
  1836. width: 100%;
  1837. }
  1838. .widget-body .md-input:focus {
  1839. background-color: #FFF;
  1840. box-shadow: none !important;
  1841. }
  1842. .editable-container .popover-title {
  1843. color: #438EB9;
  1844. }
  1845. .editable-click {
  1846. border-bottom: 1px dashed #BBB;
  1847. cursor: pointer;
  1848. font-weight: normal;
  1849. }
  1850. img.editable-click {
  1851. border: 1px dotted #BBB;
  1852. }
  1853. .editable-click:hover {
  1854. border-color: #0088CC;
  1855. color: #0088CC;
  1856. }
  1857. img.editable-click:hover {
  1858. opacity: 0.75;
  1859. filter: alpha(opacity=75);
  1860. }
  1861. .editable-buttons,
  1862. .editable-input {
  1863. display: inline-block;
  1864. }
  1865. .editable-buttons {
  1866. margin-left: 1px;
  1867. }
  1868. .editable-buttons .btn {
  1869. padding: 0;
  1870. width: 28px;
  1871. line-height: 24px;
  1872. border-width: 3px;
  1873. font-size: 12px;
  1874. margin: 0 1px 0 0;
  1875. }
  1876. .editable-buttons .btn > .ace-icon {
  1877. margin: 0;
  1878. }
  1879. .editable-clear-x {
  1880. cursor: pointer;
  1881. color: #888;
  1882. background: none;
  1883. }
  1884. .editable-clear-x:hover {
  1885. color: #D15B47;
  1886. }
  1887. .editable-clear-x:before {
  1888. display: inline-block;
  1889. content: "\f057";
  1890. font-family: FontAwesome;
  1891. font-size: 15px;
  1892. position: absolute;
  1893. margin-top: -9px;
  1894. width: 16px;
  1895. height: 30px;
  1896. line-height: 30px;
  1897. text-align: center;
  1898. }
  1899. .editable-input .ace-spinner {
  1900. margin-right: 8px;
  1901. }
  1902. .editable-input .ace-spinner .spinner-input {
  1903. width: 100%;
  1904. }
  1905. .editable-inline .editable-slider {
  1906. margin-top: 10px;
  1907. margin-right: 4px;
  1908. }
  1909. .editable-popup .editable-slider {
  1910. display: block;
  1911. margin-bottom: 16px;
  1912. margin-top: 4px;
  1913. }
  1914. .editable-slider input[type=text] {
  1915. display: none;
  1916. }
  1917. .editable-slider input[type=range] {
  1918. outline: none !important;
  1919. }
  1920. .editable-input .ace-file-input {
  1921. display: block;
  1922. }
  1923. .editable-image .ace-file-multiple .ace-file-container.selected {
  1924. border-color: transparent;
  1925. }
  1926. .editable-image + .editable-buttons,
  1927. .editable-wysiwyg + .editable-buttons {
  1928. display: block;
  1929. text-align: center;
  1930. margin-top: 8px;
  1931. }
  1932. .editable-wysiwyg {
  1933. width: 95%;
  1934. }
  1935. .editable-wysiwyg .wysiwyg-editor {
  1936. height: auto;
  1937. overflow-y: hidden;
  1938. }
  1939. .editableform .input-append.dropdown-menu {
  1940. display: none;
  1941. }
  1942. .editableform .open .input-append.dropdown-menu {
  1943. display: block;
  1944. }
  1945. .editable-container .editableform {
  1946. margin-bottom: 10px;
  1947. }
  1948. .editable-inline .editableform {
  1949. margin-bottom: 0;
  1950. }
  1951. .editableform .control-group {
  1952. display: block;
  1953. }
  1954. .editableform-loading {
  1955. background: none;
  1956. }
  1957. .editableform-loading .ace-icon,
  1958. .editableform-loading .progress {
  1959. position: relative;
  1960. top: 35%;
  1961. }
  1962. .input-group.date .input-group-addon {
  1963. cursor: pointer;
  1964. }
  1965. .datepicker td,
  1966. .daterangepicker td,
  1967. .datepicker th,
  1968. .daterangepicker th {
  1969. border-radius: 0 !important;
  1970. font-size: 13px;
  1971. }
  1972. .datepicker td.active,
  1973. .daterangepicker td.active,
  1974. .datepicker td.active:hover,
  1975. .daterangepicker td.active:hover {
  1976. background: #2283c5 !important;
  1977. }
  1978. .datepicker td.active.disabled,
  1979. .daterangepicker td.active.disabled,
  1980. .datepicker td.active.disabled:hover,
  1981. .daterangepicker td.active.disabled:hover {
  1982. background: #8b9aa3 !important;
  1983. }
  1984. .datepicker td,
  1985. .datepicker th {
  1986. min-width: 32px;
  1987. }
  1988. .datepicker-dropdown.datepicker-orient-bottom:after,
  1989. .datepicker-dropdown.datepicker-orient-bottom:before {
  1990. top: auto;
  1991. }
  1992. .daterangepicker .calendar-date {
  1993. border-radius: 0;
  1994. }
  1995. .datepicker-months .month,
  1996. .datepicker-years .year {
  1997. border-radius: 0 !important;
  1998. }
  1999. .datepicker-months .month.active,
  2000. .datepicker-years .year.active,
  2001. .datepicker-months .month.active:hover,
  2002. .datepicker-years .year.active:hover,
  2003. .datepicker-months .month.active:focus,
  2004. .datepicker-years .year.active:focus,
  2005. .datepicker-months .month.active:active,
  2006. .datepicker-years .year.active:active {
  2007. background-image: none !important;
  2008. background-color: #2283c5 !important;
  2009. }
  2010. .bootstrap-timepicker-widget table td input {
  2011. width: 32px;
  2012. }
  2013. .well .datepicker table tr td.day:hover {
  2014. background-color: #7d8893;
  2015. color: #FFF;
  2016. }
  2017. .bootstrap-timepicker-widget table td a:hover {
  2018. border-radius: 0;
  2019. }
  2020. .daterangepicker.opensleft:before,
  2021. .daterangepicker.opensright:before {
  2022. -moz-border-bottom-colors: rgba(0, 0, 0, 0.2);
  2023. }
  2024. .daterangepicker.opensleft:after,
  2025. .daterangepicker.opensright:after {
  2026. -moz-border-bottom-colors: #fff;
  2027. }
  2028. .datepicker-dropdown:before {
  2029. -moz-border-bottom-colors: rgba(0, 0, 0, 0.2);
  2030. }
  2031. .datepicker-dropdown:after {
  2032. -moz-border-bottom-colors: #fff;
  2033. }
  2034. .datepicker-dropdown.datepicker-orient-bottom:before {
  2035. -moz-border-top-colors: #999;
  2036. }
  2037. .datepicker-dropdown.datepicker-orient-bottom:after {
  2038. -moz-border-top-colors: #FFF;
  2039. }
  2040. .bootstrap-timepicker-widget.dropdown-menu:before {
  2041. -moz-border-bottom-colors: rgba(0, 0, 0, 0.2);
  2042. }
  2043. .bootstrap-timepicker-widget.dropdown-menu:after {
  2044. -moz-border-bottom-colors: #FFF;
  2045. }
  2046. .bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  2047. -moz-border-top-colors: #999;
  2048. }
  2049. .bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  2050. -moz-border-top-colors: #FFF;
  2051. }
  2052. .bootstrap-datetimepicker-widget [class=btn] {
  2053. border-width: 0 !important;
  2054. background-color: transparent !important;
  2055. color: #7399b8 !important;
  2056. text-shadow: none !important;
  2057. }
  2058. .bootstrap-datetimepicker-widget [class=btn]:hover {
  2059. color: #1B6AAA !important;
  2060. }
  2061. .bootstrap-datetimepicker-widget .btn.btn-primary {
  2062. border-width: 3px !important;
  2063. }
  2064. .bootstrap-datetimepicker-widget .picker-switch {
  2065. margin-bottom: 2px;
  2066. }
  2067. .bootstrap-datetimepicker-widget .picker-switch .btn {
  2068. width: 90% !important;
  2069. background-color: #EEE !important;
  2070. color: #478fca !important;
  2071. font-size: 16px;
  2072. }
  2073. .bootstrap-datetimepicker-widget .picker-switch .btn:hover {
  2074. background-color: #e3edf5 !important;
  2075. }
  2076. .bootstrap-datetimepicker-widget td span {
  2077. border-radius: 0;
  2078. }
  2079. .bootstrap-datetimepicker-widget .timepicker-hour,
  2080. .bootstrap-datetimepicker-widget .timepicker-minute,
  2081. .bootstrap-datetimepicker-widget .timepicker-second {
  2082. color: #555 !important;
  2083. }
  2084. .ui-slider {
  2085. background-color: #D5D5D5;
  2086. }
  2087. .ui-slider-horizontal {
  2088. height: 9px;
  2089. }
  2090. .ui-slider-vertical {
  2091. width: 9px;
  2092. }
  2093. .ui-slider .ui-slider-handle {
  2094. border-radius: 0;
  2095. width: 1.45em;
  2096. height: 1.45em;
  2097. background-color: #F8F8F8;
  2098. border: 1px solid;
  2099. }
  2100. .ui-slider .ui-slider-handle:before,
  2101. .ui-slider .ui-slider-handle:after {
  2102. display: block;
  2103. content: "";
  2104. position: absolute;
  2105. top: 4px;
  2106. left: 5px;
  2107. width: 4px;
  2108. height: 8px;
  2109. border: 1px solid;
  2110. border-width: 0 1px;
  2111. border-color: inherit;
  2112. }
  2113. .ui-slider .ui-slider-handle:after {
  2114. left: 8px;
  2115. border-width: 0 1px 0 0;
  2116. }
  2117. .ui-slider .ui-slider-handle:hover {
  2118. background-color: #FFF;
  2119. }
  2120. .ui-slider .ui-slider-handle:hover,
  2121. .ui-slider .ui-slider-handle:focus,
  2122. .ui-slider .ui-slider-handle:active {
  2123. outline: none;
  2124. -webkit-box-shadow: 1px 1px 1px 0px rgba(0,0,0,.3);
  2125. box-shadow: 1px 1px 1px 0px rgba(0,0,0,.3);
  2126. }
  2127. .ui-slider-horizontal .ui-slider-handle {
  2128. margin-left: -0.725em;
  2129. top: -0.4em;
  2130. }
  2131. .ui-slider-vertical .ui-slider-handle {
  2132. left: -0.35em;
  2133. margin-bottom: -0.65em;
  2134. }
  2135. .ui-slider-small.ui-slider-horizontal {
  2136. height: 5px;
  2137. }
  2138. .ui-slider-small.ui-slider-vertical {
  2139. width: 5px;
  2140. }
  2141. .ui-slider-small .ui-slider-handle {
  2142. border-radius: 100%;
  2143. width: 17px;
  2144. height: 17px;
  2145. margin-bottom: -0.45em;
  2146. left: -0.35em;
  2147. }
  2148. .ui-slider-small .ui-slider-handle:before,
  2149. .ui-slider-small .ui-slider-handle:after {
  2150. height: 7px;
  2151. left: 5px;
  2152. width: 3px;
  2153. }
  2154. .ui-slider-small .ui-slider-handle:after {
  2155. left: 7px;
  2156. }
  2157. .ui-slider-simple .ui-slider-handle:after,
  2158. .ui-slider-simple .ui-slider-handle:before {
  2159. display: none;
  2160. }
  2161. /* colors */
  2162. .ui-slider-range {
  2163. background-color: #4aa4ce;
  2164. }
  2165. .ui-slider-handle {
  2166. outline: none !important;
  2167. border-color: #4aa4ce !important;
  2168. }
  2169. .ui-state-disabled.ui-slider {
  2170. background-color: #E5E5E5;
  2171. }
  2172. .ui-state-disabled .ui-slider-range {
  2173. background-color: #8daebe;
  2174. }
  2175. .ui-state-disabled .ui-slider-handle {
  2176. -webkit-box-shadow: none !important;
  2177. box-shadow: none !important;
  2178. border-color: #8daebe !important;
  2179. }
  2180. .ui-slider-green .ui-slider-range {
  2181. background-color: #8bbc67;
  2182. }
  2183. .ui-slider-green .ui-slider-handle {
  2184. border-color: #8bbc67 !important;
  2185. }
  2186. .ui-slider-green.ui-state-disabled .ui-slider-range {
  2187. background-color: #aab0a6;
  2188. }
  2189. .ui-slider-green.ui-state-disabled .ui-slider-handle {
  2190. border-color: #aab0a6 !important;
  2191. }
  2192. .ui-slider-red .ui-slider-range {
  2193. background-color: #d36e6e;
  2194. }
  2195. .ui-slider-red .ui-slider-handle {
  2196. border-color: #d36e6e !important;
  2197. }
  2198. .ui-slider-red.ui-state-disabled .ui-slider-range {
  2199. background-color: #c8acac;
  2200. }
  2201. .ui-slider-red.ui-state-disabled .ui-slider-handle {
  2202. border-color: #c8acac !important;
  2203. }
  2204. .ui-slider-purple .ui-slider-range {
  2205. background-color: #ac68ba;
  2206. }
  2207. .ui-slider-purple .ui-slider-handle {
  2208. border-color: #ac68ba !important;
  2209. }
  2210. .ui-slider-purple.ui-state-disabled .ui-slider-range {
  2211. background-color: #ada7ae;
  2212. }
  2213. .ui-slider-purple.ui-state-disabled .ui-slider-handle {
  2214. border-color: #ada7ae !important;
  2215. }
  2216. .ui-slider-orange .ui-slider-range {
  2217. background-color: #efad62;
  2218. }
  2219. .ui-slider-orange .ui-slider-handle {
  2220. border-color: #efad62 !important;
  2221. }
  2222. .ui-slider-orange.ui-state-disabled .ui-slider-range {
  2223. background-color: #e0c4a4;
  2224. }
  2225. .ui-slider-orange.ui-state-disabled .ui-slider-handle {
  2226. border-color: #e0c4a4 !important;
  2227. }
  2228. .ui-slider-dark .ui-slider-range {
  2229. background-color: #606060;
  2230. }
  2231. .ui-slider-dark .ui-slider-handle {
  2232. border-color: #606060 !important;
  2233. }
  2234. .ui-slider-dark.ui-state-disabled .ui-slider-range {
  2235. background-color: #7a7a7a;
  2236. }
  2237. .ui-slider-dark.ui-state-disabled .ui-slider-handle {
  2238. border-color: #7a7a7a !important;
  2239. }
  2240. .ui-slider-pink .ui-slider-range {
  2241. background-color: #d6487e;
  2242. }
  2243. .ui-slider-pink .ui-slider-handle {
  2244. border-color: #d6487e !important;
  2245. }
  2246. .ui-slider-pink.ui-state-disabled .ui-slider-range {
  2247. background-color: #c38ea2;
  2248. }
  2249. .ui-slider-pink.ui-state-disabled .ui-slider-handle {
  2250. border-color: #c38ea2 !important;
  2251. }
  2252. .ui-datepicker {
  2253. background-color: #FFF;
  2254. border: 1px solid rgba(0, 0, 0, 0.2);
  2255. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2256. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2257. }
  2258. .ui-datepicker .ui-datepicker-prev,
  2259. .ui-datepicker .ui-datepicker-next {
  2260. height: 26px;
  2261. min-width: 32px;
  2262. max-width: 32px;
  2263. text-align: center;
  2264. cursor: pointer;
  2265. color: transparent;
  2266. line-height: 26px;
  2267. -webkit-box-sizing: content-box;
  2268. -moz-box-sizing: content-box;
  2269. box-sizing: content-box;
  2270. }
  2271. .ui-datepicker .ui-datepicker-prev .ui-icon,
  2272. .ui-datepicker .ui-datepicker-next .ui-icon {
  2273. color: transparent;
  2274. visibility: hidden;
  2275. }
  2276. .ui-datepicker .ui-datepicker-prev:hover,
  2277. .ui-datepicker .ui-datepicker-next:hover {
  2278. background-color: #EEE;
  2279. text-decoration: none;
  2280. }
  2281. .ui-datepicker .ui-datepicker-prev:before,
  2282. .ui-datepicker .ui-datepicker-next:before {
  2283. display: inline;
  2284. font-family: FontAwesome;
  2285. font-size: 14px;
  2286. content: "\f060";
  2287. color: #393939;
  2288. }
  2289. .ui-datepicker .ui-datepicker-prev-hover,
  2290. .ui-datepicker .ui-datepicker-next-hover {
  2291. top: 2px;
  2292. }
  2293. .ui-datepicker .ui-datepicker-next:before {
  2294. content: "\f061";
  2295. }
  2296. .ui-datepicker .ui-datepicker-prev-hover {
  2297. left: 2px;
  2298. }
  2299. .ui-datepicker .ui-datepicker-next-hover {
  2300. right: 2px;
  2301. }
  2302. .ui-datepicker td {
  2303. padding: 0;
  2304. }
  2305. .ui-datepicker td > a,
  2306. .ui-datepicker td > span {
  2307. display: inline-block;
  2308. height: 22px;
  2309. min-width: 24px;
  2310. max-width: 24px;
  2311. text-align: center;
  2312. color: #393939;
  2313. font-size: 13px;
  2314. -webkit-box-sizing: content-box;
  2315. -moz-box-sizing: content-box;
  2316. box-sizing: content-box;
  2317. }
  2318. .ui-datepicker td > a:hover {
  2319. background-color: #EEE;
  2320. }
  2321. .ui-datepicker td > a.ui-state-highlight {
  2322. background-color: #D5E5EF;
  2323. }
  2324. .ui-datepicker td > a.ui-state-active {
  2325. background-color: #2283c5;
  2326. color: #FFF;
  2327. }
  2328. .ui-datepicker td > a.ui-priority-secondary {
  2329. color: #888;
  2330. }
  2331. .ui-datepicker td > span {
  2332. color: #999;
  2333. }
  2334. .ui-datepicker td .ui-datepicker-title select {
  2335. height: 24px;
  2336. line-height: 24px;
  2337. padding: 2px 3px;
  2338. }
  2339. .ui-datepicker td .ui-datepicker-buttonpane {
  2340. background-color: #DDD;
  2341. height: 1px;
  2342. }
  2343. /* dialog */
  2344. .ui-widget-overlay {
  2345. background: rgba(0, 0, 0, 0.25);
  2346. opacity: 1 !important;
  2347. filter: alpha(opacity=100) !important;
  2348. z-index: 1039 !important;
  2349. }
  2350. .ui-dialog,
  2351. .ui-jqdialog {
  2352. z-index: 1040 !important;
  2353. background-color: #FFF;
  2354. padding: 0;
  2355. border: 1px solid #DDD;
  2356. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2357. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2358. }
  2359. .ui-dialog .ui-dialog-titlebar,
  2360. .ui-jqdialog .ui-dialog-titlebar,
  2361. .ui-dialog .ui-jqdialog-titlebar,
  2362. .ui-jqdialog .ui-jqdialog-titlebar {
  2363. background-color: #F1F1F1;
  2364. font-size: 16px;
  2365. color: #669fc7;
  2366. padding: 0;
  2367. }
  2368. .ui-dialog .ui-dialog-title,
  2369. .ui-jqdialog .ui-dialog-title,
  2370. .ui-dialog .ui-jqdialog-title,
  2371. .ui-jqdialog .ui-jqdialog-title {
  2372. float: none !important;
  2373. width: auto;
  2374. }
  2375. .ui-dialog .widget-header,
  2376. .ui-jqdialog .widget-header {
  2377. margin: 0;
  2378. border-width: 0 0 1px 0;
  2379. }
  2380. .ui-dialog .ui-dialog-buttonpane,
  2381. .ui-jqdialog .ui-dialog-buttonpane,
  2382. .ui-dialog .ui-jqdialog-buttonpane,
  2383. .ui-jqdialog .ui-jqdialog-buttonpane {
  2384. background-color: #eff3f8;
  2385. border-top: 1px solid #e4e9ee;
  2386. }
  2387. .ui-dialog .ui-dialog-buttonpane button,
  2388. .ui-jqdialog .ui-dialog-buttonpane button,
  2389. .ui-dialog .ui-jqdialog-buttonpane button,
  2390. .ui-jqdialog .ui-jqdialog-buttonpane button {
  2391. font-size: 14px;
  2392. }
  2393. .ui-dialog .ui-dialog-titlebar-close,
  2394. .ui-jqdialog .ui-dialog-titlebar-close,
  2395. .ui-dialog .ui-jqdialog-titlebar-close,
  2396. .ui-jqdialog .ui-jqdialog-titlebar-close {
  2397. border: none;
  2398. background: transparent;
  2399. opacity: 0.4;
  2400. color: #d15b47;
  2401. padding: 0;
  2402. top: 50%;
  2403. right: 8px !important;
  2404. text-align: center;
  2405. }
  2406. .ui-dialog .ui-dialog-titlebar-close:before,
  2407. .ui-jqdialog .ui-dialog-titlebar-close:before,
  2408. .ui-dialog .ui-jqdialog-titlebar-close:before,
  2409. .ui-jqdialog .ui-jqdialog-titlebar-close:before {
  2410. content: "\f00d";
  2411. display: inline;
  2412. font-family: FontAwesome;
  2413. font-size: 16px;
  2414. }
  2415. .ui-dialog .ui-dialog-titlebar-close:hover,
  2416. .ui-jqdialog .ui-dialog-titlebar-close:hover,
  2417. .ui-dialog .ui-jqdialog-titlebar-close:hover,
  2418. .ui-jqdialog .ui-jqdialog-titlebar-close:hover {
  2419. opacity: 1;
  2420. text-decoration: none;
  2421. padding: 0;
  2422. }
  2423. .ui-dialog .ui-dialog-titlebar-close .ui-button-text,
  2424. .ui-jqdialog .ui-dialog-titlebar-close .ui-button-text,
  2425. .ui-dialog .ui-jqdialog-titlebar-close .ui-button-text,
  2426. .ui-jqdialog .ui-jqdialog-titlebar-close .ui-button-text {
  2427. text-indent: 0;
  2428. visibility: hidden;
  2429. }
  2430. .ui-dialog .widget-header .ui-dialog-titlebar-close,
  2431. .ui-jqdialog .widget-header .ui-dialog-titlebar-close,
  2432. .ui-dialog .widget-header .ui-jqdialog-titlebar-close,
  2433. .ui-jqdialog .widget-header .ui-jqdialog-titlebar-close {
  2434. right: 10px !important;
  2435. }
  2436. /* accordion */
  2437. .ui-accordion .ui-accordion-header {
  2438. color: #478fca;
  2439. font-weight: normal;
  2440. background-color: #F9F9F9;
  2441. border: 1px solid #cdd8e3;
  2442. padding: 8px 8px 9px 24px;
  2443. }
  2444. .ui-accordion .ui-accordion-header:hover {
  2445. color: #6ea6cc;
  2446. background-color: #f1f8fd;
  2447. }
  2448. .ui-accordion .ui-accordion-header.ui-state-active {
  2449. color: #4c8fbd;
  2450. background-color: #eef4f9;
  2451. position: relative;
  2452. font-weight: bold;
  2453. }
  2454. .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  2455. text-indent: 0;
  2456. margin-top: 0;
  2457. position: absolute;
  2458. left: 10px;
  2459. top: 7px;
  2460. }
  2461. .ui-accordion .ui-accordion-header .ui-accordion-header-icon:before {
  2462. display: inline;
  2463. font-family: FontAwesome;
  2464. font-size: 15px;
  2465. content: "\f0da";
  2466. }
  2467. .ui-accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon:before {
  2468. content: "\f0d7";
  2469. font-weight: normal;
  2470. }
  2471. .ui-accordion .ui-accordion-content {
  2472. border: 1px solid #cdd8e3;
  2473. border-top-width: 0;
  2474. padding: 11px 16px;
  2475. }
  2476. /* tabs */
  2477. .ui-tabs .ui-tabs-nav {
  2478. padding: 0;
  2479. border-bottom: 1px solid #C5D0DC;
  2480. }
  2481. .ui-tabs .ui-tabs-nav li.ui-state-default > a {
  2482. background-color: #F9F9F9;
  2483. border: 1px solid #C5D0DC;
  2484. border-bottom-width: 0;
  2485. color: #999;
  2486. line-height: 16px;
  2487. margin-right: -1px;
  2488. z-index: 11;
  2489. padding: 8px 12px;
  2490. position: relative;
  2491. top: 2px;
  2492. }
  2493. .ui-tabs .ui-tabs-nav li > a:focus {
  2494. outline: none;
  2495. }
  2496. .ui-tabs .ui-tabs-nav li.ui-tabs-active > a {
  2497. background-color: #FFF;
  2498. border: 1px solid;
  2499. border-color: #4C8FBD #C5D0DC transparent;
  2500. border-top-width: 2px;
  2501. -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.15);
  2502. box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.15);
  2503. color: #576373;
  2504. position: relative;
  2505. top: 1px;
  2506. }
  2507. .ui-tabs .ui-tabs-panel {
  2508. border: 1px solid #C5D0DC;
  2509. border-top-width: 0;
  2510. margin: 0;
  2511. left: auto;
  2512. right: auto;
  2513. top: auto;
  2514. bottom: auto;
  2515. }
  2516. /* menu */
  2517. .ui-menu {
  2518. -webkit-box-sizing: content-box;
  2519. -moz-box-sizing: content-box;
  2520. box-sizing: content-box;
  2521. width: 150px;
  2522. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2523. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2524. background-color: #FFF;
  2525. border: 1px solid rgba(0, 0, 0, 0.2);
  2526. padding: 3px;
  2527. }
  2528. .ui-menu .ui-state-focus,
  2529. .ui-menu .ui-state-active {
  2530. margin: auto;
  2531. }
  2532. .ui-menu .ui-menu-item {
  2533. padding: 5px 10px 6px;
  2534. color: #444;
  2535. cursor: pointer;
  2536. display: block;
  2537. -webkit-box-sizing: inherit;
  2538. -moz-box-sizing: inherit;
  2539. box-sizing: inherit;
  2540. }
  2541. .ui-menu .ui-menu-item .ui-menu-icon {
  2542. float: right;
  2543. position: relative;
  2544. left: auto;
  2545. right: 4px;
  2546. bottom: auto;
  2547. text-indent: 0;
  2548. }
  2549. .ui-menu .ui-menu-item .ui-menu-icon:before {
  2550. content: "\f105";
  2551. font-family: FontAwesome;
  2552. font-size: 14px;
  2553. display: inline;
  2554. }
  2555. .ui-menu .ui-menu-item:hover,
  2556. .ui-menu .ui-state-focus,
  2557. .ui-menu .ui-state-active,
  2558. .ui-menu .ui-menu-item:hover > .ui-menu-icon,
  2559. .ui-menu .ui-state-focus > .ui-menu-icon,
  2560. .ui-menu .ui-state-active > .ui-menu-icon {
  2561. text-decoration: none;
  2562. background-color: #4f99c6;
  2563. color: #FFF;
  2564. margin: auto;
  2565. font-weight: normal;
  2566. }
  2567. .ui-menu .ui-menu-item:hover .ui-menu-icon,
  2568. .ui-menu .ui-state-focus .ui-menu-icon,
  2569. .ui-menu .ui-state-active .ui-menu-icon,
  2570. .ui-menu .ui-menu-item:hover > .ui-menu-icon .ui-menu-icon,
  2571. .ui-menu .ui-state-focus > .ui-menu-icon .ui-menu-icon,
  2572. .ui-menu .ui-state-active > .ui-menu-icon .ui-menu-icon {
  2573. color: #FFF;
  2574. }
  2575. .ui-menu .ui-state-disabled,
  2576. .ui-menu .ui-state-disabled .ui-menu-icon {
  2577. color: #999;
  2578. cursor: default;
  2579. }
  2580. .ui-menu .ui-state-disabled:hover,
  2581. .ui-menu .ui-state-disabled.ui-state-focus,
  2582. .ui-menu .ui-state-disabled.ui-state-active,
  2583. .ui-menu .ui-state-disabled:hover .ui-menu-icon,
  2584. .ui-menu .ui-state-disabled.ui-state-focus .ui-menu-icon,
  2585. .ui-menu .ui-state-disabled.ui-state-active .ui-menu-icon {
  2586. background-color: #FFF;
  2587. color: #999;
  2588. }
  2589. /* auto complete */
  2590. .ui-autocomplete {
  2591. background-color: #FFF;
  2592. border: 1px solid rgba(0, 0, 0, 0.2);
  2593. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2594. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2595. }
  2596. .ui-autocomplete-category {
  2597. padding: 6px;
  2598. position: relative;
  2599. background-color: #eef4f9;
  2600. color: #478fca;
  2601. font-weight: bolder;
  2602. border: 1px solid #DAE6ED;
  2603. border-width: 1px 0;
  2604. }
  2605. .ui-spinner-button {
  2606. border-width: 0 !important;
  2607. font-size: 10px;
  2608. height: 16px;
  2609. line-height: 16px;
  2610. width: 18px;
  2611. color: #FFFFFF !important;
  2612. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
  2613. display: inline-block;
  2614. position: absolute;
  2615. text-align: center;
  2616. padding: 0;
  2617. }
  2618. .ui-spinner-button > .ace-icon {
  2619. width: 18px;
  2620. display: inline-block;
  2621. }
  2622. .ui-spinner-up {
  2623. top: 0;
  2624. right: 5px;
  2625. }
  2626. .ui-spinner-down {
  2627. bottom: 3px;
  2628. right: 5px;
  2629. }
  2630. .ui-spinner-input {
  2631. margin-top: 0;
  2632. padding: 5px;
  2633. max-width: 100px;
  2634. font-size: 14px;
  2635. }
  2636. .ui-tooltip {
  2637. background-color: #444;
  2638. color: #FFF;
  2639. }
  2640. .ui-progressbar {
  2641. background-color: #f5f5f5;
  2642. height: 22px;
  2643. }
  2644. .ui-progressbar .ui-progressbar-value {
  2645. margin: 0;
  2646. }
  2647. .ui-progressbar .ui-progressbar-value[class="progress-bar"] {
  2648. background-color: #2a91d8;
  2649. }
  2650. .ui-selectmenu-button {
  2651. border: 1px solid #aaa;
  2652. }
  2653. .ui-selectmenu-button[aria-expanded=true] {
  2654. border-color: #4492C9;
  2655. }
  2656. .ui-selectmenu-button span.ui-icon {
  2657. text-indent: 0;
  2658. margin-top: -10px;
  2659. }
  2660. .ui-selectmenu-button .ui-icon:before {
  2661. content: "\f0d7";
  2662. display: inline-block;
  2663. color: #888;
  2664. font-family: FontAwesome;
  2665. font-size: 14px;
  2666. }
  2667. .ui-jqgrid .ui-jqgrid-view,
  2668. .ui-jqgrid .ui-paging-info,
  2669. .ui-jqgrid .ui-pg-table,
  2670. .ui-jqgrid .ui-pg-selbox {
  2671. font-size: 13px;
  2672. }
  2673. .ui-jqgrid .ui-jqgrid-title {
  2674. float: left;
  2675. margin: 8px;
  2676. }
  2677. .ui-jqgrid .ui-jqgrid-title-rtl {
  2678. float: right;
  2679. margin: 8px;
  2680. }
  2681. .ui-jqgrid-view > .ui-jqgrid-titlebar {
  2682. height: 40px;
  2683. line-height: 24px;
  2684. color: #FFF;
  2685. background: #307ecc;
  2686. padding: 0;
  2687. font-size: 15px;
  2688. }
  2689. .ui-jqgrid tr.jqgrow.ui-row-rtl td:last-child {
  2690. border-right: none;
  2691. border-left: 1px solid #E1E1E1;
  2692. }
  2693. .ui-jqgrid .ui-jqgrid-hdiv {
  2694. background-color: #eff3f8;
  2695. border: 1px solid #D3D3D3;
  2696. border-width: 1px 0 0 1px;
  2697. line-height: 15px;
  2698. font-weight: bold;
  2699. color: #777;
  2700. text-shadow: none;
  2701. }
  2702. .ui-jqgrid .ui-jqgrid-htable thead {
  2703. background-color: #eff3f8;
  2704. }
  2705. .ui-jqgrid .ui-jqgrid-htable th span.ui-jqgrid-resize {
  2706. height: 45px !important;
  2707. }
  2708. .ui-jqgrid .ui-jqgrid-htable th div {
  2709. padding-top: 12px;
  2710. padding-bottom: 12px;
  2711. }
  2712. .ui-jqgrid-hdiv .ui-jqgrid-htable {
  2713. border-top: none;
  2714. }
  2715. .ui-jqgrid-hdiv .ui-jqgrid-htable {
  2716. border-top: 1px solid #E1E1E1;
  2717. }
  2718. .ui-jqgrid-titlebar {
  2719. position: relative;
  2720. top: 1px;
  2721. z-index: 1;
  2722. }
  2723. .ui-jqgrid tr.jqgrow,
  2724. .ui-jqgrid tr.ui-row-ltr,
  2725. .ui-jqgrid tr.ui-row-rtl {
  2726. border: none;
  2727. }
  2728. .ui-jqgrid tr.ui-row-ltr td,
  2729. .ui-jqgrid tr.ui-row-rtl td {
  2730. border-bottom: 1px solid #E1E1E1;
  2731. padding: 6px 4px;
  2732. border-color: #E1E1E1;
  2733. }
  2734. .ui-jqgrid tr.ui-state-highlight.ui-row-ltr td {
  2735. border-right-color: #C7D3A9;
  2736. }
  2737. .ui-jqgrid tr.ui-state-highlight.ui-row-rtl td {
  2738. border-left-color: #C7D3A9;
  2739. }
  2740. .ui-jqgrid-btable .ui-widget-content.ui-priority-secondary {
  2741. background-image: none;
  2742. background-color: #F9F9F9;
  2743. opacity: 1;
  2744. }
  2745. .ui-jqgrid-btable .ui-widget-content.ui-state-hover {
  2746. background-image: none;
  2747. background-color: #EFF4F7;
  2748. opacity: 1;
  2749. }
  2750. .ui-jqgrid-btable .ui-widget-content.ui-state-highlight {
  2751. background-color: #E4EFC9;
  2752. }
  2753. .ui-jqgrid .ui-jqgrid-pager {
  2754. line-height: 15px;
  2755. height: 55px;
  2756. padding-top: 3px !important;
  2757. padding-bottom: 5px !important;
  2758. background-color: #eff3f8 !important;
  2759. border-bottom: 1px solid #E1E1E1 !important;
  2760. border-top: 1px solid #E1E1E1 !important;
  2761. }
  2762. .ui-jqgrid .ui-pg-input {
  2763. font-size: inherit;
  2764. width: 24px;
  2765. height: 20px;
  2766. line-height: 16px;
  2767. -webkit-box-sizing: content-box;
  2768. -moz-box-sizing: content-box;
  2769. box-sizing: content-box;
  2770. text-align: center;
  2771. padding-top: 1px;
  2772. padding-bottom: 1px;
  2773. }
  2774. .ui-jqgrid .ui-pg-selbox {
  2775. display: block;
  2776. height: 24px;
  2777. width: 60px;
  2778. margin: 0;
  2779. padding: 1px;
  2780. line-height: normal;
  2781. }
  2782. .ui-jqgrid .ui-jqgrid-htable th div {
  2783. overflow: visible;
  2784. }
  2785. .ui-jqgrid .ui-pager-control {
  2786. height: 50px;
  2787. position: relative;
  2788. padding-left: 9px;
  2789. padding-right: 9px;
  2790. }
  2791. .ui-jqgrid .ui-jqgrid-toppager {
  2792. height: auto !important;
  2793. background-color: #eff3f8;
  2794. border-bottom: 1px solid #E1E1E1 !important;
  2795. }
  2796. .ui-jqgrid .jqgrow .editable {
  2797. max-width: 90%;
  2798. max-width: calc(92%) !important;
  2799. }
  2800. .ui-pg-table .navtable .ui-corner-all {
  2801. border-radius: 0;
  2802. }
  2803. .ui-jqgrid .ui-pg-button:hover {
  2804. padding: 1px;
  2805. }
  2806. .ui-jqgrid .ui-pg-button .ui-separator {
  2807. margin-left: 4px;
  2808. margin-right: 4px;
  2809. border-color: #C9D4DB;
  2810. }
  2811. .ui-jqgrid .ui-jqgrid-btable {
  2812. border-left: 1px solid #E1E1E1;
  2813. }
  2814. .ui-jqgrid .ui-jqgrid-bdiv {
  2815. border-top: 1px solid #E1E1E1;
  2816. }
  2817. .ui-jqgrid .loading {
  2818. position: absolute;
  2819. top: 45%;
  2820. left: 45%;
  2821. width: auto;
  2822. height: auto;
  2823. z-index: 101;
  2824. padding: 6px;
  2825. margin: 5px;
  2826. text-align: center;
  2827. font-weight: bold;
  2828. font-size: 12px;
  2829. background-color: #FFF;
  2830. border: 2px solid #8EB8D1;
  2831. color: #E2B018;
  2832. }
  2833. .ui-jqgrid .ui-search-toolbar {
  2834. border-top: 1px solid #E1E1E1;
  2835. }
  2836. .ui-jqgrid .ui-jqgrid-labels {
  2837. border-bottom: none;
  2838. background: #F2F2F2;
  2839. background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #ececec 100%);
  2840. background-image: -o-linear-gradient(top, #f8f8f8 0%, #ececec 100%);
  2841. background-image: linear-gradient(to bottom, #f8f8f8 0%, #ececec 100%);
  2842. background-repeat: repeat-x;
  2843. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8f8f8', endColorstr='#ffececec', GradientType=0);
  2844. padding: 0 !important;
  2845. border-left: 1px solid #E1E1E1 !important;
  2846. }
  2847. .ui-jqgrid .ui-jqgrid-labels th {
  2848. border-right: 1px solid #E1E1E1 !important;
  2849. text-align: left !important;
  2850. }
  2851. /* checkbox container */
  2852. .ui-jqgrid-labels th[id*="_cb"]:first-child > div {
  2853. padding-top: 0;
  2854. text-align: center !important;
  2855. }
  2856. .ui-jqgrid-sortable {
  2857. padding-left: 4px;
  2858. font-size: 13px;
  2859. color: #777;
  2860. font-weight: bold;
  2861. }
  2862. .ui-jqgrid-sortable:hover {
  2863. color: #547ea8;
  2864. }
  2865. th[aria-selected=true] {
  2866. background-image: -webkit-linear-gradient(top, #eff3f8 0%, #e3e7ed 100%);
  2867. background-image: -o-linear-gradient(top, #eff3f8 0%, #e3e7ed 100%);
  2868. background-image: linear-gradient(to bottom, #eff3f8 0%, #e3e7ed 100%);
  2869. background-repeat: repeat-x;
  2870. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeff3f8', endColorstr='#ffe3e7ed', GradientType=0);
  2871. }
  2872. th[aria-selected=true] .ui-jqgrid-sortable {
  2873. color: #307ecc;
  2874. }
  2875. .ui-jqgrid .ui-icon {
  2876. text-indent: 0;
  2877. color: #307ecc;
  2878. float: none;
  2879. right: 2px;
  2880. }
  2881. .rtl .ui-jqgrid .ui-icon {
  2882. right: auto;
  2883. left: 2px;
  2884. }
  2885. .ui-jqgrid .ui-icon.ui-state-disabled {
  2886. color: #BBB;
  2887. }
  2888. .ui-jqgrid .ui-icon.ui-state-disabled:hover {
  2889. padding: 0;
  2890. }
  2891. .ui-grid-ico-sort:before {
  2892. display: inline;
  2893. content: "\f0d7";
  2894. font-family: FontAwesome;
  2895. font-size: 12px;
  2896. }
  2897. .ui-icon-asc:before {
  2898. content: "\f0d8";
  2899. }
  2900. .ui-pg-table > tbody > tr > .ui-pg-button > .ui-icon {
  2901. display: inline-block;
  2902. padding: 0;
  2903. width: 24px;
  2904. height: 24px;
  2905. line-height: 22px;
  2906. text-align: center;
  2907. position: static;
  2908. float: none;
  2909. margin: 0 2px !important;
  2910. color: #808080;
  2911. border: 1px solid #CCC;
  2912. background-color: #FFF;
  2913. border-radius: 100%;
  2914. }
  2915. .ui-pg-table > tbody > tr > .ui-pg-button > .ui-icon:hover {
  2916. color: #699AB5;
  2917. border-color: #699AB5;
  2918. }
  2919. .ui-pg-table > tbody > tr > .ui-pg-button > .ui-icon:before {
  2920. width: 20px;
  2921. text-align: center;
  2922. display: inline-block;
  2923. }
  2924. .ui-pg-table > tbody > tr > .ui-pg-button.ui-state-disabled .ui-icon {
  2925. color: #B0B0B0;
  2926. background-color: #F7F7F7;
  2927. border-color: #DDD;
  2928. -moz-transform: scale(0.9);
  2929. -webkit-transform: scale(0.9);
  2930. -o-transform: scale(0.9);
  2931. -ms-transform: scale(0.9);
  2932. transform: scale(0.9);
  2933. }
  2934. .ui-jqgrid-btable input,
  2935. .ui-jqgrid-btable textarea,
  2936. .ui-jqgrid-btable select {
  2937. padding: 2px;
  2938. width: auto;
  2939. max-width: 100%;
  2940. margin-bottom: 0;
  2941. }
  2942. .ui-jqgrid-btable select {
  2943. padding: 1px;
  2944. height: 25px;
  2945. line-height: 25px;
  2946. }
  2947. .ui-pg-div .ui-icon {
  2948. display: inline-block;
  2949. width: 18px;
  2950. float: none;
  2951. position: static;
  2952. text-align: center;
  2953. opacity: 0.85;
  2954. -webkit-transition: all 0.12s;
  2955. -o-transition: all 0.12s;
  2956. transition: all 0.12s;
  2957. margin: 0 1px;
  2958. vertical-align: middle;
  2959. cursor: pointer;
  2960. font-size: 17px;
  2961. }
  2962. .ui-pg-div .ui-icon:hover {
  2963. -moz-transform: scale(1.2);
  2964. -webkit-transform: scale(1.2);
  2965. -o-transform: scale(1.2);
  2966. -ms-transform: scale(1.2);
  2967. transform: scale(1.2);
  2968. opacity: 1;
  2969. position: static;
  2970. margin: 0 1px;
  2971. }
  2972. .ui-pg-div .ui-icon:before {
  2973. font-family: FontAwesome;
  2974. display: inline;
  2975. }
  2976. .ui-jqgrid .ui-icon-pencil {
  2977. color: #478FCA;
  2978. }
  2979. .ui-jqgrid .ui-icon-pencil:before {
  2980. content: "\f040";
  2981. }
  2982. .ui-jqgrid .ui-icon-trash {
  2983. color: #DD5A43;
  2984. }
  2985. .ui-jqgrid .ui-icon-trash:before {
  2986. content: "\f014";
  2987. }
  2988. .ui-jqgrid .ui-icon-disk {
  2989. color: #69AA46;
  2990. }
  2991. .ui-jqgrid .ui-icon-disk:before {
  2992. content: "\f00c";
  2993. }
  2994. .ui-jqgrid .ui-icon-cancel {
  2995. color: #DD5A43;
  2996. }
  2997. .ui-jqgrid .ui-icon-cancel:before {
  2998. content: "\f00d";
  2999. }
  3000. .ui-jqdialog-content,
  3001. .ui-jqdialog .ui-jqdialog-content {
  3002. font-size: 13px;
  3003. padding: 4px 0 0;
  3004. }
  3005. .ui-jqdialog-content .formdata,
  3006. .ui-jqdialog .ui-jqdialog-content .formdata {
  3007. font-size: 13px;
  3008. padding: 6px 12px;
  3009. }
  3010. .ui-jqdialog-content .form-view-data,
  3011. .ui-jqdialog .ui-jqdialog-content .form-view-data {
  3012. vertical-align: middle;
  3013. font-size: 13px;
  3014. }
  3015. .ui-jqdialog-content[id*="alertcnt_"],
  3016. .ui-jqdialog .ui-jqdialog-content[id*="alertcnt_"] {
  3017. padding: 8px 11px;
  3018. }
  3019. .ui-jqdialog-content .CaptionTD {
  3020. font-size: 12px;
  3021. text-align: right;
  3022. color: #666;
  3023. }
  3024. .ui-jqdialog-content .FormData {
  3025. border-bottom: 1px dotted #E8E8E8;
  3026. }
  3027. .ui-jqdialog-content .FormData:last-child {
  3028. border-bottom: none;
  3029. }
  3030. .ui-jqdialog-content .FormData > td {
  3031. padding-top: 6px;
  3032. padding-bottom: 6px;
  3033. }
  3034. .ui-jqdialog-content input.FormElement {
  3035. width: auto;
  3036. }
  3037. .ui-jqdialog-content select.FormElement {
  3038. padding: 1px;
  3039. height: 25px;
  3040. line-height: 25px;
  3041. width: auto;
  3042. }
  3043. .ui-jqdialog-content td.EditButton {
  3044. padding: 8px;
  3045. }
  3046. .EditTable {
  3047. background-color: #eff3f8;
  3048. border-top: 1px solid #D6E1EA !important;
  3049. padding: 8px;
  3050. }
  3051. .EditTable tr:first-child {
  3052. display: none;
  3053. }
  3054. .EditTable .navButton .fm-button {
  3055. float: none !important;
  3056. width: auto !important;
  3057. margin: 1px 1px 2px !important;
  3058. background-color: transparent;
  3059. border-radius: 100%;
  3060. }
  3061. .EditTable .navButton .fm-button:hover {
  3062. background-color: transparent;
  3063. }
  3064. .EditTable .navButton .fm-button:focus {
  3065. outline: none;
  3066. }
  3067. .EditTable .navButton .fm-button .ace-icon {
  3068. display: inline-block;
  3069. color: #999;
  3070. border: 1px solid #AAA;
  3071. width: 26px;
  3072. height: 26px;
  3073. line-height: 26px;
  3074. text-align: center;
  3075. border-radius: 100%;
  3076. background-color: #FFF;
  3077. }
  3078. .EditTable .navButton .fm-button:hover .ace-icon {
  3079. color: #699AB5;
  3080. border-color: #699AB5;
  3081. }
  3082. .EditTable .navButton .fm-button.ui-state-disabled .ace-icon,
  3083. .EditTable .navButton .fm-button.ui-state-disabled:hover .ace-icon {
  3084. color: #BBB;
  3085. border-color: #CCC;
  3086. -moz-transform: scale(0.88);
  3087. -webkit-transform: scale(0.88);
  3088. -o-transform: scale(0.88);
  3089. -ms-transform: scale(0.88);
  3090. transform: scale(0.88);
  3091. }
  3092. .FormGrid .EditTable {
  3093. background-color: #FFF;
  3094. border-top: none !important;
  3095. padding: 0;
  3096. }
  3097. .FormGrid .EditTable tr:first-child {
  3098. display: none;
  3099. }
  3100. .ui-jqgrid .ui-jqgrid-view input,
  3101. .ui-jqgrid .ui-jqgrid-view select,
  3102. .ui-jqgrid .ui-jqgrid-view textarea,
  3103. .ui-jqgrid .ui-jqgrid-view button {
  3104. font-size: 13px;
  3105. }
  3106. .ui-jqdialog-content .searchFilter select {
  3107. padding: 1px;
  3108. height: 26px;
  3109. line-height: 26px;
  3110. width: auto;
  3111. max-width: 95%;
  3112. margin-bottom: 0;
  3113. }
  3114. .ui-jqdialog-content .searchFilter .input-elm {
  3115. margin-bottom: 0;
  3116. height: 18px;
  3117. line-height: 18px;
  3118. width: 95% !important;
  3119. padding-left: 1px;
  3120. padding-right: 1px;
  3121. -webkit-box-sizing: content-box;
  3122. -moz-box-sizing: content-box;
  3123. box-sizing: content-box;
  3124. }
  3125. .ui-jqdialog-content .searchFilter table {
  3126. margin-left: 4px;
  3127. }
  3128. .ui-jqdialog-content .searchFilter tr td {
  3129. padding: 5px 0;
  3130. }
  3131. .ui-jqdialog-content .searchFilter .add-group,
  3132. .ui-jqdialog-content .searchFilter .add-rule,
  3133. .ui-jqdialog-content .searchFilter .delete-group {
  3134. margin-left: 4px !important;
  3135. font-size: 15px !important;
  3136. }
  3137. .ui-jqdialog-content .searchFilter .delete-rule {
  3138. border: none;
  3139. background-color: #FFF;
  3140. color: #D15B47;
  3141. font-size: 20px;
  3142. width: 22px;
  3143. line-height: 10px;
  3144. padding: 0;
  3145. text-shadow: none !important;
  3146. display: inline-block;
  3147. -webkit-transition: all 0.1s;
  3148. -o-transition: all 0.1s;
  3149. transition: all 0.1s;
  3150. opacity: 0.85;
  3151. }
  3152. .ui-jqdialog-content .searchFilter .delete-rule:hover {
  3153. -moz-transform: scale(1.1);
  3154. -webkit-transform: scale(1.1);
  3155. -o-transform: scale(1.1);
  3156. -ms-transform: scale(1.1);
  3157. transform: scale(1.1);
  3158. color: #B74635;
  3159. opacity: 1;
  3160. }
  3161. .ui-jqdialog-content .searchFilter .queryresult {
  3162. margin-bottom: 11px;
  3163. }
  3164. .ui-jqdialog-content .searchFilter .queryresult td.query {
  3165. padding: 6px 11px;
  3166. border: 1px solid #E1E1E1;
  3167. background-color: #EEEEEE;
  3168. }
  3169. .ui-jqdialog-content .searchFilter .queryresult td.query:empty {
  3170. display: none;
  3171. }
  3172. .ui-state-error {
  3173. background-color: #f2dede;
  3174. border: 1px solid #ebccd1;
  3175. color: #a94442;
  3176. margin: 4px 4px 8px;
  3177. padding: 6px 10px;
  3178. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3179. font-size: 13px;
  3180. }
  3181. .ui-jqdialog .ui-widget-header {
  3182. background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  3183. background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  3184. background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  3185. background-repeat: repeat-x;
  3186. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
  3187. border-image: none;
  3188. border-bottom: 1px solid solid;
  3189. color: #669FC7;
  3190. min-height: 38px;
  3191. position: relative;
  3192. }
  3193. .ui-jqdialog .ui-widget-header .ui-jqdialog-title {
  3194. line-height: 38px;
  3195. margin: 0;
  3196. padding: 0;
  3197. padding-left: 12px;
  3198. text-align: left;
  3199. }
  3200. .widget-header .ui-jqdialog-title {
  3201. padding-left: 0 !important;
  3202. padding-right: 0 !important;
  3203. }
  3204. .ui-jqdialog .ui-widget-header .widget-header {
  3205. border-bottom: none;
  3206. }
  3207. .ui-jqdialog .ui-jqdialog-titlebar {
  3208. border-bottom: 1px solid #DDD !important;
  3209. }
  3210. .fm-button {
  3211. margin: 0 4px;
  3212. }
  3213. .fm-button:not(.btn) {
  3214. background-color: #abbac3;
  3215. border-radius: 0 ;
  3216. box-shadow: none;
  3217. color: #FFFFFF ;
  3218. cursor: pointer;
  3219. display: inline-block;
  3220. font-size: 13px;
  3221. line-height: 28px;
  3222. padding: 0 12px 1px;
  3223. margin: 0 8px;
  3224. position: relative;
  3225. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3226. -webkit-transition: all 0.15s;
  3227. -o-transition: all 0.15s;
  3228. transition: all 0.15s;
  3229. vertical-align: middle;
  3230. }
  3231. .fm-button.ui-state-default:hover {
  3232. background-color: #8b9aa3;
  3233. }
  3234. .ui-jqgrid .ui-jqgrid-htable .ui-search-toolbar th {
  3235. height: 30px;
  3236. padding-top: 2px;
  3237. white-space: normal;
  3238. }
  3239. .ui-jqgrid .ui-jqgrid-htable .ui-search-toolbar th div {
  3240. padding-top: 0;
  3241. padding-bottom: 0;
  3242. height: 30px;
  3243. line-height: 26px;
  3244. }
  3245. .ui-jqgrid .ui-jqgrid-titlebar-close {
  3246. top: 10%;
  3247. height: auto;
  3248. padding: 0;
  3249. margin: 2px 8px 0 0;
  3250. text-align: center;
  3251. border-radius: 4px;
  3252. }
  3253. .ui-jqgrid .ui-jqgrid-titlebar-close:hover {
  3254. background-color: rgba(255, 255, 255, 0.2);
  3255. }
  3256. .ui-jqgrid .ui-jqgrid-titlebar-close .ui-icon:before {
  3257. display: inline-block;
  3258. font-family: FontAwesome;
  3259. content: "\f077";
  3260. color: #FFF;
  3261. }
  3262. .ui-jqgrid .ui-jqgrid-titlebar-close .ui-icon-circle-triangle-s:before {
  3263. content: "\f078";
  3264. }
  3265. .ui-jqgrid .tree-wrap-ltr {
  3266. margin: 0 4px;
  3267. float: none;
  3268. display: inline;
  3269. }
  3270. .ui-jqgrid .tree-wrap-rtl {
  3271. margin: 2px 4px 0;
  3272. }
  3273. .ui-jqgrid .ui-subgrid {
  3274. border-bottom: 1px solid #E1E1E1;
  3275. background-color: #F6FAFF;
  3276. }
  3277. .ui-jqgrid .ui-subgrid .ui-jqgrid-btable {
  3278. background-color: #FFF;
  3279. }
  3280. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv {
  3281. background-color: transparent;
  3282. margin-top: 4px;
  3283. }
  3284. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv .ui-jqgrid-htable .ui-jqgrid-labels {
  3285. border-bottom: 1px solid #E1E1E1;
  3286. background: #F1F1F1;
  3287. }
  3288. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv .ui-jqgrid-htable th[aria-selected="true"] {
  3289. background: #E5E9EF;
  3290. }
  3291. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv .ui-jqgrid-htable th .ui-jqgrid-sortable {
  3292. font-size: 12px;
  3293. }
  3294. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv .ui-jqgrid-htable th div {
  3295. padding-top: 8px;
  3296. padding-bottom: 8px;
  3297. }
  3298. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-hdiv .ui-jqgrid-htable th span.ui-jqgrid-resize {
  3299. height: 36px !important;
  3300. }
  3301. .ui-jqgrid .ui-subgrid .ui-jqgrid .ui-jqgrid-bdiv {
  3302. height: auto !important;
  3303. max-height: 150px;
  3304. margin-bottom: 4px;
  3305. border-top-width: 0;
  3306. border-bottom: 1px solid #E1E1E1;
  3307. }
  3308. .ui-jqgrid .ui-sgcollapsed > a:hover {
  3309. text-decoration: none;
  3310. }
  3311. @media only screen and (max-width: 767px) {
  3312. .ui-jqgrid .ui-jqgrid-pager {
  3313. height: 90px;
  3314. }
  3315. .ui-jqgrid .ui-jqgrid-pager > .ui-pager-control {
  3316. height: 85px;
  3317. padding-top: 9px;
  3318. }
  3319. .ui-jqgrid .ui-jqgrid-pager > .ui-pager-control > .ui-pg-table > tbody > tr > td {
  3320. vertical-align: top;
  3321. }
  3322. .ui-jqgrid .ui-jqgrid-pager > .ui-pager-control > .ui-pg-table > tbody > tr > td#grid-pager_center {
  3323. width: 0 !important;
  3324. position: static;
  3325. }
  3326. .ui-jqgrid .ui-jqgrid-pager > .ui-pager-control > .ui-pg-table > tbody > tr > td#grid-pager_center > .ui-pg-table {
  3327. margin: 36px auto 0;
  3328. position: absolute;
  3329. right: 0;
  3330. left: 0;
  3331. text-align: center;
  3332. }
  3333. }
  3334. @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 0) {
  3335. .ui-jqgrid .ui-jqgrid-pager > .ui-pager-control > .ui-pg-table > tbody > tr > td#grid-pager_center > .ui-pg-table {
  3336. width: 300px;
  3337. }
  3338. }
  3339. .dd {
  3340. position: relative;
  3341. display: block;
  3342. margin: 0;
  3343. padding: 0;
  3344. max-width: 600px;
  3345. list-style: none;
  3346. line-height: 20px;
  3347. }
  3348. .dd-list {
  3349. display: block;
  3350. position: relative;
  3351. margin: 0;
  3352. padding: 0;
  3353. list-style: none;
  3354. }
  3355. .dd-list .dd-list {
  3356. padding-left: 30px;
  3357. }
  3358. .dd-collapsed .dd-list {
  3359. display: none;
  3360. }
  3361. .dd-item,
  3362. .dd-empty,
  3363. .dd-placeholder {
  3364. display: block;
  3365. position: relative;
  3366. margin: 0;
  3367. padding: 0;
  3368. min-height: 20px;
  3369. line-height: 20px;
  3370. }
  3371. .dd-handle,
  3372. .dd2-content {
  3373. display: block;
  3374. min-height: 38px;
  3375. margin: 5px 0;
  3376. padding: 8px 12px;
  3377. background: #F8FAFF;
  3378. border: 1px solid #DAE2EA;
  3379. color: #7C9EB2;
  3380. text-decoration: none;
  3381. font-weight: bold;
  3382. -webkit-box-sizing: border-box;
  3383. -moz-box-sizing: border-box;
  3384. box-sizing: border-box;
  3385. }
  3386. .dd-handle:hover,
  3387. .dd2-content:hover {
  3388. color: #438EB9;
  3389. background: #F4F6F7;
  3390. border-color: #DCE2E8;
  3391. }
  3392. .dd-handle[class*="btn-"],
  3393. .dd2-content[class*="btn-"] {
  3394. color: #FFF;
  3395. border: none;
  3396. padding: 9px 12px;
  3397. }
  3398. .dd-handle[class*="btn-"]:hover,
  3399. .dd2-content[class*="btn-"]:hover {
  3400. opacity: 0.85;
  3401. color: #FFF;
  3402. }
  3403. .dd2-handle + .dd2-content,
  3404. .dd2-handle + .dd2-content[class*="btn-"] {
  3405. padding-left: 44px;
  3406. }
  3407. .dd-handle[class*="btn-"]:hover,
  3408. .dd2-content[class*="btn-"] .dd2-handle[class*="btn-"]:hover + .dd2-content[class*="btn-"] {
  3409. color: #FFF;
  3410. }
  3411. .dd-item > button:hover ~ .dd-handle,
  3412. .dd-item > button:hover ~ .dd2-content {
  3413. color: #438EB9;
  3414. background: #F4F6F7;
  3415. border-color: #DCE2E8;
  3416. }
  3417. .dd-item > button:hover ~ .dd-handle[class*="btn-"],
  3418. .dd-item > button:hover ~ .dd2-content[class*="btn-"] {
  3419. opacity: 0.85;
  3420. color: #FFF;
  3421. }
  3422. .dd2-handle:hover ~ .dd2-content {
  3423. color: #438EB9;
  3424. background: #F4F6F7;
  3425. border-color: #DCE2E8;
  3426. }
  3427. .dd2-handle:hover ~ .dd2-content[class*="btn-"] {
  3428. opacity: 0.85;
  3429. color: #FFF;
  3430. }
  3431. .dd2-item.dd-item > button {
  3432. margin-left: 34px;
  3433. }
  3434. .dd-item > button {
  3435. display: block;
  3436. position: relative;
  3437. z-index: 1;
  3438. cursor: pointer;
  3439. float: left;
  3440. width: 25px;
  3441. height: 20px;
  3442. margin: 5px 1px 5px 5px;
  3443. padding: 0;
  3444. text-indent: 100%;
  3445. white-space: nowrap;
  3446. overflow: hidden;
  3447. border: 0;
  3448. background: transparent;
  3449. font-size: 12px;
  3450. line-height: 1;
  3451. text-align: center;
  3452. font-weight: bold;
  3453. top: 4px;
  3454. left: 1px;
  3455. color: #707070;
  3456. }
  3457. .dd-item > button:before {
  3458. font-family: FontAwesome;
  3459. content: '\f067';
  3460. display: block;
  3461. position: absolute;
  3462. width: 100%;
  3463. text-align: center;
  3464. text-indent: 0;
  3465. font-weight: normal;
  3466. font-size: 14px;
  3467. }
  3468. .dd-item > button[data-action="collapse"]:before {
  3469. content: '\f068';
  3470. }
  3471. .dd-item > button:hover {
  3472. color: #707070;
  3473. }
  3474. .dd-item.dd-colored > button,
  3475. .dd-item.dd-colored > button:hover {
  3476. color: #EEE;
  3477. }
  3478. .dd-placeholder,
  3479. .dd-empty {
  3480. margin: 5px 0;
  3481. padding: 0;
  3482. min-height: 30px;
  3483. background: #F0F9FF;
  3484. border: 2px dashed #BED2DB;
  3485. -webkit-box-sizing: border-box;
  3486. -moz-box-sizing: border-box;
  3487. box-sizing: border-box;
  3488. }
  3489. .dd-empty {
  3490. border-color: #AAA;
  3491. border-style: solid;
  3492. background-color: #e5e5e5;
  3493. }
  3494. .dd-dragel {
  3495. position: absolute;
  3496. pointer-events: none;
  3497. z-index: 999;
  3498. opacity: 0.8;
  3499. }
  3500. .dd-dragel > li > .dd-handle {
  3501. color: #4B92BE;
  3502. background: #F1F5FA;
  3503. border-color: #D6E1EA;
  3504. border-left: 2px solid #777;
  3505. position: relative;
  3506. }
  3507. .dd-dragel > li > .dd-handle[class*="btn-"] {
  3508. color: #FFF;
  3509. }
  3510. .dd-dragel > .dd-item > .dd-handle {
  3511. margin-top: 0;
  3512. }
  3513. .dd-list > li[class*="item-"] {
  3514. border-width: 0;
  3515. padding: 0;
  3516. }
  3517. .dd-list > li[class*="item-"] > .dd-handle {
  3518. border-left: 2px solid;
  3519. border-left-color: inherit;
  3520. }
  3521. .dd-list > li > .dd-handle .sticker {
  3522. position: absolute;
  3523. right: 0;
  3524. top: 0;
  3525. }
  3526. .dd2-handle,
  3527. .dd-dragel > li > .dd2-handle {
  3528. left: 0;
  3529. top: 0;
  3530. width: 36px;
  3531. margin: 0;
  3532. border-width: 1px 1px 0 0;
  3533. text-align: center;
  3534. padding: 0 !important;
  3535. line-height: 38px;
  3536. height: 38px;
  3537. background: #EBEDF2;
  3538. border: 1px solid #DEE4EA;
  3539. cursor: pointer;
  3540. overflow: hidden;
  3541. position: absolute;
  3542. z-index: 1;
  3543. }
  3544. .dd2-handle:hover,
  3545. .dd-dragel > li > .dd2-handle {
  3546. background: #E3E8ED;
  3547. }
  3548. .dd2-content[class*="btn-"] {
  3549. text-shadow: none !important;
  3550. }
  3551. .dd2-handle[class*="btn-"] {
  3552. text-shadow: none !important;
  3553. background: rgba(0, 0, 0, 0.1) !important;
  3554. border-right: 1px solid #EEE;
  3555. }
  3556. .dd2-handle[class*="btn-"]:hover {
  3557. background: rgba(0, 0, 0, 0.08) !important;
  3558. }
  3559. .dd-dragel .dd2-handle[class*="btn-"] {
  3560. border-color: transparent;
  3561. border-right-color: #EEE;
  3562. }
  3563. .dd2-handle.btn-yellow {
  3564. text-shadow: none !important;
  3565. background: rgba(0, 0, 0, 0.05) !important;
  3566. border-right: 1px solid #FFF;
  3567. }
  3568. .dd2-handle.btn-yellow:hover {
  3569. background: rgba(0, 0, 0, 0.08) !important;
  3570. }
  3571. .dd-dragel .dd2-handle.btn-yellow {
  3572. border-color: transparent;
  3573. border-right-color: #FFF;
  3574. }
  3575. .dd-item > .dd2-handle .drag-icon {
  3576. display: none;
  3577. }
  3578. .dd-dragel > .dd-item > .dd2-handle .drag-icon {
  3579. display: inline;
  3580. }
  3581. .dd-dragel > .dd-item > .dd2-handle .normal-icon {
  3582. display: none;
  3583. }
  3584. .dropzone {
  3585. border-radius: 0;
  3586. border: 1px solid rgba(0, 0, 0, 0.06);
  3587. }
  3588. .dropzone .dz-default.dz-message {
  3589. background-image: none;
  3590. font-size: 24px;
  3591. text-align: center;
  3592. line-height: 32px;
  3593. left: 0;
  3594. width: 100%;
  3595. margin-left: auto;
  3596. }
  3597. .dropzone .dz-default.dz-message span {
  3598. display: inline;
  3599. color: #555;
  3600. }
  3601. .dropzone .dz-default.dz-message span .upload-icon {
  3602. opacity: 0.7;
  3603. filter: alpha(opacity=70);
  3604. margin-top: 8px;
  3605. cursor: pointer;
  3606. }
  3607. .dropzone .dz-default.dz-message span .upload-icon:hover {
  3608. opacity: 1;
  3609. filter: alpha(opacity=100);
  3610. }
  3611. .dropzone .dz-preview .dz-error-mark,
  3612. .dropzone-previews .dz-preview .dz-error-mark,
  3613. .dropzone .dz-preview .dz-success-mark,
  3614. .dropzone-previews .dz-preview .dz-success-mark {
  3615. background-image: none;
  3616. background-color: rgba(255, 255, 255, 0.8);
  3617. border-radius: 100%;
  3618. text-align: center;
  3619. line-height: 35px;
  3620. }
  3621. .dropzone .dz-preview .dz-error-mark:before,
  3622. .dropzone-previews .dz-preview .dz-error-mark:before {
  3623. font-family: FontAwesome;
  3624. font-size: 30px;
  3625. color: #DB6262;
  3626. content: "\f00d";
  3627. }
  3628. .dropzone .dz-preview .dz-success-mark:before,
  3629. .dropzone-previews .dz-preview .dz-success-mark:before {
  3630. font-family: FontAwesome;
  3631. font-size: 30px;
  3632. color: #6DA552;
  3633. content: "\f00c";
  3634. }
  3635. .dropzone a.dz-remove,
  3636. .dropzone-previews a.dz-remove {
  3637. border: none;
  3638. border-radius: 0;
  3639. color: #FFF;
  3640. background: #D15B47;
  3641. cursor: pointer;
  3642. }
  3643. .dropzone a.dz-remove:hover,
  3644. .dropzone-previews a.dz-remove:hover {
  3645. color: #FFF;
  3646. background: #B74635;
  3647. }
  3648. .dropzone .progress,
  3649. .dropzone-previews .progress {
  3650. margin-bottom: 0;
  3651. }
  3652. .dropzone .dz-preview.dz-success .progress,
  3653. .dropzone-previews .dz-preview.dz-success .progress,
  3654. .dropzone .dz-preview.dz-error .progress,
  3655. .dropzone-previews .dz-preview.dz-error .progress {
  3656. display: none;
  3657. }
  3658. input.typeahead,
  3659. input.tt-query,
  3660. input.tt-hint {
  3661. min-width: 175px;
  3662. font-size: 16px;
  3663. line-height: 24px;
  3664. border: 1px solid #CCC;
  3665. border-radius: 0;
  3666. outline: none;
  3667. }
  3668. input.tt-hint,
  3669. .form-group input.tt-hint {
  3670. background-color: #FFF !important;
  3671. color: #B0B0B0 !important;
  3672. }
  3673. .tt-dropdown-menu {
  3674. text-align: left;
  3675. position: absolute;
  3676. left: 0 !important;
  3677. right: 0 !important;
  3678. min-width: 175px;
  3679. margin-top: 2px;
  3680. padding: 8px 0;
  3681. background-color: #FFF;
  3682. border: 1px solid #D0D0D0;
  3683. border: 1px solid rgba(0, 0, 0, 0.15);
  3684. border-radius: 0;
  3685. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  3686. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  3687. }
  3688. .tt-suggestion {
  3689. padding: 3px 12px 4px;
  3690. font-size: 16px;
  3691. line-height: 24px;
  3692. }
  3693. .tt-suggestion.tt-cursor {
  3694. color: #FFF;
  3695. background-color: #4F99C6;
  3696. cursor: pointer;
  3697. }
  3698. .tt-suggestion p {
  3699. margin: 0;
  3700. }
  3701. input.typeahead.scrollable ~ .tt-dropdown-menu {
  3702. max-height: 200px;
  3703. overflow-y: auto;
  3704. }
  3705. .btn-group > .btn.moveall:first-child,
  3706. .btn-group > .btn.remove:first-child {
  3707. margin: 0;
  3708. }
  3709. .btn-group > .btn.moveall:first-child + .btn.move,
  3710. .btn-group > .btn.remove:first-child + .btn.removeall {
  3711. margin: 0;
  3712. }
  3713. .bootstrap-duallistbox-container .info {
  3714. font-size: 12px;
  3715. }
  3716. .bootstrap-duallistbox-container .clear1,
  3717. .bootstrap-duallistbox-container .clear2 {
  3718. font-size: 12px;
  3719. }
  3720. .multiselect-container > li > a {
  3721. padding: 0;
  3722. }
  3723. .multiselect-container > li > a > label {
  3724. padding: 7px 10px 7px 20px;
  3725. }
  3726. .cancel-on-png,
  3727. .cancel-off-png,
  3728. .star-on-png,
  3729. .star-off-png,
  3730. .star-half-png {
  3731. font-size: 2em;
  3732. }
  3733. .cancel-on-png,
  3734. .cancel-off-png,
  3735. .star-on-png,
  3736. .star-off-png,
  3737. .star-half-png {
  3738. -moz-osx-font-smoothing: grayscale;
  3739. -webkit-font-smoothing: antialiased;
  3740. font-family: "FontAwesome";
  3741. font-style: normal;
  3742. font-variant: normal;
  3743. font-weight: normal;
  3744. line-height: 1;
  3745. speak: none;
  3746. text-transform: none;
  3747. color: #777777;
  3748. }
  3749. .cancel-on-png {
  3750. color: #dd5a43;
  3751. }
  3752. .cancel-on-png:before {
  3753. content: "\f057";
  3754. }
  3755. .cancel-off-png {
  3756. color: #e08374;
  3757. }
  3758. .cancel-off-png:before {
  3759. content: "\f05c";
  3760. }
  3761. .star-on-png {
  3762. color: #feb902;
  3763. }
  3764. .star-on-png:before {
  3765. content: "\f005";
  3766. }
  3767. .star-off-png {
  3768. color: #777777;
  3769. }
  3770. .star-off-png:before {
  3771. content: "\f006";
  3772. }
  3773. .star-half-png {
  3774. color: #feb902;
  3775. }
  3776. .star-half-png:before {
  3777. content: "\f123";
  3778. }
  3779. /* custom animated icons */
  3780. .icon-animated-bell {
  3781. display: inline-block;
  3782. -moz-animation: ringing 2.0s 5 ease 1.0s;
  3783. -webkit-animation: ringing 2.0s 5 ease 1.0s;
  3784. -o-animation: ringing 2.0s 5 ease 1.0s;
  3785. -ms-animation: ringing 2.0s 5 ease 1.0s;
  3786. animation: ringing 2.0s 5 ease 1.0s;
  3787. -moz-transform-origin: 50% 0%;
  3788. -webkit-transform-origin: 50% 0%;
  3789. -o-transform-origin: 50% 0%;
  3790. -ms-transform-origin: 50% 0%;
  3791. transform-origin: 50% 0%;
  3792. }
  3793. @-moz-keyframes ringing {
  3794. 0% {
  3795. -moz-transform: rotate(-15deg);
  3796. }
  3797. 2% {
  3798. -moz-transform: rotate(15deg);
  3799. }
  3800. 4% {
  3801. -moz-transform: rotate(-18deg);
  3802. }
  3803. 6% {
  3804. -moz-transform: rotate(18deg);
  3805. }
  3806. 8% {
  3807. -moz-transform: rotate(-22deg);
  3808. }
  3809. 10% {
  3810. -moz-transform: rotate(22deg);
  3811. }
  3812. 12% {
  3813. -moz-transform: rotate(-18deg);
  3814. }
  3815. 14% {
  3816. -moz-transform: rotate(18deg);
  3817. }
  3818. 16% {
  3819. -moz-transform: rotate(-12deg);
  3820. }
  3821. 18% {
  3822. -moz-transform: rotate(12deg);
  3823. }
  3824. 20% {
  3825. -moz-transform: rotate(0deg);
  3826. }
  3827. }
  3828. @-webkit-keyframes ringing {
  3829. 0% {
  3830. -webkit-transform: rotate(-15deg);
  3831. }
  3832. 2% {
  3833. -webkit-transform: rotate(15deg);
  3834. }
  3835. 4% {
  3836. -webkit-transform: rotate(-18deg);
  3837. }
  3838. 6% {
  3839. -webkit-transform: rotate(18deg);
  3840. }
  3841. 8% {
  3842. -webkit-transform: rotate(-22deg);
  3843. }
  3844. 10% {
  3845. -webkit-transform: rotate(22deg);
  3846. }
  3847. 12% {
  3848. -webkit-transform: rotate(-18deg);
  3849. }
  3850. 14% {
  3851. -webkit-transform: rotate(18deg);
  3852. }
  3853. 16% {
  3854. -webkit-transform: rotate(-12deg);
  3855. }
  3856. 18% {
  3857. -webkit-transform: rotate(12deg);
  3858. }
  3859. 20% {
  3860. -webkit-transform: rotate(0deg);
  3861. }
  3862. }
  3863. @-ms-keyframes ringing {
  3864. 0% {
  3865. -ms-transform: rotate(-15deg);
  3866. }
  3867. 2% {
  3868. -ms-transform: rotate(15deg);
  3869. }
  3870. 4% {
  3871. -ms-transform: rotate(-18deg);
  3872. }
  3873. 6% {
  3874. -ms-transform: rotate(18deg);
  3875. }
  3876. 8% {
  3877. -ms-transform: rotate(-22deg);
  3878. }
  3879. 10% {
  3880. -ms-transform: rotate(22deg);
  3881. }
  3882. 12% {
  3883. -ms-transform: rotate(-18deg);
  3884. }
  3885. 14% {
  3886. -ms-transform: rotate(18deg);
  3887. }
  3888. 16% {
  3889. -ms-transform: rotate(-12deg);
  3890. }
  3891. 18% {
  3892. -ms-transform: rotate(12deg);
  3893. }
  3894. 20% {
  3895. -ms-transform: rotate(0deg);
  3896. }
  3897. }
  3898. @keyframes ringing {
  3899. 0% {
  3900. transform: rotate(-15deg);
  3901. }
  3902. 2% {
  3903. transform: rotate(15deg);
  3904. }
  3905. 4% {
  3906. transform: rotate(-18deg);
  3907. }
  3908. 6% {
  3909. transform: rotate(18deg);
  3910. }
  3911. 8% {
  3912. transform: rotate(-22deg);
  3913. }
  3914. 10% {
  3915. transform: rotate(22deg);
  3916. }
  3917. 12% {
  3918. transform: rotate(-18deg);
  3919. }
  3920. 14% {
  3921. transform: rotate(18deg);
  3922. }
  3923. 16% {
  3924. transform: rotate(-12deg);
  3925. }
  3926. 18% {
  3927. transform: rotate(12deg);
  3928. }
  3929. 20% {
  3930. transform: rotate(0deg);
  3931. }
  3932. }
  3933. .icon-animated-vertical {
  3934. display: inline-block;
  3935. -moz-animation: vertical 2.0s 5 ease 2.0s;
  3936. -webkit-animation: vertical 2.0s 5 ease 2.0s;
  3937. -o-animation: vertical 2.0s 5 ease 2.0s;
  3938. -ms-animation: vertical 2.0s 5 ease 2.0s;
  3939. animation: vertical 2.0s 5 ease 2.0s;
  3940. }
  3941. @-moz-keyframes vertical {
  3942. 0% {
  3943. -moz-transform: translate(0, -3px);
  3944. }
  3945. 4% {
  3946. -moz-transform: translate(0, 3px);
  3947. }
  3948. 8% {
  3949. -moz-transform: translate(0, -3px);
  3950. }
  3951. 12% {
  3952. -moz-transform: translate(0, 3px);
  3953. }
  3954. 16% {
  3955. -moz-transform: translate(0, -3px);
  3956. }
  3957. 20% {
  3958. -moz-transform: translate(0, 3px);
  3959. }
  3960. 22% {
  3961. -moz-transform: translate(0, 0);
  3962. }
  3963. }
  3964. @-webkit-keyframes vertical {
  3965. 0% {
  3966. -webkit-transform: translate(0, -3px);
  3967. }
  3968. 4% {
  3969. -webkit-transform: translate(0, 3px);
  3970. }
  3971. 8% {
  3972. -webkit-transform: translate(0, -3px);
  3973. }
  3974. 12% {
  3975. -webkit-transform: translate(0, 3px);
  3976. }
  3977. 16% {
  3978. -webkit-transform: translate(0, -3px);
  3979. }
  3980. 20% {
  3981. -webkit-transform: translate(0, 3px);
  3982. }
  3983. 22% {
  3984. -webkit-transform: translate(0, 0);
  3985. }
  3986. }
  3987. @-ms-keyframes vertical {
  3988. 0% {
  3989. -ms-transform: translate(0, -3px);
  3990. }
  3991. 4% {
  3992. -ms-transform: translate(0, 3px);
  3993. }
  3994. 8% {
  3995. -ms-transform: translate(0, -3px);
  3996. }
  3997. 12% {
  3998. -ms-transform: translate(0, 3px);
  3999. }
  4000. 16% {
  4001. -ms-transform: translate(0, -3px);
  4002. }
  4003. 20% {
  4004. -ms-transform: translate(0, 3px);
  4005. }
  4006. 22% {
  4007. -ms-transform: translate(0, 0);
  4008. }
  4009. }
  4010. @keyframes vertical {
  4011. 0% {
  4012. transform: translate(0, -3px);
  4013. }
  4014. 4% {
  4015. transform: translate(0, 3px);
  4016. }
  4017. 8% {
  4018. transform: translate(0, -3px);
  4019. }
  4020. 12% {
  4021. transform: translate(0, 3px);
  4022. }
  4023. 16% {
  4024. transform: translate(0, -3px);
  4025. }
  4026. 20% {
  4027. transform: translate(0, 3px);
  4028. }
  4029. 22% {
  4030. transform: translate(0, 0);
  4031. }
  4032. }
  4033. .icon-animated-hand-pointer {
  4034. display: inline-block;
  4035. -moz-animation: hand-pointer 2.0s 4 ease 2.0s;
  4036. -webkit-animation: hand-pointer 2.0s 4 ease 2.0s;
  4037. -o-animation: hand-pointer 2.0s 4 ease 2.0s;
  4038. -ms-animation: hand-pointer 2.0s 4 ease 2.0s;
  4039. animation: hand-pointer 2.0s 4 ease 2.0s;
  4040. }
  4041. @-moz-keyframes hand-pointer {
  4042. 0% {
  4043. -moz-transform: translate(0, 0);
  4044. }
  4045. 6% {
  4046. -moz-transform: translate(5px, 0);
  4047. }
  4048. 12% {
  4049. -moz-transform: translate(0, 0);
  4050. }
  4051. 18% {
  4052. -moz-transform: translate(5px, 0);
  4053. }
  4054. 24% {
  4055. -moz-transform: translate(0, 0);
  4056. }
  4057. 30% {
  4058. -moz-transform: translate(5px, 0);
  4059. }
  4060. 36% {
  4061. -moz-transform: translate(0, 0);
  4062. }
  4063. }
  4064. .icon-animated-wrench {
  4065. display: inline-block;
  4066. -moz-animation: wrenching 2.5s 4 ease;
  4067. -webkit-animation: wrenching 2.5s 4 ease;
  4068. -o-animation: wrenching 2.5s 4 ease;
  4069. -ms-animation: wrenching 2.5s 4 ease;
  4070. animation: wrenching 2.5s 4 ease;
  4071. -moz-transform-origin: 90% 35%;
  4072. -webkit-transform-origin: 90% 35%;
  4073. -o-transform-origin: 90% 35%;
  4074. -ms-transform-origin: 90% 35%;
  4075. transform-origin: 90% 35%;
  4076. }
  4077. @-moz-keyframes wrenching {
  4078. 0% {
  4079. -moz-transform: rotate(-12deg);
  4080. }
  4081. 8% {
  4082. -moz-transform: rotate(12deg);
  4083. }
  4084. 10% {
  4085. -moz-transform: rotate(24deg);
  4086. }
  4087. 18% {
  4088. -moz-transform: rotate(-24deg);
  4089. }
  4090. 20% {
  4091. -moz-transform: rotate(-24deg);
  4092. }
  4093. 28% {
  4094. -moz-transform: rotate(24deg);
  4095. }
  4096. 30% {
  4097. -moz-transform: rotate(24deg);
  4098. }
  4099. 38% {
  4100. -moz-transform: rotate(-24deg);
  4101. }
  4102. 40% {
  4103. -moz-transform: rotate(-24deg);
  4104. }
  4105. 48% {
  4106. -moz-transform: rotate(24deg);
  4107. }
  4108. 50% {
  4109. -moz-transform: rotate(24deg);
  4110. }
  4111. 58% {
  4112. -moz-transform: rotate(-24deg);
  4113. }
  4114. 60% {
  4115. -moz-transform: rotate(-24deg);
  4116. }
  4117. 68% {
  4118. -moz-transform: rotate(24deg);
  4119. }
  4120. 75% {
  4121. -moz-transform: rotate(0deg);
  4122. }
  4123. }
  4124. @-webkit-keyframes wrenching {
  4125. 0% {
  4126. -webkit-transform: rotate(-12deg);
  4127. }
  4128. 8% {
  4129. -webkit-transform: rotate(12deg);
  4130. }
  4131. 10% {
  4132. -webkit-transform: rotate(24deg);
  4133. }
  4134. 18% {
  4135. -webkit-transform: rotate(-24deg);
  4136. }
  4137. 20% {
  4138. -webkit-transform: rotate(-24deg);
  4139. }
  4140. 28% {
  4141. -webkit-transform: rotate(24deg);
  4142. }
  4143. 30% {
  4144. -webkit-transform: rotate(24deg);
  4145. }
  4146. 38% {
  4147. -webkit-transform: rotate(-24deg);
  4148. }
  4149. 40% {
  4150. -webkit-transform: rotate(-24deg);
  4151. }
  4152. 48% {
  4153. -webkit-transform: rotate(24deg);
  4154. }
  4155. 50% {
  4156. -webkit-transform: rotate(24deg);
  4157. }
  4158. 58% {
  4159. -webkit-transform: rotate(-24deg);
  4160. }
  4161. 60% {
  4162. -webkit-transform: rotate(-24deg);
  4163. }
  4164. 68% {
  4165. -webkit-transform: rotate(24deg);
  4166. }
  4167. 75% {
  4168. -webkit-transform: rotate(0deg);
  4169. }
  4170. }
  4171. @-o-keyframes wrenching {
  4172. 0% {
  4173. -o-transform: rotate(-12deg);
  4174. }
  4175. 8% {
  4176. -o-transform: rotate(12deg);
  4177. }
  4178. 10% {
  4179. -o-transform: rotate(24deg);
  4180. }
  4181. 18% {
  4182. -o-transform: rotate(-24deg);
  4183. }
  4184. 20% {
  4185. -o-transform: rotate(-24deg);
  4186. }
  4187. 28% {
  4188. -o-transform: rotate(24deg);
  4189. }
  4190. 30% {
  4191. -o-transform: rotate(24deg);
  4192. }
  4193. 38% {
  4194. -o-transform: rotate(-24deg);
  4195. }
  4196. 40% {
  4197. -o-transform: rotate(-24deg);
  4198. }
  4199. 48% {
  4200. -o-transform: rotate(24deg);
  4201. }
  4202. 50% {
  4203. -o-transform: rotate(24deg);
  4204. }
  4205. 58% {
  4206. -o-transform: rotate(-24deg);
  4207. }
  4208. 60% {
  4209. -o-transform: rotate(-24deg);
  4210. }
  4211. 68% {
  4212. -o-transform: rotate(24deg);
  4213. }
  4214. 75% {
  4215. -o-transform: rotate(0deg);
  4216. }
  4217. }
  4218. @-ms-keyframes wrenching {
  4219. 0% {
  4220. -ms-transform: rotate(-12deg);
  4221. }
  4222. 8% {
  4223. -ms-transform: rotate(12deg);
  4224. }
  4225. 10% {
  4226. -ms-transform: rotate(24deg);
  4227. }
  4228. 18% {
  4229. -ms-transform: rotate(-24deg);
  4230. }
  4231. 20% {
  4232. -ms-transform: rotate(-24deg);
  4233. }
  4234. 28% {
  4235. -ms-transform: rotate(24deg);
  4236. }
  4237. 30% {
  4238. -ms-transform: rotate(24deg);
  4239. }
  4240. 38% {
  4241. -ms-transform: rotate(-24deg);
  4242. }
  4243. 40% {
  4244. -ms-transform: rotate(-24deg);
  4245. }
  4246. 48% {
  4247. -ms-transform: rotate(24deg);
  4248. }
  4249. 50% {
  4250. -ms-transform: rotate(24deg);
  4251. }
  4252. 58% {
  4253. -ms-transform: rotate(-24deg);
  4254. }
  4255. 60% {
  4256. -ms-transform: rotate(-24deg);
  4257. }
  4258. 68% {
  4259. -ms-transform: rotate(24deg);
  4260. }
  4261. 75% {
  4262. -ms-transform: rotate(0deg);
  4263. }
  4264. }
  4265. @keyframes wrenching {
  4266. 0% {
  4267. transform: rotate(-12deg);
  4268. }
  4269. 8% {
  4270. transform: rotate(12deg);
  4271. }
  4272. 10% {
  4273. transform: rotate(24deg);
  4274. }
  4275. 18% {
  4276. transform: rotate(-24deg);
  4277. }
  4278. 20% {
  4279. transform: rotate(-24deg);
  4280. }
  4281. 28% {
  4282. transform: rotate(24deg);
  4283. }
  4284. 30% {
  4285. transform: rotate(24deg);
  4286. }
  4287. 38% {
  4288. transform: rotate(-24deg);
  4289. }
  4290. 40% {
  4291. transform: rotate(-24deg);
  4292. }
  4293. 48% {
  4294. transform: rotate(24deg);
  4295. }
  4296. 50% {
  4297. transform: rotate(24deg);
  4298. }
  4299. 58% {
  4300. transform: rotate(-24deg);
  4301. }
  4302. 60% {
  4303. transform: rotate(-24deg);
  4304. }
  4305. 68% {
  4306. transform: rotate(24deg);
  4307. }
  4308. 75% {
  4309. transform: rotate(0deg);
  4310. }
  4311. }
  4312. @-moz-keyframes blinking {
  4313. 0% {
  4314. opacity: 1;
  4315. }
  4316. 40% {
  4317. opacity: 0;
  4318. }
  4319. 80% {
  4320. opacity: 1;
  4321. }
  4322. }
  4323. @-webkit-keyframes blinking {
  4324. 0% {
  4325. opacity: 1;
  4326. }
  4327. 40% {
  4328. opacity: 0;
  4329. }
  4330. 80% {
  4331. opacity: 1;
  4332. }
  4333. }
  4334. @-ms-keyframes blinking {
  4335. 0% {
  4336. opacity: 1;
  4337. }
  4338. 40% {
  4339. opacity: 0;
  4340. }
  4341. 80% {
  4342. opacity: 1;
  4343. }
  4344. }
  4345. @keyframes blinking {
  4346. 0% {
  4347. opacity: 1;
  4348. }
  4349. 40% {
  4350. opacity: 0;
  4351. }
  4352. 80% {
  4353. opacity: 1;
  4354. }
  4355. }
  4356. @-moz-keyframes pulsating {
  4357. 0% {
  4358. -moz-transform: scale(1);
  4359. }
  4360. 5% {
  4361. -moz-transform: scale(0.75);
  4362. }
  4363. 10% {
  4364. -moz-transform: scale(1);
  4365. }
  4366. 15% {
  4367. -moz-transform: scale(1.25);
  4368. }
  4369. 20% {
  4370. -moz-transform: scale(1);
  4371. }
  4372. 25% {
  4373. -moz-transform: scale(0.75);
  4374. }
  4375. 30% {
  4376. -moz-transform: scale(1);
  4377. }
  4378. 35% {
  4379. -moz-transform: scale(1.25);
  4380. }
  4381. 40% {
  4382. -moz-transform: scale(1);
  4383. }
  4384. }
  4385. @-webkit-keyframes pulsating {
  4386. 0% {
  4387. -webkit-transform: scale(1);
  4388. }
  4389. 5% {
  4390. -webkit-transform: scale(0.75);
  4391. }
  4392. 10% {
  4393. -webkit-transform: scale(1);
  4394. }
  4395. 15% {
  4396. -webkit-transform: scale(1.25);
  4397. }
  4398. 20% {
  4399. -webkit-transform: scale(1);
  4400. }
  4401. 25% {
  4402. -webkit-transform: scale(0.75);
  4403. }
  4404. 30% {
  4405. -webkit-transform: scale(1);
  4406. }
  4407. 35% {
  4408. -webkit-transform: scale(1.25);
  4409. }
  4410. 40% {
  4411. -webkit-transform: scale(1);
  4412. }
  4413. }
  4414. @-ms-keyframes pulsating {
  4415. 0% {
  4416. -ms-transform: scale(1);
  4417. }
  4418. 5% {
  4419. -ms-transform: scale(0.75);
  4420. }
  4421. 10% {
  4422. -ms-transform: scale(1);
  4423. }
  4424. 15% {
  4425. -ms-transform: scale(1.25);
  4426. }
  4427. 20% {
  4428. -ms-transform: scale(1);
  4429. }
  4430. 25% {
  4431. -ms-transform: scale(0.75);
  4432. }
  4433. 30% {
  4434. -ms-transform: scale(1);
  4435. }
  4436. 35% {
  4437. -ms-transform: scale(1.25);
  4438. }
  4439. 40% {
  4440. -ms-transform: scale(1);
  4441. }
  4442. }
  4443. @keyframes pulsating {
  4444. 0% {
  4445. transform: scale(1);
  4446. }
  4447. 5% {
  4448. transform: scale(0.75);
  4449. }
  4450. 10% {
  4451. transform: scale(1);
  4452. }
  4453. 15% {
  4454. transform: scale(1.25);
  4455. }
  4456. 20% {
  4457. transform: scale(1);
  4458. }
  4459. 25% {
  4460. transform: scale(0.75);
  4461. }
  4462. 30% {
  4463. transform: scale(1);
  4464. }
  4465. 35% {
  4466. transform: scale(1.25);
  4467. }
  4468. 40% {
  4469. transform: scale(1);
  4470. }
  4471. }
  4472. .btn-scroll-up {
  4473. border-width: 0;
  4474. position: fixed;
  4475. right: 2px;
  4476. z-index: 99;
  4477. -webkit-transition-duration: 0.3s;
  4478. transition-duration: 0.3s;
  4479. opacity: 0;
  4480. filter: alpha(opacity=0);
  4481. bottom: -24px;
  4482. visibility: hidden;
  4483. }
  4484. .btn-scroll-up.display {
  4485. opacity: 0.7;
  4486. filter: alpha(opacity=70);
  4487. bottom: 2px;
  4488. visibility: visible;
  4489. }
  4490. .btn-scroll-up:hover {
  4491. opacity: 1;
  4492. filter: alpha(opacity=100);
  4493. }
  4494. .btn-scroll-up:focus {
  4495. outline: none;
  4496. }
  4497. @media (min-width: 768px) {
  4498. .main-container.container > .btn-scroll-up {
  4499. right: auto;
  4500. margin-left: 714px;
  4501. }
  4502. }
  4503. @media (min-width: 992px) {
  4504. .main-container.container > .btn-scroll-up {
  4505. right: auto;
  4506. margin-left: 934px;
  4507. }
  4508. }
  4509. @media (min-width: 1200px) {
  4510. .main-container.container > .btn-scroll-up {
  4511. right: auto;
  4512. margin-left: 1134px;
  4513. }
  4514. }
  4515. .ace-settings-container {
  4516. position: absolute;
  4517. right: 0;
  4518. top: auto;
  4519. z-index: 12;
  4520. }
  4521. .btn.btn-app.ace-settings-btn {
  4522. float: left;
  4523. display: block;
  4524. text-align: center;
  4525. border-radius: 6px 0 0 6px;
  4526. opacity: 0.55;
  4527. vertical-align: top;
  4528. margin: 0;
  4529. }
  4530. .btn.btn-app.ace-settings-btn:hover,
  4531. .btn.btn-app.ace-settings-btn.open {
  4532. opacity: 1;
  4533. }
  4534. .btn.btn-app.ace-settings-btn.btn-xs {
  4535. width: 42px;
  4536. }
  4537. .ace-settings-box {
  4538. display: block;
  4539. float: left;
  4540. max-width: 0;
  4541. max-height: 0;
  4542. overflow: hidden;
  4543. padding: 0;
  4544. -moz-transform: translate(0,0);
  4545. -webkit-transform: translate(0,0);
  4546. -o-transform: translate(0,0);
  4547. -ms-transform: translate(0,0);
  4548. transform: translate(0,0);
  4549. background-color: #FFF;
  4550. border: 0 solid #ffb34b;
  4551. -webkit-transition: max-width 0.25s linear 0s, max-height 0s linear 0.25s, padding 0s linear 0.25s, border-width 0s linear 0.25s;
  4552. -o-transition: max-width 0.25s linear 0s, max-height 0s linear 0.25s, padding 0s linear 0.25s, border-width 0s linear 0.25s;
  4553. transition: max-width 0.25s linear 0s, max-height 0s linear 0.25s, padding 0s linear 0.25s, border-width 0s linear 0.25s;
  4554. }
  4555. .ace-settings-box.open {
  4556. max-width: 320px;
  4557. max-height: 1000px;
  4558. padding: 0 14px;
  4559. border-width: 2px;
  4560. -webkit-transition-delay: 0s;
  4561. -moz-transition-delay: 0s;
  4562. -o-transition-delay: 0s;
  4563. transition-delay: 0s;
  4564. }
  4565. .ace-settings-box.open .ace-settings-item {
  4566. z-index: auto;
  4567. min-width: 140px;
  4568. }
  4569. .ace-settings-box .ace-settings-item {
  4570. margin: 6px 0;
  4571. color: #444;
  4572. max-height: 24px;
  4573. position: relative;
  4574. z-index: -1;
  4575. white-space: nowrap;
  4576. }
  4577. .ace-settings-box .ace-settings-item > label.lbl {
  4578. font-size: 13px;
  4579. }
  4580. @media (max-width: 480px) {
  4581. .ace-settings-container {
  4582. text-align: right;
  4583. }
  4584. .ace-settings-box {
  4585. float: none !important;
  4586. text-align: left;
  4587. }
  4588. .btn.ace-settings-btn {
  4589. float: none !important;
  4590. display: inline-block;
  4591. }
  4592. }
  4593. @media (max-width: 320px) {
  4594. .ace-settings-box > .clearfix > .pull-left,
  4595. .ace-settings-box > .clearfix > .pull-right {
  4596. float: none !important;
  4597. }
  4598. }
  4599. .grid2,
  4600. .grid3,
  4601. .grid4 {
  4602. -webkit-box-sizing: border-box;
  4603. -moz-box-sizing: border-box;
  4604. box-sizing: border-box;
  4605. display: block;
  4606. margin: 0 1%;
  4607. padding: 0 2%;
  4608. float: left;
  4609. border-left: 1px solid #E3E3E3;
  4610. }
  4611. .grid2:first-child,
  4612. .grid3:first-child,
  4613. .grid4:first-child {
  4614. border-left: none;
  4615. }
  4616. .grid2 {
  4617. width: 48%;
  4618. }
  4619. .grid3 {
  4620. width: 31.33%;
  4621. }
  4622. .grid4 {
  4623. width: 23%;
  4624. padding: 0 1%;
  4625. }
  4626. .draggable-placeholder {
  4627. border: 2px dashed #D9D9D9 !important;
  4628. background-color: #F7F7F7 !important;
  4629. }
  4630. .easyPieChart,
  4631. .easy-pie-chart {
  4632. position: relative;
  4633. text-align: center;
  4634. }
  4635. .easyPieChart canvas,
  4636. .easy-pie-chart canvas {
  4637. position: absolute;
  4638. top: 0;
  4639. left: 0;
  4640. }
  4641. .knob-container {
  4642. direction: ltr;
  4643. text-align: left;
  4644. }
  4645. .tags {
  4646. display: inline-block;
  4647. padding: 4px 6px;
  4648. color: #777777;
  4649. vertical-align: middle;
  4650. background-color: #FFF;
  4651. border: 1px solid #d5d5d5;
  4652. width: 206px;
  4653. }
  4654. .tags:hover {
  4655. border-color: #b5b5b5;
  4656. }
  4657. .tags-hover,
  4658. .tags-hover:hover {
  4659. border-color: #f59942;
  4660. outline: 0;
  4661. }
  4662. .tags[class*="span"] {
  4663. float: none;
  4664. margin-left: 0;
  4665. }
  4666. .tags input[type="text"],
  4667. .tags input[type="text"]:focus {
  4668. border: none;
  4669. display: inline;
  4670. outline: 0;
  4671. margin: 0;
  4672. padding: 0;
  4673. line-height: 18px;
  4674. -webkit-box-shadow: none;
  4675. box-shadow: none;
  4676. width: 100%;
  4677. }
  4678. .tags .tag {
  4679. display: inline-block;
  4680. position: relative;
  4681. font-size: 13px;
  4682. font-weight: normal;
  4683. vertical-align: baseline;
  4684. white-space: nowrap;
  4685. background-color: #91b8d0;
  4686. color: #FFF;
  4687. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  4688. padding: 4px 22px 5px 9px;
  4689. margin-bottom: 3px;
  4690. margin-right: 3px;
  4691. -webkit-transition: all 0.2s;
  4692. -o-transition: all 0.2s;
  4693. transition: all 0.2s;
  4694. /**
  4695. &:nth-child(5n+1) {
  4696. background-color:#48A2E0;
  4697. }
  4698. &:nth-child(5n+2) {
  4699. background-color:#34C896;
  4700. }
  4701. &:nth-child(5n+3) {
  4702. background-color:#B57BB3;
  4703. }
  4704. &:nth-child(5n+4) {
  4705. background-color:#CC7DA8;
  4706. }
  4707. &:nth-child(5n+5) {
  4708. background-color:#666;
  4709. }
  4710. */
  4711. }
  4712. .tags .tag:empty {
  4713. display: none;
  4714. }
  4715. .tags .tag-important {
  4716. background-color: #d15b47;
  4717. }
  4718. .tags .tag-warning {
  4719. background-color: #ffb752;
  4720. }
  4721. .tags .tag-success {
  4722. background-color: #87b87f;
  4723. }
  4724. .tags .tag-info {
  4725. background-color: #6fb3e0;
  4726. }
  4727. .tags .tag-inverse {
  4728. background-color: #555555;
  4729. }
  4730. .tags .tag .close {
  4731. font-size: 15px;
  4732. line-height: 20px;
  4733. opacity: 1;
  4734. filter: alpha(opacity=100);
  4735. color: #FFF;
  4736. text-shadow: none;
  4737. float: none;
  4738. position: absolute;
  4739. right: 0;
  4740. top: 0;
  4741. bottom: 0;
  4742. width: 18px;
  4743. text-align: center;
  4744. }
  4745. .tags .tag .close:hover {
  4746. background-color: rgba(0, 0, 0, 0.2);
  4747. }
  4748. .page-content > .row .col-xs-12,
  4749. .page-content > .row .col-sm-12,
  4750. .page-content > .row .col-md-12,
  4751. .page-content > .row .col-lg-12 {
  4752. float: left;
  4753. max-width: 100%;
  4754. }
  4755. .col-xs-reset {
  4756. width: auto;
  4757. padding-left: 0;
  4758. padding-right: 0;
  4759. float: none !important;
  4760. }
  4761. @media (min-width: 768px) {
  4762. .col-sm-reset {
  4763. width: auto;
  4764. padding-left: 0;
  4765. padding-right: 0;
  4766. float: none !important;
  4767. }
  4768. }
  4769. @media (min-width: 992px) {
  4770. .col-md-reset {
  4771. width: auto;
  4772. padding-left: 0;
  4773. padding-right: 0;
  4774. float: none !important;
  4775. }
  4776. }
  4777. @media (min-width: 1200px) {
  4778. .col-lg-reset {
  4779. width: auto;
  4780. padding-left: 0;
  4781. padding-right: 0;
  4782. float: none !important;
  4783. }
  4784. }
  4785. .jqstooltip,
  4786. .legendColorBox div {
  4787. -webkit-box-sizing: content-box;
  4788. -moz-box-sizing: content-box;
  4789. box-sizing: content-box;
  4790. }
  4791. .legendLabel {
  4792. -webkit-box-sizing: content-box;
  4793. -moz-box-sizing: content-box;
  4794. box-sizing: content-box;
  4795. height: 22px;
  4796. padding-left: 2px;
  4797. font-size: 10px;
  4798. }
  4799. @media only screen and (max-width: 991px) {
  4800. body {
  4801. overflow-x: hidden;
  4802. }
  4803. }
  4804. .navbar-fixed-top + .main-container {
  4805. padding-top: 45px;
  4806. }
  4807. @media (max-width: 479px) {
  4808. .navbar-fixed-top + .main-container {
  4809. padding-top: 90px;
  4810. }
  4811. .navbar-fixed-top.navbar-collapse + .main-container {
  4812. padding-top: 45px;
  4813. }
  4814. }
  4815. @media only screen and (max-width: 360px) {
  4816. .grid2,
  4817. .grid3,
  4818. .grid4 {
  4819. float: none;
  4820. display: block;
  4821. width: 96%;
  4822. border-left-width: 0;
  4823. position: relative;
  4824. margin-bottom: 11px;
  4825. border-bottom: 1px solid #E3E3E3;
  4826. padding-bottom: 4px;
  4827. }
  4828. .grid2 > [class*="pull-"],
  4829. .grid3 > [class*="pull-"],
  4830. .grid4 > [class*="pull-"] {
  4831. float: none !important;
  4832. display: inline-block;
  4833. position: absolute;
  4834. right: 11px;
  4835. top: 0;
  4836. margin-top: 0;
  4837. }
  4838. .grid2:last-child,
  4839. .grid3:last-child,
  4840. .grid4:last-child {
  4841. border-bottom-width: 0;
  4842. }
  4843. }
  4844. @media only screen and (max-width: 480px) {
  4845. .hidden-480 {
  4846. display: none !important;
  4847. }
  4848. }
  4849. @media only screen and (max-width: 320px) {
  4850. .hidden-320 {
  4851. display: none !important;
  4852. }
  4853. }
  4854. .no-skin {
  4855. /**
  4856. .nav-list > li.disabled.active:after {
  4857. border-color: #999;
  4858. }
  4859. .nav-list li.disabled li.active > a:after,
  4860. .nav-list li.active.disabled > a:after {
  4861. -moz-border-right-colors: #999 !important;
  4862. border-right-color: #999 !important;
  4863. }
  4864. */
  4865. }
  4866. .no-skin .navbar .navbar-toggle {
  4867. background-color: #75B3D7;
  4868. }
  4869. .no-skin .navbar .navbar-toggle:focus {
  4870. background-color: #75B3D7;
  4871. border-color: transparent;
  4872. }
  4873. .no-skin .navbar .navbar-toggle:hover {
  4874. background-color: #61a8d1;
  4875. border-color: rgba(255, 255, 255, 0.1);
  4876. }
  4877. .no-skin .navbar .navbar-toggle.display,
  4878. .no-skin .navbar .navbar-toggle[data-toggle=collapse]:not(.collapsed) {
  4879. background-color: #4d9dcc;
  4880. box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
  4881. border-color: rgba(255, 255, 255, 0.35);
  4882. }
  4883. .no-skin .sidebar {
  4884. background-color: #f2f2f2;
  4885. border-style: solid;
  4886. border-color: #cccccc;
  4887. border-width: 0 1px 0 0;
  4888. }
  4889. .no-skin .nav-list .open > a,
  4890. .no-skin .nav-list .open > a:hover,
  4891. .no-skin .nav-list .open > a:focus {
  4892. background-color: #fafafa;
  4893. }
  4894. .no-skin .nav-list > li {
  4895. border-color: #e5e5e5;
  4896. }
  4897. .no-skin .nav-list > li > a {
  4898. background-color: #f8f8f8;
  4899. color: #585858;
  4900. }
  4901. .no-skin .nav-list > li > a:focus {
  4902. background-color: #f8f8f8;
  4903. color: #1963aa;
  4904. }
  4905. .no-skin .nav-list > li:hover > a {
  4906. background-color: #ffffff;
  4907. color: #266cad;
  4908. }
  4909. .no-skin .nav-list > li.open > a {
  4910. background-color: #fafafa;
  4911. color: #1963aa;
  4912. }
  4913. .no-skin .nav-list > li.active > a {
  4914. font-weight: bold;
  4915. color: #2b7dbc;
  4916. }
  4917. .no-skin .nav-list > li.active > a,
  4918. .no-skin .nav-list > li.active > a:hover,
  4919. .no-skin .nav-list > li.active > a:focus {
  4920. background-color: #ffffff;
  4921. }
  4922. .no-skin .nav-list > li .submenu {
  4923. background-color: #ffffff;
  4924. border-color: #e5e5e5;
  4925. }
  4926. .no-skin .nav-list > li .submenu > li > a {
  4927. border-top-color: #e4e4e4;
  4928. background-color: #ffffff;
  4929. color: #616161;
  4930. }
  4931. .no-skin .nav-list > li .submenu > li > a:hover {
  4932. color: #4b88b7;
  4933. background-color: #f1f5f9;
  4934. }
  4935. .no-skin .nav-list > li .submenu > li.active > a {
  4936. color: #2b7dbc;
  4937. }
  4938. .no-skin .nav-list > li .submenu > li.active > a > .menu-icon {
  4939. color: #c86139;
  4940. }
  4941. .no-skin .nav-list > li .submenu > li.active.open > a > .menu-icon {
  4942. color: inherit;
  4943. }
  4944. @media only screen and (min-width: 992px) {
  4945. .no-skin .nav-list > li .submenu > li.active.hover > a.dropdown-toggle > .menu-icon {
  4946. color: inherit;
  4947. }
  4948. }
  4949. .no-skin .nav-list > li .submenu > li.active:not(.open) > a {
  4950. background-color: #f5f7fa;
  4951. }
  4952. .no-skin .nav-list > li .submenu > li.active:not(.open) > a:hover {
  4953. background-color: #f1f5f9;
  4954. }
  4955. .no-skin .nav-list > li > .submenu .open > a,
  4956. .no-skin .nav-list > li > .submenu .open > a:hover,
  4957. .no-skin .nav-list > li > .submenu .open > a:focus {
  4958. border-color: #e4e4e4;
  4959. }
  4960. .no-skin .nav-list > li > .submenu li > .submenu > li a {
  4961. color: #757575;
  4962. }
  4963. .no-skin .nav-list > li > .submenu li > .submenu > li a:hover {
  4964. color: #4b88b7;
  4965. background-color: #f1f5f9;
  4966. }
  4967. .no-skin .nav-list > li > .submenu li.open > a {
  4968. color: #4b88b7;
  4969. }
  4970. .no-skin .nav-list > li > .submenu li > .submenu li.open > a,
  4971. .no-skin .nav-list > li > .submenu li > .submenu li.active > a {
  4972. color: #4b88b7;
  4973. }
  4974. .no-skin .nav-list > li > .submenu:before,
  4975. .no-skin .nav-list > li > .submenu > li:before {
  4976. border-color: #9dbdd6;
  4977. }
  4978. .no-skin .nav-list > li.active > .submenu:before,
  4979. .no-skin .nav-list > li.active > .submenu > li:before {
  4980. border-color: #8eb3d0;
  4981. }
  4982. .no-skin .sidebar-toggle {
  4983. background-color: #f3f3f3;
  4984. border-color: #e0e0e0;
  4985. }
  4986. .no-skin .sidebar-toggle > .ace-icon {
  4987. border-color: #bbbbbb;
  4988. color: #aaaaaa;
  4989. background-color: #ffffff;
  4990. }
  4991. .no-skin .sidebar-shortcuts {
  4992. background-color: #fafafa;
  4993. }
  4994. .no-skin .sidebar-fixed .sidebar-shortcuts {
  4995. border-color: #dddddd;
  4996. }
  4997. .no-skin .sidebar-shortcuts-mini {
  4998. background-color: #ffffff;
  4999. }
  5000. .no-skin .nav-list li > .arrow:before {
  5001. border-right-color: #B8B8B8;
  5002. -moz-border-right-colors: #B8B8B8;
  5003. border-width: 10px 10px 10px 0;
  5004. left: -11px;
  5005. }
  5006. .no-skin .nav-list li > .arrow:after {
  5007. border-right-color: #ffffff;
  5008. -moz-border-right-colors: #ffffff;
  5009. border-width: 10px 10px 10px 0;
  5010. left: -10px;
  5011. }
  5012. .no-skin .nav-list > li.pull_up > .arrow:after {
  5013. border-right-color: #ffffff !important;
  5014. -moz-border-right-colors: #ffffff !important;
  5015. border-width: 10px 10px 10px 0 !important;
  5016. left: -10px !important;
  5017. }
  5018. .no-skin .nav-list > li.pull_up > .arrow:before {
  5019. border-width: 10px 10px 10px 0 !important;
  5020. left: -11px !important;
  5021. }
  5022. .no-skin .nav-list li.active > a:after {
  5023. border-right-color: #2b7dbc;
  5024. -moz-border-right-colors: #2b7dbc;
  5025. }
  5026. .no-skin .nav-list > li.active:after {
  5027. display: block;
  5028. content: "";
  5029. position: absolute;
  5030. right: -2px;
  5031. top: -1px;
  5032. bottom: 0;
  5033. z-index: 1;
  5034. border: 2px solid;
  5035. border-width: 0 2px 0 0;
  5036. border-color: #2b7dbc;
  5037. }
  5038. .no-skin .sidebar-scroll .nav-list > li.active:after {
  5039. right: 0;
  5040. }
  5041. @media only screen and (max-width: 991px) {
  5042. .no-skin .sidebar.responsive .nav-list > li.active.open > a:after,
  5043. .no-skin .sidebar.responsive-max .nav-list > li.active.open > a:after {
  5044. display: block;
  5045. }
  5046. .no-skin .sidebar.responsive .nav-list li li.active > a:after,
  5047. .no-skin .sidebar.responsive-max .nav-list li li.active > a:after {
  5048. display: none;
  5049. }
  5050. .no-skin .sidebar.responsive .nav-list > li.active:after,
  5051. .no-skin .sidebar.responsive-max .nav-list > li.active:after {
  5052. height: 41px;
  5053. }
  5054. }
  5055. .no-skin .sidebar.menu-min .nav-list > li > a > .menu-text {
  5056. background-color: #f5f5f5;
  5057. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5058. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5059. border-color: #cccccc;
  5060. }
  5061. .no-skin .sidebar.menu-min .nav-list > li > a.dropdown-toggle > .menu-text {
  5062. -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5063. box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5064. }
  5065. .no-skin .sidebar.menu-min .nav-list > li.active > .submenu {
  5066. border-left-color: #83b6d1;
  5067. }
  5068. .no-skin .sidebar.menu-min .nav-list > li > .submenu {
  5069. background-color: #ffffff;
  5070. border: 1px solid #cccccc;
  5071. border-top-color: #e6e6e6;
  5072. -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5073. box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5074. }
  5075. .no-skin .sidebar.menu-min .nav-list > li > .arrow:after {
  5076. border-right-color: #f5f5f5;
  5077. -moz-border-right-colors: #f5f5f5;
  5078. border-width: 8px 8px 8px 0;
  5079. left: -8px;
  5080. }
  5081. .no-skin .sidebar.menu-min .nav-list > li > .arrow:before {
  5082. border-width: 8px 8px 8px 0;
  5083. left: -9px;
  5084. }
  5085. .no-skin .sidebar.menu-min .nav-list > li.active > .arrow:before {
  5086. border-right-color: #5a9ec2;
  5087. -moz-border-right-colors: #5a9ec2;
  5088. }
  5089. .no-skin .sidebar.menu-min .nav-list > li.active > a > .menu-text {
  5090. border-left-color: #83b6d1;
  5091. }
  5092. .no-skin .sidebar.menu-min .sidebar-shortcuts-large {
  5093. background-color: #ffffff;
  5094. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5095. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5096. border-color: #cccccc;
  5097. }
  5098. .no-skin .sidebar.menu-min .sidebar-toggle > .ace-icon {
  5099. border-color: #b1b1b1;
  5100. }
  5101. @media (max-width: 991px) {
  5102. .no-skin .sidebar.responsive-min .nav-list > li > a > .menu-text {
  5103. background-color: #f5f5f5;
  5104. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5105. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5106. border-color: #cccccc;
  5107. }
  5108. .no-skin .sidebar.responsive-min .nav-list > li > a.dropdown-toggle > .menu-text {
  5109. -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5110. box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5111. }
  5112. .no-skin .sidebar.responsive-min .nav-list > li.active > .submenu {
  5113. border-left-color: #83b6d1;
  5114. }
  5115. .no-skin .sidebar.responsive-min .nav-list > li > .submenu {
  5116. background-color: #ffffff;
  5117. border: 1px solid #cccccc;
  5118. border-top-color: #e6e6e6;
  5119. -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5120. box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.1);
  5121. }
  5122. .no-skin .sidebar.responsive-min .nav-list > li > .arrow:after {
  5123. border-right-color: #f5f5f5;
  5124. -moz-border-right-colors: #f5f5f5;
  5125. border-width: 8px 8px 8px 0;
  5126. left: -8px;
  5127. }
  5128. .no-skin .sidebar.responsive-min .nav-list > li > .arrow:before {
  5129. border-width: 8px 8px 8px 0;
  5130. left: -9px;
  5131. }
  5132. .no-skin .sidebar.responsive-min .nav-list > li.active > .arrow:before {
  5133. border-right-color: #5a9ec2;
  5134. -moz-border-right-colors: #5a9ec2;
  5135. }
  5136. .no-skin .sidebar.responsive-min .nav-list > li.active > a > .menu-text {
  5137. border-left-color: #83b6d1;
  5138. }
  5139. .no-skin .sidebar.responsive-min .sidebar-shortcuts-large {
  5140. background-color: #ffffff;
  5141. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5142. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5143. border-color: #cccccc;
  5144. }
  5145. .no-skin .sidebar.responsive-min .sidebar-toggle > .ace-icon {
  5146. border-color: #b1b1b1;
  5147. }
  5148. }
  5149. @media only screen and (min-width: 992px) {
  5150. .no-skin .nav-list li.hover > .submenu {
  5151. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5152. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5153. border-color: #cccccc;
  5154. }
  5155. .no-skin .nav-list li.hover > .submenu > li.active > a {
  5156. background-color: #f5f5f5;
  5157. }
  5158. .no-skin .nav-list li.hover > .submenu > li:hover > a {
  5159. background-color: #eef3f7;
  5160. color: #2e7db4;
  5161. }
  5162. }
  5163. @media only screen and (min-width: 992px) and (max-width: 991px) {
  5164. .no-skin .sidebar.navbar-collapse .nav-list li li.hover.active.open > a {
  5165. background-color: #ffffff;
  5166. }
  5167. .no-skin .sidebar.navbar-collapse .nav-list li li.hover:hover > a {
  5168. background-color: #ffffff;
  5169. }
  5170. .no-skin .sidebar.navbar-collapse .nav-list li li.hover > a:hover,
  5171. .no-skin .sidebar.navbar-collapse .nav-list li li.hover.open > a:hover,
  5172. .no-skin .sidebar.navbar-collapse .nav-list li li.hover.open.active > a:hover {
  5173. background-color: #f1f5f9;
  5174. }
  5175. .no-skin .sidebar.navbar-collapse .nav-list > li .submenu > li.active.hover > a.dropdown-toggle > .menu-icon {
  5176. color: #c86139;
  5177. }
  5178. .no-skin .sidebar.navbar-collapse .nav-list > li .submenu > li.active.open.hover > a.dropdown-toggle > .menu-icon {
  5179. color: inherit;
  5180. }
  5181. }
  5182. @media only screen and (min-width: 992px) {
  5183. .no-skin .sidebar.navbar-collapse .nav-list > li.open.hover:not(:hover):not(:focus):not(.active) > a {
  5184. color: #585858;
  5185. }
  5186. .no-skin .sidebar.navbar-collapse .nav-list > li.open.hover:not(:hover):not(:focus):not(.active) > a > .arrow {
  5187. color: inherit;
  5188. }
  5189. .no-skin .sidebar.navbar-collapse .nav-list > li.open.hover:hover > a {
  5190. background-color: #ffffff;
  5191. }
  5192. .no-skin .sidebar.navbar-collapse .nav-list > li > .submenu li.open.hover:not(:hover):not(:focus):not(.active) > a {
  5193. color: #616161;
  5194. }
  5195. .no-skin .sidebar.navbar-collapse .nav-list > li > .submenu li.open.hover:not(:hover):not(:focus):not(.active) > a > .arrow {
  5196. color: inherit;
  5197. }
  5198. }
  5199. @media only screen and (min-width: 992px) and (max-width: 991px) {
  5200. .no-skin .sidebar.navbar-collapse .nav-list li.hover > .submenu {
  5201. border-top-color: #e5e5e5;
  5202. background-color: #ffffff;
  5203. }
  5204. .no-skin .nav-list li.hover > .submenu > li.active:not(.open) > a {
  5205. background-color: #f5f7fa;
  5206. }
  5207. .no-skin .nav-list li.hover > .submenu > li.active:not(.open) > a:hover {
  5208. background-color: #f1f5f9;
  5209. }
  5210. }
  5211. @media only screen and (min-width: 992px) {
  5212. .no-skin .sidebar.h-sidebar {
  5213. background-color: #f8f8f8;
  5214. }
  5215. .no-skin .sidebar.h-sidebar:before {
  5216. background-color: #e4e4e4;
  5217. -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.05) inset;
  5218. box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.05) inset;
  5219. }
  5220. .no-skin .sidebar.h-sidebar .nav-list > li:hover,
  5221. .no-skin .sidebar.h-sidebar .nav-list > li:hover + li {
  5222. border-left-color: #cedde5;
  5223. }
  5224. .no-skin .sidebar.h-sidebar .nav-list > li:last-child:hover {
  5225. border-right-color: #cedde5;
  5226. }
  5227. .no-skin .sidebar.h-sidebar .nav-list > li.active,
  5228. .no-skin .sidebar.h-sidebar .nav-list > li.active + li,
  5229. .no-skin .sidebar.h-sidebar .nav-list > li:hover + li.active {
  5230. border-left-color: #79b0ce;
  5231. }
  5232. .no-skin .sidebar.h-sidebar .nav-list > li.active:last-child {
  5233. border-right-color: #79b0ce;
  5234. }
  5235. .no-skin .sidebar.h-sidebar .nav-list > li.active:before {
  5236. background-color: #2b7dbc;
  5237. }
  5238. .no-skin .sidebar.h-sidebar .nav-list > li.active > a:after {
  5239. border-width: 0 0 2px 0;
  5240. border-color: transparent;
  5241. border-bottom-color: #FFF;
  5242. left: 0;
  5243. right: 0;
  5244. top: auto;
  5245. bottom: -2px;
  5246. }
  5247. .no-skin .sidebar.h-sidebar .sidebar-shortcuts-large {
  5248. background-color: #FFF;
  5249. border-color: #cccccc;
  5250. -webkit-box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5251. box-shadow: 2px 1px 2px 0 rgba(0,0,0,0.1);
  5252. }
  5253. .no-skin .sidebar.h-sidebar .sidebar-shortcuts-large:after {
  5254. border-bottom-color: #FFF;
  5255. -moz-border-bottom-colors: #FFF;
  5256. }
  5257. .no-skin .sidebar.h-sidebar .nav-list > li.hover > .submenu {
  5258. border-color: #cccccc;
  5259. }
  5260. .no-skin .sidebar.h-sidebar.menu-min .nav-list > li.hover > .submenu {
  5261. border-top-color: #e6e6e6;
  5262. }
  5263. .no-skin .sidebar.h-sidebar .nav-list > li.hover > .arrow:after {
  5264. border-color: transparent;
  5265. -moz-border-right-colors: none;
  5266. -moz-border-top-colors: none;
  5267. -moz-border-left-colors: none;
  5268. border-bottom-color: #FFF;
  5269. -moz-border-bottom-colors: #FFF;
  5270. }
  5271. .no-skin .sidebar.h-sidebar .nav-list > li.hover > .arrow:before {
  5272. border-color: transparent;
  5273. -moz-border-right-colors: none;
  5274. -moz-border-top-colors: none;
  5275. -moz-border-left-colors: none;
  5276. -moz-border-bottom-colors: #B8B8B8;
  5277. border-bottom-color: #B8B8B8;
  5278. }
  5279. .no-skin .sidebar.h-sidebar.menu-min .nav-list > li.hover > .arrow:after {
  5280. -moz-border-bottom-colors: #F5F5F5;
  5281. border-bottom-color: #F5F5F5;
  5282. }
  5283. .no-skin .sidebar.h-sidebar.menu-min .nav-list > li.active > a > .menu-text {
  5284. border-left-color: #cccccc;
  5285. }
  5286. }
  5287. @media only screen and (max-width: 991px) {
  5288. .no-skin .sidebar {
  5289. border-width: 0 1px 1px 0;
  5290. border-top-color: #d6d6d6;
  5291. }
  5292. .no-skin .menu-toggler + .sidebar.responsive {
  5293. border-top-width: 1px;
  5294. }
  5295. .no-skin .sidebar.responsive-min {
  5296. border-width: 0 1px 0 0;
  5297. }
  5298. .no-skin .sidebar.navbar-collapse {
  5299. border-width: 0;
  5300. border-bottom-width: 1px !important;
  5301. border-bottom-color: #cccccc;
  5302. -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important;
  5303. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important;
  5304. }
  5305. .no-skin .sidebar.navbar-collapse.menu-min .nav-list > li > .submenu {
  5306. background-color: #ffffff;
  5307. }
  5308. }
  5309. .no-skin .sidebar-scroll .sidebar-shortcuts {
  5310. border-bottom-color: #dddddd;
  5311. }
  5312. .no-skin .sidebar-scroll .sidebar-toggle {
  5313. border-top-color: #dddddd;
  5314. }
  5315. .no-skin .main-container .menu-toggler {
  5316. background-color: #444444;
  5317. }
  5318. .no-skin .main-container .menu-toggler:before {
  5319. border-top-color: #87b87f;
  5320. border-bottom-color: #6fb3e0;
  5321. }
  5322. .no-skin .main-container .menu-toggler:after {
  5323. border-top-color: #ffa24d;
  5324. border-bottom-color: #d15b47;
  5325. }
  5326. .no-skin .main-container .menu-toggler > .toggler-text {
  5327. border-top-color: #444444;
  5328. -moz-border-top-colors: #444444;
  5329. }
  5330. .no-skin .nav-list > li.disabled:before {
  5331. display: none !important;
  5332. }
  5333. .no-skin .nav-list > li.disabled > a {
  5334. background-color: #ebebeb !important;
  5335. color: #656565 !important;
  5336. }
  5337. .no-skin .nav-list li .submenu > li.disabled > a,
  5338. .no-skin .nav-list li.disabled .submenu > li > a {
  5339. background-color: #f2f2f2 !important;
  5340. color: #7a7a7a !important;
  5341. cursor: not-allowed !important;
  5342. }
  5343. .no-skin .nav-list li .submenu > li.disabled > a > .menu-icon,
  5344. .no-skin .nav-list li.disabled .submenu > li > a > .menu-icon {
  5345. display: none;
  5346. }
  5347. .nav-list li.highlight li.active > a:after,
  5348. .nav-list li li.highlight.active > a:after,
  5349. .nav-list li.highlight li.active > a:before,
  5350. .nav-list li li.highlight.active > a:before {
  5351. display: none;
  5352. }
  5353. .nav-list > li.highlight.active > a:after,
  5354. .nav-list > li.highlight.active > a:before {
  5355. display: block;
  5356. }
  5357. .no-skin .nav-list > li.highlight:hover,
  5358. .no-skin .nav-list > li.highlight.active {
  5359. border-color: #c8d8e2;
  5360. }
  5361. .no-skin .nav-list > li.highlight:hover + li,
  5362. .no-skin .nav-list > li.highlight.active + li {
  5363. border-top-color: #c8d8e2;
  5364. }
  5365. .no-skin .nav-list > li.highlight:hover > a,
  5366. .no-skin .nav-list > li.highlight.active > a {
  5367. background-color: #FFF;
  5368. }
  5369. .no-skin .nav-list > li.highlight.active:after {
  5370. display: none;
  5371. }
  5372. .no-skin .nav-list > li.highlight.active:before {
  5373. display: block;
  5374. background-color: #4f90c2;
  5375. }
  5376. .no-skin .nav-list > li.highlight.active > a {
  5377. background-color: #f2f6f9 !important;
  5378. }
  5379. .no-skin .nav-list > li.highlight.active > a:before,
  5380. .no-skin .nav-list > li.highlight.active > a:after {
  5381. display: block;
  5382. content: "";
  5383. position: absolute;
  5384. top: -1px;
  5385. right: -10px;
  5386. bottom: auto;
  5387. z-index: 1;
  5388. border-style: solid;
  5389. border-width: 20px 0 21px 10px;
  5390. border-color: transparent;
  5391. }
  5392. .no-skin .nav-list > li.highlight.active > a:before {
  5393. border-left-color: #a0bccd;
  5394. -moz-border-left-colors: #a0bccd;
  5395. right: -11px;
  5396. }
  5397. .no-skin .nav-list > li.highlight.active > a:after {
  5398. border-left-color: #f2f6f9;
  5399. -moz-border-left-colors: #f2f6f9;
  5400. }
  5401. .no-skin .nav-list li li.highlight.active > a {
  5402. background-color: #f2f6f9;
  5403. }
  5404. .no-skin .nav-list li li.highlight.active.open > a {
  5405. background-color: #FFF;
  5406. }
  5407. .no-skin .nav-list li li.highlight.active.open > a:hover {
  5408. background-color: #f1f5f9;
  5409. }
  5410. @media (min-width: 992px) {
  5411. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active > a:after {
  5412. display: block;
  5413. content: "";
  5414. position: absolute;
  5415. left: 0;
  5416. top: auto;
  5417. right: auto;
  5418. bottom: -2px;
  5419. left: 50%;
  5420. margin-left: -7px;
  5421. border-color: transparent;
  5422. -moz-border-right-colors: none;
  5423. -moz-border-left-colors: none;
  5424. -moz-border-top-colors: none;
  5425. border-width: 8px 7px;
  5426. border-bottom-color: #FFF;
  5427. -moz-border-bottom-colors: #FFF;
  5428. }
  5429. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active > a:before {
  5430. content: "";
  5431. position: absolute;
  5432. display: block;
  5433. left: 0;
  5434. top: auto;
  5435. right: auto;
  5436. bottom: -1px;
  5437. left: 50%;
  5438. margin-left: -7px;
  5439. border-width: 8px;
  5440. border-color: transparent;
  5441. -moz-border-right-colors: none;
  5442. -moz-border-left-colors: none;
  5443. -moz-border-top-colors: none;
  5444. border-bottom-color: #74add7;
  5445. -moz-border-bottom-colors: #74add7;
  5446. }
  5447. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active:hover > a:after,
  5448. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active.hover-show > a:after,
  5449. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active:hover > a:before,
  5450. .no-skin .sidebar.h-sidebar .nav-list > li.highlight.active.hover-show > a:before {
  5451. display: none;
  5452. }
  5453. }
  5454. @media (min-width: 992px) {
  5455. .sidebar.compact .nav-list li.highlight.active > a:after,
  5456. .sidebar.compact .nav-list li.highlight.active > a:before {
  5457. display: none;
  5458. }
  5459. .sidebar.compact.menu-min .nav-list li.highlight.active > a:after,
  5460. .sidebar.compact.menu-min .nav-list li.highlight.active > a:before {
  5461. display: block;
  5462. }
  5463. }
  5464. @media (min-width: 992px) {
  5465. .sidebar.h-sidebar .nav-list li.highlight.active > a:after,
  5466. .sidebar.h-sidebar .nav-list li.highlight.active > a:before {
  5467. display: block;
  5468. border-width: 8px !important;
  5469. -moz-border-left-colors: none !important;
  5470. -moz-border-right-colors: none !important;
  5471. border-left-color: transparent !important;
  5472. border-right-color: transparent !important;
  5473. }
  5474. .sidebar.h-sidebar .nav-list > li.highlight.active:hover > a:after,
  5475. .sidebar.h-sidebar .nav-list > li.highlight.active:hover > a:before {
  5476. display: none !important;
  5477. }
  5478. }
  5479. .sidebar-scroll .nav-list > li.active.highlight > a:after,
  5480. .sidebar-scroll .nav-list > li.active.highlight > a:before {
  5481. display: none !important;
  5482. }
  5483. .onpage-help-backdrop {
  5484. position: absolute;
  5485. z-index: 99990;
  5486. top: 0;
  5487. bottom: 0;
  5488. left: 0;
  5489. right: 0;
  5490. background-color: #000;
  5491. filter: alpha(opacity=5);
  5492. background-color: rgba(0, 0, 0, 0.05);
  5493. }
  5494. .onpage-help-section {
  5495. display: block;
  5496. position: absolute;
  5497. z-index: 100000;
  5498. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DFFFFFF', endColorstr='#4DFFFFFF', GradientType=0);
  5499. background-color: rgba(255, 255, 255, 0.3);
  5500. border: 1px dashed #8BBCD3;
  5501. border-radius: 4px;
  5502. transition: background-color 0.2s, border-color 0.2s;
  5503. -webkit-transition: background-color 0.2s, border-color 0.2s;
  5504. text-align: center;
  5505. vertical-align: middle;
  5506. outline: none !important;
  5507. }
  5508. .onpage-help-section > .ie-hover-fix {
  5509. /* ie8-9 fix*/
  5510. display: block;
  5511. position: absolute;
  5512. top: 0;
  5513. bottom: 0;
  5514. left: 0;
  5515. right: 0;
  5516. background-color: #FFF;
  5517. filter: alpha(opacity=1);
  5518. }
  5519. .onpage-help-section:focus,
  5520. .onpage-help-section:active {
  5521. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33C9D8EA', endColorstr='#33C9D8EA', GradientType=0);
  5522. background-color: rgba(201, 216, 234, 0.2);
  5523. border-color: #77ACC4;
  5524. }
  5525. .onpage-help-section:hover {
  5526. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66C9D8EA', endColorstr='#66C9D8EA', GradientType=0);
  5527. background-color: rgba(201, 216, 234, 0.4);
  5528. border-color: #77ACC4;
  5529. border-style: solid;
  5530. }
  5531. .onpage-help-section > .help-icon-1 {
  5532. font-size: 18px;
  5533. display: inline-block;
  5534. position: absolute;
  5535. z-index: 1;
  5536. top: 50%;
  5537. left: 50%;
  5538. transform: translate(-50%, -50%);
  5539. -webkit-transform: translate(-50%, -50%);
  5540. opacity: 0;
  5541. filter: alpha(opacity=0);
  5542. color: #FFF;
  5543. text-shadow: 0 0 2px black;
  5544. background-color: #85B8DB;
  5545. border: 2px solid #FFF;
  5546. border-radius: 100%;
  5547. box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.4);
  5548. width: 48px;
  5549. height: 48px;
  5550. line-height: 46px;
  5551. transition: opacity 0.2s;
  5552. -webkit-transition: opacity 0.2s;
  5553. }
  5554. .onpage-help-section:focus > .help-icon-1,
  5555. .onpage-help-section:active > .help-icon-1 {
  5556. opacity: 0.5;
  5557. }
  5558. .onpage-help-section:hover > .help-icon-1 {
  5559. opacity: 1;
  5560. filter: alpha(opacity=100);
  5561. }
  5562. .onpage-help-section.help-section-small > .help-icon-1 {
  5563. font-size: 18px;
  5564. width: 28px;
  5565. height: 28px;
  5566. line-height: 26px;
  5567. border-radius: 12px;
  5568. }
  5569. .onpage-help-section.help-section-smaller > .help-icon-1 {
  5570. font-size: 14px;
  5571. width: 20px;
  5572. height: 20px;
  5573. line-height: 17px;
  5574. border-radius: 8px;
  5575. }
  5576. .onpage-help-section > .help-icon-2 {
  5577. position: absolute;
  5578. z-index: 2;
  5579. left: -4px;
  5580. top: -4px;
  5581. width: 18px;
  5582. height: 18px;
  5583. line-height: 16px;
  5584. display: block;
  5585. font-size: 16px;
  5586. color: orange;
  5587. background-color: #FFF;
  5588. border: 1px solid orange;
  5589. border-radius: 4px;
  5590. opacity: 1;
  5591. transition: all 0.2s;
  5592. -webkit-transition: all 0.2s;
  5593. }
  5594. .onpage-help-section:hover > .help-icon-2 {
  5595. color: #59A34E;
  5596. border-color: #59A34E;
  5597. transform: scale(1.25);
  5598. -webkit-transform: scale(1.25);
  5599. }
  5600. .onpage-help-modal {
  5601. z-index: 100010;
  5602. }
  5603. .onpage-help-modal + .modal-backdrop {
  5604. z-index: 100009;
  5605. }
  5606. .onpage-help-modal-buttons button {
  5607. border-radius: 100%;
  5608. border-width: 2px !important;
  5609. }
  5610. .onpage-help-modal-buttons button:focus {
  5611. outline: none !important;
  5612. }
  5613. .onpage-help-modal-buttons button.disabled {
  5614. transform: scale(0.9);
  5615. -webkit-transform: scale(0.9);
  5616. }
  5617. .onpage-help-content {
  5618. max-width: 800px;
  5619. margin: 0 auto;
  5620. }
  5621. .code-modal.onpage-help-modal .modal-dialog {
  5622. margin-top: 6px;
  5623. margin-bottom: 6px;
  5624. }
  5625. .code-modal.onpage-help-modal .modal-header {
  5626. padding-top: 6px;
  5627. padding-bottom: 6px;
  5628. }
  5629. .code-modal.onpage-help-modal .modal-body {
  5630. padding: 10px 12px;
  5631. }
  5632. .onpage-help-modal pre {
  5633. border-width: 0;
  5634. box-shadow: none;
  5635. border-radius: 0;
  5636. margin-top: 8px;
  5637. }
  5638. .onpage-help-modal .modal-title code {
  5639. font-size: 13px;
  5640. }
  5641. .onpage-help-modal .modal-body {
  5642. font-size: 14px;
  5643. }
  5644. @media print {
  5645. .navbar {
  5646. display: none !important;
  5647. /**
  5648. background: transparent none !important;
  5649. border-bottom: 1px solid #DDD;
  5650. .navbar-brand {
  5651. color: @text-color !important;
  5652. }
  5653. .ace-nav {
  5654. display: none !important;
  5655. }
  5656. */
  5657. }
  5658. .sidebar {
  5659. display: none !important;
  5660. }
  5661. .main-content {
  5662. margin-left: 0 !important;
  5663. margin-right: 0 !important;
  5664. }
  5665. .main-content .nav-search {
  5666. display: none !important;
  5667. }
  5668. .main-content .breadcrumbs {
  5669. float: right;
  5670. border-width: 0 !important;
  5671. }
  5672. .main-content .breadcrumbs .breadcrumb > li + li:before {
  5673. content: "/";
  5674. }
  5675. .main-content .breadcrumbs .breadcrumb .home-icon {
  5676. display: none;
  5677. }
  5678. .ace-settings-container {
  5679. display: none !important;
  5680. }
  5681. .footer {
  5682. width: 100%;
  5683. height: auto;
  5684. position: relative;
  5685. }
  5686. .footer .footer-inner,
  5687. .footer .footer-inner .footer-content {
  5688. width: 100%;
  5689. }
  5690. .btn-scroll-up {
  5691. display: none !important;
  5692. }
  5693. .btn,
  5694. .btn.btn-app {
  5695. background: transparent none !important;
  5696. border-width: 1px !important;
  5697. border-radius: 0 !important;
  5698. color: #555 !important;
  5699. }
  5700. .label {
  5701. border: 1px solid #666 !important;
  5702. }
  5703. .label[class*=arrowed]:before,
  5704. .label[class*=arrowed]:after {
  5705. display: none !important;
  5706. }
  5707. }