AdminLTE.css 90 KB

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