AdminLTE.css 103 KB

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