AdminLTE.css 109 KB

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