AdminLTE.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001
  1. /*!
  2. * AdminLTE v2.4.13-pre
  3. *
  4. * Author: Colorlib
  5. * Support: <https://github.com/ColorlibHQ/AdminLTE/issues>
  6. * Repository: git://github.com/ColorlibHQ/AdminLTE.git
  7. * License: MIT <http://opensource.org/licenses/MIT>
  8. */
  9. /*
  10. * Core: General Layout Style
  11. * -------------------------
  12. */
  13. html,
  14. body {
  15. height: 100%;
  16. }
  17. .layout-boxed html,
  18. .layout-boxed body {
  19. height: 100%;
  20. }
  21. body {
  22. font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  23. font-weight: 400;
  24. overflow-x: hidden;
  25. overflow-y: auto;
  26. }
  27. /* Layout */
  28. .wrapper {
  29. height: 100%;
  30. position: relative;
  31. overflow-x: hidden;
  32. overflow-y: auto;
  33. }
  34. .wrapper:before,
  35. .wrapper:after {
  36. content: " ";
  37. display: table;
  38. }
  39. .wrapper:after {
  40. clear: both;
  41. }
  42. .layout-boxed .wrapper {
  43. max-width: 1250px;
  44. margin: 0 auto;
  45. min-height: 100%;
  46. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  47. position: relative;
  48. }
  49. .layout-boxed {
  50. background-color: #f9fafc;
  51. }
  52. /*
  53. * Content Wrapper - contains the main content
  54. */
  55. .content-wrapper,
  56. .main-footer {
  57. -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  58. -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  59. -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  60. transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  61. margin-left: 230px;
  62. z-index: 820;
  63. }
  64. .layout-top-nav .content-wrapper,
  65. .layout-top-nav .main-footer {
  66. margin-left: 0;
  67. }
  68. @media (max-width: 767px) {
  69. .content-wrapper,
  70. .main-footer {
  71. margin-left: 0;
  72. }
  73. }
  74. @media (min-width: 768px) {
  75. .sidebar-collapse .content-wrapper,
  76. .sidebar-collapse .main-footer {
  77. margin-left: 0;
  78. }
  79. }
  80. @media (max-width: 767px) {
  81. .sidebar-open .content-wrapper,
  82. .sidebar-open .main-footer {
  83. -webkit-transform: translate(230px, 0);
  84. -ms-transform: translate(230px, 0);
  85. -o-transform: translate(230px, 0);
  86. transform: translate(230px, 0);
  87. }
  88. }
  89. .content-wrapper {
  90. min-height: calc(100% - 102px);
  91. background-color: #ecf0f5;
  92. z-index: 800;
  93. }
  94. .main-footer {
  95. background: #fff;
  96. padding: 15px;
  97. color: #444;
  98. border-top: 1px solid #d2d6de;
  99. }
  100. /* Fixed layout */
  101. .fixed .main-header,
  102. .fixed .main-sidebar,
  103. .fixed .left-side {
  104. position: fixed;
  105. }
  106. .fixed .main-header {
  107. top: 0;
  108. right: 0;
  109. left: 0;
  110. }
  111. .fixed .content-wrapper,
  112. .fixed .right-side {
  113. padding-top: 50px;
  114. }
  115. @media (max-width: 767px) {
  116. .fixed .content-wrapper,
  117. .fixed .right-side {
  118. padding-top: 100px;
  119. }
  120. }
  121. .fixed.layout-boxed .wrapper {
  122. max-width: 100%;
  123. }
  124. .fixed .wrapper {
  125. overflow: hidden;
  126. }
  127. .hold-transition .content-wrapper,
  128. .hold-transition .right-side,
  129. .hold-transition .main-footer,
  130. .hold-transition .main-sidebar,
  131. .hold-transition .left-side,
  132. .hold-transition .main-header .navbar,
  133. .hold-transition .main-header .logo,
  134. .hold-transition .menu-open .fa-angle-left {
  135. /* Fix for IE */
  136. -webkit-transition: none;
  137. -o-transition: none;
  138. transition: none;
  139. }
  140. /* Content */
  141. .content {
  142. min-height: 250px;
  143. padding: 15px;
  144. margin-right: auto;
  145. margin-left: auto;
  146. padding-left: 15px;
  147. padding-right: 15px;
  148. }
  149. /* H1 - H6 font */
  150. h1,
  151. h2,
  152. h3,
  153. h4,
  154. h5,
  155. h6,
  156. .h1,
  157. .h2,
  158. .h3,
  159. .h4,
  160. .h5,
  161. .h6 {
  162. font-family: 'Source Sans Pro', sans-serif;
  163. }
  164. /* General Links */
  165. a {
  166. color: #3c8dbc;
  167. }
  168. a:hover,
  169. a:active,
  170. a:focus {
  171. outline: none;
  172. text-decoration: none;
  173. color: #72afd2;
  174. }
  175. /* Page Header */
  176. .page-header {
  177. margin: 10px 0 20px 0;
  178. font-size: 22px;
  179. }
  180. .page-header > small {
  181. color: #666;
  182. display: block;
  183. margin-top: 5px;
  184. }
  185. /*
  186. * Component: Main Header
  187. * ----------------------
  188. */
  189. .main-header {
  190. position: relative;
  191. max-height: 100px;
  192. z-index: 1030;
  193. }
  194. .main-header .navbar {
  195. -webkit-transition: margin-left 0.3s ease-in-out;
  196. -o-transition: margin-left 0.3s ease-in-out;
  197. transition: margin-left 0.3s ease-in-out;
  198. margin-bottom: 0;
  199. margin-left: 230px;
  200. border: none;
  201. min-height: 50px;
  202. border-radius: 0;
  203. }
  204. .layout-top-nav .main-header .navbar {
  205. margin-left: 0;
  206. }
  207. .main-header #navbar-search-input.form-control {
  208. background: rgba(255, 255, 255, 0.2);
  209. border-color: transparent;
  210. }
  211. .main-header #navbar-search-input.form-control:focus,
  212. .main-header #navbar-search-input.form-control:active {
  213. border-color: rgba(0, 0, 0, 0.1);
  214. background: rgba(255, 255, 255, 0.9);
  215. }
  216. .main-header #navbar-search-input.form-control::-moz-placeholder {
  217. color: #ccc;
  218. opacity: 1;
  219. }
  220. .main-header #navbar-search-input.form-control:-ms-input-placeholder {
  221. color: #ccc;
  222. }
  223. .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
  224. color: #ccc;
  225. }
  226. .main-header .navbar-custom-menu,
  227. .main-header .navbar-right {
  228. float: right;
  229. }
  230. @media (max-width: 991px) {
  231. .main-header .navbar-custom-menu a,
  232. .main-header .navbar-right a {
  233. color: inherit;
  234. background: transparent;
  235. }
  236. }
  237. @media (max-width: 767px) {
  238. .main-header .navbar-right {
  239. float: none;
  240. }
  241. .navbar-collapse .main-header .navbar-right {
  242. margin: 7.5px -15px;
  243. }
  244. .main-header .navbar-right > li {
  245. color: inherit;
  246. border: 0;
  247. }
  248. }
  249. .main-header .sidebar-toggle {
  250. float: left;
  251. background-color: transparent;
  252. background-image: none;
  253. padding: 15px 15px;
  254. font-family: fontAwesome;
  255. }
  256. .main-header .sidebar-toggle:before {
  257. content: "\f0c9";
  258. }
  259. .main-header .sidebar-toggle:hover {
  260. color: #fff;
  261. }
  262. .main-header .sidebar-toggle:focus,
  263. .main-header .sidebar-toggle:active {
  264. background: transparent;
  265. }
  266. .main-header .sidebar-toggle.fa5 {
  267. font-family: "Font Awesome\ 5 Free";
  268. }
  269. .main-header .sidebar-toggle.fa5:before {
  270. content: "\f0c9";
  271. font-weight: 900;
  272. }
  273. .main-header .sidebar-toggle .icon-bar {
  274. display: none;
  275. }
  276. .main-header .navbar .nav > li.user > a > .fa,
  277. .main-header .navbar .nav > li.user > a > .glyphicon,
  278. .main-header .navbar .nav > li.user > a > .ion {
  279. margin-right: 5px;
  280. }
  281. .main-header .navbar .nav > li > a > .label {
  282. position: absolute;
  283. top: 9px;
  284. right: 7px;
  285. text-align: center;
  286. font-size: 9px;
  287. padding: 2px 3px;
  288. line-height: .9;
  289. }
  290. .main-header .logo {
  291. -webkit-transition: width 0.3s ease-in-out;
  292. -o-transition: width 0.3s ease-in-out;
  293. transition: width 0.3s ease-in-out;
  294. display: block;
  295. float: left;
  296. height: 50px;
  297. font-size: 20px;
  298. line-height: 50px;
  299. text-align: center;
  300. width: 230px;
  301. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  302. padding: 0 15px;
  303. font-weight: 300;
  304. overflow: hidden;
  305. }
  306. .main-header .logo .logo-lg {
  307. display: block;
  308. }
  309. .main-header .logo .logo-mini {
  310. display: none;
  311. }
  312. .main-header .navbar-brand {
  313. color: #fff;
  314. }
  315. .content-header {
  316. position: relative;
  317. padding: 15px 15px 0 15px;
  318. }
  319. .content-header > h1 {
  320. margin: 0;
  321. font-size: 24px;
  322. }
  323. .content-header > h1 > small {
  324. font-size: 15px;
  325. display: inline-block;
  326. padding-left: 4px;
  327. font-weight: 300;
  328. }
  329. .content-header > .breadcrumb {
  330. float: right;
  331. background: transparent;
  332. margin-top: 0;
  333. margin-bottom: 0;
  334. font-size: 12px;
  335. padding: 7px 5px;
  336. position: absolute;
  337. top: 15px;
  338. right: 10px;
  339. border-radius: 2px;
  340. }
  341. .content-header > .breadcrumb > li > a {
  342. color: #444;
  343. text-decoration: none;
  344. display: inline-block;
  345. }
  346. .content-header > .breadcrumb > li > a > .fa,
  347. .content-header > .breadcrumb > li > a > .glyphicon,
  348. .content-header > .breadcrumb > li > a > .ion {
  349. margin-right: 5px;
  350. }
  351. .content-header > .breadcrumb > li + li:before {
  352. content: '>\00a0';
  353. }
  354. @media (max-width: 991px) {
  355. .content-header > .breadcrumb {
  356. position: relative;
  357. margin-top: 5px;
  358. top: 0;
  359. right: 0;
  360. float: none;
  361. background: #d2d6de;
  362. padding-left: 10px;
  363. }
  364. .content-header > .breadcrumb li:before {
  365. color: #97a0b3;
  366. }
  367. }
  368. .navbar-toggle {
  369. color: #fff;
  370. border: 0;
  371. margin: 0;
  372. padding: 15px 15px;
  373. }
  374. @media (max-width: 991px) {
  375. .navbar-custom-menu .navbar-nav > li {
  376. float: left;
  377. }
  378. .navbar-custom-menu .navbar-nav {
  379. margin: 0;
  380. float: left;
  381. }
  382. .navbar-custom-menu .navbar-nav > li > a {
  383. padding-top: 15px;
  384. padding-bottom: 15px;
  385. line-height: 20px;
  386. }
  387. }
  388. @media (max-width: 767px) {
  389. .main-header {
  390. position: relative;
  391. }
  392. .main-header .logo,
  393. .main-header .navbar {
  394. width: 100%;
  395. float: none;
  396. }
  397. .main-header .navbar {
  398. margin: 0;
  399. }
  400. .main-header .navbar-custom-menu {
  401. float: right;
  402. }
  403. }
  404. @media (max-width: 991px) {
  405. .navbar-collapse.pull-left {
  406. float: none !important;
  407. }
  408. .navbar-collapse.pull-left + .navbar-custom-menu {
  409. display: block;
  410. position: absolute;
  411. top: 0;
  412. right: 40px;
  413. }
  414. }
  415. /*
  416. * Component: Sidebar
  417. * ------------------
  418. */
  419. .main-sidebar {
  420. position: absolute;
  421. top: 0;
  422. left: 0;
  423. padding-top: 50px;
  424. min-height: 100%;
  425. width: 230px;
  426. z-index: 810;
  427. -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  428. -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  429. -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  430. transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  431. }
  432. @media (max-width: 767px) {
  433. .main-sidebar {
  434. padding-top: 100px;
  435. }
  436. }
  437. @media (max-width: 767px) {
  438. .main-sidebar {
  439. -webkit-transform: translate(-230px, 0);
  440. -ms-transform: translate(-230px, 0);
  441. -o-transform: translate(-230px, 0);
  442. transform: translate(-230px, 0);
  443. }
  444. }
  445. @media (min-width: 768px) {
  446. .sidebar-collapse .main-sidebar {
  447. -webkit-transform: translate(-230px, 0);
  448. -ms-transform: translate(-230px, 0);
  449. -o-transform: translate(-230px, 0);
  450. transform: translate(-230px, 0);
  451. }
  452. }
  453. @media (max-width: 767px) {
  454. .sidebar-open .main-sidebar {
  455. -webkit-transform: translate(0, 0);
  456. -ms-transform: translate(0, 0);
  457. -o-transform: translate(0, 0);
  458. transform: translate(0, 0);
  459. }
  460. }
  461. .sidebar {
  462. padding-bottom: 10px;
  463. }
  464. .sidebar-form input:focus {
  465. border-color: transparent;
  466. }
  467. .user-panel {
  468. position: relative;
  469. width: 100%;
  470. padding: 10px;
  471. overflow: hidden;
  472. }
  473. .user-panel:before,
  474. .user-panel:after {
  475. content: " ";
  476. display: table;
  477. }
  478. .user-panel:after {
  479. clear: both;
  480. }
  481. .user-panel > .image > img {
  482. width: 100%;
  483. max-width: 45px;
  484. height: auto;
  485. }
  486. .user-panel > .info {
  487. padding: 5px 5px 5px 15px;
  488. line-height: 1;
  489. position: absolute;
  490. left: 55px;
  491. }
  492. .user-panel > .info > p {
  493. font-weight: 600;
  494. margin-bottom: 9px;
  495. }
  496. .user-panel > .info > a {
  497. text-decoration: none;
  498. padding-right: 5px;
  499. margin-top: 3px;
  500. font-size: 11px;
  501. }
  502. .user-panel > .info > a > .fa,
  503. .user-panel > .info > a > .ion,
  504. .user-panel > .info > a > .glyphicon {
  505. margin-right: 3px;
  506. }
  507. .sidebar-menu {
  508. list-style: none;
  509. margin: 0;
  510. padding: 0;
  511. }
  512. .sidebar-menu > li {
  513. position: relative;
  514. margin: 0;
  515. padding: 0;
  516. }
  517. .sidebar-menu > li > a {
  518. padding: 12px 5px 12px 15px;
  519. display: block;
  520. }
  521. .sidebar-menu > li > a > .fa,
  522. .sidebar-menu > li > a > .glyphicon,
  523. .sidebar-menu > li > a > .ion {
  524. width: 20px;
  525. }
  526. .sidebar-menu > li .label,
  527. .sidebar-menu > li .badge {
  528. margin-right: 5px;
  529. }
  530. .sidebar-menu > li .badge {
  531. margin-top: 3px;
  532. }
  533. .sidebar-menu li.header {
  534. padding: 10px 25px 10px 15px;
  535. font-size: 12px;
  536. }
  537. .sidebar-menu li > a > .fa-angle-left,
  538. .sidebar-menu li > a > .pull-right-container > .fa-angle-left {
  539. width: auto;
  540. height: auto;
  541. padding: 0;
  542. margin-right: 10px;
  543. -webkit-transition: transform 0.5s ease;
  544. -o-transition: transform 0.5s ease;
  545. transition: transform 0.5s ease;
  546. }
  547. .sidebar-menu li > a > .fa-angle-left {
  548. position: absolute;
  549. top: 50%;
  550. right: 10px;
  551. margin-top: -8px;
  552. }
  553. .sidebar-menu .menu-open > a > .fa-angle-left,
  554. .sidebar-menu .menu-open > a > .pull-right-container > .fa-angle-left {
  555. -webkit-transform: rotate(-90deg);
  556. -ms-transform: rotate(-90deg);
  557. -o-transform: rotate(-90deg);
  558. transform: rotate(-90deg);
  559. }
  560. .sidebar-menu .active > .treeview-menu {
  561. display: block;
  562. }
  563. /*
  564. * Component: Sidebar Mini
  565. */
  566. @media (min-width: 768px) {
  567. .sidebar-mini.sidebar-collapse .content-wrapper,
  568. .sidebar-mini.sidebar-collapse .right-side,
  569. .sidebar-mini.sidebar-collapse .main-footer {
  570. margin-left: 50px !important;
  571. z-index: 840;
  572. }
  573. .sidebar-mini.sidebar-collapse .main-sidebar {
  574. -webkit-transform: translate(0, 0);
  575. -ms-transform: translate(0, 0);
  576. -o-transform: translate(0, 0);
  577. transform: translate(0, 0);
  578. width: 50px !important;
  579. z-index: 850;
  580. }
  581. .sidebar-mini.sidebar-collapse .sidebar-menu > li {
  582. position: relative;
  583. }
  584. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
  585. margin-right: 0;
  586. }
  587. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
  588. border-top-right-radius: 4px;
  589. }
  590. .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
  591. border-bottom-right-radius: 4px;
  592. }
  593. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
  594. padding-top: 5px;
  595. padding-bottom: 5px;
  596. border-bottom-right-radius: 4px;
  597. }
  598. .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  599. .sidebar-mini.sidebar-collapse .sidebar-form,
  600. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
  601. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
  602. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
  603. .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
  604. display: none !important;
  605. -webkit-transform: translateZ(0);
  606. }
  607. .sidebar-mini.sidebar-collapse .main-header .logo {
  608. width: 50px;
  609. }
  610. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
  611. display: block;
  612. margin-left: -15px;
  613. margin-right: -15px;
  614. font-size: 18px;
  615. }
  616. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
  617. display: none;
  618. }
  619. .sidebar-mini.sidebar-collapse .main-header .navbar {
  620. margin-left: 50px;
  621. }
  622. }
  623. @media (min-width: 768px) {
  624. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
  625. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  626. display: block !important;
  627. position: absolute;
  628. width: 180px;
  629. left: 50px;
  630. }
  631. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > span {
  632. top: 0;
  633. margin-left: -3px;
  634. padding: 12px 5px 12px 20px;
  635. background-color: inherit;
  636. }
  637. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
  638. position: relative !important;
  639. float: right;
  640. width: auto !important;
  641. left: 180px !important;
  642. top: -22px !important;
  643. z-index: 900;
  644. }
  645. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) {
  646. display: none;
  647. }
  648. .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  649. top: 44px;
  650. margin-left: 0;
  651. }
  652. }
  653. .sidebar-expanded-on-hover .main-footer,
  654. .sidebar-expanded-on-hover .content-wrapper {
  655. margin-left: 50px;
  656. }
  657. .sidebar-expanded-on-hover .main-sidebar {
  658. box-shadow: 3px 0 8px rgba(0, 0, 0, 0.125);
  659. }
  660. .sidebar-menu,
  661. .main-sidebar .user-panel,
  662. .sidebar-menu > li.header {
  663. white-space: nowrap;
  664. overflow: hidden;
  665. }
  666. .sidebar-menu:hover {
  667. overflow: visible;
  668. }
  669. .sidebar-form,
  670. .sidebar-menu > li.header {
  671. overflow: hidden;
  672. text-overflow: clip;
  673. }
  674. .sidebar-menu li > a {
  675. position: relative;
  676. }
  677. .sidebar-menu li > a > .pull-right-container {
  678. position: absolute;
  679. right: 10px;
  680. top: 50%;
  681. margin-top: -7px;
  682. }
  683. /*
  684. * Component: Control sidebar. By default, this is the right sidebar.
  685. */
  686. .control-sidebar-bg {
  687. position: fixed;
  688. z-index: 1000;
  689. bottom: 0;
  690. }
  691. .control-sidebar-bg,
  692. .control-sidebar {
  693. top: 0;
  694. right: -230px;
  695. width: 230px;
  696. -webkit-transition: right 0.3s ease-in-out;
  697. -o-transition: right 0.3s ease-in-out;
  698. transition: right 0.3s ease-in-out;
  699. }
  700. .control-sidebar {
  701. position: absolute;
  702. padding-top: 50px;
  703. z-index: 1010;
  704. }
  705. @media (max-width: 767px) {
  706. .control-sidebar {
  707. padding-top: 100px;
  708. }
  709. }
  710. .control-sidebar > .tab-content {
  711. padding: 10px 15px;
  712. }
  713. .control-sidebar.control-sidebar-open,
  714. .control-sidebar.control-sidebar-open + .control-sidebar-bg {
  715. right: 0;
  716. }
  717. .control-sidebar-open .control-sidebar-bg,
  718. .control-sidebar-open .control-sidebar {
  719. right: 0;
  720. }
  721. @media (min-width: 768px) {
  722. .control-sidebar-open .content-wrapper,
  723. .control-sidebar-open .right-side,
  724. .control-sidebar-open .main-footer {
  725. margin-right: 230px;
  726. }
  727. }
  728. .fixed .control-sidebar {
  729. position: fixed;
  730. height: 100%;
  731. overflow-y: auto;
  732. padding-bottom: 50px;
  733. }
  734. .nav-tabs.control-sidebar-tabs > li:first-of-type > a,
  735. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
  736. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
  737. border-left-width: 0;
  738. }
  739. .nav-tabs.control-sidebar-tabs > li > a {
  740. border-radius: 0;
  741. }
  742. .nav-tabs.control-sidebar-tabs > li > a,
  743. .nav-tabs.control-sidebar-tabs > li > a:hover {
  744. border-top: none;
  745. border-right: none;
  746. border-left: 1px solid transparent;
  747. border-bottom: 1px solid transparent;
  748. }
  749. .nav-tabs.control-sidebar-tabs > li > a .icon {
  750. font-size: 16px;
  751. }
  752. .nav-tabs.control-sidebar-tabs > li.active > a,
  753. .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  754. .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  755. .nav-tabs.control-sidebar-tabs > li.active > a:active {
  756. border-top: none;
  757. border-right: none;
  758. border-bottom: none;
  759. }
  760. @media (max-width: 768px) {
  761. .nav-tabs.control-sidebar-tabs {
  762. display: table;
  763. }
  764. .nav-tabs.control-sidebar-tabs > li {
  765. display: table-cell;
  766. }
  767. }
  768. .control-sidebar-heading {
  769. font-weight: 400;
  770. font-size: 16px;
  771. padding: 10px 0;
  772. margin-bottom: 10px;
  773. }
  774. .control-sidebar-subheading {
  775. display: block;
  776. font-weight: 400;
  777. font-size: 14px;
  778. }
  779. .control-sidebar-menu {
  780. list-style: none;
  781. padding: 0;
  782. margin: 0 -15px;
  783. }
  784. .control-sidebar-menu > li > a {
  785. display: block;
  786. padding: 10px 15px;
  787. }
  788. .control-sidebar-menu > li > a:before,
  789. .control-sidebar-menu > li > a:after {
  790. content: " ";
  791. display: table;
  792. }
  793. .control-sidebar-menu > li > a:after {
  794. clear: both;
  795. }
  796. .control-sidebar-menu > li > a > .control-sidebar-subheading {
  797. margin-top: 0;
  798. }
  799. .control-sidebar-menu .menu-icon {
  800. float: left;
  801. width: 35px;
  802. height: 35px;
  803. border-radius: 50%;
  804. text-align: center;
  805. line-height: 35px;
  806. }
  807. .control-sidebar-menu .menu-info {
  808. margin-left: 45px;
  809. margin-top: 3px;
  810. }
  811. .control-sidebar-menu .menu-info > .control-sidebar-subheading {
  812. margin: 0;
  813. }
  814. .control-sidebar-menu .menu-info > p {
  815. margin: 0;
  816. font-size: 11px;
  817. }
  818. .control-sidebar-menu .progress {
  819. margin: 0;
  820. }
  821. .control-sidebar-dark {
  822. color: #b8c7ce;
  823. }
  824. .control-sidebar-dark,
  825. .control-sidebar-dark + .control-sidebar-bg {
  826. background: #222d32;
  827. }
  828. .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  829. border-bottom: #1c2529;
  830. }
  831. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  832. background: #181f23;
  833. color: #b8c7ce;
  834. }
  835. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
  836. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  837. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  838. border-left-color: #141a1d;
  839. border-bottom-color: #141a1d;
  840. }
  841. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  842. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
  843. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  844. background: #1c2529;
  845. }
  846. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  847. color: #fff;
  848. }
  849. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
  850. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  851. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  852. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  853. background: #222d32;
  854. color: #fff;
  855. }
  856. .control-sidebar-dark .control-sidebar-heading,
  857. .control-sidebar-dark .control-sidebar-subheading {
  858. color: #fff;
  859. }
  860. .control-sidebar-dark .control-sidebar-menu > li > a:hover {
  861. background: #1e282c;
  862. }
  863. .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  864. color: #b8c7ce;
  865. }
  866. .control-sidebar-light {
  867. color: #5e5e5e;
  868. }
  869. .control-sidebar-light,
  870. .control-sidebar-light + .control-sidebar-bg {
  871. background: #f9fafc;
  872. border-left: 1px solid #d2d6de;
  873. }
  874. .control-sidebar-light .nav-tabs.control-sidebar-tabs {
  875. border-bottom: #d2d6de;
  876. }
  877. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  878. background: #e8ecf4;
  879. color: #444444;
  880. }
  881. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
  882. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  883. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  884. border-left-color: #d2d6de;
  885. border-bottom-color: #d2d6de;
  886. }
  887. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  888. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
  889. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  890. background: #eff1f7;
  891. }
  892. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
  893. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  894. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  895. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  896. background: #f9fafc;
  897. color: #111;
  898. }
  899. .control-sidebar-light .control-sidebar-heading,
  900. .control-sidebar-light .control-sidebar-subheading {
  901. color: #111;
  902. }
  903. .control-sidebar-light .control-sidebar-menu {
  904. margin-left: -14px;
  905. }
  906. .control-sidebar-light .control-sidebar-menu > li > a:hover {
  907. background: #f4f4f5;
  908. }
  909. .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  910. color: #5e5e5e;
  911. }
  912. /*
  913. * Component: Dropdown menus
  914. * -------------------------
  915. */
  916. /*Dropdowns in general*/
  917. .dropdown-menu {
  918. box-shadow: none;
  919. border-color: #eee;
  920. }
  921. .dropdown-menu > li > a {
  922. color: #777;
  923. }
  924. .dropdown-menu > li > a > .glyphicon,
  925. .dropdown-menu > li > a > .fa,
  926. .dropdown-menu > li > a > .ion {
  927. margin-right: 10px;
  928. }
  929. .dropdown-menu > li > a:hover {
  930. background-color: #e1e3e9;
  931. color: #333;
  932. }
  933. .dropdown-menu > .divider {
  934. background-color: #eee;
  935. }
  936. .navbar-nav > .notifications-menu > .dropdown-menu,
  937. .navbar-nav > .messages-menu > .dropdown-menu,
  938. .navbar-nav > .tasks-menu > .dropdown-menu {
  939. width: 280px;
  940. padding: 0 0 0 0;
  941. margin: 0;
  942. top: 100%;
  943. }
  944. .navbar-nav > .notifications-menu > .dropdown-menu > li,
  945. .navbar-nav > .messages-menu > .dropdown-menu > li,
  946. .navbar-nav > .tasks-menu > .dropdown-menu > li {
  947. position: relative;
  948. }
  949. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  950. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  951. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  952. border-top-left-radius: 4px;
  953. border-top-right-radius: 4px;
  954. border-bottom-right-radius: 0;
  955. border-bottom-left-radius: 0;
  956. background-color: #ffffff;
  957. padding: 7px 10px;
  958. border-bottom: 1px solid #f4f4f4;
  959. color: #444444;
  960. font-size: 14px;
  961. }
  962. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  963. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  964. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  965. border-top-left-radius: 0;
  966. border-top-right-radius: 0;
  967. border-bottom-right-radius: 4px;
  968. border-bottom-left-radius: 4px;
  969. font-size: 12px;
  970. background-color: #fff;
  971. padding: 7px 10px;
  972. border-bottom: 1px solid #eeeeee;
  973. color: #444 !important;
  974. text-align: center;
  975. }
  976. @media (max-width: 991px) {
  977. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  978. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  979. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  980. background: #fff !important;
  981. color: #444 !important;
  982. }
  983. }
  984. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  985. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  986. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  987. text-decoration: none;
  988. font-weight: normal;
  989. }
  990. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  991. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  992. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  993. max-height: 200px;
  994. margin: 0;
  995. padding: 0;
  996. list-style: none;
  997. overflow-x: hidden;
  998. }
  999. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  1000. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  1001. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1002. display: block;
  1003. white-space: nowrap;
  1004. /* Prevent text from breaking */
  1005. border-bottom: 1px solid #f4f4f4;
  1006. }
  1007. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  1008. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  1009. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  1010. background: #f4f4f4;
  1011. text-decoration: none;
  1012. }
  1013. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  1014. color: #444444;
  1015. overflow: hidden;
  1016. text-overflow: ellipsis;
  1017. padding: 10px;
  1018. }
  1019. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  1020. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  1021. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  1022. width: 20px;
  1023. }
  1024. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  1025. margin: 0;
  1026. padding: 10px 10px;
  1027. }
  1028. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  1029. margin: auto 10px auto auto;
  1030. width: 40px;
  1031. height: 40px;
  1032. }
  1033. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  1034. padding: 0;
  1035. margin: 0 0 0 45px;
  1036. color: #444444;
  1037. font-size: 15px;
  1038. position: relative;
  1039. }
  1040. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  1041. color: #999999;
  1042. font-size: 10px;
  1043. position: absolute;
  1044. top: 0;
  1045. right: 0;
  1046. }
  1047. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  1048. margin: 0 0 0 45px;
  1049. font-size: 12px;
  1050. color: #888888;
  1051. }
  1052. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  1053. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1054. content: " ";
  1055. display: table;
  1056. }
  1057. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1058. clear: both;
  1059. }
  1060. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1061. padding: 10px;
  1062. }
  1063. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  1064. font-size: 14px;
  1065. padding: 0;
  1066. margin: 0 0 10px 0;
  1067. color: #666666;
  1068. }
  1069. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  1070. padding: 0;
  1071. margin: 0;
  1072. }
  1073. .navbar-nav > .user-menu > .dropdown-menu {
  1074. border-top-right-radius: 0;
  1075. border-top-left-radius: 0;
  1076. padding: 1px 0 0 0;
  1077. border-top-width: 0;
  1078. width: 280px;
  1079. }
  1080. .navbar-nav > .user-menu > .dropdown-menu,
  1081. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1082. border-bottom-right-radius: 4px;
  1083. border-bottom-left-radius: 4px;
  1084. }
  1085. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  1086. height: 175px;
  1087. padding: 10px;
  1088. text-align: center;
  1089. }
  1090. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  1091. z-index: 5;
  1092. height: 90px;
  1093. width: 90px;
  1094. border: 3px solid;
  1095. border-color: transparent;
  1096. border-color: rgba(255, 255, 255, 0.2);
  1097. }
  1098. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  1099. z-index: 5;
  1100. color: #fff;
  1101. color: rgba(255, 255, 255, 0.8);
  1102. font-size: 17px;
  1103. margin-top: 10px;
  1104. }
  1105. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  1106. display: block;
  1107. font-size: 12px;
  1108. }
  1109. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1110. padding: 15px;
  1111. border-bottom: 1px solid #f4f4f4;
  1112. border-top: 1px solid #dddddd;
  1113. }
  1114. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
  1115. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1116. content: " ";
  1117. display: table;
  1118. }
  1119. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1120. clear: both;
  1121. }
  1122. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1123. color: #444 !important;
  1124. }
  1125. @media (max-width: 991px) {
  1126. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1127. background: #fff !important;
  1128. color: #444 !important;
  1129. }
  1130. }
  1131. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  1132. background-color: #f9f9f9;
  1133. padding: 10px;
  1134. }
  1135. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
  1136. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1137. content: " ";
  1138. display: table;
  1139. }
  1140. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1141. clear: both;
  1142. }
  1143. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  1144. color: #666666;
  1145. }
  1146. @media (max-width: 991px) {
  1147. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
  1148. background-color: #f9f9f9;
  1149. }
  1150. }
  1151. .navbar-nav > .user-menu .user-image {
  1152. float: left;
  1153. width: 25px;
  1154. height: 25px;
  1155. border-radius: 50%;
  1156. margin-right: 10px;
  1157. margin-top: -2px;
  1158. }
  1159. @media (max-width: 767px) {
  1160. .navbar-nav > .user-menu .user-image {
  1161. float: none;
  1162. margin-right: 0;
  1163. margin-top: -8px;
  1164. line-height: 10px;
  1165. }
  1166. }
  1167. /* Add fade animation to dropdown menus by appending
  1168. the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
  1169. .open:not(.dropup) > .animated-dropdown-menu {
  1170. backface-visibility: visible !important;
  1171. -webkit-animation: flipInX 0.7s both;
  1172. -o-animation: flipInX 0.7s both;
  1173. animation: flipInX 0.7s both;
  1174. }
  1175. @keyframes flipInX {
  1176. 0% {
  1177. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1178. transition-timing-function: ease-in;
  1179. opacity: 0;
  1180. }
  1181. 40% {
  1182. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1183. transition-timing-function: ease-in;
  1184. }
  1185. 60% {
  1186. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1187. opacity: 1;
  1188. }
  1189. 80% {
  1190. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1191. }
  1192. 100% {
  1193. transform: perspective(400px);
  1194. }
  1195. }
  1196. @-webkit-keyframes flipInX {
  1197. 0% {
  1198. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1199. -webkit-transition-timing-function: ease-in;
  1200. opacity: 0;
  1201. }
  1202. 40% {
  1203. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1204. -webkit-transition-timing-function: ease-in;
  1205. }
  1206. 60% {
  1207. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1208. opacity: 1;
  1209. }
  1210. 80% {
  1211. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1212. }
  1213. 100% {
  1214. -webkit-transform: perspective(400px);
  1215. }
  1216. }
  1217. /* Fix dropdown menu in navbars */
  1218. .navbar-custom-menu > .navbar-nav > li {
  1219. position: relative;
  1220. }
  1221. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1222. position: absolute;
  1223. right: 0;
  1224. left: auto;
  1225. }
  1226. @media (max-width: 991px) {
  1227. .navbar-custom-menu > .navbar-nav {
  1228. float: right;
  1229. }
  1230. .navbar-custom-menu > .navbar-nav > li {
  1231. position: static;
  1232. }
  1233. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1234. position: absolute;
  1235. right: 5%;
  1236. left: auto;
  1237. border: 1px solid #ddd;
  1238. background: #fff;
  1239. }
  1240. }
  1241. /*
  1242. * Component: Form
  1243. * ---------------
  1244. */
  1245. .form-control {
  1246. border-radius: 0;
  1247. box-shadow: none;
  1248. border-color: #d2d6de;
  1249. }
  1250. .form-control:focus {
  1251. border-color: #3c8dbc;
  1252. box-shadow: none;
  1253. }
  1254. .form-control::-moz-placeholder,
  1255. .form-control:-ms-input-placeholder,
  1256. .form-control::-webkit-input-placeholder {
  1257. color: #bbb;
  1258. opacity: 1;
  1259. }
  1260. .form-control:not(select) {
  1261. -webkit-appearance: none;
  1262. -moz-appearance: none;
  1263. appearance: none;
  1264. }
  1265. .form-group.has-success label {
  1266. color: #00a65a;
  1267. }
  1268. .form-group.has-success .form-control,
  1269. .form-group.has-success .input-group-addon {
  1270. border-color: #00a65a;
  1271. box-shadow: none;
  1272. }
  1273. .form-group.has-success .help-block {
  1274. color: #00a65a;
  1275. }
  1276. .form-group.has-warning label {
  1277. color: #f39c12;
  1278. }
  1279. .form-group.has-warning .form-control,
  1280. .form-group.has-warning .input-group-addon {
  1281. border-color: #f39c12;
  1282. box-shadow: none;
  1283. }
  1284. .form-group.has-warning .help-block {
  1285. color: #f39c12;
  1286. }
  1287. .form-group.has-error label {
  1288. color: #dd4b39;
  1289. }
  1290. .form-group.has-error .form-control,
  1291. .form-group.has-error .input-group-addon {
  1292. border-color: #dd4b39;
  1293. box-shadow: none;
  1294. }
  1295. .form-group.has-error .help-block {
  1296. color: #dd4b39;
  1297. }
  1298. /* Input group */
  1299. .input-group .input-group-addon {
  1300. border-radius: 0;
  1301. border-color: #d2d6de;
  1302. background-color: #fff;
  1303. }
  1304. /* button groups */
  1305. .btn-group-vertical .btn.btn-flat:first-of-type,
  1306. .btn-group-vertical .btn.btn-flat:last-of-type {
  1307. border-radius: 0;
  1308. }
  1309. .icheck > label {
  1310. padding-left: 0;
  1311. }
  1312. /* support Font Awesome icons in form-control */
  1313. .form-control-feedback.fa {
  1314. line-height: 34px;
  1315. }
  1316. .input-lg + .form-control-feedback.fa,
  1317. .input-group-lg + .form-control-feedback.fa,
  1318. .form-group-lg .form-control + .form-control-feedback.fa {
  1319. line-height: 46px;
  1320. }
  1321. .input-sm + .form-control-feedback.fa,
  1322. .input-group-sm + .form-control-feedback.fa,
  1323. .form-group-sm .form-control + .form-control-feedback.fa {
  1324. line-height: 30px;
  1325. }
  1326. /*
  1327. * Component: Progress Bar
  1328. * -----------------------
  1329. */
  1330. .progress,
  1331. .progress > .progress-bar {
  1332. -webkit-box-shadow: none;
  1333. box-shadow: none;
  1334. }
  1335. .progress,
  1336. .progress > .progress-bar,
  1337. .progress .progress-bar,
  1338. .progress > .progress-bar .progress-bar {
  1339. border-radius: 1px;
  1340. }
  1341. /* size variation */
  1342. .progress.sm,
  1343. .progress-sm {
  1344. height: 10px;
  1345. }
  1346. .progress.sm,
  1347. .progress-sm,
  1348. .progress.sm .progress-bar,
  1349. .progress-sm .progress-bar {
  1350. border-radius: 1px;
  1351. }
  1352. .progress.xs,
  1353. .progress-xs {
  1354. height: 7px;
  1355. }
  1356. .progress.xs,
  1357. .progress-xs,
  1358. .progress.xs .progress-bar,
  1359. .progress-xs .progress-bar {
  1360. border-radius: 1px;
  1361. }
  1362. .progress.xxs,
  1363. .progress-xxs {
  1364. height: 3px;
  1365. }
  1366. .progress.xxs,
  1367. .progress-xxs,
  1368. .progress.xxs .progress-bar,
  1369. .progress-xxs .progress-bar {
  1370. border-radius: 1px;
  1371. }
  1372. /* Vertical bars */
  1373. .progress.vertical {
  1374. position: relative;
  1375. width: 30px;
  1376. height: 200px;
  1377. display: inline-block;
  1378. margin-right: 10px;
  1379. }
  1380. .progress.vertical > .progress-bar {
  1381. width: 100%;
  1382. position: absolute;
  1383. bottom: 0;
  1384. }
  1385. .progress.vertical.sm,
  1386. .progress.vertical.progress-sm {
  1387. width: 20px;
  1388. }
  1389. .progress.vertical.xs,
  1390. .progress.vertical.progress-xs {
  1391. width: 10px;
  1392. }
  1393. .progress.vertical.xxs,
  1394. .progress.vertical.progress-xxs {
  1395. width: 3px;
  1396. }
  1397. .progress-group .progress-text {
  1398. font-weight: 600;
  1399. }
  1400. .progress-group .progress-number {
  1401. float: right;
  1402. }
  1403. /* Remove margins from progress bars when put in a table */
  1404. .table tr > td .progress {
  1405. margin: 0;
  1406. }
  1407. .progress-bar-light-blue,
  1408. .progress-bar-primary {
  1409. background-color: #3c8dbc;
  1410. }
  1411. .progress-striped .progress-bar-light-blue,
  1412. .progress-striped .progress-bar-primary {
  1413. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1414. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1415. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1416. }
  1417. .progress-bar-green,
  1418. .progress-bar-success {
  1419. background-color: #00a65a;
  1420. }
  1421. .progress-striped .progress-bar-green,
  1422. .progress-striped .progress-bar-success {
  1423. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1424. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1425. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1426. }
  1427. .progress-bar-aqua,
  1428. .progress-bar-info {
  1429. background-color: #00c0ef;
  1430. }
  1431. .progress-striped .progress-bar-aqua,
  1432. .progress-striped .progress-bar-info {
  1433. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1434. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1435. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1436. }
  1437. .progress-bar-yellow,
  1438. .progress-bar-warning {
  1439. background-color: #f39c12;
  1440. }
  1441. .progress-striped .progress-bar-yellow,
  1442. .progress-striped .progress-bar-warning {
  1443. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1444. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1445. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1446. }
  1447. .progress-bar-red,
  1448. .progress-bar-danger {
  1449. background-color: #dd4b39;
  1450. }
  1451. .progress-striped .progress-bar-red,
  1452. .progress-striped .progress-bar-danger {
  1453. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1454. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1455. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1456. }
  1457. /*
  1458. * Component: Small Box
  1459. * --------------------
  1460. */
  1461. .small-box {
  1462. border-radius: 2px;
  1463. position: relative;
  1464. display: block;
  1465. margin-bottom: 20px;
  1466. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1467. }
  1468. .small-box > .inner {
  1469. padding: 10px;
  1470. }
  1471. .small-box > .small-box-footer {
  1472. position: relative;
  1473. text-align: center;
  1474. padding: 3px 0;
  1475. color: #fff;
  1476. color: rgba(255, 255, 255, 0.8);
  1477. display: block;
  1478. z-index: 10;
  1479. background: rgba(0, 0, 0, 0.1);
  1480. text-decoration: none;
  1481. }
  1482. .small-box > .small-box-footer:hover {
  1483. color: #fff;
  1484. background: rgba(0, 0, 0, 0.15);
  1485. }
  1486. .small-box h3 {
  1487. font-size: 38px;
  1488. font-weight: bold;
  1489. margin: 0 0 10px 0;
  1490. white-space: nowrap;
  1491. padding: 0;
  1492. }
  1493. .small-box p {
  1494. font-size: 15px;
  1495. }
  1496. .small-box p > small {
  1497. display: block;
  1498. color: #f9f9f9;
  1499. font-size: 13px;
  1500. margin-top: 5px;
  1501. }
  1502. .small-box h3,
  1503. .small-box p {
  1504. z-index: 5;
  1505. }
  1506. .small-box .icon {
  1507. -webkit-transition: all 0.3s linear;
  1508. -o-transition: all 0.3s linear;
  1509. transition: all 0.3s linear;
  1510. position: absolute;
  1511. top: -10px;
  1512. right: 10px;
  1513. z-index: 0;
  1514. font-size: 90px;
  1515. color: rgba(0, 0, 0, 0.15);
  1516. }
  1517. .small-box:hover {
  1518. text-decoration: none;
  1519. color: #f9f9f9;
  1520. }
  1521. .small-box:hover .icon {
  1522. font-size: 95px;
  1523. }
  1524. @media (max-width: 767px) {
  1525. .small-box {
  1526. text-align: center;
  1527. }
  1528. .small-box .icon {
  1529. display: none;
  1530. }
  1531. .small-box p {
  1532. font-size: 12px;
  1533. }
  1534. }
  1535. /*
  1536. * Component: Box
  1537. * --------------
  1538. */
  1539. .box {
  1540. position: relative;
  1541. border-radius: 3px;
  1542. background: #ffffff;
  1543. border-top: 3px solid #d2d6de;
  1544. margin-bottom: 20px;
  1545. width: 100%;
  1546. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1547. }
  1548. .box.box-primary {
  1549. border-top-color: #3c8dbc;
  1550. }
  1551. .box.box-info {
  1552. border-top-color: #00c0ef;
  1553. }
  1554. .box.box-danger {
  1555. border-top-color: #dd4b39;
  1556. }
  1557. .box.box-warning {
  1558. border-top-color: #f39c12;
  1559. }
  1560. .box.box-success {
  1561. border-top-color: #00a65a;
  1562. }
  1563. .box.box-default {
  1564. border-top-color: #d2d6de;
  1565. }
  1566. .box.collapsed-box .box-body,
  1567. .box.collapsed-box .box-footer {
  1568. display: none;
  1569. }
  1570. .box .nav-stacked > li {
  1571. border-bottom: 1px solid #f4f4f4;
  1572. margin: 0;
  1573. }
  1574. .box .nav-stacked > li:last-of-type {
  1575. border-bottom: none;
  1576. }
  1577. .box.height-control .box-body {
  1578. max-height: 300px;
  1579. overflow: auto;
  1580. }
  1581. .box .border-right {
  1582. border-right: 1px solid #f4f4f4;
  1583. }
  1584. .box .border-left {
  1585. border-left: 1px solid #f4f4f4;
  1586. }
  1587. .box.box-solid {
  1588. border-top: 0;
  1589. }
  1590. .box.box-solid > .box-header .btn.btn-default {
  1591. background: transparent;
  1592. }
  1593. .box.box-solid > .box-header .btn:hover,
  1594. .box.box-solid > .box-header a:hover {
  1595. background: rgba(0, 0, 0, 0.1);
  1596. }
  1597. .box.box-solid.box-default {
  1598. border: 1px solid #d2d6de;
  1599. }
  1600. .box.box-solid.box-default > .box-header {
  1601. color: #444444;
  1602. background: #d2d6de;
  1603. background-color: #d2d6de;
  1604. }
  1605. .box.box-solid.box-default > .box-header a,
  1606. .box.box-solid.box-default > .box-header .btn {
  1607. color: #444444;
  1608. }
  1609. .box.box-solid.box-primary {
  1610. border: 1px solid #3c8dbc;
  1611. }
  1612. .box.box-solid.box-primary > .box-header {
  1613. color: #ffffff;
  1614. background: #3c8dbc;
  1615. background-color: #3c8dbc;
  1616. }
  1617. .box.box-solid.box-primary > .box-header a,
  1618. .box.box-solid.box-primary > .box-header .btn {
  1619. color: #ffffff;
  1620. }
  1621. .box.box-solid.box-info {
  1622. border: 1px solid #00c0ef;
  1623. }
  1624. .box.box-solid.box-info > .box-header {
  1625. color: #ffffff;
  1626. background: #00c0ef;
  1627. background-color: #00c0ef;
  1628. }
  1629. .box.box-solid.box-info > .box-header a,
  1630. .box.box-solid.box-info > .box-header .btn {
  1631. color: #ffffff;
  1632. }
  1633. .box.box-solid.box-danger {
  1634. border: 1px solid #dd4b39;
  1635. }
  1636. .box.box-solid.box-danger > .box-header {
  1637. color: #ffffff;
  1638. background: #dd4b39;
  1639. background-color: #dd4b39;
  1640. }
  1641. .box.box-solid.box-danger > .box-header a,
  1642. .box.box-solid.box-danger > .box-header .btn {
  1643. color: #ffffff;
  1644. }
  1645. .box.box-solid.box-warning {
  1646. border: 1px solid #f39c12;
  1647. }
  1648. .box.box-solid.box-warning > .box-header {
  1649. color: #ffffff;
  1650. background: #f39c12;
  1651. background-color: #f39c12;
  1652. }
  1653. .box.box-solid.box-warning > .box-header a,
  1654. .box.box-solid.box-warning > .box-header .btn {
  1655. color: #ffffff;
  1656. }
  1657. .box.box-solid.box-success {
  1658. border: 1px solid #00a65a;
  1659. }
  1660. .box.box-solid.box-success > .box-header {
  1661. color: #ffffff;
  1662. background: #00a65a;
  1663. background-color: #00a65a;
  1664. }
  1665. .box.box-solid.box-success > .box-header a,
  1666. .box.box-solid.box-success > .box-header .btn {
  1667. color: #ffffff;
  1668. }
  1669. .box.box-solid > .box-header > .box-tools .btn {
  1670. border: 0;
  1671. box-shadow: none;
  1672. }
  1673. .box.box-solid[class*='bg'] > .box-header {
  1674. color: #fff;
  1675. }
  1676. .box .box-group > .box {
  1677. margin-bottom: 5px;
  1678. }
  1679. .box .knob-label {
  1680. text-align: center;
  1681. color: #333;
  1682. font-weight: 100;
  1683. font-size: 12px;
  1684. margin-bottom: 0.3em;
  1685. }
  1686. .box > .overlay,
  1687. .overlay-wrapper > .overlay,
  1688. .box > .loading-img,
  1689. .overlay-wrapper > .loading-img {
  1690. position: absolute;
  1691. top: 0;
  1692. left: 0;
  1693. width: 100%;
  1694. height: 100%;
  1695. }
  1696. .box .overlay,
  1697. .overlay-wrapper .overlay {
  1698. z-index: 50;
  1699. background: rgba(255, 255, 255, 0.7);
  1700. border-radius: 3px;
  1701. }
  1702. .box .overlay > .fa,
  1703. .overlay-wrapper .overlay > .fa {
  1704. position: absolute;
  1705. top: 50%;
  1706. left: 50%;
  1707. margin-left: -15px;
  1708. margin-top: -15px;
  1709. color: #000;
  1710. font-size: 30px;
  1711. }
  1712. .box .overlay.dark,
  1713. .overlay-wrapper .overlay.dark {
  1714. background: rgba(0, 0, 0, 0.5);
  1715. }
  1716. .box-header:before,
  1717. .box-body:before,
  1718. .box-footer:before,
  1719. .box-header:after,
  1720. .box-body:after,
  1721. .box-footer:after {
  1722. content: " ";
  1723. display: table;
  1724. }
  1725. .box-header:after,
  1726. .box-body:after,
  1727. .box-footer:after {
  1728. clear: both;
  1729. }
  1730. .box-header {
  1731. color: #444;
  1732. display: block;
  1733. padding: 10px;
  1734. position: relative;
  1735. }
  1736. .box-header.with-border {
  1737. border-bottom: 1px solid #f4f4f4;
  1738. }
  1739. .collapsed-box .box-header.with-border {
  1740. border-bottom: none;
  1741. }
  1742. .box-header > .fa,
  1743. .box-header > .glyphicon,
  1744. .box-header > .ion,
  1745. .box-header .box-title {
  1746. display: inline-block;
  1747. font-size: 18px;
  1748. margin: 0;
  1749. line-height: 1;
  1750. }
  1751. .box-header > .fa,
  1752. .box-header > .glyphicon,
  1753. .box-header > .ion {
  1754. margin-right: 5px;
  1755. }
  1756. .box-header > .box-tools {
  1757. position: absolute;
  1758. right: 10px;
  1759. top: 5px;
  1760. }
  1761. .box-header > .box-tools [data-toggle="tooltip"] {
  1762. position: relative;
  1763. }
  1764. .box-header > .box-tools.pull-right .dropdown-menu {
  1765. right: 0;
  1766. left: auto;
  1767. }
  1768. .box-header > .box-tools .dropdown-menu > li > a {
  1769. color: #444!important;
  1770. }
  1771. .btn-box-tool {
  1772. padding: 5px;
  1773. font-size: 12px;
  1774. background: transparent;
  1775. color: #97a0b3;
  1776. }
  1777. .open .btn-box-tool,
  1778. .btn-box-tool:hover {
  1779. color: #606c84;
  1780. }
  1781. .btn-box-tool.btn:active {
  1782. box-shadow: none;
  1783. }
  1784. .box-body {
  1785. border-top-left-radius: 0;
  1786. border-top-right-radius: 0;
  1787. border-bottom-right-radius: 3px;
  1788. border-bottom-left-radius: 3px;
  1789. padding: 10px;
  1790. }
  1791. .no-header .box-body {
  1792. border-top-right-radius: 3px;
  1793. border-top-left-radius: 3px;
  1794. }
  1795. .box-body > .table {
  1796. margin-bottom: 0;
  1797. }
  1798. .box-body .fc {
  1799. margin-top: 5px;
  1800. }
  1801. .box-body .full-width-chart {
  1802. margin: -19px;
  1803. }
  1804. .box-body.no-padding .full-width-chart {
  1805. margin: -9px;
  1806. }
  1807. .box-body .box-pane {
  1808. border-top-left-radius: 0;
  1809. border-top-right-radius: 0;
  1810. border-bottom-right-radius: 0;
  1811. border-bottom-left-radius: 3px;
  1812. }
  1813. .box-body .box-pane-right {
  1814. border-top-left-radius: 0;
  1815. border-top-right-radius: 0;
  1816. border-bottom-right-radius: 3px;
  1817. border-bottom-left-radius: 0;
  1818. }
  1819. .box-footer {
  1820. border-top-left-radius: 0;
  1821. border-top-right-radius: 0;
  1822. border-bottom-right-radius: 3px;
  1823. border-bottom-left-radius: 3px;
  1824. border-top: 1px solid #f4f4f4;
  1825. padding: 10px;
  1826. background-color: #ffffff;
  1827. }
  1828. .chart-legend {
  1829. margin: 10px 0;
  1830. }
  1831. @media (max-width: 991px) {
  1832. .chart-legend > li {
  1833. float: left;
  1834. margin-right: 10px;
  1835. }
  1836. }
  1837. .box-comments {
  1838. background: #f7f7f7;
  1839. }
  1840. .box-comments .box-comment {
  1841. padding: 8px 0;
  1842. border-bottom: 1px solid #eee;
  1843. }
  1844. .box-comments .box-comment:before,
  1845. .box-comments .box-comment:after {
  1846. content: " ";
  1847. display: table;
  1848. }
  1849. .box-comments .box-comment:after {
  1850. clear: both;
  1851. }
  1852. .box-comments .box-comment:last-of-type {
  1853. border-bottom: 0;
  1854. }
  1855. .box-comments .box-comment:first-of-type {
  1856. padding-top: 0;
  1857. }
  1858. .box-comments .box-comment img {
  1859. float: left;
  1860. }
  1861. .box-comments .comment-text {
  1862. margin-left: 40px;
  1863. color: #555;
  1864. }
  1865. .box-comments .username {
  1866. color: #444;
  1867. display: block;
  1868. font-weight: 600;
  1869. }
  1870. .box-comments .text-muted {
  1871. font-weight: 400;
  1872. font-size: 12px;
  1873. }
  1874. /* Widget: TODO LIST */
  1875. .todo-list {
  1876. margin: 0;
  1877. padding: 0;
  1878. list-style: none;
  1879. overflow: auto;
  1880. }
  1881. .todo-list > li {
  1882. border-radius: 2px;
  1883. padding: 10px;
  1884. background: #f4f4f4;
  1885. margin-bottom: 2px;
  1886. border-left: 2px solid #e6e7e8;
  1887. color: #444;
  1888. }
  1889. .todo-list > li:last-of-type {
  1890. margin-bottom: 0;
  1891. }
  1892. .todo-list > li > input[type='checkbox'] {
  1893. margin: 0 10px 0 5px;
  1894. }
  1895. .todo-list > li .text {
  1896. display: inline-block;
  1897. margin-left: 5px;
  1898. font-weight: 600;
  1899. }
  1900. .todo-list > li .label {
  1901. margin-left: 10px;
  1902. font-size: 9px;
  1903. }
  1904. .todo-list > li .tools {
  1905. display: none;
  1906. float: right;
  1907. color: #dd4b39;
  1908. }
  1909. .todo-list > li .tools > .fa,
  1910. .todo-list > li .tools > .glyphicon,
  1911. .todo-list > li .tools > .ion {
  1912. margin-right: 5px;
  1913. cursor: pointer;
  1914. }
  1915. .todo-list > li:hover .tools {
  1916. display: inline-block;
  1917. }
  1918. .todo-list > li.done {
  1919. color: #999;
  1920. }
  1921. .todo-list > li.done .text {
  1922. text-decoration: line-through;
  1923. font-weight: 500;
  1924. }
  1925. .todo-list > li.done .label {
  1926. background: #d2d6de !important;
  1927. }
  1928. .todo-list .danger {
  1929. border-left-color: #dd4b39;
  1930. }
  1931. .todo-list .warning {
  1932. border-left-color: #f39c12;
  1933. }
  1934. .todo-list .info {
  1935. border-left-color: #00c0ef;
  1936. }
  1937. .todo-list .success {
  1938. border-left-color: #00a65a;
  1939. }
  1940. .todo-list .primary {
  1941. border-left-color: #3c8dbc;
  1942. }
  1943. .todo-list .handle {
  1944. display: inline-block;
  1945. cursor: move;
  1946. margin: 0 5px;
  1947. }
  1948. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  1949. .chat {
  1950. padding: 5px 20px 5px 10px;
  1951. }
  1952. .chat .item {
  1953. margin-bottom: 10px;
  1954. }
  1955. .chat .item:before,
  1956. .chat .item:after {
  1957. content: " ";
  1958. display: table;
  1959. }
  1960. .chat .item:after {
  1961. clear: both;
  1962. }
  1963. .chat .item > img {
  1964. width: 40px;
  1965. height: 40px;
  1966. border: 2px solid transparent;
  1967. border-radius: 50%;
  1968. }
  1969. .chat .item > .online {
  1970. border: 2px solid #00a65a;
  1971. }
  1972. .chat .item > .offline {
  1973. border: 2px solid #dd4b39;
  1974. }
  1975. .chat .item > .message {
  1976. margin-left: 55px;
  1977. margin-top: -40px;
  1978. }
  1979. .chat .item > .message > .name {
  1980. display: block;
  1981. font-weight: 600;
  1982. }
  1983. .chat .item > .attachment {
  1984. border-radius: 3px;
  1985. background: #f4f4f4;
  1986. margin-left: 65px;
  1987. margin-right: 15px;
  1988. padding: 10px;
  1989. }
  1990. .chat .item > .attachment > h4 {
  1991. margin: 0 0 5px 0;
  1992. font-weight: 600;
  1993. font-size: 14px;
  1994. }
  1995. .chat .item > .attachment > p,
  1996. .chat .item > .attachment > .filename {
  1997. font-weight: 600;
  1998. font-size: 13px;
  1999. font-style: italic;
  2000. margin: 0;
  2001. }
  2002. .chat .item > .attachment:before,
  2003. .chat .item > .attachment:after {
  2004. content: " ";
  2005. display: table;
  2006. }
  2007. .chat .item > .attachment:after {
  2008. clear: both;
  2009. }
  2010. .box-input {
  2011. max-width: 200px;
  2012. }
  2013. .modal .panel-body {
  2014. color: #444;
  2015. }
  2016. /*
  2017. * Component: Info Box
  2018. * -------------------
  2019. */
  2020. .info-box {
  2021. display: block;
  2022. min-height: 90px;
  2023. background: #fff;
  2024. width: 100%;
  2025. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2026. border-radius: 2px;
  2027. margin-bottom: 15px;
  2028. }
  2029. .info-box small {
  2030. font-size: 14px;
  2031. }
  2032. .info-box .progress {
  2033. background: rgba(0, 0, 0, 0.2);
  2034. margin: 5px -10px 5px -10px;
  2035. height: 2px;
  2036. }
  2037. .info-box .progress,
  2038. .info-box .progress .progress-bar {
  2039. border-radius: 0;
  2040. }
  2041. .info-box .progress .progress-bar {
  2042. background: #fff;
  2043. }
  2044. .info-box-icon {
  2045. border-top-left-radius: 2px;
  2046. border-top-right-radius: 0;
  2047. border-bottom-right-radius: 0;
  2048. border-bottom-left-radius: 2px;
  2049. display: block;
  2050. float: left;
  2051. height: 90px;
  2052. width: 90px;
  2053. text-align: center;
  2054. font-size: 45px;
  2055. line-height: 90px;
  2056. background: rgba(0, 0, 0, 0.2);
  2057. }
  2058. .info-box-icon > img {
  2059. max-width: 100%;
  2060. }
  2061. .info-box-content {
  2062. padding: 5px 10px;
  2063. margin-left: 90px;
  2064. }
  2065. .info-box-number {
  2066. display: block;
  2067. font-weight: bold;
  2068. font-size: 18px;
  2069. }
  2070. .progress-description,
  2071. .info-box-text {
  2072. display: block;
  2073. font-size: 14px;
  2074. white-space: nowrap;
  2075. overflow: hidden;
  2076. text-overflow: ellipsis;
  2077. }
  2078. .info-box-text {
  2079. text-transform: uppercase;
  2080. }
  2081. .info-box-more {
  2082. display: block;
  2083. }
  2084. .progress-description {
  2085. margin: 0;
  2086. }
  2087. /*
  2088. * Component: Timeline
  2089. * -------------------
  2090. */
  2091. .timeline {
  2092. position: relative;
  2093. margin: 0 0 30px 0;
  2094. padding: 0;
  2095. list-style: none;
  2096. }
  2097. .timeline:before {
  2098. content: '';
  2099. position: absolute;
  2100. top: 0;
  2101. bottom: 0;
  2102. width: 4px;
  2103. background: #ddd;
  2104. left: 31px;
  2105. margin: 0;
  2106. border-radius: 2px;
  2107. }
  2108. .timeline > li {
  2109. position: relative;
  2110. margin-right: 10px;
  2111. margin-bottom: 15px;
  2112. }
  2113. .timeline > li:before,
  2114. .timeline > li:after {
  2115. content: " ";
  2116. display: table;
  2117. }
  2118. .timeline > li:after {
  2119. clear: both;
  2120. }
  2121. .timeline > li > .timeline-item {
  2122. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2123. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2124. border-radius: 3px;
  2125. margin-top: 0;
  2126. background: #fff;
  2127. color: #444;
  2128. margin-left: 60px;
  2129. margin-right: 15px;
  2130. padding: 0;
  2131. position: relative;
  2132. }
  2133. .timeline > li > .timeline-item > .time {
  2134. color: #999;
  2135. float: right;
  2136. padding: 10px;
  2137. font-size: 12px;
  2138. }
  2139. .timeline > li > .timeline-item > .timeline-header {
  2140. margin: 0;
  2141. color: #555;
  2142. border-bottom: 1px solid #f4f4f4;
  2143. padding: 10px;
  2144. font-size: 16px;
  2145. line-height: 1.1;
  2146. }
  2147. .timeline > li > .timeline-item > .timeline-header > a {
  2148. font-weight: 600;
  2149. }
  2150. .timeline > li > .timeline-item > .timeline-body,
  2151. .timeline > li > .timeline-item > .timeline-footer {
  2152. padding: 10px;
  2153. }
  2154. .timeline > li > .fa,
  2155. .timeline > li > .glyphicon,
  2156. .timeline > li > .ion {
  2157. width: 30px;
  2158. height: 30px;
  2159. font-size: 15px;
  2160. line-height: 30px;
  2161. position: absolute;
  2162. color: #666;
  2163. background: #d2d6de;
  2164. border-radius: 50%;
  2165. text-align: center;
  2166. left: 18px;
  2167. top: 0;
  2168. }
  2169. .timeline > .time-label > span {
  2170. font-weight: 600;
  2171. padding: 5px;
  2172. display: inline-block;
  2173. background-color: #fff;
  2174. border-radius: 4px;
  2175. }
  2176. .timeline-inverse > li > .timeline-item {
  2177. background: #f0f0f0;
  2178. border: 1px solid #ddd;
  2179. -webkit-box-shadow: none;
  2180. box-shadow: none;
  2181. }
  2182. .timeline-inverse > li > .timeline-item > .timeline-header {
  2183. border-bottom-color: #ddd;
  2184. }
  2185. /*
  2186. * Component: Button
  2187. * -----------------
  2188. */
  2189. .btn {
  2190. border-radius: 3px;
  2191. -webkit-box-shadow: none;
  2192. box-shadow: none;
  2193. border: 1px solid transparent;
  2194. }
  2195. .btn.uppercase {
  2196. text-transform: uppercase;
  2197. }
  2198. .btn.btn-flat {
  2199. border-radius: 0;
  2200. -webkit-box-shadow: none;
  2201. -moz-box-shadow: none;
  2202. box-shadow: none;
  2203. border-width: 1px;
  2204. }
  2205. .btn:active {
  2206. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2207. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2208. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2209. }
  2210. .btn:focus {
  2211. outline: none;
  2212. }
  2213. .btn.btn-file {
  2214. position: relative;
  2215. overflow: hidden;
  2216. }
  2217. .btn.btn-file > input[type='file'] {
  2218. position: absolute;
  2219. top: 0;
  2220. right: 0;
  2221. min-width: 100%;
  2222. min-height: 100%;
  2223. font-size: 100px;
  2224. text-align: right;
  2225. opacity: 0;
  2226. filter: alpha(opacity=0);
  2227. outline: none;
  2228. background: white;
  2229. cursor: inherit;
  2230. display: block;
  2231. }
  2232. .btn-default {
  2233. background-color: #f4f4f4;
  2234. color: #444;
  2235. border-color: #ddd;
  2236. }
  2237. .btn-default:hover,
  2238. .btn-default:active,
  2239. .btn-default.hover {
  2240. background-color: #e7e7e7;
  2241. }
  2242. .btn-primary {
  2243. background-color: #3c8dbc;
  2244. border-color: #367fa9;
  2245. }
  2246. .btn-primary:hover,
  2247. .btn-primary:active,
  2248. .btn-primary.hover {
  2249. background-color: #367fa9;
  2250. }
  2251. .btn-success {
  2252. background-color: #00a65a;
  2253. border-color: #008d4c;
  2254. }
  2255. .btn-success:hover,
  2256. .btn-success:active,
  2257. .btn-success.hover {
  2258. background-color: #008d4c;
  2259. }
  2260. .btn-info {
  2261. background-color: #00c0ef;
  2262. border-color: #00acd6;
  2263. }
  2264. .btn-info:hover,
  2265. .btn-info:active,
  2266. .btn-info.hover {
  2267. background-color: #00acd6;
  2268. }
  2269. .btn-danger {
  2270. background-color: #dd4b39;
  2271. border-color: #d73925;
  2272. }
  2273. .btn-danger:hover,
  2274. .btn-danger:active,
  2275. .btn-danger.hover {
  2276. background-color: #d73925;
  2277. }
  2278. .btn-warning {
  2279. background-color: #f39c12;
  2280. border-color: #e08e0b;
  2281. }
  2282. .btn-warning:hover,
  2283. .btn-warning:active,
  2284. .btn-warning.hover {
  2285. background-color: #e08e0b;
  2286. }
  2287. .btn-outline {
  2288. border: 1px solid #fff;
  2289. background: transparent;
  2290. color: #fff;
  2291. }
  2292. .btn-outline:hover,
  2293. .btn-outline:focus,
  2294. .btn-outline:active {
  2295. color: rgba(255, 255, 255, 0.7);
  2296. border-color: rgba(255, 255, 255, 0.7);
  2297. }
  2298. .btn-link {
  2299. -webkit-box-shadow: none;
  2300. box-shadow: none;
  2301. }
  2302. .btn[class*='bg-']:hover {
  2303. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2304. box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2305. }
  2306. .btn-app {
  2307. border-radius: 3px;
  2308. position: relative;
  2309. padding: 15px 5px;
  2310. margin: 0 0 10px 10px;
  2311. min-width: 80px;
  2312. height: 60px;
  2313. text-align: center;
  2314. color: #666;
  2315. border: 1px solid #ddd;
  2316. background-color: #f4f4f4;
  2317. font-size: 12px;
  2318. }
  2319. .btn-app > .fa,
  2320. .btn-app > .glyphicon,
  2321. .btn-app > .ion {
  2322. font-size: 20px;
  2323. display: block;
  2324. }
  2325. .btn-app:hover {
  2326. background: #f4f4f4;
  2327. color: #444;
  2328. border-color: #aaa;
  2329. }
  2330. .btn-app:active,
  2331. .btn-app:focus {
  2332. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2333. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2334. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2335. }
  2336. .btn-app > .badge {
  2337. position: absolute;
  2338. top: -3px;
  2339. right: -10px;
  2340. font-size: 10px;
  2341. font-weight: 400;
  2342. }
  2343. /*
  2344. * Component: Callout
  2345. * ------------------
  2346. */
  2347. .callout {
  2348. border-radius: 3px;
  2349. margin: 0 0 20px 0;
  2350. padding: 15px 30px 15px 15px;
  2351. border-left: 5px solid #eee;
  2352. }
  2353. .callout a {
  2354. color: #fff;
  2355. text-decoration: underline;
  2356. }
  2357. .callout a:hover {
  2358. color: #eee;
  2359. }
  2360. .callout h4 {
  2361. margin-top: 0;
  2362. font-weight: 600;
  2363. }
  2364. .callout p:last-child {
  2365. margin-bottom: 0;
  2366. }
  2367. .callout code,
  2368. .callout .highlight {
  2369. background-color: #fff;
  2370. }
  2371. .callout.callout-danger {
  2372. border-color: #c23321;
  2373. }
  2374. .callout.callout-warning {
  2375. border-color: #c87f0a;
  2376. }
  2377. .callout.callout-info {
  2378. border-color: #0097bc;
  2379. }
  2380. .callout.callout-success {
  2381. border-color: #00733e;
  2382. }
  2383. /*
  2384. * Component: alert
  2385. * ----------------
  2386. */
  2387. .alert {
  2388. border-radius: 3px;
  2389. }
  2390. .alert h4 {
  2391. font-weight: 600;
  2392. }
  2393. .alert .icon {
  2394. margin-right: 10px;
  2395. }
  2396. .alert .close {
  2397. color: #000;
  2398. opacity: 0.2;
  2399. filter: alpha(opacity=20);
  2400. }
  2401. .alert .close:hover {
  2402. opacity: 0.5;
  2403. filter: alpha(opacity=50);
  2404. }
  2405. .alert a {
  2406. color: #fff;
  2407. text-decoration: underline;
  2408. }
  2409. .alert-success {
  2410. border-color: #008d4c;
  2411. }
  2412. .alert-danger,
  2413. .alert-error {
  2414. border-color: #d73925;
  2415. }
  2416. .alert-warning {
  2417. border-color: #e08e0b;
  2418. }
  2419. .alert-info {
  2420. border-color: #00acd6;
  2421. }
  2422. /*
  2423. * Component: Nav
  2424. * --------------
  2425. */
  2426. .nav > li > a:hover,
  2427. .nav > li > a:active,
  2428. .nav > li > a:focus {
  2429. color: #444;
  2430. background: #f7f7f7;
  2431. }
  2432. /* NAV PILLS */
  2433. .nav-pills > li > a {
  2434. border-radius: 0;
  2435. border-top: 3px solid transparent;
  2436. color: #444;
  2437. }
  2438. .nav-pills > li > a > .fa,
  2439. .nav-pills > li > a > .glyphicon,
  2440. .nav-pills > li > a > .ion {
  2441. margin-right: 5px;
  2442. }
  2443. .nav-pills > li.active > a,
  2444. .nav-pills > li.active > a:hover,
  2445. .nav-pills > li.active > a:focus {
  2446. border-top-color: #3c8dbc;
  2447. }
  2448. .nav-pills > li.active > a {
  2449. font-weight: 600;
  2450. }
  2451. /* NAV STACKED */
  2452. .nav-stacked > li > a {
  2453. border-radius: 0;
  2454. border-top: 0;
  2455. border-left: 3px solid transparent;
  2456. color: #444;
  2457. }
  2458. .nav-stacked > li.active > a,
  2459. .nav-stacked > li.active > a:hover {
  2460. background: transparent;
  2461. color: #444;
  2462. border-top: 0;
  2463. border-left-color: #3c8dbc;
  2464. }
  2465. .nav-stacked > li.header {
  2466. border-bottom: 1px solid #ddd;
  2467. color: #777;
  2468. margin-bottom: 10px;
  2469. padding: 5px 10px;
  2470. text-transform: uppercase;
  2471. }
  2472. /* NAV TABS */
  2473. .nav-tabs-custom {
  2474. margin-bottom: 20px;
  2475. background: #fff;
  2476. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2477. border-radius: 3px;
  2478. }
  2479. .nav-tabs-custom > .nav-tabs {
  2480. margin: 0;
  2481. border-bottom-color: #f4f4f4;
  2482. border-top-right-radius: 3px;
  2483. border-top-left-radius: 3px;
  2484. }
  2485. .nav-tabs-custom > .nav-tabs > li {
  2486. border-top: 3px solid transparent;
  2487. margin-bottom: -2px;
  2488. margin-right: 5px;
  2489. }
  2490. .nav-tabs-custom > .nav-tabs > li.disabled > a {
  2491. color: #777;
  2492. }
  2493. .nav-tabs-custom > .nav-tabs > li > a {
  2494. color: #444;
  2495. border-radius: 0;
  2496. }
  2497. .nav-tabs-custom > .nav-tabs > li > a.text-muted {
  2498. color: #999;
  2499. }
  2500. .nav-tabs-custom > .nav-tabs > li > a,
  2501. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2502. background: transparent;
  2503. margin: 0;
  2504. }
  2505. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2506. color: #999;
  2507. }
  2508. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  2509. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  2510. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  2511. border-color: transparent;
  2512. }
  2513. .nav-tabs-custom > .nav-tabs > li.active {
  2514. border-top-color: #3c8dbc;
  2515. }
  2516. .nav-tabs-custom > .nav-tabs > li.active > a,
  2517. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  2518. background-color: #fff;
  2519. color: #444;
  2520. }
  2521. .nav-tabs-custom > .nav-tabs > li.active > a {
  2522. border-top-color: transparent;
  2523. border-left-color: #f4f4f4;
  2524. border-right-color: #f4f4f4;
  2525. }
  2526. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  2527. margin-left: 0;
  2528. }
  2529. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  2530. border-left-color: transparent;
  2531. }
  2532. .nav-tabs-custom > .nav-tabs.pull-right {
  2533. float: none !important;
  2534. }
  2535. .nav-tabs-custom > .nav-tabs.pull-right > li {
  2536. float: right;
  2537. }
  2538. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  2539. margin-right: 0;
  2540. }
  2541. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  2542. border-left-width: 1px;
  2543. }
  2544. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  2545. border-left-color: #f4f4f4;
  2546. border-right-color: transparent;
  2547. }
  2548. .nav-tabs-custom > .nav-tabs > li.header {
  2549. line-height: 35px;
  2550. padding: 0 10px;
  2551. font-size: 20px;
  2552. color: #444;
  2553. }
  2554. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  2555. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  2556. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  2557. margin-right: 5px;
  2558. }
  2559. .nav-tabs-custom > .tab-content {
  2560. background: #fff;
  2561. padding: 10px;
  2562. border-bottom-right-radius: 3px;
  2563. border-bottom-left-radius: 3px;
  2564. }
  2565. .nav-tabs-custom .dropdown.open > a:active,
  2566. .nav-tabs-custom .dropdown.open > a:focus {
  2567. background: transparent;
  2568. color: #999;
  2569. }
  2570. .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  2571. border-top-color: #3c8dbc;
  2572. }
  2573. .nav-tabs-custom.tab-info > .nav-tabs > li.active {
  2574. border-top-color: #00c0ef;
  2575. }
  2576. .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  2577. border-top-color: #dd4b39;
  2578. }
  2579. .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  2580. border-top-color: #f39c12;
  2581. }
  2582. .nav-tabs-custom.tab-success > .nav-tabs > li.active {
  2583. border-top-color: #00a65a;
  2584. }
  2585. .nav-tabs-custom.tab-default > .nav-tabs > li.active {
  2586. border-top-color: #d2d6de;
  2587. }
  2588. /* PAGINATION */
  2589. .pagination > li > a {
  2590. background: #fafafa;
  2591. color: #666;
  2592. }
  2593. .pagination.pagination-flat > li > a {
  2594. border-radius: 0 !important;
  2595. }
  2596. /*
  2597. * Component: Products List
  2598. * ------------------------
  2599. */
  2600. .products-list {
  2601. list-style: none;
  2602. margin: 0;
  2603. padding: 0;
  2604. }
  2605. .products-list > .item {
  2606. border-radius: 3px;
  2607. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2608. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2609. padding: 10px 0;
  2610. background: #fff;
  2611. }
  2612. .products-list > .item:before,
  2613. .products-list > .item:after {
  2614. content: " ";
  2615. display: table;
  2616. }
  2617. .products-list > .item:after {
  2618. clear: both;
  2619. }
  2620. .products-list .product-img {
  2621. float: left;
  2622. }
  2623. .products-list .product-img img {
  2624. width: 50px;
  2625. height: 50px;
  2626. }
  2627. .products-list .product-info {
  2628. margin-left: 60px;
  2629. }
  2630. .products-list .product-title {
  2631. font-weight: 600;
  2632. }
  2633. .products-list .product-description {
  2634. display: block;
  2635. color: #999;
  2636. overflow: hidden;
  2637. white-space: nowrap;
  2638. text-overflow: ellipsis;
  2639. }
  2640. .product-list-in-box > .item {
  2641. -webkit-box-shadow: none;
  2642. box-shadow: none;
  2643. border-radius: 0;
  2644. border-bottom: 1px solid #f4f4f4;
  2645. }
  2646. .product-list-in-box > .item:last-of-type {
  2647. border-bottom-width: 0;
  2648. }
  2649. /*
  2650. * Component: Table
  2651. * ----------------
  2652. */
  2653. .table > thead > tr > th,
  2654. .table > tbody > tr > th,
  2655. .table > tfoot > tr > th,
  2656. .table > thead > tr > td,
  2657. .table > tbody > tr > td,
  2658. .table > tfoot > tr > td {
  2659. border-top: 1px solid #f4f4f4;
  2660. }
  2661. .table > thead > tr > th {
  2662. border-bottom: 2px solid #f4f4f4;
  2663. }
  2664. .table tr td .progress {
  2665. margin-top: 5px;
  2666. }
  2667. .table-bordered {
  2668. border: 1px solid #f4f4f4;
  2669. }
  2670. .table-bordered > thead > tr > th,
  2671. .table-bordered > tbody > tr > th,
  2672. .table-bordered > tfoot > tr > th,
  2673. .table-bordered > thead > tr > td,
  2674. .table-bordered > tbody > tr > td,
  2675. .table-bordered > tfoot > tr > td {
  2676. border: 1px solid #f4f4f4;
  2677. }
  2678. .table-bordered > thead > tr > th,
  2679. .table-bordered > thead > tr > td {
  2680. border-bottom-width: 2px;
  2681. }
  2682. .table.no-border,
  2683. .table.no-border td,
  2684. .table.no-border th {
  2685. border: 0;
  2686. }
  2687. /* .text-center in tables */
  2688. table.text-center,
  2689. table.text-center td,
  2690. table.text-center th {
  2691. text-align: center;
  2692. }
  2693. .table.align th {
  2694. text-align: left;
  2695. }
  2696. .table.align td {
  2697. text-align: right;
  2698. }
  2699. /*
  2700. * Component: Label
  2701. * ----------------
  2702. */
  2703. .label-default {
  2704. background-color: #d2d6de;
  2705. color: #444;
  2706. }
  2707. /*
  2708. * Component: Direct Chat
  2709. * ----------------------
  2710. */
  2711. .direct-chat .box-body {
  2712. border-bottom-right-radius: 0;
  2713. border-bottom-left-radius: 0;
  2714. position: relative;
  2715. overflow-x: hidden;
  2716. padding: 0;
  2717. }
  2718. .direct-chat.chat-pane-open .direct-chat-contacts {
  2719. -webkit-transform: translate(0, 0);
  2720. -ms-transform: translate(0, 0);
  2721. -o-transform: translate(0, 0);
  2722. transform: translate(0, 0);
  2723. }
  2724. .direct-chat-messages {
  2725. -webkit-transform: translate(0, 0);
  2726. -ms-transform: translate(0, 0);
  2727. -o-transform: translate(0, 0);
  2728. transform: translate(0, 0);
  2729. padding: 10px;
  2730. height: 250px;
  2731. overflow: auto;
  2732. }
  2733. .direct-chat-msg,
  2734. .direct-chat-text {
  2735. display: block;
  2736. }
  2737. .direct-chat-msg {
  2738. margin-bottom: 10px;
  2739. }
  2740. .direct-chat-msg:before,
  2741. .direct-chat-msg:after {
  2742. content: " ";
  2743. display: table;
  2744. }
  2745. .direct-chat-msg:after {
  2746. clear: both;
  2747. }
  2748. .direct-chat-messages,
  2749. .direct-chat-contacts {
  2750. -webkit-transition: -webkit-transform 0.5s ease-in-out;
  2751. -moz-transition: -moz-transform 0.5s ease-in-out;
  2752. -o-transition: -o-transform 0.5s ease-in-out;
  2753. transition: transform 0.5s ease-in-out;
  2754. }
  2755. .direct-chat-text {
  2756. border-radius: 5px;
  2757. position: relative;
  2758. padding: 5px 10px;
  2759. background: #d2d6de;
  2760. border: 1px solid #d2d6de;
  2761. margin: 5px 0 0 50px;
  2762. color: #444444;
  2763. }
  2764. .direct-chat-text:after,
  2765. .direct-chat-text:before {
  2766. position: absolute;
  2767. right: 100%;
  2768. top: 15px;
  2769. border: solid transparent;
  2770. border-right-color: #d2d6de;
  2771. content: ' ';
  2772. height: 0;
  2773. width: 0;
  2774. pointer-events: none;
  2775. }
  2776. .direct-chat-text:after {
  2777. border-width: 5px;
  2778. margin-top: -5px;
  2779. }
  2780. .direct-chat-text:before {
  2781. border-width: 6px;
  2782. margin-top: -6px;
  2783. }
  2784. .right .direct-chat-text {
  2785. margin-right: 50px;
  2786. margin-left: 0;
  2787. }
  2788. .right .direct-chat-text:after,
  2789. .right .direct-chat-text:before {
  2790. right: auto;
  2791. left: 100%;
  2792. border-right-color: transparent;
  2793. border-left-color: #d2d6de;
  2794. }
  2795. .direct-chat-img {
  2796. border-radius: 50%;
  2797. float: left;
  2798. width: 40px;
  2799. height: 40px;
  2800. }
  2801. .right .direct-chat-img {
  2802. float: right;
  2803. }
  2804. .direct-chat-info {
  2805. display: block;
  2806. margin-bottom: 2px;
  2807. font-size: 12px;
  2808. }
  2809. .direct-chat-name {
  2810. font-weight: 600;
  2811. }
  2812. .direct-chat-timestamp {
  2813. color: #999;
  2814. }
  2815. .direct-chat-contacts-open .direct-chat-contacts {
  2816. -webkit-transform: translate(0, 0);
  2817. -ms-transform: translate(0, 0);
  2818. -o-transform: translate(0, 0);
  2819. transform: translate(0, 0);
  2820. }
  2821. .direct-chat-contacts {
  2822. -webkit-transform: translate(101%, 0);
  2823. -ms-transform: translate(101%, 0);
  2824. -o-transform: translate(101%, 0);
  2825. transform: translate(101%, 0);
  2826. position: absolute;
  2827. top: 0;
  2828. bottom: 0;
  2829. height: 250px;
  2830. width: 100%;
  2831. background: #222d32;
  2832. color: #fff;
  2833. overflow: auto;
  2834. }
  2835. .contacts-list > li {
  2836. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2837. padding: 10px;
  2838. margin: 0;
  2839. }
  2840. .contacts-list > li:before,
  2841. .contacts-list > li:after {
  2842. content: " ";
  2843. display: table;
  2844. }
  2845. .contacts-list > li:after {
  2846. clear: both;
  2847. }
  2848. .contacts-list > li:last-of-type {
  2849. border-bottom: none;
  2850. }
  2851. .contacts-list-img {
  2852. border-radius: 50%;
  2853. width: 40px;
  2854. float: left;
  2855. }
  2856. .contacts-list-info {
  2857. margin-left: 45px;
  2858. color: #fff;
  2859. }
  2860. .contacts-list-name,
  2861. .contacts-list-status {
  2862. display: block;
  2863. }
  2864. .contacts-list-name {
  2865. font-weight: 600;
  2866. }
  2867. .contacts-list-status {
  2868. font-size: 12px;
  2869. }
  2870. .contacts-list-date {
  2871. color: #aaa;
  2872. font-weight: normal;
  2873. }
  2874. .contacts-list-msg {
  2875. color: #999;
  2876. }
  2877. .direct-chat-danger .right > .direct-chat-text {
  2878. background: #dd4b39;
  2879. border-color: #dd4b39;
  2880. color: #ffffff;
  2881. }
  2882. .direct-chat-danger .right > .direct-chat-text:after,
  2883. .direct-chat-danger .right > .direct-chat-text:before {
  2884. border-left-color: #dd4b39;
  2885. }
  2886. .direct-chat-primary .right > .direct-chat-text {
  2887. background: #3c8dbc;
  2888. border-color: #3c8dbc;
  2889. color: #ffffff;
  2890. }
  2891. .direct-chat-primary .right > .direct-chat-text:after,
  2892. .direct-chat-primary .right > .direct-chat-text:before {
  2893. border-left-color: #3c8dbc;
  2894. }
  2895. .direct-chat-warning .right > .direct-chat-text {
  2896. background: #f39c12;
  2897. border-color: #f39c12;
  2898. color: #ffffff;
  2899. }
  2900. .direct-chat-warning .right > .direct-chat-text:after,
  2901. .direct-chat-warning .right > .direct-chat-text:before {
  2902. border-left-color: #f39c12;
  2903. }
  2904. .direct-chat-info .right > .direct-chat-text {
  2905. background: #00c0ef;
  2906. border-color: #00c0ef;
  2907. color: #ffffff;
  2908. }
  2909. .direct-chat-info .right > .direct-chat-text:after,
  2910. .direct-chat-info .right > .direct-chat-text:before {
  2911. border-left-color: #00c0ef;
  2912. }
  2913. .direct-chat-success .right > .direct-chat-text {
  2914. background: #00a65a;
  2915. border-color: #00a65a;
  2916. color: #ffffff;
  2917. }
  2918. .direct-chat-success .right > .direct-chat-text:after,
  2919. .direct-chat-success .right > .direct-chat-text:before {
  2920. border-left-color: #00a65a;
  2921. }
  2922. /*
  2923. * Component: Users List
  2924. * ---------------------
  2925. */
  2926. .users-list > li {
  2927. width: 25%;
  2928. float: left;
  2929. padding: 10px;
  2930. text-align: center;
  2931. }
  2932. .users-list > li img {
  2933. border-radius: 50%;
  2934. max-width: 100%;
  2935. height: auto;
  2936. }
  2937. .users-list > li > a:hover,
  2938. .users-list > li > a:hover .users-list-name {
  2939. color: #999;
  2940. }
  2941. .users-list-name,
  2942. .users-list-date {
  2943. display: block;
  2944. }
  2945. .users-list-name {
  2946. font-weight: 600;
  2947. color: #444;
  2948. overflow: hidden;
  2949. white-space: nowrap;
  2950. text-overflow: ellipsis;
  2951. }
  2952. .users-list-date {
  2953. color: #999;
  2954. font-size: 12px;
  2955. }
  2956. /*
  2957. * Component: Carousel
  2958. * -------------------
  2959. */
  2960. .carousel-control.left,
  2961. .carousel-control.right {
  2962. background-image: none;
  2963. }
  2964. .carousel-control > .fa {
  2965. font-size: 40px;
  2966. position: absolute;
  2967. top: 50%;
  2968. z-index: 5;
  2969. display: inline-block;
  2970. margin-top: -20px;
  2971. }
  2972. /*
  2973. * Component: modal
  2974. * ----------------
  2975. */
  2976. .modal {
  2977. background: rgba(0, 0, 0, 0.3);
  2978. }
  2979. .modal-content {
  2980. border-radius: 0;
  2981. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  2982. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  2983. border: 0;
  2984. }
  2985. @media (min-width: 768px) {
  2986. .modal-content {
  2987. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  2988. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  2989. }
  2990. }
  2991. .modal-header {
  2992. border-bottom-color: #f4f4f4;
  2993. }
  2994. .modal-footer {
  2995. border-top-color: #f4f4f4;
  2996. }
  2997. .modal-primary .modal-header,
  2998. .modal-primary .modal-footer {
  2999. border-color: #307095;
  3000. }
  3001. .modal-warning .modal-header,
  3002. .modal-warning .modal-footer {
  3003. border-color: #c87f0a;
  3004. }
  3005. .modal-info .modal-header,
  3006. .modal-info .modal-footer {
  3007. border-color: #0097bc;
  3008. }
  3009. .modal-success .modal-header,
  3010. .modal-success .modal-footer {
  3011. border-color: #00733e;
  3012. }
  3013. .modal-danger .modal-header,
  3014. .modal-danger .modal-footer {
  3015. border-color: #c23321;
  3016. }
  3017. /*
  3018. * Component: Social Widgets
  3019. * -------------------------
  3020. */
  3021. .box-widget {
  3022. border: none;
  3023. position: relative;
  3024. }
  3025. .widget-user .widget-user-header {
  3026. padding: 20px;
  3027. height: 120px;
  3028. border-top-right-radius: 3px;
  3029. border-top-left-radius: 3px;
  3030. }
  3031. .widget-user .widget-user-username {
  3032. margin-top: 0;
  3033. margin-bottom: 5px;
  3034. font-size: 25px;
  3035. font-weight: 300;
  3036. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  3037. }
  3038. .widget-user .widget-user-desc {
  3039. margin-top: 0;
  3040. }
  3041. .widget-user .widget-user-image {
  3042. position: absolute;
  3043. top: 65px;
  3044. left: 50%;
  3045. margin-left: -45px;
  3046. }
  3047. .widget-user .widget-user-image > img {
  3048. width: 90px;
  3049. height: auto;
  3050. border: 3px solid #fff;
  3051. }
  3052. .widget-user .box-footer {
  3053. padding-top: 30px;
  3054. }
  3055. .widget-user-2 .widget-user-header {
  3056. padding: 20px;
  3057. border-top-right-radius: 3px;
  3058. border-top-left-radius: 3px;
  3059. }
  3060. .widget-user-2 .widget-user-username {
  3061. margin-top: 5px;
  3062. margin-bottom: 5px;
  3063. font-size: 25px;
  3064. font-weight: 300;
  3065. }
  3066. .widget-user-2 .widget-user-desc {
  3067. margin-top: 0;
  3068. }
  3069. .widget-user-2 .widget-user-username,
  3070. .widget-user-2 .widget-user-desc {
  3071. margin-left: 75px;
  3072. }
  3073. .widget-user-2 .widget-user-image > img {
  3074. width: 65px;
  3075. height: auto;
  3076. float: left;
  3077. }
  3078. .treeview-menu {
  3079. display: none;
  3080. list-style: none;
  3081. padding: 0;
  3082. margin: 0;
  3083. padding-left: 5px;
  3084. }
  3085. .treeview-menu .treeview-menu {
  3086. padding-left: 20px;
  3087. }
  3088. .treeview-menu > li {
  3089. margin: 0;
  3090. }
  3091. .treeview-menu > li > a {
  3092. padding: 5px 5px 5px 15px;
  3093. display: block;
  3094. font-size: 14px;
  3095. }
  3096. .treeview-menu > li > a > .fa,
  3097. .treeview-menu > li > a > .glyphicon,
  3098. .treeview-menu > li > a > .ion {
  3099. width: 20px;
  3100. }
  3101. .treeview-menu > li > a > .pull-right-container > .fa-angle-left,
  3102. .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
  3103. .treeview-menu > li > a > .fa-angle-left,
  3104. .treeview-menu > li > a > .fa-angle-down {
  3105. width: auto;
  3106. }
  3107. .treeview > ul.treeview-menu {
  3108. overflow: hidden;
  3109. height: auto;
  3110. padding-top: 0px !important;
  3111. padding-bottom: 0px !important;
  3112. }
  3113. .treeview.menu-open > ul.treeview-menu {
  3114. overflow: visible;
  3115. height: auto;
  3116. }
  3117. /*
  3118. * Page: Mailbox
  3119. * -------------
  3120. */
  3121. .mailbox-messages > .table {
  3122. margin: 0;
  3123. }
  3124. .mailbox-controls {
  3125. padding: 5px;
  3126. }
  3127. .mailbox-controls.with-border {
  3128. border-bottom: 1px solid #f4f4f4;
  3129. }
  3130. .mailbox-read-info {
  3131. border-bottom: 1px solid #f4f4f4;
  3132. padding: 10px;
  3133. }
  3134. .mailbox-read-info h3 {
  3135. font-size: 20px;
  3136. margin: 0;
  3137. }
  3138. .mailbox-read-info h5 {
  3139. margin: 0;
  3140. padding: 5px 0 0 0;
  3141. }
  3142. .mailbox-read-time {
  3143. color: #999;
  3144. font-size: 13px;
  3145. }
  3146. .mailbox-read-message {
  3147. padding: 10px;
  3148. }
  3149. .mailbox-attachments li {
  3150. float: left;
  3151. width: 200px;
  3152. border: 1px solid #eee;
  3153. margin-bottom: 10px;
  3154. margin-right: 10px;
  3155. }
  3156. .mailbox-attachment-name {
  3157. font-weight: bold;
  3158. color: #666;
  3159. }
  3160. .mailbox-attachment-icon,
  3161. .mailbox-attachment-info,
  3162. .mailbox-attachment-size {
  3163. display: block;
  3164. }
  3165. .mailbox-attachment-info {
  3166. padding: 10px;
  3167. background: #f4f4f4;
  3168. }
  3169. .mailbox-attachment-size {
  3170. color: #999;
  3171. font-size: 12px;
  3172. }
  3173. .mailbox-attachment-icon {
  3174. text-align: center;
  3175. font-size: 65px;
  3176. color: #666;
  3177. padding: 20px 10px;
  3178. }
  3179. .mailbox-attachment-icon.has-img {
  3180. padding: 0;
  3181. }
  3182. .mailbox-attachment-icon.has-img > img {
  3183. max-width: 100%;
  3184. height: auto;
  3185. }
  3186. /*
  3187. * Page: Lock Screen
  3188. * -----------------
  3189. */
  3190. /* ADD THIS CLASS TO THE <BODY> TAG */
  3191. .lockscreen {
  3192. background: #d2d6de;
  3193. }
  3194. .lockscreen-logo {
  3195. font-size: 35px;
  3196. text-align: center;
  3197. margin-bottom: 25px;
  3198. font-weight: 300;
  3199. }
  3200. .lockscreen-logo a {
  3201. color: #444;
  3202. }
  3203. .lockscreen-wrapper {
  3204. max-width: 400px;
  3205. margin: 0 auto;
  3206. margin-top: 10%;
  3207. }
  3208. /* User name [optional] */
  3209. .lockscreen .lockscreen-name {
  3210. text-align: center;
  3211. font-weight: 600;
  3212. }
  3213. /* Will contain the image and the sign in form */
  3214. .lockscreen-item {
  3215. border-radius: 4px;
  3216. padding: 0;
  3217. background: #fff;
  3218. position: relative;
  3219. margin: 10px auto 30px auto;
  3220. width: 290px;
  3221. }
  3222. /* User image */
  3223. .lockscreen-image {
  3224. border-radius: 50%;
  3225. position: absolute;
  3226. left: -10px;
  3227. top: -25px;
  3228. background: #fff;
  3229. padding: 5px;
  3230. z-index: 10;
  3231. }
  3232. .lockscreen-image > img {
  3233. border-radius: 50%;
  3234. width: 70px;
  3235. height: 70px;
  3236. }
  3237. /* Contains the password input and the login button */
  3238. .lockscreen-credentials {
  3239. margin-left: 70px;
  3240. }
  3241. .lockscreen-credentials .form-control {
  3242. border: 0;
  3243. }
  3244. .lockscreen-credentials .btn {
  3245. background-color: #fff;
  3246. border: 0;
  3247. padding: 0 10px;
  3248. }
  3249. .lockscreen-footer {
  3250. margin-top: 10px;
  3251. }
  3252. /*
  3253. * Page: Login & Register
  3254. * ----------------------
  3255. */
  3256. .login-logo,
  3257. .register-logo {
  3258. font-size: 35px;
  3259. text-align: center;
  3260. margin-bottom: 25px;
  3261. font-weight: 300;
  3262. }
  3263. .login-logo a,
  3264. .register-logo a {
  3265. color: #444;
  3266. }
  3267. .login-page,
  3268. .register-page {
  3269. height: auto;
  3270. background: #d2d6de;
  3271. }
  3272. .login-box,
  3273. .register-box {
  3274. width: 360px;
  3275. margin: 7% auto;
  3276. }
  3277. @media (max-width: 768px) {
  3278. .login-box,
  3279. .register-box {
  3280. width: 90%;
  3281. margin-top: 20px;
  3282. }
  3283. }
  3284. .login-box-body,
  3285. .register-box-body {
  3286. background: #fff;
  3287. padding: 20px;
  3288. border-top: 0;
  3289. color: #666;
  3290. }
  3291. .login-box-body .form-control-feedback,
  3292. .register-box-body .form-control-feedback {
  3293. color: #777;
  3294. }
  3295. .login-box-msg,
  3296. .register-box-msg {
  3297. margin: 0;
  3298. text-align: center;
  3299. padding: 0 20px 20px 20px;
  3300. }
  3301. .social-auth-links {
  3302. margin: 10px 0;
  3303. }
  3304. /*
  3305. * Page: 400 and 500 error pages
  3306. * ------------------------------
  3307. */
  3308. .error-page {
  3309. width: 600px;
  3310. margin: 20px auto 0 auto;
  3311. }
  3312. @media (max-width: 991px) {
  3313. .error-page {
  3314. width: 100%;
  3315. }
  3316. }
  3317. .error-page > .headline {
  3318. float: left;
  3319. font-size: 100px;
  3320. font-weight: 300;
  3321. }
  3322. @media (max-width: 991px) {
  3323. .error-page > .headline {
  3324. float: none;
  3325. text-align: center;
  3326. }
  3327. }
  3328. .error-page > .error-content {
  3329. margin-left: 190px;
  3330. display: block;
  3331. }
  3332. @media (max-width: 991px) {
  3333. .error-page > .error-content {
  3334. margin-left: 0;
  3335. }
  3336. }
  3337. .error-page > .error-content > h3 {
  3338. font-weight: 300;
  3339. font-size: 25px;
  3340. }
  3341. @media (max-width: 991px) {
  3342. .error-page > .error-content > h3 {
  3343. text-align: center;
  3344. }
  3345. }
  3346. /*
  3347. * Page: Invoice
  3348. * -------------
  3349. */
  3350. .invoice {
  3351. position: relative;
  3352. background: #fff;
  3353. border: 1px solid #f4f4f4;
  3354. padding: 20px;
  3355. margin: 10px 25px;
  3356. }
  3357. .invoice-title {
  3358. margin-top: 0;
  3359. }
  3360. /*
  3361. * Page: Profile
  3362. * -------------
  3363. */
  3364. .profile-user-img {
  3365. margin: 0 auto;
  3366. width: 100px;
  3367. padding: 3px;
  3368. border: 3px solid #d2d6de;
  3369. }
  3370. .profile-username {
  3371. font-size: 21px;
  3372. margin-top: 5px;
  3373. }
  3374. .post {
  3375. border-bottom: 1px solid #d2d6de;
  3376. margin-bottom: 15px;
  3377. padding-bottom: 15px;
  3378. color: #666;
  3379. }
  3380. .post:last-of-type {
  3381. border-bottom: 0;
  3382. margin-bottom: 0;
  3383. padding-bottom: 0;
  3384. }
  3385. .post .user-block {
  3386. margin-bottom: 15px;
  3387. }
  3388. /*
  3389. * Social Buttons for Bootstrap
  3390. *
  3391. * Copyright 2013-2015 Panayiotis Lipiridis
  3392. * Licensed under the MIT License
  3393. *
  3394. * https://github.com/lipis/bootstrap-social
  3395. */
  3396. .btn-social {
  3397. position: relative;
  3398. padding-left: 44px;
  3399. text-align: left;
  3400. white-space: nowrap;
  3401. overflow: hidden;
  3402. text-overflow: ellipsis;
  3403. }
  3404. .btn-social > :first-child {
  3405. position: absolute;
  3406. left: 0;
  3407. top: 0;
  3408. bottom: 0;
  3409. width: 32px;
  3410. line-height: 34px;
  3411. font-size: 1.6em;
  3412. text-align: center;
  3413. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3414. }
  3415. .btn-social.btn-lg {
  3416. padding-left: 61px;
  3417. }
  3418. .btn-social.btn-lg > :first-child {
  3419. line-height: 45px;
  3420. width: 45px;
  3421. font-size: 1.8em;
  3422. }
  3423. .btn-social.btn-sm {
  3424. padding-left: 38px;
  3425. }
  3426. .btn-social.btn-sm > :first-child {
  3427. line-height: 28px;
  3428. width: 28px;
  3429. font-size: 1.4em;
  3430. }
  3431. .btn-social.btn-xs {
  3432. padding-left: 30px;
  3433. }
  3434. .btn-social.btn-xs > :first-child {
  3435. line-height: 20px;
  3436. width: 20px;
  3437. font-size: 1.2em;
  3438. }
  3439. .btn-social-icon {
  3440. position: relative;
  3441. padding-left: 44px;
  3442. text-align: left;
  3443. white-space: nowrap;
  3444. overflow: hidden;
  3445. text-overflow: ellipsis;
  3446. height: 34px;
  3447. width: 34px;
  3448. padding: 0;
  3449. }
  3450. .btn-social-icon > :first-child {
  3451. position: absolute;
  3452. left: 0;
  3453. top: 0;
  3454. bottom: 0;
  3455. width: 32px;
  3456. line-height: 34px;
  3457. font-size: 1.6em;
  3458. text-align: center;
  3459. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3460. }
  3461. .btn-social-icon.btn-lg {
  3462. padding-left: 61px;
  3463. }
  3464. .btn-social-icon.btn-lg > :first-child {
  3465. line-height: 45px;
  3466. width: 45px;
  3467. font-size: 1.8em;
  3468. }
  3469. .btn-social-icon.btn-sm {
  3470. padding-left: 38px;
  3471. }
  3472. .btn-social-icon.btn-sm > :first-child {
  3473. line-height: 28px;
  3474. width: 28px;
  3475. font-size: 1.4em;
  3476. }
  3477. .btn-social-icon.btn-xs {
  3478. padding-left: 30px;
  3479. }
  3480. .btn-social-icon.btn-xs > :first-child {
  3481. line-height: 20px;
  3482. width: 20px;
  3483. font-size: 1.2em;
  3484. }
  3485. .btn-social-icon > :first-child {
  3486. border: none;
  3487. text-align: center;
  3488. width: 100%;
  3489. }
  3490. .btn-social-icon.btn-lg {
  3491. height: 45px;
  3492. width: 45px;
  3493. padding-left: 0;
  3494. padding-right: 0;
  3495. }
  3496. .btn-social-icon.btn-sm {
  3497. height: 30px;
  3498. width: 30px;
  3499. padding-left: 0;
  3500. padding-right: 0;
  3501. }
  3502. .btn-social-icon.btn-xs {
  3503. height: 22px;
  3504. width: 22px;
  3505. padding-left: 0;
  3506. padding-right: 0;
  3507. }
  3508. .btn-adn {
  3509. color: #ffffff;
  3510. background-color: #d87a68;
  3511. border-color: rgba(0, 0, 0, 0.2);
  3512. }
  3513. .btn-adn:focus,
  3514. .btn-adn.focus {
  3515. color: #ffffff;
  3516. background-color: #ce563f;
  3517. border-color: rgba(0, 0, 0, 0.2);
  3518. }
  3519. .btn-adn:hover {
  3520. color: #ffffff;
  3521. background-color: #ce563f;
  3522. border-color: rgba(0, 0, 0, 0.2);
  3523. }
  3524. .btn-adn:active,
  3525. .btn-adn.active,
  3526. .open > .dropdown-toggle.btn-adn {
  3527. color: #ffffff;
  3528. background-color: #ce563f;
  3529. border-color: rgba(0, 0, 0, 0.2);
  3530. }
  3531. .btn-adn:active,
  3532. .btn-adn.active,
  3533. .open > .dropdown-toggle.btn-adn {
  3534. background-image: none;
  3535. }
  3536. .btn-adn .badge {
  3537. color: #d87a68;
  3538. background-color: #ffffff;
  3539. }
  3540. .btn-bitbucket {
  3541. color: #ffffff;
  3542. background-color: #205081;
  3543. border-color: rgba(0, 0, 0, 0.2);
  3544. }
  3545. .btn-bitbucket:focus,
  3546. .btn-bitbucket.focus {
  3547. color: #ffffff;
  3548. background-color: #163758;
  3549. border-color: rgba(0, 0, 0, 0.2);
  3550. }
  3551. .btn-bitbucket:hover {
  3552. color: #ffffff;
  3553. background-color: #163758;
  3554. border-color: rgba(0, 0, 0, 0.2);
  3555. }
  3556. .btn-bitbucket:active,
  3557. .btn-bitbucket.active,
  3558. .open > .dropdown-toggle.btn-bitbucket {
  3559. color: #ffffff;
  3560. background-color: #163758;
  3561. border-color: rgba(0, 0, 0, 0.2);
  3562. }
  3563. .btn-bitbucket:active,
  3564. .btn-bitbucket.active,
  3565. .open > .dropdown-toggle.btn-bitbucket {
  3566. background-image: none;
  3567. }
  3568. .btn-bitbucket .badge {
  3569. color: #205081;
  3570. background-color: #ffffff;
  3571. }
  3572. .btn-dropbox {
  3573. color: #ffffff;
  3574. background-color: #1087dd;
  3575. border-color: rgba(0, 0, 0, 0.2);
  3576. }
  3577. .btn-dropbox:focus,
  3578. .btn-dropbox.focus {
  3579. color: #ffffff;
  3580. background-color: #0d6aad;
  3581. border-color: rgba(0, 0, 0, 0.2);
  3582. }
  3583. .btn-dropbox:hover {
  3584. color: #ffffff;
  3585. background-color: #0d6aad;
  3586. border-color: rgba(0, 0, 0, 0.2);
  3587. }
  3588. .btn-dropbox:active,
  3589. .btn-dropbox.active,
  3590. .open > .dropdown-toggle.btn-dropbox {
  3591. color: #ffffff;
  3592. background-color: #0d6aad;
  3593. border-color: rgba(0, 0, 0, 0.2);
  3594. }
  3595. .btn-dropbox:active,
  3596. .btn-dropbox.active,
  3597. .open > .dropdown-toggle.btn-dropbox {
  3598. background-image: none;
  3599. }
  3600. .btn-dropbox .badge {
  3601. color: #1087dd;
  3602. background-color: #ffffff;
  3603. }
  3604. .btn-facebook {
  3605. color: #ffffff;
  3606. background-color: #3b5998;
  3607. border-color: rgba(0, 0, 0, 0.2);
  3608. }
  3609. .btn-facebook:focus,
  3610. .btn-facebook.focus {
  3611. color: #ffffff;
  3612. background-color: #2d4373;
  3613. border-color: rgba(0, 0, 0, 0.2);
  3614. }
  3615. .btn-facebook:hover {
  3616. color: #ffffff;
  3617. background-color: #2d4373;
  3618. border-color: rgba(0, 0, 0, 0.2);
  3619. }
  3620. .btn-facebook:active,
  3621. .btn-facebook.active,
  3622. .open > .dropdown-toggle.btn-facebook {
  3623. color: #ffffff;
  3624. background-color: #2d4373;
  3625. border-color: rgba(0, 0, 0, 0.2);
  3626. }
  3627. .btn-facebook:active,
  3628. .btn-facebook.active,
  3629. .open > .dropdown-toggle.btn-facebook {
  3630. background-image: none;
  3631. }
  3632. .btn-facebook .badge {
  3633. color: #3b5998;
  3634. background-color: #ffffff;
  3635. }
  3636. .btn-flickr {
  3637. color: #ffffff;
  3638. background-color: #ff0084;
  3639. border-color: rgba(0, 0, 0, 0.2);
  3640. }
  3641. .btn-flickr:focus,
  3642. .btn-flickr.focus {
  3643. color: #ffffff;
  3644. background-color: #cc006a;
  3645. border-color: rgba(0, 0, 0, 0.2);
  3646. }
  3647. .btn-flickr:hover {
  3648. color: #ffffff;
  3649. background-color: #cc006a;
  3650. border-color: rgba(0, 0, 0, 0.2);
  3651. }
  3652. .btn-flickr:active,
  3653. .btn-flickr.active,
  3654. .open > .dropdown-toggle.btn-flickr {
  3655. color: #ffffff;
  3656. background-color: #cc006a;
  3657. border-color: rgba(0, 0, 0, 0.2);
  3658. }
  3659. .btn-flickr:active,
  3660. .btn-flickr.active,
  3661. .open > .dropdown-toggle.btn-flickr {
  3662. background-image: none;
  3663. }
  3664. .btn-flickr .badge {
  3665. color: #ff0084;
  3666. background-color: #ffffff;
  3667. }
  3668. .btn-foursquare {
  3669. color: #ffffff;
  3670. background-color: #f94877;
  3671. border-color: rgba(0, 0, 0, 0.2);
  3672. }
  3673. .btn-foursquare:focus,
  3674. .btn-foursquare.focus {
  3675. color: #ffffff;
  3676. background-color: #f71752;
  3677. border-color: rgba(0, 0, 0, 0.2);
  3678. }
  3679. .btn-foursquare:hover {
  3680. color: #ffffff;
  3681. background-color: #f71752;
  3682. border-color: rgba(0, 0, 0, 0.2);
  3683. }
  3684. .btn-foursquare:active,
  3685. .btn-foursquare.active,
  3686. .open > .dropdown-toggle.btn-foursquare {
  3687. color: #ffffff;
  3688. background-color: #f71752;
  3689. border-color: rgba(0, 0, 0, 0.2);
  3690. }
  3691. .btn-foursquare:active,
  3692. .btn-foursquare.active,
  3693. .open > .dropdown-toggle.btn-foursquare {
  3694. background-image: none;
  3695. }
  3696. .btn-foursquare .badge {
  3697. color: #f94877;
  3698. background-color: #ffffff;
  3699. }
  3700. .btn-github {
  3701. color: #ffffff;
  3702. background-color: #444444;
  3703. border-color: rgba(0, 0, 0, 0.2);
  3704. }
  3705. .btn-github:focus,
  3706. .btn-github.focus {
  3707. color: #ffffff;
  3708. background-color: #2b2b2b;
  3709. border-color: rgba(0, 0, 0, 0.2);
  3710. }
  3711. .btn-github:hover {
  3712. color: #ffffff;
  3713. background-color: #2b2b2b;
  3714. border-color: rgba(0, 0, 0, 0.2);
  3715. }
  3716. .btn-github:active,
  3717. .btn-github.active,
  3718. .open > .dropdown-toggle.btn-github {
  3719. color: #ffffff;
  3720. background-color: #2b2b2b;
  3721. border-color: rgba(0, 0, 0, 0.2);
  3722. }
  3723. .btn-github:active,
  3724. .btn-github.active,
  3725. .open > .dropdown-toggle.btn-github {
  3726. background-image: none;
  3727. }
  3728. .btn-github .badge {
  3729. color: #444444;
  3730. background-color: #ffffff;
  3731. }
  3732. .btn-google {
  3733. color: #ffffff;
  3734. background-color: #dd4b39;
  3735. border-color: rgba(0, 0, 0, 0.2);
  3736. }
  3737. .btn-google:focus,
  3738. .btn-google.focus {
  3739. color: #ffffff;
  3740. background-color: #c23321;
  3741. border-color: rgba(0, 0, 0, 0.2);
  3742. }
  3743. .btn-google:hover {
  3744. color: #ffffff;
  3745. background-color: #c23321;
  3746. border-color: rgba(0, 0, 0, 0.2);
  3747. }
  3748. .btn-google:active,
  3749. .btn-google.active,
  3750. .open > .dropdown-toggle.btn-google {
  3751. color: #ffffff;
  3752. background-color: #c23321;
  3753. border-color: rgba(0, 0, 0, 0.2);
  3754. }
  3755. .btn-google:active,
  3756. .btn-google.active,
  3757. .open > .dropdown-toggle.btn-google {
  3758. background-image: none;
  3759. }
  3760. .btn-google .badge {
  3761. color: #dd4b39;
  3762. background-color: #ffffff;
  3763. }
  3764. .btn-instagram {
  3765. color: #ffffff;
  3766. background-color: #3f729b;
  3767. border-color: rgba(0, 0, 0, 0.2);
  3768. }
  3769. .btn-instagram:focus,
  3770. .btn-instagram.focus {
  3771. color: #ffffff;
  3772. background-color: #305777;
  3773. border-color: rgba(0, 0, 0, 0.2);
  3774. }
  3775. .btn-instagram:hover {
  3776. color: #ffffff;
  3777. background-color: #305777;
  3778. border-color: rgba(0, 0, 0, 0.2);
  3779. }
  3780. .btn-instagram:active,
  3781. .btn-instagram.active,
  3782. .open > .dropdown-toggle.btn-instagram {
  3783. color: #ffffff;
  3784. background-color: #305777;
  3785. border-color: rgba(0, 0, 0, 0.2);
  3786. }
  3787. .btn-instagram:active,
  3788. .btn-instagram.active,
  3789. .open > .dropdown-toggle.btn-instagram {
  3790. background-image: none;
  3791. }
  3792. .btn-instagram .badge {
  3793. color: #3f729b;
  3794. background-color: #ffffff;
  3795. }
  3796. .btn-linkedin {
  3797. color: #ffffff;
  3798. background-color: #007bb6;
  3799. border-color: rgba(0, 0, 0, 0.2);
  3800. }
  3801. .btn-linkedin:focus,
  3802. .btn-linkedin.focus {
  3803. color: #ffffff;
  3804. background-color: #005983;
  3805. border-color: rgba(0, 0, 0, 0.2);
  3806. }
  3807. .btn-linkedin:hover {
  3808. color: #ffffff;
  3809. background-color: #005983;
  3810. border-color: rgba(0, 0, 0, 0.2);
  3811. }
  3812. .btn-linkedin:active,
  3813. .btn-linkedin.active,
  3814. .open > .dropdown-toggle.btn-linkedin {
  3815. color: #ffffff;
  3816. background-color: #005983;
  3817. border-color: rgba(0, 0, 0, 0.2);
  3818. }
  3819. .btn-linkedin:active,
  3820. .btn-linkedin.active,
  3821. .open > .dropdown-toggle.btn-linkedin {
  3822. background-image: none;
  3823. }
  3824. .btn-linkedin .badge {
  3825. color: #007bb6;
  3826. background-color: #ffffff;
  3827. }
  3828. .btn-microsoft {
  3829. color: #ffffff;
  3830. background-color: #2672ec;
  3831. border-color: rgba(0, 0, 0, 0.2);
  3832. }
  3833. .btn-microsoft:focus,
  3834. .btn-microsoft.focus {
  3835. color: #ffffff;
  3836. background-color: #125acd;
  3837. border-color: rgba(0, 0, 0, 0.2);
  3838. }
  3839. .btn-microsoft:hover {
  3840. color: #ffffff;
  3841. background-color: #125acd;
  3842. border-color: rgba(0, 0, 0, 0.2);
  3843. }
  3844. .btn-microsoft:active,
  3845. .btn-microsoft.active,
  3846. .open > .dropdown-toggle.btn-microsoft {
  3847. color: #ffffff;
  3848. background-color: #125acd;
  3849. border-color: rgba(0, 0, 0, 0.2);
  3850. }
  3851. .btn-microsoft:active,
  3852. .btn-microsoft.active,
  3853. .open > .dropdown-toggle.btn-microsoft {
  3854. background-image: none;
  3855. }
  3856. .btn-microsoft .badge {
  3857. color: #2672ec;
  3858. background-color: #ffffff;
  3859. }
  3860. .btn-openid {
  3861. color: #ffffff;
  3862. background-color: #f7931e;
  3863. border-color: rgba(0, 0, 0, 0.2);
  3864. }
  3865. .btn-openid:focus,
  3866. .btn-openid.focus {
  3867. color: #ffffff;
  3868. background-color: #da7908;
  3869. border-color: rgba(0, 0, 0, 0.2);
  3870. }
  3871. .btn-openid:hover {
  3872. color: #ffffff;
  3873. background-color: #da7908;
  3874. border-color: rgba(0, 0, 0, 0.2);
  3875. }
  3876. .btn-openid:active,
  3877. .btn-openid.active,
  3878. .open > .dropdown-toggle.btn-openid {
  3879. color: #ffffff;
  3880. background-color: #da7908;
  3881. border-color: rgba(0, 0, 0, 0.2);
  3882. }
  3883. .btn-openid:active,
  3884. .btn-openid.active,
  3885. .open > .dropdown-toggle.btn-openid {
  3886. background-image: none;
  3887. }
  3888. .btn-openid .badge {
  3889. color: #f7931e;
  3890. background-color: #ffffff;
  3891. }
  3892. .btn-pinterest {
  3893. color: #ffffff;
  3894. background-color: #cb2027;
  3895. border-color: rgba(0, 0, 0, 0.2);
  3896. }
  3897. .btn-pinterest:focus,
  3898. .btn-pinterest.focus {
  3899. color: #ffffff;
  3900. background-color: #9f191f;
  3901. border-color: rgba(0, 0, 0, 0.2);
  3902. }
  3903. .btn-pinterest:hover {
  3904. color: #ffffff;
  3905. background-color: #9f191f;
  3906. border-color: rgba(0, 0, 0, 0.2);
  3907. }
  3908. .btn-pinterest:active,
  3909. .btn-pinterest.active,
  3910. .open > .dropdown-toggle.btn-pinterest {
  3911. color: #ffffff;
  3912. background-color: #9f191f;
  3913. border-color: rgba(0, 0, 0, 0.2);
  3914. }
  3915. .btn-pinterest:active,
  3916. .btn-pinterest.active,
  3917. .open > .dropdown-toggle.btn-pinterest {
  3918. background-image: none;
  3919. }
  3920. .btn-pinterest .badge {
  3921. color: #cb2027;
  3922. background-color: #ffffff;
  3923. }
  3924. .btn-reddit {
  3925. color: #000000;
  3926. background-color: #eff7ff;
  3927. border-color: rgba(0, 0, 0, 0.2);
  3928. }
  3929. .btn-reddit:focus,
  3930. .btn-reddit.focus {
  3931. color: #000000;
  3932. background-color: #bcddff;
  3933. border-color: rgba(0, 0, 0, 0.2);
  3934. }
  3935. .btn-reddit:hover {
  3936. color: #000000;
  3937. background-color: #bcddff;
  3938. border-color: rgba(0, 0, 0, 0.2);
  3939. }
  3940. .btn-reddit:active,
  3941. .btn-reddit.active,
  3942. .open > .dropdown-toggle.btn-reddit {
  3943. color: #000000;
  3944. background-color: #bcddff;
  3945. border-color: rgba(0, 0, 0, 0.2);
  3946. }
  3947. .btn-reddit:active,
  3948. .btn-reddit.active,
  3949. .open > .dropdown-toggle.btn-reddit {
  3950. background-image: none;
  3951. }
  3952. .btn-reddit .badge {
  3953. color: #eff7ff;
  3954. background-color: #000000;
  3955. }
  3956. .btn-soundcloud {
  3957. color: #ffffff;
  3958. background-color: #ff5500;
  3959. border-color: rgba(0, 0, 0, 0.2);
  3960. }
  3961. .btn-soundcloud:focus,
  3962. .btn-soundcloud.focus {
  3963. color: #ffffff;
  3964. background-color: #cc4400;
  3965. border-color: rgba(0, 0, 0, 0.2);
  3966. }
  3967. .btn-soundcloud:hover {
  3968. color: #ffffff;
  3969. background-color: #cc4400;
  3970. border-color: rgba(0, 0, 0, 0.2);
  3971. }
  3972. .btn-soundcloud:active,
  3973. .btn-soundcloud.active,
  3974. .open > .dropdown-toggle.btn-soundcloud {
  3975. color: #ffffff;
  3976. background-color: #cc4400;
  3977. border-color: rgba(0, 0, 0, 0.2);
  3978. }
  3979. .btn-soundcloud:active,
  3980. .btn-soundcloud.active,
  3981. .open > .dropdown-toggle.btn-soundcloud {
  3982. background-image: none;
  3983. }
  3984. .btn-soundcloud .badge {
  3985. color: #ff5500;
  3986. background-color: #ffffff;
  3987. }
  3988. .btn-tumblr {
  3989. color: #ffffff;
  3990. background-color: #2c4762;
  3991. border-color: rgba(0, 0, 0, 0.2);
  3992. }
  3993. .btn-tumblr:focus,
  3994. .btn-tumblr.focus {
  3995. color: #ffffff;
  3996. background-color: #1c2d3f;
  3997. border-color: rgba(0, 0, 0, 0.2);
  3998. }
  3999. .btn-tumblr:hover {
  4000. color: #ffffff;
  4001. background-color: #1c2d3f;
  4002. border-color: rgba(0, 0, 0, 0.2);
  4003. }
  4004. .btn-tumblr:active,
  4005. .btn-tumblr.active,
  4006. .open > .dropdown-toggle.btn-tumblr {
  4007. color: #ffffff;
  4008. background-color: #1c2d3f;
  4009. border-color: rgba(0, 0, 0, 0.2);
  4010. }
  4011. .btn-tumblr:active,
  4012. .btn-tumblr.active,
  4013. .open > .dropdown-toggle.btn-tumblr {
  4014. background-image: none;
  4015. }
  4016. .btn-tumblr .badge {
  4017. color: #2c4762;
  4018. background-color: #ffffff;
  4019. }
  4020. .btn-twitter {
  4021. color: #ffffff;
  4022. background-color: #55acee;
  4023. border-color: rgba(0, 0, 0, 0.2);
  4024. }
  4025. .btn-twitter:focus,
  4026. .btn-twitter.focus {
  4027. color: #ffffff;
  4028. background-color: #2795e9;
  4029. border-color: rgba(0, 0, 0, 0.2);
  4030. }
  4031. .btn-twitter:hover {
  4032. color: #ffffff;
  4033. background-color: #2795e9;
  4034. border-color: rgba(0, 0, 0, 0.2);
  4035. }
  4036. .btn-twitter:active,
  4037. .btn-twitter.active,
  4038. .open > .dropdown-toggle.btn-twitter {
  4039. color: #ffffff;
  4040. background-color: #2795e9;
  4041. border-color: rgba(0, 0, 0, 0.2);
  4042. }
  4043. .btn-twitter:active,
  4044. .btn-twitter.active,
  4045. .open > .dropdown-toggle.btn-twitter {
  4046. background-image: none;
  4047. }
  4048. .btn-twitter .badge {
  4049. color: #55acee;
  4050. background-color: #ffffff;
  4051. }
  4052. .btn-vimeo {
  4053. color: #ffffff;
  4054. background-color: #1ab7ea;
  4055. border-color: rgba(0, 0, 0, 0.2);
  4056. }
  4057. .btn-vimeo:focus,
  4058. .btn-vimeo.focus {
  4059. color: #ffffff;
  4060. background-color: #1295bf;
  4061. border-color: rgba(0, 0, 0, 0.2);
  4062. }
  4063. .btn-vimeo:hover {
  4064. color: #ffffff;
  4065. background-color: #1295bf;
  4066. border-color: rgba(0, 0, 0, 0.2);
  4067. }
  4068. .btn-vimeo:active,
  4069. .btn-vimeo.active,
  4070. .open > .dropdown-toggle.btn-vimeo {
  4071. color: #ffffff;
  4072. background-color: #1295bf;
  4073. border-color: rgba(0, 0, 0, 0.2);
  4074. }
  4075. .btn-vimeo:active,
  4076. .btn-vimeo.active,
  4077. .open > .dropdown-toggle.btn-vimeo {
  4078. background-image: none;
  4079. }
  4080. .btn-vimeo .badge {
  4081. color: #1ab7ea;
  4082. background-color: #ffffff;
  4083. }
  4084. .btn-vk {
  4085. color: #ffffff;
  4086. background-color: #587ea3;
  4087. border-color: rgba(0, 0, 0, 0.2);
  4088. }
  4089. .btn-vk:focus,
  4090. .btn-vk.focus {
  4091. color: #ffffff;
  4092. background-color: #466482;
  4093. border-color: rgba(0, 0, 0, 0.2);
  4094. }
  4095. .btn-vk:hover {
  4096. color: #ffffff;
  4097. background-color: #466482;
  4098. border-color: rgba(0, 0, 0, 0.2);
  4099. }
  4100. .btn-vk:active,
  4101. .btn-vk.active,
  4102. .open > .dropdown-toggle.btn-vk {
  4103. color: #ffffff;
  4104. background-color: #466482;
  4105. border-color: rgba(0, 0, 0, 0.2);
  4106. }
  4107. .btn-vk:active,
  4108. .btn-vk.active,
  4109. .open > .dropdown-toggle.btn-vk {
  4110. background-image: none;
  4111. }
  4112. .btn-vk .badge {
  4113. color: #587ea3;
  4114. background-color: #ffffff;
  4115. }
  4116. .btn-yahoo {
  4117. color: #ffffff;
  4118. background-color: #720e9e;
  4119. border-color: rgba(0, 0, 0, 0.2);
  4120. }
  4121. .btn-yahoo:focus,
  4122. .btn-yahoo.focus {
  4123. color: #ffffff;
  4124. background-color: #500a6f;
  4125. border-color: rgba(0, 0, 0, 0.2);
  4126. }
  4127. .btn-yahoo:hover {
  4128. color: #ffffff;
  4129. background-color: #500a6f;
  4130. border-color: rgba(0, 0, 0, 0.2);
  4131. }
  4132. .btn-yahoo:active,
  4133. .btn-yahoo.active,
  4134. .open > .dropdown-toggle.btn-yahoo {
  4135. color: #ffffff;
  4136. background-color: #500a6f;
  4137. border-color: rgba(0, 0, 0, 0.2);
  4138. }
  4139. .btn-yahoo:active,
  4140. .btn-yahoo.active,
  4141. .open > .dropdown-toggle.btn-yahoo {
  4142. background-image: none;
  4143. }
  4144. .btn-yahoo .badge {
  4145. color: #720e9e;
  4146. background-color: #ffffff;
  4147. }
  4148. /*
  4149. * Plugin: Full Calendar
  4150. * ---------------------
  4151. */
  4152. .fc-button {
  4153. background: #f4f4f4;
  4154. background-image: none;
  4155. color: #444;
  4156. border-color: #ddd;
  4157. border-bottom-color: #ddd;
  4158. }
  4159. .fc-button:hover,
  4160. .fc-button:active,
  4161. .fc-button.hover {
  4162. background-color: #e9e9e9;
  4163. }
  4164. .fc-header-title h2 {
  4165. font-size: 15px;
  4166. line-height: 1.6em;
  4167. color: #666;
  4168. margin-left: 10px;
  4169. }
  4170. .fc-header-right {
  4171. padding-right: 10px;
  4172. }
  4173. .fc-header-left {
  4174. padding-left: 10px;
  4175. }
  4176. .fc-widget-header {
  4177. background: #fafafa;
  4178. }
  4179. .fc-grid {
  4180. width: 100%;
  4181. border: 0;
  4182. }
  4183. .fc-widget-header:first-of-type,
  4184. .fc-widget-content:first-of-type {
  4185. border-left: 0;
  4186. border-right: 0;
  4187. }
  4188. .fc-widget-header:last-of-type,
  4189. .fc-widget-content:last-of-type {
  4190. border-right: 0;
  4191. }
  4192. .fc-toolbar {
  4193. padding: 10px;
  4194. margin: 0;
  4195. }
  4196. .fc-day-number {
  4197. font-size: 20px;
  4198. font-weight: 300;
  4199. padding-right: 10px;
  4200. }
  4201. .fc-color-picker {
  4202. list-style: none;
  4203. margin: 0;
  4204. padding: 0;
  4205. }
  4206. .fc-color-picker > li {
  4207. float: left;
  4208. font-size: 30px;
  4209. margin-right: 5px;
  4210. line-height: 30px;
  4211. }
  4212. .fc-color-picker > li .fa {
  4213. -webkit-transition: -webkit-transform linear 0.3s;
  4214. -moz-transition: -moz-transform linear 0.3s;
  4215. -o-transition: -o-transform linear 0.3s;
  4216. transition: transform linear 0.3s;
  4217. }
  4218. .fc-color-picker > li .fa:hover {
  4219. -webkit-transform: rotate(30deg);
  4220. -ms-transform: rotate(30deg);
  4221. -o-transform: rotate(30deg);
  4222. transform: rotate(30deg);
  4223. }
  4224. #add-new-event {
  4225. -webkit-transition: all linear 0.3s;
  4226. -o-transition: all linear 0.3s;
  4227. transition: all linear 0.3s;
  4228. }
  4229. .external-event {
  4230. padding: 5px 10px;
  4231. font-weight: bold;
  4232. margin-bottom: 4px;
  4233. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  4234. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  4235. border-radius: 3px;
  4236. cursor: move;
  4237. }
  4238. .external-event:hover {
  4239. box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
  4240. }
  4241. /*
  4242. * Plugin: Select2
  4243. * ---------------
  4244. */
  4245. .select2-container--default.select2-container--focus,
  4246. .select2-selection.select2-container--focus,
  4247. .select2-container--default:focus,
  4248. .select2-selection:focus,
  4249. .select2-container--default:active,
  4250. .select2-selection:active {
  4251. outline: none;
  4252. }
  4253. .select2-container--default .select2-selection--single,
  4254. .select2-selection .select2-selection--single {
  4255. border: 1px solid #d2d6de;
  4256. border-radius: 0;
  4257. padding: 6px 12px;
  4258. height: 34px;
  4259. }
  4260. .select2-container--default.select2-container--open {
  4261. border-color: #3c8dbc;
  4262. }
  4263. .select2-dropdown {
  4264. border: 1px solid #d2d6de;
  4265. border-radius: 0;
  4266. }
  4267. .select2-container--default .select2-results__option--highlighted[aria-selected] {
  4268. background-color: #3c8dbc;
  4269. color: white;
  4270. }
  4271. .select2-results__option {
  4272. padding: 6px 12px;
  4273. user-select: none;
  4274. -webkit-user-select: none;
  4275. }
  4276. .select2-container .select2-selection--single .select2-selection__rendered {
  4277. padding-left: 0;
  4278. padding-right: 0;
  4279. height: auto;
  4280. margin-top: -4px;
  4281. }
  4282. .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  4283. padding-right: 6px;
  4284. padding-left: 20px;
  4285. }
  4286. .select2-container--default .select2-selection--single .select2-selection__arrow {
  4287. height: 28px;
  4288. right: 3px;
  4289. }
  4290. .select2-container--default .select2-selection--single .select2-selection__arrow b {
  4291. margin-top: 0;
  4292. }
  4293. .select2-dropdown .select2-search__field,
  4294. .select2-search--inline .select2-search__field {
  4295. border: 1px solid #d2d6de;
  4296. }
  4297. .select2-dropdown .select2-search__field:focus,
  4298. .select2-search--inline .select2-search__field:focus {
  4299. outline: none;
  4300. }
  4301. .select2-container--default.select2-container--focus .select2-selection--multiple,
  4302. .select2-container--default .select2-search--dropdown .select2-search__field {
  4303. border-color: #3c8dbc !important;
  4304. }
  4305. .select2-container--default .select2-results__option[aria-disabled=true] {
  4306. color: #999;
  4307. }
  4308. .select2-container--default .select2-results__option[aria-selected=true] {
  4309. background-color: #ddd;
  4310. }
  4311. .select2-container--default .select2-results__option[aria-selected=true],
  4312. .select2-container--default .select2-results__option[aria-selected=true]:hover {
  4313. color: #444;
  4314. }
  4315. .select2-container--default .select2-selection--multiple {
  4316. border: 1px solid #d2d6de;
  4317. border-radius: 0;
  4318. }
  4319. .select2-container--default .select2-selection--multiple:focus {
  4320. border-color: #3c8dbc;
  4321. }
  4322. .select2-container--default.select2-container--focus .select2-selection--multiple {
  4323. border-color: #d2d6de;
  4324. }
  4325. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  4326. background-color: #3c8dbc;
  4327. border-color: #367fa9;
  4328. padding: 1px 10px;
  4329. color: #fff;
  4330. }
  4331. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  4332. margin-right: 5px;
  4333. color: rgba(255, 255, 255, 0.7);
  4334. }
  4335. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  4336. color: #fff;
  4337. }
  4338. .select2-container .select2-selection--single .select2-selection__rendered {
  4339. padding-right: 10px;
  4340. }
  4341. .box .datepicker-inline,
  4342. .box .datepicker-inline .datepicker-days,
  4343. .box .datepicker-inline > table,
  4344. .box .datepicker-inline .datepicker-days > table {
  4345. width: 100%;
  4346. }
  4347. .box .datepicker-inline td:hover,
  4348. .box .datepicker-inline .datepicker-days td:hover,
  4349. .box .datepicker-inline > table td:hover,
  4350. .box .datepicker-inline .datepicker-days > table td:hover {
  4351. background-color: rgba(255, 255, 255, 0.3);
  4352. }
  4353. .box .datepicker-inline td.day.old,
  4354. .box .datepicker-inline .datepicker-days td.day.old,
  4355. .box .datepicker-inline > table td.day.old,
  4356. .box .datepicker-inline .datepicker-days > table td.day.old,
  4357. .box .datepicker-inline td.day.new,
  4358. .box .datepicker-inline .datepicker-days td.day.new,
  4359. .box .datepicker-inline > table td.day.new,
  4360. .box .datepicker-inline .datepicker-days > table td.day.new {
  4361. color: #777;
  4362. }
  4363. /*
  4364. * General: Miscellaneous
  4365. * ----------------------
  4366. */
  4367. .pad {
  4368. padding: 10px;
  4369. }
  4370. .margin {
  4371. margin: 10px;
  4372. }
  4373. .margin-bottom {
  4374. margin-bottom: 20px;
  4375. }
  4376. .margin-bottom-none {
  4377. margin-bottom: 0;
  4378. }
  4379. .margin-r-5 {
  4380. margin-right: 5px;
  4381. }
  4382. .inline {
  4383. display: inline;
  4384. }
  4385. .description-block {
  4386. display: block;
  4387. margin: 10px 0;
  4388. text-align: center;
  4389. }
  4390. .description-block.margin-bottom {
  4391. margin-bottom: 25px;
  4392. }
  4393. .description-block > .description-header {
  4394. margin: 0;
  4395. padding: 0;
  4396. font-weight: 600;
  4397. font-size: 16px;
  4398. }
  4399. .description-block > .description-text {
  4400. text-transform: uppercase;
  4401. }
  4402. .bg-red,
  4403. .bg-yellow,
  4404. .bg-aqua,
  4405. .bg-blue,
  4406. .bg-light-blue,
  4407. .bg-green,
  4408. .bg-navy,
  4409. .bg-teal,
  4410. .bg-olive,
  4411. .bg-lime,
  4412. .bg-orange,
  4413. .bg-fuchsia,
  4414. .bg-purple,
  4415. .bg-maroon,
  4416. .bg-black,
  4417. .bg-red-active,
  4418. .bg-yellow-active,
  4419. .bg-aqua-active,
  4420. .bg-blue-active,
  4421. .bg-light-blue-active,
  4422. .bg-green-active,
  4423. .bg-navy-active,
  4424. .bg-teal-active,
  4425. .bg-olive-active,
  4426. .bg-lime-active,
  4427. .bg-orange-active,
  4428. .bg-fuchsia-active,
  4429. .bg-purple-active,
  4430. .bg-maroon-active,
  4431. .bg-black-active,
  4432. .callout.callout-danger,
  4433. .callout.callout-warning,
  4434. .callout.callout-info,
  4435. .callout.callout-success,
  4436. .alert-success,
  4437. .alert-danger,
  4438. .alert-error,
  4439. .alert-warning,
  4440. .alert-info,
  4441. .label-danger,
  4442. .label-info,
  4443. .label-warning,
  4444. .label-primary,
  4445. .label-success,
  4446. .modal-primary .modal-body,
  4447. .modal-primary .modal-header,
  4448. .modal-primary .modal-footer,
  4449. .modal-warning .modal-body,
  4450. .modal-warning .modal-header,
  4451. .modal-warning .modal-footer,
  4452. .modal-info .modal-body,
  4453. .modal-info .modal-header,
  4454. .modal-info .modal-footer,
  4455. .modal-success .modal-body,
  4456. .modal-success .modal-header,
  4457. .modal-success .modal-footer,
  4458. .modal-danger .modal-body,
  4459. .modal-danger .modal-header,
  4460. .modal-danger .modal-footer {
  4461. color: #fff !important;
  4462. }
  4463. .bg-gray {
  4464. color: #000;
  4465. background-color: #d2d6de !important;
  4466. }
  4467. .bg-gray-light {
  4468. background-color: #f7f7f7;
  4469. }
  4470. .bg-black {
  4471. background-color: #111111 !important;
  4472. }
  4473. .bg-red,
  4474. .callout.callout-danger,
  4475. .alert-danger,
  4476. .alert-error,
  4477. .label-danger,
  4478. .modal-danger .modal-body {
  4479. background-color: #dd4b39 !important;
  4480. }
  4481. .bg-yellow,
  4482. .callout.callout-warning,
  4483. .alert-warning,
  4484. .label-warning,
  4485. .modal-warning .modal-body {
  4486. background-color: #f39c12 !important;
  4487. }
  4488. .bg-aqua,
  4489. .callout.callout-info,
  4490. .alert-info,
  4491. .label-info,
  4492. .modal-info .modal-body {
  4493. background-color: #00c0ef !important;
  4494. }
  4495. .bg-blue {
  4496. background-color: #0073b7 !important;
  4497. }
  4498. .bg-light-blue,
  4499. .label-primary,
  4500. .modal-primary .modal-body {
  4501. background-color: #3c8dbc !important;
  4502. }
  4503. .bg-green,
  4504. .callout.callout-success,
  4505. .alert-success,
  4506. .label-success,
  4507. .modal-success .modal-body {
  4508. background-color: #00a65a !important;
  4509. }
  4510. .bg-navy {
  4511. background-color: #001f3f !important;
  4512. }
  4513. .bg-teal {
  4514. background-color: #39cccc !important;
  4515. }
  4516. .bg-olive {
  4517. background-color: #3d9970 !important;
  4518. }
  4519. .bg-lime {
  4520. background-color: #01ff70 !important;
  4521. }
  4522. .bg-orange {
  4523. background-color: #ff851b !important;
  4524. }
  4525. .bg-fuchsia {
  4526. background-color: #f012be !important;
  4527. }
  4528. .bg-purple {
  4529. background-color: #605ca8 !important;
  4530. }
  4531. .bg-maroon {
  4532. background-color: #d81b60 !important;
  4533. }
  4534. .bg-gray-active {
  4535. color: #000;
  4536. background-color: #b5bbc8 !important;
  4537. }
  4538. .bg-black-active {
  4539. background-color: #000000 !important;
  4540. }
  4541. .bg-red-active,
  4542. .modal-danger .modal-header,
  4543. .modal-danger .modal-footer {
  4544. background-color: #d33724 !important;
  4545. }
  4546. .bg-yellow-active,
  4547. .modal-warning .modal-header,
  4548. .modal-warning .modal-footer {
  4549. background-color: #db8b0b !important;
  4550. }
  4551. .bg-aqua-active,
  4552. .modal-info .modal-header,
  4553. .modal-info .modal-footer {
  4554. background-color: #00a7d0 !important;
  4555. }
  4556. .bg-blue-active {
  4557. background-color: #005384 !important;
  4558. }
  4559. .bg-light-blue-active,
  4560. .modal-primary .modal-header,
  4561. .modal-primary .modal-footer {
  4562. background-color: #357ca5 !important;
  4563. }
  4564. .bg-green-active,
  4565. .modal-success .modal-header,
  4566. .modal-success .modal-footer {
  4567. background-color: #008d4c !important;
  4568. }
  4569. .bg-navy-active {
  4570. background-color: #001a35 !important;
  4571. }
  4572. .bg-teal-active {
  4573. background-color: #30bbbb !important;
  4574. }
  4575. .bg-olive-active {
  4576. background-color: #368763 !important;
  4577. }
  4578. .bg-lime-active {
  4579. background-color: #00e765 !important;
  4580. }
  4581. .bg-orange-active {
  4582. background-color: #ff7701 !important;
  4583. }
  4584. .bg-fuchsia-active {
  4585. background-color: #db0ead !important;
  4586. }
  4587. .bg-purple-active {
  4588. background-color: #555299 !important;
  4589. }
  4590. .bg-maroon-active {
  4591. background-color: #ca195a !important;
  4592. }
  4593. [class^="bg-"].disabled {
  4594. opacity: 0.65;
  4595. filter: alpha(opacity=65);
  4596. }
  4597. .text-red {
  4598. color: #dd4b39 !important;
  4599. }
  4600. .text-yellow {
  4601. color: #f39c12 !important;
  4602. }
  4603. .text-aqua {
  4604. color: #00c0ef !important;
  4605. }
  4606. .text-blue {
  4607. color: #0073b7 !important;
  4608. }
  4609. .text-black {
  4610. color: #111111 !important;
  4611. }
  4612. .text-light-blue {
  4613. color: #3c8dbc !important;
  4614. }
  4615. .text-green {
  4616. color: #00a65a !important;
  4617. }
  4618. .text-gray {
  4619. color: #d2d6de !important;
  4620. }
  4621. .text-navy {
  4622. color: #001f3f !important;
  4623. }
  4624. .text-teal {
  4625. color: #39cccc !important;
  4626. }
  4627. .text-olive {
  4628. color: #3d9970 !important;
  4629. }
  4630. .text-lime {
  4631. color: #01ff70 !important;
  4632. }
  4633. .text-orange {
  4634. color: #ff851b !important;
  4635. }
  4636. .text-fuchsia {
  4637. color: #f012be !important;
  4638. }
  4639. .text-purple {
  4640. color: #605ca8 !important;
  4641. }
  4642. .text-maroon {
  4643. color: #d81b60 !important;
  4644. }
  4645. .link-muted {
  4646. color: #7a869d;
  4647. }
  4648. .link-muted:hover,
  4649. .link-muted:focus {
  4650. color: #606c84;
  4651. }
  4652. .link-black {
  4653. color: #666;
  4654. }
  4655. .link-black:hover,
  4656. .link-black:focus {
  4657. color: #999;
  4658. }
  4659. .hide {
  4660. display: none !important;
  4661. }
  4662. .no-border {
  4663. border: 0 !important;
  4664. }
  4665. .no-padding {
  4666. padding: 0 !important;
  4667. }
  4668. .no-margin {
  4669. margin: 0 !important;
  4670. }
  4671. .no-shadow {
  4672. box-shadow: none !important;
  4673. }
  4674. .list-unstyled,
  4675. .chart-legend,
  4676. .contacts-list,
  4677. .users-list,
  4678. .mailbox-attachments {
  4679. list-style: none;
  4680. margin: 0;
  4681. padding: 0;
  4682. }
  4683. .list-group-unbordered > .list-group-item {
  4684. border-left: 0;
  4685. border-right: 0;
  4686. border-radius: 0;
  4687. padding-left: 0;
  4688. padding-right: 0;
  4689. }
  4690. .flat {
  4691. border-radius: 0 !important;
  4692. }
  4693. .text-bold,
  4694. .text-bold.table td,
  4695. .text-bold.table th {
  4696. font-weight: 700;
  4697. }
  4698. .text-sm {
  4699. font-size: 12px;
  4700. }
  4701. .jqstooltip {
  4702. padding: 5px !important;
  4703. width: auto !important;
  4704. height: auto !important;
  4705. }
  4706. .bg-teal-gradient {
  4707. background: #39cccc !important;
  4708. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
  4709. background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
  4710. background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
  4711. background: -o-linear-gradient(#7adddd, #39cccc) !important;
  4712. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
  4713. color: #fff;
  4714. }
  4715. .bg-light-blue-gradient {
  4716. background: #3c8dbc !important;
  4717. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  4718. background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  4719. background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  4720. background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  4721. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  4722. color: #fff;
  4723. }
  4724. .bg-blue-gradient {
  4725. background: #0073b7 !important;
  4726. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  4727. background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  4728. background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  4729. background: -o-linear-gradient(#0089db, #0073b7) !important;
  4730. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  4731. color: #fff;
  4732. }
  4733. .bg-aqua-gradient {
  4734. background: #00c0ef !important;
  4735. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  4736. background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  4737. background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  4738. background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  4739. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  4740. color: #fff;
  4741. }
  4742. .bg-yellow-gradient {
  4743. background: #f39c12 !important;
  4744. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  4745. background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  4746. background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  4747. background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  4748. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  4749. color: #fff;
  4750. }
  4751. .bg-purple-gradient {
  4752. background: #605ca8 !important;
  4753. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
  4754. background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  4755. background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
  4756. background: -o-linear-gradient(#9491c4, #605ca8) !important;
  4757. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  4758. color: #fff;
  4759. }
  4760. .bg-green-gradient {
  4761. background: #00a65a !important;
  4762. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  4763. background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  4764. background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
  4765. background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  4766. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  4767. color: #fff;
  4768. }
  4769. .bg-red-gradient {
  4770. background: #dd4b39 !important;
  4771. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
  4772. background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
  4773. background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important;
  4774. background: -o-linear-gradient(#e47365, #dd4b39) !important;
  4775. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
  4776. color: #fff;
  4777. }
  4778. .bg-black-gradient {
  4779. background: #111111 !important;
  4780. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111111), color-stop(1, #2b2b2b)) !important;
  4781. background: -ms-linear-gradient(bottom, #111111, #2b2b2b) !important;
  4782. background: -moz-linear-gradient(center bottom, #111111 0%, #2b2b2b 100%) !important;
  4783. background: -o-linear-gradient(#2b2b2b, #111111) !important;
  4784. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111111', GradientType=0) !important;
  4785. color: #fff;
  4786. }
  4787. .bg-maroon-gradient {
  4788. background: #d81b60 !important;
  4789. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d81b60), color-stop(1, #e73f7c)) !important;
  4790. background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important;
  4791. background: -moz-linear-gradient(center bottom, #d81b60 0%, #e73f7c 100%) !important;
  4792. background: -o-linear-gradient(#e73f7c, #d81b60) !important;
  4793. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important;
  4794. color: #fff;
  4795. }
  4796. .description-block .description-icon {
  4797. font-size: 16px;
  4798. }
  4799. .no-pad-top {
  4800. padding-top: 0;
  4801. }
  4802. .position-static {
  4803. position: static !important;
  4804. }
  4805. .list-header {
  4806. font-size: 15px;
  4807. padding: 10px 4px;
  4808. font-weight: bold;
  4809. color: #666;
  4810. }
  4811. .list-seperator {
  4812. height: 1px;
  4813. background: #f4f4f4;
  4814. margin: 15px 0 9px 0;
  4815. }
  4816. .list-link > a {
  4817. padding: 4px;
  4818. color: #777;
  4819. }
  4820. .list-link > a:hover {
  4821. color: #222;
  4822. }
  4823. .font-light {
  4824. font-weight: 300;
  4825. }
  4826. .user-block:before,
  4827. .user-block:after {
  4828. content: " ";
  4829. display: table;
  4830. }
  4831. .user-block:after {
  4832. clear: both;
  4833. }
  4834. .user-block img {
  4835. width: 40px;
  4836. height: 40px;
  4837. float: left;
  4838. }
  4839. .user-block .username,
  4840. .user-block .description,
  4841. .user-block .comment {
  4842. display: block;
  4843. margin-left: 50px;
  4844. }
  4845. .user-block .username {
  4846. font-size: 16px;
  4847. font-weight: 600;
  4848. }
  4849. .user-block .description {
  4850. color: #999;
  4851. font-size: 13px;
  4852. }
  4853. .user-block.user-block-sm .username,
  4854. .user-block.user-block-sm .description,
  4855. .user-block.user-block-sm .comment {
  4856. margin-left: 40px;
  4857. }
  4858. .user-block.user-block-sm .username {
  4859. font-size: 14px;
  4860. }
  4861. .img-sm,
  4862. .img-md,
  4863. .img-lg,
  4864. .box-comments .box-comment img,
  4865. .user-block.user-block-sm img {
  4866. float: left;
  4867. }
  4868. .img-sm,
  4869. .box-comments .box-comment img,
  4870. .user-block.user-block-sm img {
  4871. width: 30px !important;
  4872. height: 30px !important;
  4873. }
  4874. .img-sm + .img-push {
  4875. margin-left: 40px;
  4876. }
  4877. .img-md {
  4878. width: 60px;
  4879. height: 60px;
  4880. }
  4881. .img-md + .img-push {
  4882. margin-left: 70px;
  4883. }
  4884. .img-lg {
  4885. width: 100px;
  4886. height: 100px;
  4887. }
  4888. .img-lg + .img-push {
  4889. margin-left: 110px;
  4890. }
  4891. .img-bordered {
  4892. border: 3px solid #d2d6de;
  4893. padding: 3px;
  4894. }
  4895. .img-bordered-sm {
  4896. border: 2px solid #d2d6de;
  4897. padding: 2px;
  4898. }
  4899. .attachment-block {
  4900. border: 1px solid #f4f4f4;
  4901. padding: 5px;
  4902. margin-bottom: 10px;
  4903. background: #f7f7f7;
  4904. }
  4905. .attachment-block .attachment-img {
  4906. max-width: 100px;
  4907. max-height: 100px;
  4908. height: auto;
  4909. float: left;
  4910. }
  4911. .attachment-block .attachment-pushed {
  4912. margin-left: 110px;
  4913. }
  4914. .attachment-block .attachment-heading {
  4915. margin: 0;
  4916. }
  4917. .attachment-block .attachment-text {
  4918. color: #555;
  4919. }
  4920. .connectedSortable {
  4921. min-height: 100px;
  4922. }
  4923. .ui-helper-hidden-accessible {
  4924. border: 0;
  4925. clip: rect(0 0 0 0);
  4926. height: 1px;
  4927. margin: -1px;
  4928. overflow: hidden;
  4929. padding: 0;
  4930. position: absolute;
  4931. width: 1px;
  4932. }
  4933. .sort-highlight {
  4934. background: #f4f4f4;
  4935. border: 1px dashed #ddd;
  4936. margin-bottom: 10px;
  4937. }
  4938. .full-opacity-hover {
  4939. opacity: 0.65;
  4940. filter: alpha(opacity=65);
  4941. }
  4942. .full-opacity-hover:hover {
  4943. opacity: 1;
  4944. filter: alpha(opacity=100);
  4945. }
  4946. .chart {
  4947. position: relative;
  4948. overflow: hidden;
  4949. width: 100%;
  4950. }
  4951. .chart svg,
  4952. .chart canvas {
  4953. width: 100% !important;
  4954. }
  4955. hr {
  4956. border-top: 1px solid #555555;
  4957. }
  4958. /*
  4959. * Misc: print
  4960. * -----------
  4961. */
  4962. @media print {
  4963. .no-print,
  4964. .main-sidebar,
  4965. .left-side,
  4966. .main-header,
  4967. .content-header {
  4968. display: none !important;
  4969. }
  4970. .content-wrapper,
  4971. .right-side,
  4972. .main-footer {
  4973. margin-left: 0 !important;
  4974. min-height: 0 !important;
  4975. -webkit-transform: translate(0, 0) !important;
  4976. -ms-transform: translate(0, 0) !important;
  4977. -o-transform: translate(0, 0) !important;
  4978. transform: translate(0, 0) !important;
  4979. }
  4980. .fixed .content-wrapper,
  4981. .fixed .right-side {
  4982. padding-top: 0 !important;
  4983. }
  4984. .invoice {
  4985. width: 100%;
  4986. border: 0;
  4987. margin: 0;
  4988. padding: 0;
  4989. }
  4990. .invoice-col {
  4991. float: left;
  4992. width: 33.3333333%;
  4993. }
  4994. .table-responsive {
  4995. overflow: auto;
  4996. }
  4997. .table-responsive > .table tr th,
  4998. .table-responsive > .table tr td {
  4999. white-space: normal !important;
  5000. }
  5001. }