AdminLTE-without-plugins.css 88 KB

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