AdminLTE-without-plugins.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655
  1. @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic);
  2. /*!
  3. * AdminLTE v2.3.5 Without Third-Party Plugins
  4. * Author: Almsaeed Studio
  5. * Website: Almsaeed Studio <http://almsaeedstudio.com>
  6. * License: Open source - MIT
  7. * Please visit http://opensource.org/licenses/MIT for more information
  8. !*/
  9. /*
  10. * Core: General Layout Style
  11. * -------------------------
  12. */
  13. html,
  14. body {
  15. height: 100%;
  16. }
  17. .layout-boxed html,
  18. .layout-boxed body {
  19. height: 100%;
  20. }
  21. body {
  22. font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  23. font-weight: 400;
  24. overflow-x: hidden;
  25. overflow-y: auto;
  26. }
  27. /* Layout */
  28. .wrapper {
  29. height: 100%;
  30. position: relative;
  31. overflow-x: hidden;
  32. overflow-y: auto;
  33. }
  34. .wrapper:before,
  35. .wrapper:after {
  36. content: " ";
  37. display: table;
  38. }
  39. .wrapper:after {
  40. clear: both;
  41. }
  42. .layout-boxed .wrapper {
  43. max-width: 1250px;
  44. margin: 0 auto;
  45. min-height: 100%;
  46. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  47. position: relative;
  48. }
  49. .layout-boxed {
  50. background: url('../img/boxed-bg.jpg') repeat fixed;
  51. }
  52. /*
  53. * Content Wrapper - contains the main content
  54. * ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper ```
  55. */
  56. .content-wrapper,
  57. .right-side,
  58. .main-footer {
  59. -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  60. -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  61. -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  62. transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  63. margin-left: 230px;
  64. z-index: 820;
  65. }
  66. .layout-top-nav .content-wrapper,
  67. .layout-top-nav .right-side,
  68. .layout-top-nav .main-footer {
  69. margin-left: 0;
  70. }
  71. @media (max-width: 767px) {
  72. .content-wrapper,
  73. .right-side,
  74. .main-footer {
  75. margin-left: 0;
  76. }
  77. }
  78. @media (min-width: 768px) {
  79. .sidebar-collapse .content-wrapper,
  80. .sidebar-collapse .right-side,
  81. .sidebar-collapse .main-footer {
  82. margin-left: 0;
  83. }
  84. }
  85. @media (max-width: 767px) {
  86. .sidebar-open .content-wrapper,
  87. .sidebar-open .right-side,
  88. .sidebar-open .main-footer {
  89. -webkit-transform: translate(230px, 0);
  90. -ms-transform: translate(230px, 0);
  91. -o-transform: translate(230px, 0);
  92. transform: translate(230px, 0);
  93. }
  94. }
  95. .content-wrapper,
  96. .right-side {
  97. min-height: 100%;
  98. background-color: #ecf0f5;
  99. z-index: 800;
  100. }
  101. .main-footer {
  102. background: #fff;
  103. padding: 15px;
  104. color: #444;
  105. border-top: 1px solid #d2d6de;
  106. }
  107. /* Fixed layout */
  108. .fixed .main-header,
  109. .fixed .main-sidebar,
  110. .fixed .left-side {
  111. position: fixed;
  112. }
  113. .fixed .main-header {
  114. top: 0;
  115. right: 0;
  116. left: 0;
  117. }
  118. .fixed .content-wrapper,
  119. .fixed .right-side {
  120. padding-top: 50px;
  121. }
  122. @media (max-width: 767px) {
  123. .fixed .content-wrapper,
  124. .fixed .right-side {
  125. padding-top: 100px;
  126. }
  127. }
  128. .fixed.layout-boxed .wrapper {
  129. max-width: 100%;
  130. }
  131. body.hold-transition .content-wrapper,
  132. body.hold-transition .right-side,
  133. body.hold-transition .main-footer,
  134. body.hold-transition .main-sidebar,
  135. body.hold-transition .left-side,
  136. body.hold-transition .main-header .navbar,
  137. body.hold-transition .main-header .logo {
  138. /* Fix for IE */
  139. -webkit-transition: none;
  140. -o-transition: none;
  141. transition: none;
  142. }
  143. /* Content */
  144. .content {
  145. min-height: 250px;
  146. padding: 15px;
  147. margin-right: auto;
  148. margin-left: auto;
  149. padding-left: 15px;
  150. padding-right: 15px;
  151. }
  152. /* H1 - H6 font */
  153. h1,
  154. h2,
  155. h3,
  156. h4,
  157. h5,
  158. h6,
  159. .h1,
  160. .h2,
  161. .h3,
  162. .h4,
  163. .h5,
  164. .h6 {
  165. font-family: 'Source Sans Pro', sans-serif;
  166. }
  167. /* General Links */
  168. a {
  169. color: #3c8dbc;
  170. }
  171. a:hover,
  172. a:active,
  173. a:focus {
  174. outline: none;
  175. text-decoration: none;
  176. color: #72afd2;
  177. }
  178. /* Page Header */
  179. .page-header {
  180. margin: 10px 0 20px 0;
  181. font-size: 22px;
  182. }
  183. .page-header > small {
  184. color: #666;
  185. display: block;
  186. margin-top: 5px;
  187. }
  188. /*
  189. * Component: Main Header
  190. * ----------------------
  191. */
  192. .main-header {
  193. position: relative;
  194. max-height: 100px;
  195. z-index: 1030;
  196. }
  197. .main-header .navbar {
  198. -webkit-transition: margin-left 0.3s ease-in-out;
  199. -o-transition: margin-left 0.3s ease-in-out;
  200. transition: margin-left 0.3s ease-in-out;
  201. margin-bottom: 0;
  202. margin-left: 230px;
  203. border: none;
  204. min-height: 50px;
  205. border-radius: 0;
  206. }
  207. .layout-top-nav .main-header .navbar {
  208. margin-left: 0;
  209. }
  210. .main-header #navbar-search-input.form-control {
  211. background: rgba(255, 255, 255, 0.2);
  212. border-color: transparent;
  213. }
  214. .main-header #navbar-search-input.form-control:focus,
  215. .main-header #navbar-search-input.form-control:active {
  216. border-color: rgba(0, 0, 0, 0.1);
  217. background: rgba(255, 255, 255, 0.9);
  218. }
  219. .main-header #navbar-search-input.form-control::-moz-placeholder {
  220. color: #ccc;
  221. opacity: 1;
  222. }
  223. .main-header #navbar-search-input.form-control:-ms-input-placeholder {
  224. color: #ccc;
  225. }
  226. .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
  227. color: #ccc;
  228. }
  229. .main-header .navbar-custom-menu,
  230. .main-header .navbar-right {
  231. float: right;
  232. }
  233. @media (max-width: 991px) {
  234. .main-header .navbar-custom-menu a,
  235. .main-header .navbar-right a {
  236. color: inherit;
  237. background: transparent;
  238. }
  239. }
  240. @media (max-width: 767px) {
  241. .main-header .navbar-right {
  242. float: none;
  243. }
  244. .navbar-collapse .main-header .navbar-right {
  245. margin: 7.5px -15px;
  246. }
  247. .main-header .navbar-right > li {
  248. color: inherit;
  249. border: 0;
  250. }
  251. }
  252. .main-header .sidebar-toggle {
  253. float: left;
  254. background-color: transparent;
  255. background-image: none;
  256. padding: 15px 15px;
  257. font-family: fontAwesome;
  258. }
  259. .main-header .sidebar-toggle:before {
  260. content: "\f0c9";
  261. }
  262. .main-header .sidebar-toggle:hover {
  263. color: #fff;
  264. }
  265. .main-header .sidebar-toggle:focus,
  266. .main-header .sidebar-toggle:active {
  267. background: transparent;
  268. }
  269. .main-header .sidebar-toggle .icon-bar {
  270. display: none;
  271. }
  272. .main-header .navbar .nav > li.user > a > .fa,
  273. .main-header .navbar .nav > li.user > a > .glyphicon,
  274. .main-header .navbar .nav > li.user > a > .ion {
  275. margin-right: 5px;
  276. }
  277. .main-header .navbar .nav > li > a > .label {
  278. position: absolute;
  279. top: 9px;
  280. right: 7px;
  281. text-align: center;
  282. font-size: 9px;
  283. padding: 2px 3px;
  284. line-height: .9;
  285. }
  286. .main-header .logo {
  287. -webkit-transition: width 0.3s ease-in-out;
  288. -o-transition: width 0.3s ease-in-out;
  289. transition: width 0.3s ease-in-out;
  290. display: block;
  291. float: left;
  292. height: 50px;
  293. font-size: 20px;
  294. line-height: 50px;
  295. text-align: center;
  296. width: 230px;
  297. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  298. padding: 0 15px;
  299. font-weight: 300;
  300. overflow: hidden;
  301. }
  302. .main-header .logo .logo-lg {
  303. display: block;
  304. }
  305. .main-header .logo .logo-mini {
  306. display: none;
  307. }
  308. .main-header .navbar-brand {
  309. color: #fff;
  310. }
  311. .content-header {
  312. position: relative;
  313. padding: 15px 15px 0 15px;
  314. }
  315. .content-header > h1 {
  316. margin: 0;
  317. font-size: 24px;
  318. }
  319. .content-header > h1 > small {
  320. font-size: 15px;
  321. display: inline-block;
  322. padding-left: 4px;
  323. font-weight: 300;
  324. }
  325. .content-header > .breadcrumb {
  326. float: right;
  327. background: transparent;
  328. margin-top: 0;
  329. margin-bottom: 0;
  330. font-size: 12px;
  331. padding: 7px 5px;
  332. position: absolute;
  333. top: 15px;
  334. right: 10px;
  335. border-radius: 2px;
  336. }
  337. .content-header > .breadcrumb > li > a {
  338. color: #444;
  339. text-decoration: none;
  340. display: inline-block;
  341. }
  342. .content-header > .breadcrumb > li > a > .fa,
  343. .content-header > .breadcrumb > li > a > .glyphicon,
  344. .content-header > .breadcrumb > li > a > .ion {
  345. margin-right: 5px;
  346. }
  347. .content-header > .breadcrumb > li + li:before {
  348. content: '>\00a0';
  349. }
  350. @media (max-width: 991px) {
  351. .content-header > .breadcrumb {
  352. position: relative;
  353. margin-top: 5px;
  354. top: 0;
  355. right: 0;
  356. float: none;
  357. background: #d2d6de;
  358. padding-left: 10px;
  359. }
  360. .content-header > .breadcrumb li:before {
  361. color: #97a0b3;
  362. }
  363. }
  364. .navbar-toggle {
  365. color: #fff;
  366. border: 0;
  367. margin: 0;
  368. padding: 15px 15px;
  369. }
  370. @media (max-width: 991px) {
  371. .navbar-custom-menu .navbar-nav > li {
  372. float: left;
  373. }
  374. .navbar-custom-menu .navbar-nav {
  375. margin: 0;
  376. float: left;
  377. }
  378. .navbar-custom-menu .navbar-nav > li > a {
  379. padding-top: 15px;
  380. padding-bottom: 15px;
  381. line-height: 20px;
  382. }
  383. }
  384. @media (max-width: 767px) {
  385. .main-header {
  386. position: relative;
  387. }
  388. .main-header .logo,
  389. .main-header .navbar {
  390. width: 100%;
  391. float: none;
  392. }
  393. .main-header .navbar {
  394. margin: 0;
  395. }
  396. .main-header .navbar-custom-menu {
  397. float: right;
  398. }
  399. }
  400. @media (max-width: 991px) {
  401. .navbar-collapse.pull-left {
  402. float: none !important;
  403. }
  404. .navbar-collapse.pull-left + .navbar-custom-menu {
  405. display: block;
  406. position: absolute;
  407. top: 0;
  408. right: 40px;
  409. }
  410. }
  411. /*
  412. * Component: Sidebar
  413. * ------------------
  414. */
  415. .main-sidebar,
  416. .left-side {
  417. position: absolute;
  418. top: 0;
  419. left: 0;
  420. padding-top: 50px;
  421. min-height: 100%;
  422. width: 230px;
  423. z-index: 810;
  424. -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  425. -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  426. -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  427. transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  428. }
  429. @media (max-width: 767px) {
  430. .main-sidebar,
  431. .left-side {
  432. padding-top: 100px;
  433. }
  434. }
  435. @media (max-width: 767px) {
  436. .main-sidebar,
  437. .left-side {
  438. -webkit-transform: translate(-230px, 0);
  439. -ms-transform: translate(-230px, 0);
  440. -o-transform: translate(-230px, 0);
  441. transform: translate(-230px, 0);
  442. }
  443. }
  444. @media (min-width: 768px) {
  445. .sidebar-collapse .main-sidebar,
  446. .sidebar-collapse .left-side {
  447. -webkit-transform: translate(-230px, 0);
  448. -ms-transform: translate(-230px, 0);
  449. -o-transform: translate(-230px, 0);
  450. transform: translate(-230px, 0);
  451. }
  452. }
  453. @media (max-width: 767px) {
  454. .sidebar-open .main-sidebar,
  455. .sidebar-open .left-side {
  456. -webkit-transform: translate(0, 0);
  457. -ms-transform: translate(0, 0);
  458. -o-transform: translate(0, 0);
  459. transform: translate(0, 0);
  460. }
  461. }
  462. .sidebar {
  463. padding-bottom: 10px;
  464. }
  465. .sidebar-form input:focus {
  466. border-color: transparent;
  467. }
  468. .user-panel {
  469. position: relative;
  470. width: 100%;
  471. padding: 10px;
  472. overflow: hidden;
  473. }
  474. .user-panel:before,
  475. .user-panel:after {
  476. content: " ";
  477. display: table;
  478. }
  479. .user-panel:after {
  480. clear: both;
  481. }
  482. .user-panel > .image > img {
  483. width: 100%;
  484. max-width: 45px;
  485. height: auto;
  486. }
  487. .user-panel > .info {
  488. padding: 5px 5px 5px 15px;
  489. line-height: 1;
  490. position: absolute;
  491. left: 55px;
  492. }
  493. .user-panel > .info > p {
  494. font-weight: 600;
  495. margin-bottom: 9px;
  496. }
  497. .user-panel > .info > a {
  498. text-decoration: none;
  499. padding-right: 5px;
  500. margin-top: 3px;
  501. font-size: 11px;
  502. }
  503. .user-panel > .info > a > .fa,
  504. .user-panel > .info > a > .ion,
  505. .user-panel > .info > a > .glyphicon {
  506. margin-right: 3px;
  507. }
  508. .sidebar-menu {
  509. list-style: none;
  510. margin: 0;
  511. padding: 0;
  512. }
  513. .sidebar-menu > li {
  514. position: relative;
  515. margin: 0;
  516. padding: 0;
  517. }
  518. .sidebar-menu > li > a {
  519. padding: 12px 5px 12px 15px;
  520. display: block;
  521. }
  522. .sidebar-menu > li > a > .fa,
  523. .sidebar-menu > li > a > .glyphicon,
  524. .sidebar-menu > li > a > .ion {
  525. width: 20px;
  526. }
  527. .sidebar-menu > li .label,
  528. .sidebar-menu > li .badge {
  529. margin-right: 5px;
  530. }
  531. .sidebar-menu > li .badge {
  532. margin-top: 3px;
  533. }
  534. .sidebar-menu li.header {
  535. padding: 10px 25px 10px 15px;
  536. font-size: 12px;
  537. }
  538. .sidebar-menu li > a > .fa-angle-left,
  539. .sidebar-menu li > a > .pull-right-container > .fa-angle-left {
  540. width: auto;
  541. height: auto;
  542. padding: 0;
  543. margin-right: 10px;
  544. }
  545. .sidebar-menu li > a > .fa-angle-left {
  546. position: absolute;
  547. top: 50%;
  548. right: 10px;
  549. margin-top: -8px;
  550. }
  551. .sidebar-menu li.active > a > .fa-angle-left,
  552. .sidebar-menu li.active > a > .pull-right-container > .fa-angle-left {
  553. -webkit-transform: rotate(-90deg);
  554. -ms-transform: rotate(-90deg);
  555. -o-transform: rotate(-90deg);
  556. transform: rotate(-90deg);
  557. }
  558. .sidebar-menu li.active > .treeview-menu {
  559. display: block;
  560. }
  561. .sidebar-menu .treeview-menu {
  562. display: none;
  563. list-style: none;
  564. padding: 0;
  565. margin: 0;
  566. padding-left: 5px;
  567. }
  568. .sidebar-menu .treeview-menu .treeview-menu {
  569. padding-left: 20px;
  570. }
  571. .sidebar-menu .treeview-menu > li {
  572. margin: 0;
  573. }
  574. .sidebar-menu .treeview-menu > li > a {
  575. padding: 5px 5px 5px 15px;
  576. display: block;
  577. font-size: 14px;
  578. }
  579. .sidebar-menu .treeview-menu > li > a > .fa,
  580. .sidebar-menu .treeview-menu > li > a > .glyphicon,
  581. .sidebar-menu .treeview-menu > li > a > .ion {
  582. width: 20px;
  583. }
  584. .sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-left,
  585. .sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
  586. .sidebar-menu .treeview-menu > li > a > .fa-angle-left,
  587. .sidebar-menu .treeview-menu > li > a > .fa-angle-down {
  588. width: auto;
  589. }
  590. /*
  591. * Component: Sidebar Mini
  592. */
  593. @media (min-width: 768px) {
  594. .sidebar-mini.sidebar-collapse .content-wrapper,
  595. .sidebar-mini.sidebar-collapse .right-side,
  596. .sidebar-mini.sidebar-collapse .main-footer {
  597. margin-left: 50px !important;
  598. z-index: 840;
  599. }
  600. .sidebar-mini.sidebar-collapse .main-sidebar {
  601. -webkit-transform: translate(0, 0);
  602. -ms-transform: translate(0, 0);
  603. -o-transform: translate(0, 0);
  604. transform: translate(0, 0);
  605. width: 50px !important;
  606. z-index: 850;
  607. }
  608. .sidebar-mini.sidebar-collapse .sidebar-menu > li {
  609. position: relative;
  610. }
  611. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
  612. margin-right: 0;
  613. }
  614. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
  615. border-top-right-radius: 4px;
  616. }
  617. .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
  618. border-bottom-right-radius: 4px;
  619. }
  620. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
  621. padding-top: 5px;
  622. padding-bottom: 5px;
  623. border-bottom-right-radius: 4px;
  624. }
  625. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
  626. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  627. display: block !important;
  628. position: absolute;
  629. width: 180px;
  630. left: 50px;
  631. }
  632. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
  633. top: 0;
  634. margin-left: -3px;
  635. padding: 12px 5px 12px 20px;
  636. background-color: inherit;
  637. }
  638. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
  639. position: relative!important;
  640. float: right;
  641. width: auto!important;
  642. left: 180px !important;
  643. top: -22px !important;
  644. z-index: 900;
  645. }
  646. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) {
  647. display: none;
  648. }
  649. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  650. top: 44px;
  651. margin-left: 0;
  652. }
  653. .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  654. .sidebar-mini.sidebar-collapse .sidebar-form,
  655. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
  656. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
  657. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
  658. .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
  659. display: none !important;
  660. -webkit-transform: translateZ(0);
  661. }
  662. .sidebar-mini.sidebar-collapse .main-header .logo {
  663. width: 50px;
  664. }
  665. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
  666. display: block;
  667. margin-left: -15px;
  668. margin-right: -15px;
  669. font-size: 18px;
  670. }
  671. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
  672. display: none;
  673. }
  674. .sidebar-mini.sidebar-collapse .main-header .navbar {
  675. margin-left: 50px;
  676. }
  677. }
  678. .sidebar-menu,
  679. .main-sidebar .user-panel,
  680. .sidebar-menu > li.header {
  681. white-space: nowrap;
  682. overflow: hidden;
  683. }
  684. .sidebar-menu:hover {
  685. overflow: visible;
  686. }
  687. .sidebar-form,
  688. .sidebar-menu > li.header {
  689. overflow: hidden;
  690. text-overflow: clip;
  691. }
  692. .sidebar-menu li > a {
  693. position: relative;
  694. }
  695. .sidebar-menu li > a > .pull-right-container {
  696. position: absolute;
  697. right: 10px;
  698. top: 50%;
  699. margin-top: -7px;
  700. }
  701. /*
  702. * Component: Control sidebar. By default, this is the right sidebar.
  703. */
  704. .control-sidebar-bg {
  705. position: fixed;
  706. z-index: 1000;
  707. bottom: 0;
  708. }
  709. .control-sidebar-bg,
  710. .control-sidebar {
  711. top: 0;
  712. right: -230px;
  713. width: 230px;
  714. -webkit-transition: right 0.3s ease-in-out;
  715. -o-transition: right 0.3s ease-in-out;
  716. transition: right 0.3s ease-in-out;
  717. }
  718. .control-sidebar {
  719. position: absolute;
  720. padding-top: 50px;
  721. z-index: 1010;
  722. }
  723. @media (max-width: 768px) {
  724. .control-sidebar {
  725. padding-top: 100px;
  726. }
  727. }
  728. .control-sidebar > .tab-content {
  729. padding: 10px 15px;
  730. }
  731. .control-sidebar.control-sidebar-open,
  732. .control-sidebar.control-sidebar-open + .control-sidebar-bg {
  733. right: 0;
  734. }
  735. .control-sidebar-open .control-sidebar-bg,
  736. .control-sidebar-open .control-sidebar {
  737. right: 0;
  738. }
  739. @media (min-width: 768px) {
  740. .control-sidebar-open .content-wrapper,
  741. .control-sidebar-open .right-side,
  742. .control-sidebar-open .main-footer {
  743. margin-right: 230px;
  744. }
  745. }
  746. .nav-tabs.control-sidebar-tabs > li:first-of-type > a,
  747. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
  748. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
  749. border-left-width: 0;
  750. }
  751. .nav-tabs.control-sidebar-tabs > li > a {
  752. border-radius: 0;
  753. }
  754. .nav-tabs.control-sidebar-tabs > li > a,
  755. .nav-tabs.control-sidebar-tabs > li > a:hover {
  756. border-top: none;
  757. border-right: none;
  758. border-left: 1px solid transparent;
  759. border-bottom: 1px solid transparent;
  760. }
  761. .nav-tabs.control-sidebar-tabs > li > a .icon {
  762. font-size: 16px;
  763. }
  764. .nav-tabs.control-sidebar-tabs > li.active > a,
  765. .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  766. .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  767. .nav-tabs.control-sidebar-tabs > li.active > a:active {
  768. border-top: none;
  769. border-right: none;
  770. border-bottom: none;
  771. }
  772. @media (max-width: 768px) {
  773. .nav-tabs.control-sidebar-tabs {
  774. display: table;
  775. }
  776. .nav-tabs.control-sidebar-tabs > li {
  777. display: table-cell;
  778. }
  779. }
  780. .control-sidebar-heading {
  781. font-weight: 400;
  782. font-size: 16px;
  783. padding: 10px 0;
  784. margin-bottom: 10px;
  785. }
  786. .control-sidebar-subheading {
  787. display: block;
  788. font-weight: 400;
  789. font-size: 14px;
  790. }
  791. .control-sidebar-menu {
  792. list-style: none;
  793. padding: 0;
  794. margin: 0 -15px;
  795. }
  796. .control-sidebar-menu > li > a {
  797. display: block;
  798. padding: 10px 15px;
  799. }
  800. .control-sidebar-menu > li > a:before,
  801. .control-sidebar-menu > li > a:after {
  802. content: " ";
  803. display: table;
  804. }
  805. .control-sidebar-menu > li > a:after {
  806. clear: both;
  807. }
  808. .control-sidebar-menu > li > a > .control-sidebar-subheading {
  809. margin-top: 0;
  810. }
  811. .control-sidebar-menu .menu-icon {
  812. float: left;
  813. width: 35px;
  814. height: 35px;
  815. border-radius: 50%;
  816. text-align: center;
  817. line-height: 35px;
  818. }
  819. .control-sidebar-menu .menu-info {
  820. margin-left: 45px;
  821. margin-top: 3px;
  822. }
  823. .control-sidebar-menu .menu-info > .control-sidebar-subheading {
  824. margin: 0;
  825. }
  826. .control-sidebar-menu .menu-info > p {
  827. margin: 0;
  828. font-size: 11px;
  829. }
  830. .control-sidebar-menu .progress {
  831. margin: 0;
  832. }
  833. .control-sidebar-dark {
  834. color: #b8c7ce;
  835. }
  836. .control-sidebar-dark,
  837. .control-sidebar-dark + .control-sidebar-bg {
  838. background: #222d32;
  839. }
  840. .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  841. border-bottom: #1c2529;
  842. }
  843. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  844. background: #181f23;
  845. color: #b8c7ce;
  846. }
  847. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
  848. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  849. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  850. border-left-color: #141a1d;
  851. border-bottom-color: #141a1d;
  852. }
  853. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  854. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
  855. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  856. background: #1c2529;
  857. }
  858. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  859. color: #fff;
  860. }
  861. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
  862. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  863. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  864. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  865. background: #222d32;
  866. color: #fff;
  867. }
  868. .control-sidebar-dark .control-sidebar-heading,
  869. .control-sidebar-dark .control-sidebar-subheading {
  870. color: #fff;
  871. }
  872. .control-sidebar-dark .control-sidebar-menu > li > a:hover {
  873. background: #1e282c;
  874. }
  875. .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  876. color: #b8c7ce;
  877. }
  878. .control-sidebar-light {
  879. color: #5e5e5e;
  880. }
  881. .control-sidebar-light,
  882. .control-sidebar-light + .control-sidebar-bg {
  883. background: #f9fafc;
  884. border-left: 1px solid #d2d6de;
  885. }
  886. .control-sidebar-light .nav-tabs.control-sidebar-tabs {
  887. border-bottom: #d2d6de;
  888. }
  889. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  890. background: #e8ecf4;
  891. color: #444444;
  892. }
  893. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
  894. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  895. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  896. border-left-color: #d2d6de;
  897. border-bottom-color: #d2d6de;
  898. }
  899. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  900. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
  901. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  902. background: #eff1f7;
  903. }
  904. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
  905. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  906. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  907. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  908. background: #f9fafc;
  909. color: #111;
  910. }
  911. .control-sidebar-light .control-sidebar-heading,
  912. .control-sidebar-light .control-sidebar-subheading {
  913. color: #111;
  914. }
  915. .control-sidebar-light .control-sidebar-menu {
  916. margin-left: -14px;
  917. }
  918. .control-sidebar-light .control-sidebar-menu > li > a:hover {
  919. background: #f4f4f5;
  920. }
  921. .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  922. color: #5e5e5e;
  923. }
  924. /*
  925. * Component: Dropdown menus
  926. * -------------------------
  927. */
  928. /*Dropdowns in general*/
  929. .dropdown-menu {
  930. box-shadow: none;
  931. border-color: #eee;
  932. }
  933. .dropdown-menu > li > a {
  934. color: #777;
  935. }
  936. .dropdown-menu > li > a > .glyphicon,
  937. .dropdown-menu > li > a > .fa,
  938. .dropdown-menu > li > a > .ion {
  939. margin-right: 10px;
  940. }
  941. .dropdown-menu > li > a:hover {
  942. background-color: #e1e3e9;
  943. color: #333;
  944. }
  945. .dropdown-menu > .divider {
  946. background-color: #eee;
  947. }
  948. .navbar-nav > .notifications-menu > .dropdown-menu,
  949. .navbar-nav > .messages-menu > .dropdown-menu,
  950. .navbar-nav > .tasks-menu > .dropdown-menu {
  951. width: 280px;
  952. padding: 0 0 0 0;
  953. margin: 0;
  954. top: 100%;
  955. }
  956. .navbar-nav > .notifications-menu > .dropdown-menu > li,
  957. .navbar-nav > .messages-menu > .dropdown-menu > li,
  958. .navbar-nav > .tasks-menu > .dropdown-menu > li {
  959. position: relative;
  960. }
  961. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  962. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  963. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  964. border-top-left-radius: 4px;
  965. border-top-right-radius: 4px;
  966. border-bottom-right-radius: 0;
  967. border-bottom-left-radius: 0;
  968. background-color: #ffffff;
  969. padding: 7px 10px;
  970. border-bottom: 1px solid #f4f4f4;
  971. color: #444444;
  972. font-size: 14px;
  973. }
  974. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  975. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  976. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  977. border-top-left-radius: 0;
  978. border-top-right-radius: 0;
  979. border-bottom-right-radius: 4px;
  980. border-bottom-left-radius: 4px;
  981. font-size: 12px;
  982. background-color: #fff;
  983. padding: 7px 10px;
  984. border-bottom: 1px solid #eeeeee;
  985. color: #444 !important;
  986. text-align: center;
  987. }
  988. @media (max-width: 991px) {
  989. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  990. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  991. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  992. background: #fff !important;
  993. color: #444 !important;
  994. }
  995. }
  996. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  997. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  998. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  999. text-decoration: none;
  1000. font-weight: normal;
  1001. }
  1002. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  1003. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  1004. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  1005. max-height: 200px;
  1006. margin: 0;
  1007. padding: 0;
  1008. list-style: none;
  1009. overflow-x: hidden;
  1010. }
  1011. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  1012. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  1013. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1014. display: block;
  1015. white-space: nowrap;
  1016. /* Prevent text from breaking */
  1017. border-bottom: 1px solid #f4f4f4;
  1018. }
  1019. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  1020. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  1021. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  1022. background: #f4f4f4;
  1023. text-decoration: none;
  1024. }
  1025. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  1026. color: #444444;
  1027. overflow: hidden;
  1028. text-overflow: ellipsis;
  1029. padding: 10px;
  1030. }
  1031. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  1032. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  1033. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  1034. width: 20px;
  1035. }
  1036. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  1037. margin: 0;
  1038. padding: 10px 10px;
  1039. }
  1040. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  1041. margin: auto 10px auto auto;
  1042. width: 40px;
  1043. height: 40px;
  1044. }
  1045. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  1046. padding: 0;
  1047. margin: 0 0 0 45px;
  1048. color: #444444;
  1049. font-size: 15px;
  1050. position: relative;
  1051. }
  1052. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  1053. color: #999999;
  1054. font-size: 10px;
  1055. position: absolute;
  1056. top: 0;
  1057. right: 0;
  1058. }
  1059. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  1060. margin: 0 0 0 45px;
  1061. font-size: 12px;
  1062. color: #888888;
  1063. }
  1064. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  1065. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1066. content: " ";
  1067. display: table;
  1068. }
  1069. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1070. clear: both;
  1071. }
  1072. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1073. padding: 10px;
  1074. }
  1075. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  1076. font-size: 14px;
  1077. padding: 0;
  1078. margin: 0 0 10px 0;
  1079. color: #666666;
  1080. }
  1081. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  1082. padding: 0;
  1083. margin: 0;
  1084. }
  1085. .navbar-nav > .user-menu > .dropdown-menu {
  1086. border-top-right-radius: 0;
  1087. border-top-left-radius: 0;
  1088. padding: 1px 0 0 0;
  1089. border-top-width: 0;
  1090. width: 280px;
  1091. }
  1092. .navbar-nav > .user-menu > .dropdown-menu,
  1093. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1094. border-bottom-right-radius: 4px;
  1095. border-bottom-left-radius: 4px;
  1096. }
  1097. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  1098. height: 175px;
  1099. padding: 10px;
  1100. text-align: center;
  1101. }
  1102. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  1103. z-index: 5;
  1104. height: 90px;
  1105. width: 90px;
  1106. border: 3px solid;
  1107. border-color: transparent;
  1108. border-color: rgba(255, 255, 255, 0.2);
  1109. }
  1110. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  1111. z-index: 5;
  1112. color: #fff;
  1113. color: rgba(255, 255, 255, 0.8);
  1114. font-size: 17px;
  1115. margin-top: 10px;
  1116. }
  1117. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  1118. display: block;
  1119. font-size: 12px;
  1120. }
  1121. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1122. padding: 15px;
  1123. border-bottom: 1px solid #f4f4f4;
  1124. border-top: 1px solid #dddddd;
  1125. }
  1126. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
  1127. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1128. content: " ";
  1129. display: table;
  1130. }
  1131. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1132. clear: both;
  1133. }
  1134. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1135. color: #444 !important;
  1136. }
  1137. @media (max-width: 991px) {
  1138. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1139. background: #fff !important;
  1140. color: #444 !important;
  1141. }
  1142. }
  1143. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  1144. background-color: #f9f9f9;
  1145. padding: 10px;
  1146. }
  1147. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
  1148. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1149. content: " ";
  1150. display: table;
  1151. }
  1152. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1153. clear: both;
  1154. }
  1155. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  1156. color: #666666;
  1157. }
  1158. @media (max-width: 991px) {
  1159. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
  1160. background-color: #f9f9f9;
  1161. }
  1162. }
  1163. .navbar-nav > .user-menu .user-image {
  1164. float: left;
  1165. width: 25px;
  1166. height: 25px;
  1167. border-radius: 50%;
  1168. margin-right: 10px;
  1169. margin-top: -2px;
  1170. }
  1171. @media (max-width: 767px) {
  1172. .navbar-nav > .user-menu .user-image {
  1173. float: none;
  1174. margin-right: 0;
  1175. margin-top: -8px;
  1176. line-height: 10px;
  1177. }
  1178. }
  1179. /* Add fade animation to dropdown menus by appending
  1180. the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
  1181. .open:not(.dropup) > .animated-dropdown-menu {
  1182. backface-visibility: visible !important;
  1183. -webkit-animation: flipInX 0.7s both;
  1184. -o-animation: flipInX 0.7s both;
  1185. animation: flipInX 0.7s both;
  1186. }
  1187. @keyframes flipInX {
  1188. 0% {
  1189. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1190. transition-timing-function: ease-in;
  1191. opacity: 0;
  1192. }
  1193. 40% {
  1194. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1195. transition-timing-function: ease-in;
  1196. }
  1197. 60% {
  1198. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1199. opacity: 1;
  1200. }
  1201. 80% {
  1202. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1203. }
  1204. 100% {
  1205. transform: perspective(400px);
  1206. }
  1207. }
  1208. @-webkit-keyframes flipInX {
  1209. 0% {
  1210. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1211. -webkit-transition-timing-function: ease-in;
  1212. opacity: 0;
  1213. }
  1214. 40% {
  1215. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1216. -webkit-transition-timing-function: ease-in;
  1217. }
  1218. 60% {
  1219. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1220. opacity: 1;
  1221. }
  1222. 80% {
  1223. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1224. }
  1225. 100% {
  1226. -webkit-transform: perspective(400px);
  1227. }
  1228. }
  1229. /* Fix dropdown menu in navbars */
  1230. .navbar-custom-menu > .navbar-nav > li {
  1231. position: relative;
  1232. }
  1233. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1234. position: absolute;
  1235. right: 0;
  1236. left: auto;
  1237. }
  1238. @media (max-width: 991px) {
  1239. .navbar-custom-menu > .navbar-nav {
  1240. float: right;
  1241. }
  1242. .navbar-custom-menu > .navbar-nav > li {
  1243. position: static;
  1244. }
  1245. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1246. position: absolute;
  1247. right: 5%;
  1248. left: auto;
  1249. border: 1px solid #ddd;
  1250. background: #fff;
  1251. }
  1252. }
  1253. /*
  1254. * Component: Form
  1255. * ---------------
  1256. */
  1257. .form-control {
  1258. border-radius: 0;
  1259. box-shadow: none;
  1260. border-color: #d2d6de;
  1261. }
  1262. .form-control:focus {
  1263. border-color: #3c8dbc;
  1264. box-shadow: none;
  1265. }
  1266. .form-control::-moz-placeholder,
  1267. .form-control:-ms-input-placeholder,
  1268. .form-control::-webkit-input-placeholder {
  1269. color: #bbb;
  1270. opacity: 1;
  1271. }
  1272. .form-control:not(select) {
  1273. -webkit-appearance: none;
  1274. -moz-appearance: none;
  1275. appearance: none;
  1276. }
  1277. .form-group.has-success label {
  1278. color: #00a65a;
  1279. }
  1280. .form-group.has-success .form-control,
  1281. .form-group.has-success .input-group-addon {
  1282. border-color: #00a65a;
  1283. box-shadow: none;
  1284. }
  1285. .form-group.has-success .help-block {
  1286. color: #00a65a;
  1287. }
  1288. .form-group.has-warning label {
  1289. color: #f39c12;
  1290. }
  1291. .form-group.has-warning .form-control,
  1292. .form-group.has-warning .input-group-addon {
  1293. border-color: #f39c12;
  1294. box-shadow: none;
  1295. }
  1296. .form-group.has-warning .help-block {
  1297. color: #f39c12;
  1298. }
  1299. .form-group.has-error label {
  1300. color: #dd4b39;
  1301. }
  1302. .form-group.has-error .form-control,
  1303. .form-group.has-error .input-group-addon {
  1304. border-color: #dd4b39;
  1305. box-shadow: none;
  1306. }
  1307. .form-group.has-error .help-block {
  1308. color: #dd4b39;
  1309. }
  1310. /* Input group */
  1311. .input-group .input-group-addon {
  1312. border-radius: 0;
  1313. border-color: #d2d6de;
  1314. background-color: #fff;
  1315. }
  1316. /* button groups */
  1317. .btn-group-vertical .btn.btn-flat:first-of-type,
  1318. .btn-group-vertical .btn.btn-flat:last-of-type {
  1319. border-radius: 0;
  1320. }
  1321. .icheck > label {
  1322. padding-left: 0;
  1323. }
  1324. /* support Font Awesome icons in form-control */
  1325. .form-control-feedback.fa {
  1326. line-height: 34px;
  1327. }
  1328. .input-lg + .form-control-feedback.fa,
  1329. .input-group-lg + .form-control-feedback.fa,
  1330. .form-group-lg .form-control + .form-control-feedback.fa {
  1331. line-height: 46px;
  1332. }
  1333. .input-sm + .form-control-feedback.fa,
  1334. .input-group-sm + .form-control-feedback.fa,
  1335. .form-group-sm .form-control + .form-control-feedback.fa {
  1336. line-height: 30px;
  1337. }
  1338. /*
  1339. * Component: Progress Bar
  1340. * -----------------------
  1341. */
  1342. .progress,
  1343. .progress > .progress-bar {
  1344. -webkit-box-shadow: none;
  1345. box-shadow: none;
  1346. }
  1347. .progress,
  1348. .progress > .progress-bar,
  1349. .progress .progress-bar,
  1350. .progress > .progress-bar .progress-bar {
  1351. border-radius: 1px;
  1352. }
  1353. /* size variation */
  1354. .progress.sm,
  1355. .progress-sm {
  1356. height: 10px;
  1357. }
  1358. .progress.sm,
  1359. .progress-sm,
  1360. .progress.sm .progress-bar,
  1361. .progress-sm .progress-bar {
  1362. border-radius: 1px;
  1363. }
  1364. .progress.xs,
  1365. .progress-xs {
  1366. height: 7px;
  1367. }
  1368. .progress.xs,
  1369. .progress-xs,
  1370. .progress.xs .progress-bar,
  1371. .progress-xs .progress-bar {
  1372. border-radius: 1px;
  1373. }
  1374. .progress.xxs,
  1375. .progress-xxs {
  1376. height: 3px;
  1377. }
  1378. .progress.xxs,
  1379. .progress-xxs,
  1380. .progress.xxs .progress-bar,
  1381. .progress-xxs .progress-bar {
  1382. border-radius: 1px;
  1383. }
  1384. /* Vertical bars */
  1385. .progress.vertical {
  1386. position: relative;
  1387. width: 30px;
  1388. height: 200px;
  1389. display: inline-block;
  1390. margin-right: 10px;
  1391. }
  1392. .progress.vertical > .progress-bar {
  1393. width: 100%;
  1394. position: absolute;
  1395. bottom: 0;
  1396. }
  1397. .progress.vertical.sm,
  1398. .progress.vertical.progress-sm {
  1399. width: 20px;
  1400. }
  1401. .progress.vertical.xs,
  1402. .progress.vertical.progress-xs {
  1403. width: 10px;
  1404. }
  1405. .progress.vertical.xxs,
  1406. .progress.vertical.progress-xxs {
  1407. width: 3px;
  1408. }
  1409. .progress-group .progress-text {
  1410. font-weight: 600;
  1411. }
  1412. .progress-group .progress-number {
  1413. float: right;
  1414. }
  1415. /* Remove margins from progress bars when put in a table */
  1416. .table tr > td .progress {
  1417. margin: 0;
  1418. }
  1419. .progress-bar-light-blue,
  1420. .progress-bar-primary {
  1421. background-color: #3c8dbc;
  1422. }
  1423. .progress-striped .progress-bar-light-blue,
  1424. .progress-striped .progress-bar-primary {
  1425. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1426. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1427. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1428. }
  1429. .progress-bar-green,
  1430. .progress-bar-success {
  1431. background-color: #00a65a;
  1432. }
  1433. .progress-striped .progress-bar-green,
  1434. .progress-striped .progress-bar-success {
  1435. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1436. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1437. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1438. }
  1439. .progress-bar-aqua,
  1440. .progress-bar-info {
  1441. background-color: #00c0ef;
  1442. }
  1443. .progress-striped .progress-bar-aqua,
  1444. .progress-striped .progress-bar-info {
  1445. 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);
  1446. 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);
  1447. 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);
  1448. }
  1449. .progress-bar-yellow,
  1450. .progress-bar-warning {
  1451. background-color: #f39c12;
  1452. }
  1453. .progress-striped .progress-bar-yellow,
  1454. .progress-striped .progress-bar-warning {
  1455. 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);
  1456. 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);
  1457. 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);
  1458. }
  1459. .progress-bar-red,
  1460. .progress-bar-danger {
  1461. background-color: #dd4b39;
  1462. }
  1463. .progress-striped .progress-bar-red,
  1464. .progress-striped .progress-bar-danger {
  1465. 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);
  1466. 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);
  1467. 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);
  1468. }
  1469. /*
  1470. * Component: Small Box
  1471. * --------------------
  1472. */
  1473. .small-box {
  1474. border-radius: 2px;
  1475. position: relative;
  1476. display: block;
  1477. margin-bottom: 20px;
  1478. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1479. }
  1480. .small-box > .inner {
  1481. padding: 10px;
  1482. }
  1483. .small-box > .small-box-footer {
  1484. position: relative;
  1485. text-align: center;
  1486. padding: 3px 0;
  1487. color: #fff;
  1488. color: rgba(255, 255, 255, 0.8);
  1489. display: block;
  1490. z-index: 10;
  1491. background: rgba(0, 0, 0, 0.1);
  1492. text-decoration: none;
  1493. }
  1494. .small-box > .small-box-footer:hover {
  1495. color: #fff;
  1496. background: rgba(0, 0, 0, 0.15);
  1497. }
  1498. .small-box h3 {
  1499. font-size: 38px;
  1500. font-weight: bold;
  1501. margin: 0 0 10px 0;
  1502. white-space: nowrap;
  1503. padding: 0;
  1504. }
  1505. .small-box p {
  1506. font-size: 15px;
  1507. }
  1508. .small-box p > small {
  1509. display: block;
  1510. color: #f9f9f9;
  1511. font-size: 13px;
  1512. margin-top: 5px;
  1513. }
  1514. .small-box h3,
  1515. .small-box p {
  1516. z-index: 5;
  1517. }
  1518. .small-box .icon {
  1519. -webkit-transition: all 0.3s linear;
  1520. -o-transition: all 0.3s linear;
  1521. transition: all 0.3s linear;
  1522. position: absolute;
  1523. top: -10px;
  1524. right: 10px;
  1525. z-index: 0;
  1526. font-size: 90px;
  1527. color: rgba(0, 0, 0, 0.15);
  1528. }
  1529. .small-box:hover {
  1530. text-decoration: none;
  1531. color: #f9f9f9;
  1532. }
  1533. .small-box:hover .icon {
  1534. font-size: 95px;
  1535. }
  1536. @media (max-width: 767px) {
  1537. .small-box {
  1538. text-align: center;
  1539. }
  1540. .small-box .icon {
  1541. display: none;
  1542. }
  1543. .small-box p {
  1544. font-size: 12px;
  1545. }
  1546. }
  1547. /*
  1548. * Component: Box
  1549. * --------------
  1550. */
  1551. .box {
  1552. position: relative;
  1553. border-radius: 3px;
  1554. background: #ffffff;
  1555. border-top: 3px solid #d2d6de;
  1556. margin-bottom: 20px;
  1557. width: 100%;
  1558. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1559. }
  1560. .box.box-primary {
  1561. border-top-color: #3c8dbc;
  1562. }
  1563. .box.box-info {
  1564. border-top-color: #00c0ef;
  1565. }
  1566. .box.box-danger {
  1567. border-top-color: #dd4b39;
  1568. }
  1569. .box.box-warning {
  1570. border-top-color: #f39c12;
  1571. }
  1572. .box.box-success {
  1573. border-top-color: #00a65a;
  1574. }
  1575. .box.box-default {
  1576. border-top-color: #d2d6de;
  1577. }
  1578. .box.collapsed-box .box-body,
  1579. .box.collapsed-box .box-footer {
  1580. display: none;
  1581. }
  1582. .box .nav-stacked > li {
  1583. border-bottom: 1px solid #f4f4f4;
  1584. margin: 0;
  1585. }
  1586. .box .nav-stacked > li:last-of-type {
  1587. border-bottom: none;
  1588. }
  1589. .box.height-control .box-body {
  1590. max-height: 300px;
  1591. overflow: auto;
  1592. }
  1593. .box .border-right {
  1594. border-right: 1px solid #f4f4f4;
  1595. }
  1596. .box .border-left {
  1597. border-left: 1px solid #f4f4f4;
  1598. }
  1599. .box.box-solid {
  1600. border-top: 0;
  1601. }
  1602. .box.box-solid > .box-header .btn.btn-default {
  1603. background: transparent;
  1604. }
  1605. .box.box-solid > .box-header .btn:hover,
  1606. .box.box-solid > .box-header a:hover {
  1607. background: rgba(0, 0, 0, 0.1);
  1608. }
  1609. .box.box-solid.box-default {
  1610. border: 1px solid #d2d6de;
  1611. }
  1612. .box.box-solid.box-default > .box-header {
  1613. color: #444444;
  1614. background: #d2d6de;
  1615. background-color: #d2d6de;
  1616. }
  1617. .box.box-solid.box-default > .box-header a,
  1618. .box.box-solid.box-default > .box-header .btn {
  1619. color: #444444;
  1620. }
  1621. .box.box-solid.box-primary {
  1622. border: 1px solid #3c8dbc;
  1623. }
  1624. .box.box-solid.box-primary > .box-header {
  1625. color: #ffffff;
  1626. background: #3c8dbc;
  1627. background-color: #3c8dbc;
  1628. }
  1629. .box.box-solid.box-primary > .box-header a,
  1630. .box.box-solid.box-primary > .box-header .btn {
  1631. color: #ffffff;
  1632. }
  1633. .box.box-solid.box-info {
  1634. border: 1px solid #00c0ef;
  1635. }
  1636. .box.box-solid.box-info > .box-header {
  1637. color: #ffffff;
  1638. background: #00c0ef;
  1639. background-color: #00c0ef;
  1640. }
  1641. .box.box-solid.box-info > .box-header a,
  1642. .box.box-solid.box-info > .box-header .btn {
  1643. color: #ffffff;
  1644. }
  1645. .box.box-solid.box-danger {
  1646. border: 1px solid #dd4b39;
  1647. }
  1648. .box.box-solid.box-danger > .box-header {
  1649. color: #ffffff;
  1650. background: #dd4b39;
  1651. background-color: #dd4b39;
  1652. }
  1653. .box.box-solid.box-danger > .box-header a,
  1654. .box.box-solid.box-danger > .box-header .btn {
  1655. color: #ffffff;
  1656. }
  1657. .box.box-solid.box-warning {
  1658. border: 1px solid #f39c12;
  1659. }
  1660. .box.box-solid.box-warning > .box-header {
  1661. color: #ffffff;
  1662. background: #f39c12;
  1663. background-color: #f39c12;
  1664. }
  1665. .box.box-solid.box-warning > .box-header a,
  1666. .box.box-solid.box-warning > .box-header .btn {
  1667. color: #ffffff;
  1668. }
  1669. .box.box-solid.box-success {
  1670. border: 1px solid #00a65a;
  1671. }
  1672. .box.box-solid.box-success > .box-header {
  1673. color: #ffffff;
  1674. background: #00a65a;
  1675. background-color: #00a65a;
  1676. }
  1677. .box.box-solid.box-success > .box-header a,
  1678. .box.box-solid.box-success > .box-header .btn {
  1679. color: #ffffff;
  1680. }
  1681. .box.box-solid > .box-header > .box-tools .btn {
  1682. border: 0;
  1683. box-shadow: none;
  1684. }
  1685. .box.box-solid[class*='bg'] > .box-header {
  1686. color: #fff;
  1687. }
  1688. .box .box-group > .box {
  1689. margin-bottom: 5px;
  1690. }
  1691. .box .knob-label {
  1692. text-align: center;
  1693. color: #333;
  1694. font-weight: 100;
  1695. font-size: 12px;
  1696. margin-bottom: 0.3em;
  1697. }
  1698. .box > .overlay,
  1699. .overlay-wrapper > .overlay,
  1700. .box > .loading-img,
  1701. .overlay-wrapper > .loading-img {
  1702. position: absolute;
  1703. top: 0;
  1704. left: 0;
  1705. width: 100%;
  1706. height: 100%;
  1707. }
  1708. .box .overlay,
  1709. .overlay-wrapper .overlay {
  1710. z-index: 50;
  1711. background: rgba(255, 255, 255, 0.7);
  1712. border-radius: 3px;
  1713. }
  1714. .box .overlay > .fa,
  1715. .overlay-wrapper .overlay > .fa {
  1716. position: absolute;
  1717. top: 50%;
  1718. left: 50%;
  1719. margin-left: -15px;
  1720. margin-top: -15px;
  1721. color: #000;
  1722. font-size: 30px;
  1723. }
  1724. .box .overlay.dark,
  1725. .overlay-wrapper .overlay.dark {
  1726. background: rgba(0, 0, 0, 0.5);
  1727. }
  1728. .box-header:before,
  1729. .box-body:before,
  1730. .box-footer:before,
  1731. .box-header:after,
  1732. .box-body:after,
  1733. .box-footer:after {
  1734. content: " ";
  1735. display: table;
  1736. }
  1737. .box-header:after,
  1738. .box-body:after,
  1739. .box-footer:after {
  1740. clear: both;
  1741. }
  1742. .box-header {
  1743. color: #444;
  1744. display: block;
  1745. padding: 10px;
  1746. position: relative;
  1747. }
  1748. .box-header.with-border {
  1749. border-bottom: 1px solid #f4f4f4;
  1750. }
  1751. .collapsed-box .box-header.with-border {
  1752. border-bottom: none;
  1753. }
  1754. .box-header > .fa,
  1755. .box-header > .glyphicon,
  1756. .box-header > .ion,
  1757. .box-header .box-title {
  1758. display: inline-block;
  1759. font-size: 18px;
  1760. margin: 0;
  1761. line-height: 1;
  1762. }
  1763. .box-header > .fa,
  1764. .box-header > .glyphicon,
  1765. .box-header > .ion {
  1766. margin-right: 5px;
  1767. }
  1768. .box-header > .box-tools {
  1769. position: absolute;
  1770. right: 10px;
  1771. top: 5px;
  1772. }
  1773. .box-header > .box-tools [data-toggle="tooltip"] {
  1774. position: relative;
  1775. }
  1776. .box-header > .box-tools.pull-right .dropdown-menu {
  1777. right: 0;
  1778. left: auto;
  1779. }
  1780. .box-header > .box-tools .dropdown-menu > li > a {
  1781. color: #444!important;
  1782. }
  1783. .btn-box-tool {
  1784. padding: 5px;
  1785. font-size: 12px;
  1786. background: transparent;
  1787. color: #97a0b3;
  1788. }
  1789. .open .btn-box-tool,
  1790. .btn-box-tool:hover {
  1791. color: #606c84;
  1792. }
  1793. .btn-box-tool.btn:active {
  1794. box-shadow: none;
  1795. }
  1796. .box-body {
  1797. border-top-left-radius: 0;
  1798. border-top-right-radius: 0;
  1799. border-bottom-right-radius: 3px;
  1800. border-bottom-left-radius: 3px;
  1801. padding: 10px;
  1802. }
  1803. .no-header .box-body {
  1804. border-top-right-radius: 3px;
  1805. border-top-left-radius: 3px;
  1806. }
  1807. .box-body > .table {
  1808. margin-bottom: 0;
  1809. }
  1810. .box-body .fc {
  1811. margin-top: 5px;
  1812. }
  1813. .box-body .full-width-chart {
  1814. margin: -19px;
  1815. }
  1816. .box-body.no-padding .full-width-chart {
  1817. margin: -9px;
  1818. }
  1819. .box-body .box-pane {
  1820. border-top-left-radius: 0;
  1821. border-top-right-radius: 0;
  1822. border-bottom-right-radius: 0;
  1823. border-bottom-left-radius: 3px;
  1824. }
  1825. .box-body .box-pane-right {
  1826. border-top-left-radius: 0;
  1827. border-top-right-radius: 0;
  1828. border-bottom-right-radius: 3px;
  1829. border-bottom-left-radius: 0;
  1830. }
  1831. .box-footer {
  1832. border-top-left-radius: 0;
  1833. border-top-right-radius: 0;
  1834. border-bottom-right-radius: 3px;
  1835. border-bottom-left-radius: 3px;
  1836. border-top: 1px solid #f4f4f4;
  1837. padding: 10px;
  1838. background-color: #ffffff;
  1839. }
  1840. .chart-legend {
  1841. margin: 10px 0;
  1842. }
  1843. @media (max-width: 991px) {
  1844. .chart-legend > li {
  1845. float: left;
  1846. margin-right: 10px;
  1847. }
  1848. }
  1849. .box-comments {
  1850. background: #f7f7f7;
  1851. }
  1852. .box-comments .box-comment {
  1853. padding: 8px 0;
  1854. border-bottom: 1px solid #eee;
  1855. }
  1856. .box-comments .box-comment:before,
  1857. .box-comments .box-comment:after {
  1858. content: " ";
  1859. display: table;
  1860. }
  1861. .box-comments .box-comment:after {
  1862. clear: both;
  1863. }
  1864. .box-comments .box-comment:last-of-type {
  1865. border-bottom: 0;
  1866. }
  1867. .box-comments .box-comment:first-of-type {
  1868. padding-top: 0;
  1869. }
  1870. .box-comments .box-comment img {
  1871. float: left;
  1872. }
  1873. .box-comments .comment-text {
  1874. margin-left: 40px;
  1875. color: #555;
  1876. }
  1877. .box-comments .username {
  1878. color: #444;
  1879. display: block;
  1880. font-weight: 600;
  1881. }
  1882. .box-comments .text-muted {
  1883. font-weight: 400;
  1884. font-size: 12px;
  1885. }
  1886. /* Widget: TODO LIST */
  1887. .todo-list {
  1888. margin: 0;
  1889. padding: 0;
  1890. list-style: none;
  1891. overflow: auto;
  1892. }
  1893. .todo-list > li {
  1894. border-radius: 2px;
  1895. padding: 10px;
  1896. background: #f4f4f4;
  1897. margin-bottom: 2px;
  1898. border-left: 2px solid #e6e7e8;
  1899. color: #444;
  1900. }
  1901. .todo-list > li:last-of-type {
  1902. margin-bottom: 0;
  1903. }
  1904. .todo-list > li > input[type='checkbox'] {
  1905. margin: 0 10px 0 5px;
  1906. }
  1907. .todo-list > li .text {
  1908. display: inline-block;
  1909. margin-left: 5px;
  1910. font-weight: 600;
  1911. }
  1912. .todo-list > li .label {
  1913. margin-left: 10px;
  1914. font-size: 9px;
  1915. }
  1916. .todo-list > li .tools {
  1917. display: none;
  1918. float: right;
  1919. color: #dd4b39;
  1920. }
  1921. .todo-list > li .tools > .fa,
  1922. .todo-list > li .tools > .glyphicon,
  1923. .todo-list > li .tools > .ion {
  1924. margin-right: 5px;
  1925. cursor: pointer;
  1926. }
  1927. .todo-list > li:hover .tools {
  1928. display: inline-block;
  1929. }
  1930. .todo-list > li.done {
  1931. color: #999;
  1932. }
  1933. .todo-list > li.done .text {
  1934. text-decoration: line-through;
  1935. font-weight: 500;
  1936. }
  1937. .todo-list > li.done .label {
  1938. background: #d2d6de !important;
  1939. }
  1940. .todo-list .danger {
  1941. border-left-color: #dd4b39;
  1942. }
  1943. .todo-list .warning {
  1944. border-left-color: #f39c12;
  1945. }
  1946. .todo-list .info {
  1947. border-left-color: #00c0ef;
  1948. }
  1949. .todo-list .success {
  1950. border-left-color: #00a65a;
  1951. }
  1952. .todo-list .primary {
  1953. border-left-color: #3c8dbc;
  1954. }
  1955. .todo-list .handle {
  1956. display: inline-block;
  1957. cursor: move;
  1958. margin: 0 5px;
  1959. }
  1960. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  1961. .chat {
  1962. padding: 5px 20px 5px 10px;
  1963. }
  1964. .chat .item {
  1965. margin-bottom: 10px;
  1966. }
  1967. .chat .item:before,
  1968. .chat .item:after {
  1969. content: " ";
  1970. display: table;
  1971. }
  1972. .chat .item:after {
  1973. clear: both;
  1974. }
  1975. .chat .item > img {
  1976. width: 40px;
  1977. height: 40px;
  1978. border: 2px solid transparent;
  1979. border-radius: 50%;
  1980. }
  1981. .chat .item > .online {
  1982. border: 2px solid #00a65a;
  1983. }
  1984. .chat .item > .offline {
  1985. border: 2px solid #dd4b39;
  1986. }
  1987. .chat .item > .message {
  1988. margin-left: 55px;
  1989. margin-top: -40px;
  1990. }
  1991. .chat .item > .message > .name {
  1992. display: block;
  1993. font-weight: 600;
  1994. }
  1995. .chat .item > .attachment {
  1996. border-radius: 3px;
  1997. background: #f4f4f4;
  1998. margin-left: 65px;
  1999. margin-right: 15px;
  2000. padding: 10px;
  2001. }
  2002. .chat .item > .attachment > h4 {
  2003. margin: 0 0 5px 0;
  2004. font-weight: 600;
  2005. font-size: 14px;
  2006. }
  2007. .chat .item > .attachment > p,
  2008. .chat .item > .attachment > .filename {
  2009. font-weight: 600;
  2010. font-size: 13px;
  2011. font-style: italic;
  2012. margin: 0;
  2013. }
  2014. .chat .item > .attachment:before,
  2015. .chat .item > .attachment:after {
  2016. content: " ";
  2017. display: table;
  2018. }
  2019. .chat .item > .attachment:after {
  2020. clear: both;
  2021. }
  2022. .box-input {
  2023. max-width: 200px;
  2024. }
  2025. .modal .panel-body {
  2026. color: #444;
  2027. }
  2028. /*
  2029. * Component: Info Box
  2030. * -------------------
  2031. */
  2032. .info-box {
  2033. display: block;
  2034. min-height: 90px;
  2035. background: #fff;
  2036. width: 100%;
  2037. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2038. border-radius: 2px;
  2039. margin-bottom: 15px;
  2040. }
  2041. .info-box small {
  2042. font-size: 14px;
  2043. }
  2044. .info-box .progress {
  2045. background: rgba(0, 0, 0, 0.2);
  2046. margin: 5px -10px 5px -10px;
  2047. height: 2px;
  2048. }
  2049. .info-box .progress,
  2050. .info-box .progress .progress-bar {
  2051. border-radius: 0;
  2052. }
  2053. .info-box .progress .progress-bar {
  2054. background: #fff;
  2055. }
  2056. .info-box-icon {
  2057. border-top-left-radius: 2px;
  2058. border-top-right-radius: 0;
  2059. border-bottom-right-radius: 0;
  2060. border-bottom-left-radius: 2px;
  2061. display: block;
  2062. float: left;
  2063. height: 90px;
  2064. width: 90px;
  2065. text-align: center;
  2066. font-size: 45px;
  2067. line-height: 90px;
  2068. background: rgba(0, 0, 0, 0.2);
  2069. }
  2070. .info-box-icon > img {
  2071. max-width: 100%;
  2072. }
  2073. .info-box-content {
  2074. padding: 5px 10px;
  2075. margin-left: 90px;
  2076. }
  2077. .info-box-number {
  2078. display: block;
  2079. font-weight: bold;
  2080. font-size: 18px;
  2081. }
  2082. .progress-description,
  2083. .info-box-text {
  2084. display: block;
  2085. font-size: 14px;
  2086. white-space: nowrap;
  2087. overflow: hidden;
  2088. text-overflow: ellipsis;
  2089. }
  2090. .info-box-text {
  2091. text-transform: uppercase;
  2092. }
  2093. .info-box-more {
  2094. display: block;
  2095. }
  2096. .progress-description {
  2097. margin: 0;
  2098. }
  2099. /*
  2100. * Component: Timeline
  2101. * -------------------
  2102. */
  2103. .timeline {
  2104. position: relative;
  2105. margin: 0 0 30px 0;
  2106. padding: 0;
  2107. list-style: none;
  2108. }
  2109. .timeline:before {
  2110. content: '';
  2111. position: absolute;
  2112. top: 0;
  2113. bottom: 0;
  2114. width: 4px;
  2115. background: #ddd;
  2116. left: 31px;
  2117. margin: 0;
  2118. border-radius: 2px;
  2119. }
  2120. .timeline > li {
  2121. position: relative;
  2122. margin-right: 10px;
  2123. margin-bottom: 15px;
  2124. }
  2125. .timeline > li:before,
  2126. .timeline > li:after {
  2127. content: " ";
  2128. display: table;
  2129. }
  2130. .timeline > li:after {
  2131. clear: both;
  2132. }
  2133. .timeline > li > .timeline-item {
  2134. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2135. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2136. border-radius: 3px;
  2137. margin-top: 0;
  2138. background: #fff;
  2139. color: #444;
  2140. margin-left: 60px;
  2141. margin-right: 15px;
  2142. padding: 0;
  2143. position: relative;
  2144. }
  2145. .timeline > li > .timeline-item > .time {
  2146. color: #999;
  2147. float: right;
  2148. padding: 10px;
  2149. font-size: 12px;
  2150. }
  2151. .timeline > li > .timeline-item > .timeline-header {
  2152. margin: 0;
  2153. color: #555;
  2154. border-bottom: 1px solid #f4f4f4;
  2155. padding: 10px;
  2156. font-size: 16px;
  2157. line-height: 1.1;
  2158. }
  2159. .timeline > li > .timeline-item > .timeline-header > a {
  2160. font-weight: 600;
  2161. }
  2162. .timeline > li > .timeline-item > .timeline-body,
  2163. .timeline > li > .timeline-item > .timeline-footer {
  2164. padding: 10px;
  2165. }
  2166. .timeline > li > .fa,
  2167. .timeline > li > .glyphicon,
  2168. .timeline > li > .ion {
  2169. width: 30px;
  2170. height: 30px;
  2171. font-size: 15px;
  2172. line-height: 30px;
  2173. position: absolute;
  2174. color: #666;
  2175. background: #d2d6de;
  2176. border-radius: 50%;
  2177. text-align: center;
  2178. left: 18px;
  2179. top: 0;
  2180. }
  2181. .timeline > .time-label > span {
  2182. font-weight: 600;
  2183. padding: 5px;
  2184. display: inline-block;
  2185. background-color: #fff;
  2186. border-radius: 4px;
  2187. }
  2188. .timeline-inverse > li > .timeline-item {
  2189. background: #f0f0f0;
  2190. border: 1px solid #ddd;
  2191. -webkit-box-shadow: none;
  2192. box-shadow: none;
  2193. }
  2194. .timeline-inverse > li > .timeline-item > .timeline-header {
  2195. border-bottom-color: #ddd;
  2196. }
  2197. /*
  2198. * Component: Button
  2199. * -----------------
  2200. */
  2201. .btn {
  2202. border-radius: 3px;
  2203. -webkit-box-shadow: none;
  2204. box-shadow: none;
  2205. border: 1px solid transparent;
  2206. }
  2207. .btn.uppercase {
  2208. text-transform: uppercase;
  2209. }
  2210. .btn.btn-flat {
  2211. border-radius: 0;
  2212. -webkit-box-shadow: none;
  2213. -moz-box-shadow: none;
  2214. box-shadow: none;
  2215. border-width: 1px;
  2216. }
  2217. .btn:active {
  2218. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2219. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2220. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2221. }
  2222. .btn:focus {
  2223. outline: none;
  2224. }
  2225. .btn.btn-file {
  2226. position: relative;
  2227. overflow: hidden;
  2228. }
  2229. .btn.btn-file > input[type='file'] {
  2230. position: absolute;
  2231. top: 0;
  2232. right: 0;
  2233. min-width: 100%;
  2234. min-height: 100%;
  2235. font-size: 100px;
  2236. text-align: right;
  2237. opacity: 0;
  2238. filter: alpha(opacity=0);
  2239. outline: none;
  2240. background: white;
  2241. cursor: inherit;
  2242. display: block;
  2243. }
  2244. .btn-default {
  2245. background-color: #f4f4f4;
  2246. color: #444;
  2247. border-color: #ddd;
  2248. }
  2249. .btn-default:hover,
  2250. .btn-default:active,
  2251. .btn-default.hover {
  2252. background-color: #e7e7e7;
  2253. }
  2254. .btn-primary {
  2255. background-color: #3c8dbc;
  2256. border-color: #367fa9;
  2257. }
  2258. .btn-primary:hover,
  2259. .btn-primary:active,
  2260. .btn-primary.hover {
  2261. background-color: #367fa9;
  2262. }
  2263. .btn-success {
  2264. background-color: #00a65a;
  2265. border-color: #008d4c;
  2266. }
  2267. .btn-success:hover,
  2268. .btn-success:active,
  2269. .btn-success.hover {
  2270. background-color: #008d4c;
  2271. }
  2272. .btn-info {
  2273. background-color: #00c0ef;
  2274. border-color: #00acd6;
  2275. }
  2276. .btn-info:hover,
  2277. .btn-info:active,
  2278. .btn-info.hover {
  2279. background-color: #00acd6;
  2280. }
  2281. .btn-danger {
  2282. background-color: #dd4b39;
  2283. border-color: #d73925;
  2284. }
  2285. .btn-danger:hover,
  2286. .btn-danger:active,
  2287. .btn-danger.hover {
  2288. background-color: #d73925;
  2289. }
  2290. .btn-warning {
  2291. background-color: #f39c12;
  2292. border-color: #e08e0b;
  2293. }
  2294. .btn-warning:hover,
  2295. .btn-warning:active,
  2296. .btn-warning.hover {
  2297. background-color: #e08e0b;
  2298. }
  2299. .btn-outline {
  2300. border: 1px solid #fff;
  2301. background: transparent;
  2302. color: #fff;
  2303. }
  2304. .btn-outline:hover,
  2305. .btn-outline:focus,
  2306. .btn-outline:active {
  2307. color: rgba(255, 255, 255, 0.7);
  2308. border-color: rgba(255, 255, 255, 0.7);
  2309. }
  2310. .btn-link {
  2311. -webkit-box-shadow: none;
  2312. box-shadow: none;
  2313. }
  2314. .btn[class*='bg-']:hover {
  2315. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2316. box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2317. }
  2318. .btn-app {
  2319. border-radius: 3px;
  2320. position: relative;
  2321. padding: 15px 5px;
  2322. margin: 0 0 10px 10px;
  2323. min-width: 80px;
  2324. height: 60px;
  2325. text-align: center;
  2326. color: #666;
  2327. border: 1px solid #ddd;
  2328. background-color: #f4f4f4;
  2329. font-size: 12px;
  2330. }
  2331. .btn-app > .fa,
  2332. .btn-app > .glyphicon,
  2333. .btn-app > .ion {
  2334. font-size: 20px;
  2335. display: block;
  2336. }
  2337. .btn-app:hover {
  2338. background: #f4f4f4;
  2339. color: #444;
  2340. border-color: #aaa;
  2341. }
  2342. .btn-app:active,
  2343. .btn-app:focus {
  2344. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2345. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2346. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2347. }
  2348. .btn-app > .badge {
  2349. position: absolute;
  2350. top: -3px;
  2351. right: -10px;
  2352. font-size: 10px;
  2353. font-weight: 400;
  2354. }
  2355. /*
  2356. * Component: Callout
  2357. * ------------------
  2358. */
  2359. .callout {
  2360. border-radius: 3px;
  2361. margin: 0 0 20px 0;
  2362. padding: 15px 30px 15px 15px;
  2363. border-left: 5px solid #eee;
  2364. }
  2365. .callout a {
  2366. color: #fff;
  2367. text-decoration: underline;
  2368. }
  2369. .callout a:hover {
  2370. color: #eee;
  2371. }
  2372. .callout h4 {
  2373. margin-top: 0;
  2374. font-weight: 600;
  2375. }
  2376. .callout p:last-child {
  2377. margin-bottom: 0;
  2378. }
  2379. .callout code,
  2380. .callout .highlight {
  2381. background-color: #fff;
  2382. }
  2383. .callout.callout-danger {
  2384. border-color: #c23321;
  2385. }
  2386. .callout.callout-warning {
  2387. border-color: #c87f0a;
  2388. }
  2389. .callout.callout-info {
  2390. border-color: #0097bc;
  2391. }
  2392. .callout.callout-success {
  2393. border-color: #00733e;
  2394. }
  2395. /*
  2396. * Component: alert
  2397. * ----------------
  2398. */
  2399. .alert {
  2400. border-radius: 3px;
  2401. }
  2402. .alert h4 {
  2403. font-weight: 600;
  2404. }
  2405. .alert .icon {
  2406. margin-right: 10px;
  2407. }
  2408. .alert .close {
  2409. color: #000;
  2410. opacity: 0.2;
  2411. filter: alpha(opacity=20);
  2412. }
  2413. .alert .close:hover {
  2414. opacity: 0.5;
  2415. filter: alpha(opacity=50);
  2416. }
  2417. .alert a {
  2418. color: #fff;
  2419. text-decoration: underline;
  2420. }
  2421. .alert-success {
  2422. border-color: #008d4c;
  2423. }
  2424. .alert-danger,
  2425. .alert-error {
  2426. border-color: #d73925;
  2427. }
  2428. .alert-warning {
  2429. border-color: #e08e0b;
  2430. }
  2431. .alert-info {
  2432. border-color: #00acd6;
  2433. }
  2434. /*
  2435. * Component: Nav
  2436. * --------------
  2437. */
  2438. .nav > li > a:hover,
  2439. .nav > li > a:active,
  2440. .nav > li > a:focus {
  2441. color: #444;
  2442. background: #f7f7f7;
  2443. }
  2444. /* NAV PILLS */
  2445. .nav-pills > li > a {
  2446. border-radius: 0;
  2447. border-top: 3px solid transparent;
  2448. color: #444;
  2449. }
  2450. .nav-pills > li > a > .fa,
  2451. .nav-pills > li > a > .glyphicon,
  2452. .nav-pills > li > a > .ion {
  2453. margin-right: 5px;
  2454. }
  2455. .nav-pills > li.active > a,
  2456. .nav-pills > li.active > a:hover,
  2457. .nav-pills > li.active > a:focus {
  2458. border-top-color: #3c8dbc;
  2459. }
  2460. .nav-pills > li.active > a {
  2461. font-weight: 600;
  2462. }
  2463. /* NAV STACKED */
  2464. .nav-stacked > li > a {
  2465. border-radius: 0;
  2466. border-top: 0;
  2467. border-left: 3px solid transparent;
  2468. color: #444;
  2469. }
  2470. .nav-stacked > li.active > a,
  2471. .nav-stacked > li.active > a:hover {
  2472. background: transparent;
  2473. color: #444;
  2474. border-top: 0;
  2475. border-left-color: #3c8dbc;
  2476. }
  2477. .nav-stacked > li.header {
  2478. border-bottom: 1px solid #ddd;
  2479. color: #777;
  2480. margin-bottom: 10px;
  2481. padding: 5px 10px;
  2482. text-transform: uppercase;
  2483. }
  2484. /* NAV TABS */
  2485. .nav-tabs-custom {
  2486. margin-bottom: 20px;
  2487. background: #fff;
  2488. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2489. border-radius: 3px;
  2490. }
  2491. .nav-tabs-custom > .nav-tabs {
  2492. margin: 0;
  2493. border-bottom-color: #f4f4f4;
  2494. border-top-right-radius: 3px;
  2495. border-top-left-radius: 3px;
  2496. }
  2497. .nav-tabs-custom > .nav-tabs > li {
  2498. border-top: 3px solid transparent;
  2499. margin-bottom: -2px;
  2500. margin-right: 5px;
  2501. }
  2502. .nav-tabs-custom > .nav-tabs > li > a {
  2503. color: #444;
  2504. border-radius: 0;
  2505. }
  2506. .nav-tabs-custom > .nav-tabs > li > a.text-muted {
  2507. color: #999;
  2508. }
  2509. .nav-tabs-custom > .nav-tabs > li > a,
  2510. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2511. background: transparent;
  2512. margin: 0;
  2513. }
  2514. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2515. color: #999;
  2516. }
  2517. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  2518. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  2519. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  2520. border-color: transparent;
  2521. }
  2522. .nav-tabs-custom > .nav-tabs > li.active {
  2523. border-top-color: #3c8dbc;
  2524. }
  2525. .nav-tabs-custom > .nav-tabs > li.active > a,
  2526. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  2527. background-color: #fff;
  2528. color: #444;
  2529. }
  2530. .nav-tabs-custom > .nav-tabs > li.active > a {
  2531. border-top-color: transparent;
  2532. border-left-color: #f4f4f4;
  2533. border-right-color: #f4f4f4;
  2534. }
  2535. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  2536. margin-left: 0;
  2537. }
  2538. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  2539. border-left-color: transparent;
  2540. }
  2541. .nav-tabs-custom > .nav-tabs.pull-right {
  2542. float: none !important;
  2543. }
  2544. .nav-tabs-custom > .nav-tabs.pull-right > li {
  2545. float: right;
  2546. }
  2547. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  2548. margin-right: 0;
  2549. }
  2550. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  2551. border-left-width: 1px;
  2552. }
  2553. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  2554. border-left-color: #f4f4f4;
  2555. border-right-color: transparent;
  2556. }
  2557. .nav-tabs-custom > .nav-tabs > li.header {
  2558. line-height: 35px;
  2559. padding: 0 10px;
  2560. font-size: 20px;
  2561. color: #444;
  2562. }
  2563. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  2564. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  2565. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  2566. margin-right: 5px;
  2567. }
  2568. .nav-tabs-custom > .tab-content {
  2569. background: #fff;
  2570. padding: 10px;
  2571. border-bottom-right-radius: 3px;
  2572. border-bottom-left-radius: 3px;
  2573. }
  2574. .nav-tabs-custom .dropdown.open > a:active,
  2575. .nav-tabs-custom .dropdown.open > a:focus {
  2576. background: transparent;
  2577. color: #999;
  2578. }
  2579. .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  2580. border-top-color: #3c8dbc;
  2581. }
  2582. .nav-tabs-custom.tab-info > .nav-tabs > li.active {
  2583. border-top-color: #00c0ef;
  2584. }
  2585. .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  2586. border-top-color: #dd4b39;
  2587. }
  2588. .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  2589. border-top-color: #f39c12;
  2590. }
  2591. .nav-tabs-custom.tab-success > .nav-tabs > li.active {
  2592. border-top-color: #00a65a;
  2593. }
  2594. .nav-tabs-custom.tab-default > .nav-tabs > li.active {
  2595. border-top-color: #d2d6de;
  2596. }
  2597. /* PAGINATION */
  2598. .pagination > li > a {
  2599. background: #fafafa;
  2600. color: #666;
  2601. }
  2602. .pagination.pagination-flat > li > a {
  2603. border-radius: 0 !important;
  2604. }
  2605. /*
  2606. * Component: Products List
  2607. * ------------------------
  2608. */
  2609. .products-list {
  2610. list-style: none;
  2611. margin: 0;
  2612. padding: 0;
  2613. }
  2614. .products-list > .item {
  2615. border-radius: 3px;
  2616. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2617. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2618. padding: 10px 0;
  2619. background: #fff;
  2620. }
  2621. .products-list > .item:before,
  2622. .products-list > .item:after {
  2623. content: " ";
  2624. display: table;
  2625. }
  2626. .products-list > .item:after {
  2627. clear: both;
  2628. }
  2629. .products-list .product-img {
  2630. float: left;
  2631. }
  2632. .products-list .product-img img {
  2633. width: 50px;
  2634. height: 50px;
  2635. }
  2636. .products-list .product-info {
  2637. margin-left: 60px;
  2638. }
  2639. .products-list .product-title {
  2640. font-weight: 600;
  2641. }
  2642. .products-list .product-description {
  2643. display: block;
  2644. color: #999;
  2645. overflow: hidden;
  2646. white-space: nowrap;
  2647. text-overflow: ellipsis;
  2648. }
  2649. .product-list-in-box > .item {
  2650. -webkit-box-shadow: none;
  2651. box-shadow: none;
  2652. border-radius: 0;
  2653. border-bottom: 1px solid #f4f4f4;
  2654. }
  2655. .product-list-in-box > .item:last