AdminLTE.css 95 KB

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