AdminLTE.css 88 KB

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