button.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. .footer .footer-inner .footer-content {
  2. position: absolute;
  3. left: 12px;
  4. right: 12px;
  5. bottom: 4px;
  6. padding: 8px;
  7. line-height: 36px;
  8. border-top: 3px double #E5E5E5;
  9. }
  10. .footer.footer-fixed .footer-inner {
  11. position: fixed;
  12. z-index: 999;
  13. bottom: 0;
  14. }
  15. .footer.footer-fixed .footer-inner .footer-content {
  16. left: 2px;
  17. right: 2px;
  18. bottom: 2px;
  19. border: 1px solid #DDD;
  20. background-color: #F2F2F2;
  21. }
  22. .footer.footer-fixed + .btn-scroll-up {
  23. z-index: 999;
  24. }
  25. .btn {
  26. display: inline-block;
  27. color: #FFF !important;
  28. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  29. background-image: none !important;
  30. border: 5px solid #FFF;
  31. border-radius: 0;
  32. box-shadow: none !important;
  33. -webkit-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  34. -o-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  35. transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  36. cursor: pointer;
  37. vertical-align: middle;
  38. margin: 0;
  39. position: relative;
  40. /**
  41. &:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  42. color: #FFF;
  43. box-shadow: none;
  44. }
  45. */
  46. }
  47. .btn.active,
  48. .open > .btn.active.dropdown-toggle {
  49. box-shadow: none;
  50. }
  51. .btn-lg,
  52. .btn-group-lg > .btn {
  53. border-width: 5px;
  54. line-height: 1.4;
  55. padding: 5px 16px 6px;
  56. }
  57. .btn-xlg,
  58. .btn-group-xlg > .btn {
  59. border-width: 5px;
  60. line-height: 1.35;
  61. padding: 7px 16px;
  62. font-size: 18px;
  63. }
  64. .btn-sm,
  65. .btn-group-sm > .btn {
  66. border-width: 4px;
  67. font-size: 13px;
  68. padding: 4px 9px;
  69. line-height: 1.38;
  70. }
  71. .btn-xs,
  72. .btn-group-xs > .btn {
  73. padding-top: 3px;
  74. padding-bottom: 3px;
  75. border-width: 3px;
  76. }
  77. .btn-mini,
  78. .btn-group-mini > .btn {
  79. /* padding: 1px 5px;
  80. border-width: 3px;
  81. font-size: 12px;
  82. line-height: 1.5; */
  83. padding: 1px 8px;
  84. border-width: 4px;
  85. font-size: 15px;
  86. line-height: 1.5;
  87. }
  88. .btn-minier,
  89. .btn-group-minier > .btn {
  90. padding: 0 4px;
  91. line-height: 18px;
  92. border-width: 2px;
  93. font-size: 12px;
  94. }
  95. button.btn:active {
  96. top: 1px;
  97. }
  98. .btn,
  99. .btn-default,
  100. .btn:focus,
  101. .btn-default:focus {
  102. background-color: #abbac3 !important;
  103. border-color: #abbac3;
  104. }
  105. .btn:hover,
  106. .btn-default:hover,
  107. .btn:active,
  108. .btn-default:active,
  109. .open > .btn.dropdown-toggle,
  110. .open > .btn-default.dropdown-toggle {
  111. background-color: #8b9aa3 !important;
  112. border-color: #abbac3;
  113. }
  114. .btn.no-border:hover,
  115. .btn-default.no-border:hover,
  116. .btn.no-border:active,
  117. .btn-default.no-border:active {
  118. border-color: #8b9aa3;
  119. }
  120. .btn.no-hover:hover,
  121. .btn-default.no-hover:hover,
  122. .btn.no-hover:active,
  123. .btn-default.no-hover:active {
  124. background-color: #abbac3 !important;
  125. }
  126. .btn.active,
  127. .btn-default.active {
  128. background-color: #9baab3 !important;
  129. border-color: #8799a4;
  130. }
  131. .btn.no-border.active,
  132. .btn-default.no-border.active {
  133. background-color: #92a3ac !important;
  134. border-color: #92a3ac;
  135. }
  136. .btn.disabled,
  137. .btn-default.disabled,
  138. .btn[disabled],
  139. .btn-default[disabled],
  140. fieldset[disabled] .btn,
  141. fieldset[disabled] .btn-default,
  142. .btn.disabled:hover,
  143. .btn-default.disabled:hover,
  144. .btn[disabled]:hover,
  145. .btn-default[disabled]:hover,
  146. fieldset[disabled] .btn:hover,
  147. fieldset[disabled] .btn-default:hover,
  148. .btn.disabled:focus,
  149. .btn-default.disabled:focus,
  150. .btn[disabled]:focus,
  151. .btn-default[disabled]:focus,
  152. fieldset[disabled] .btn:focus,
  153. fieldset[disabled] .btn-default:focus,
  154. .btn.disabled:active,
  155. .btn-default.disabled:active,
  156. .btn[disabled]:active,
  157. .btn-default[disabled]:active,
  158. fieldset[disabled] .btn:active,
  159. fieldset[disabled] .btn-default:active,
  160. .btn.disabled.active,
  161. .btn-default.disabled.active,
  162. .btn[disabled].active,
  163. .btn-default[disabled].active,
  164. fieldset[disabled] .btn.active,
  165. fieldset[disabled] .btn-default.active {
  166. background-color: #abbac3 !important;
  167. border-color: #abbac3;
  168. }
  169. .btn-primary,
  170. .btn-primary:focus {
  171. background-color: #428bca !important;
  172. border-color: #428bca;
  173. }
  174. .btn-primary:hover,
  175. .btn-primary:active,
  176. .open > .btn-primary.dropdown-toggle {
  177. background-color: #1b6aaa !important;
  178. border-color: #428bca;
  179. }
  180. .btn-primary.no-border:hover,
  181. .btn-primary.no-border:active {
  182. border-color: #1b6aaa;
  183. }
  184. .btn-primary.no-hover:hover,
  185. .btn-primary.no-hover:active {
  186. background-color: #428bca !important;
  187. }
  188. .btn-primary.active {
  189. background-color: #2f7bba !important;
  190. border-color: #27689d;
  191. }
  192. .btn-primary.no-border.active {
  193. background-color: #2b72ae !important;
  194. border-color: #2b72ae;
  195. }
  196. .btn-primary.disabled,
  197. .btn-primary[disabled],
  198. fieldset[disabled] .btn-primary,
  199. .btn-primary.disabled:hover,
  200. .btn-primary[disabled]:hover,
  201. fieldset[disabled] .btn-primary:hover,
  202. .btn-primary.disabled:focus,
  203. .btn-primary[disabled]:focus,
  204. fieldset[disabled] .btn-primary:focus,
  205. .btn-primary.disabled:active,
  206. .btn-primary[disabled]:active,
  207. fieldset[disabled] .btn-primary:active,
  208. .btn-primary.disabled.active,
  209. .btn-primary[disabled].active,
  210. fieldset[disabled] .btn-primary.active {
  211. background-color: #428bca !important;
  212. border-color: #428bca;
  213. }
  214. .btn-info,
  215. .btn-info:focus {
  216. background-color: #6fb3e0 !important;
  217. border-color: #6fb3e0;
  218. }
  219. .btn-info:hover,
  220. .btn-info:active,
  221. .open > .btn-info.dropdown-toggle {
  222. background-color: #4f99c6 !important;
  223. border-color: #6fb3e0;
  224. }
  225. .btn-info.no-border:hover,
  226. .btn-info.no-border:active {
  227. border-color: #4f99c6;
  228. }
  229. .btn-info.no-hover:hover,
  230. .btn-info.no-hover:active {
  231. background-color: #6fb3e0 !important;
  232. }
  233. .btn-info.active {
  234. background-color: #5fa6d3 !important;
  235. border-color: #4396cb;
  236. }
  237. .btn-info.no-border.active {
  238. background-color: #539fd0 !important;
  239. border-color: #539fd0;
  240. }
  241. .btn-info.disabled,
  242. .btn-info[disabled],
  243. fieldset[disabled] .btn-info,
  244. .btn-info.disabled:hover,
  245. .btn-info[disabled]:hover,
  246. fieldset[disabled] .btn-info:hover,
  247. .btn-info.disabled:focus,
  248. .btn-info[disabled]:focus,
  249. fieldset[disabled] .btn-info:focus,
  250. .btn-info.disabled:active,
  251. .btn-info[disabled]:active,
  252. fieldset[disabled] .btn-info:active,
  253. .btn-info.disabled.active,
  254. .btn-info[disabled].active,
  255. fieldset[disabled] .btn-info.active {
  256. background-color: #6fb3e0 !important;
  257. border-color: #6fb3e0;
  258. }
  259. .btn-info2,
  260. .btn-info2:focus {
  261. background-color: #95c6e5 !important;
  262. border-color: #95c6e5;
  263. }
  264. .btn-info2:hover,
  265. .btn-info2:active,
  266. .open > .btn-info2.dropdown-toggle {
  267. background-color: #67a6ce !important;
  268. border-color: #95c6e5;
  269. }
  270. .btn-info2.no-border:hover,
  271. .btn-info2.no-border:active {
  272. border-color: #67a6ce;
  273. }
  274. .btn-info2.no-hover:hover,
  275. .btn-info2.no-hover:active {
  276. background-color: #95c6e5 !important;
  277. }
  278. .btn-info2.active {
  279. background-color: #7eb6da !important;
  280. border-color: #62a6d1;
  281. }
  282. .btn-info2.no-border.active {
  283. background-color: #72afd6 !important;
  284. border-color: #72afd6;
  285. }
  286. .btn-info2.disabled,
  287. .btn-info2[disabled],
  288. fieldset[disabled] .btn-info2,
  289. .btn-info2.disabled:hover,
  290. .btn-info2[disabled]:hover,
  291. fieldset[disabled] .btn-info2:hover,
  292. .btn-info2.disabled:focus,
  293. .btn-info2[disabled]:focus,
  294. fieldset[disabled] .btn-info2:focus,
  295. .btn-info2.disabled:active,
  296. .btn-info2[disabled]:active,
  297. fieldset[disabled] .btn-info2:active,
  298. .btn-info2.disabled.active,
  299. .btn-info2[disabled].active,
  300. fieldset[disabled] .btn-info2.active {
  301. background-color: #95c6e5 !important;
  302. border-color: #95c6e5;
  303. }
  304. .btn-success,
  305. .btn-success:focus {
  306. background-color: #87b87f !important;
  307. border-color: #87b87f;
  308. }
  309. .btn-success:hover,
  310. .btn-success:active,
  311. .open > .btn-success.dropdown-toggle {
  312. background-color: #629b58 !important;
  313. border-color: #87b87f;
  314. }
  315. .btn-success.no-border:hover,
  316. .btn-success.no-border:active {
  317. border-color: #629b58;
  318. }
  319. .btn-success.no-hover:hover,
  320. .btn-success.no-hover:active {
  321. background-color: #87b87f !important;
  322. }
  323. .btn-success.active {
  324. background-color: #75aa6c !important;
  325. border-color: #629959;
  326. }
  327. .btn-success.no-border.active {
  328. background-color: #6ba462 !important;
  329. border-color: #6ba462;
  330. }
  331. .btn-success.disabled,
  332. .btn-success[disabled],
  333. fieldset[disabled] .btn-success,
  334. .btn-success.disabled:hover,
  335. .btn-success[disabled]:hover,
  336. fieldset[disabled] .btn-success:hover,
  337. .btn-success.disabled:focus,
  338. .btn-success[disabled]:focus,
  339. fieldset[disabled] .btn-success:focus,
  340. .btn-success.disabled:active,
  341. .btn-success[disabled]:active,
  342. fieldset[disabled] .btn-success:active,
  343. .btn-success.disabled.active,
  344. .btn-success[disabled].active,
  345. fieldset[disabled] .btn-success.active {
  346. background-color: #87b87f !important;
  347. border-color: #87b87f;
  348. }
  349. .btn-warning,
  350. .btn-warning:focus {
  351. background-color: #ffb752 !important;
  352. border-color: #ffb752;
  353. }
  354. .btn-warning:hover,
  355. .btn-warning:active,
  356. .open > .btn-warning.dropdown-toggle {
  357. background-color: #e59729 !important;
  358. border-color: #ffb752;
  359. }
  360. .btn-warning.no-border:hover,
  361. .btn-warning.no-border:active {
  362. border-color: #e59729;
  363. }
  364. .btn-warning.no-hover:hover,
  365. .btn-warning.no-hover:active {
  366. background-color: #ffb752 !important;
  367. }
  368. .btn-warning.active {
  369. background-color: #f2a73e !important;
  370. border-color: #f0981c;
  371. }
  372. .btn-warning.no-border.active {
  373. background-color: #f1a02f !important;
  374. border-color: #f1a02f;
  375. }
  376. .btn-warning.disabled,
  377. .btn-warning[disabled],
  378. fieldset[disabled] .btn-warning,
  379. .btn-warning.disabled:hover,
  380. .btn-warning[disabled]:hover,
  381. fieldset[disabled] .btn-warning:hover,
  382. .btn-warning.disabled:focus,
  383. .btn-warning[disabled]:focus,
  384. fieldset[disabled] .btn-warning:focus,
  385. .btn-warning.disabled:active,
  386. .btn-warning[disabled]:active,
  387. fieldset[disabled] .btn-warning:active,
  388. .btn-warning.disabled.active,
  389. .btn-warning[disabled].active,
  390. fieldset[disabled] .btn-warning.active {
  391. background-color: #ffb752 !important;
  392. border-color: #ffb752;
  393. }
  394. .btn-danger,
  395. .btn-danger:focus {
  396. background-color: #d15b47 !important;
  397. border-color: #d15b47;
  398. }
  399. .btn-danger:hover,
  400. .btn-danger:active,
  401. .open > .btn-danger.dropdown-toggle {
  402. background-color: #b74635 !important;
  403. border-color: #d15b47;
  404. }
  405. .btn-danger.no-border:hover,
  406. .btn-danger.no-border:active {
  407. border-color: #b74635;
  408. }
  409. .btn-danger.no-hover:hover,
  410. .btn-danger.no-hover:active {
  411. background-color: #d15b47 !important;
  412. }
  413. .btn-danger.active {
  414. background-color: #c4513e !important;
  415. border-color: #aa4434;
  416. }
  417. .btn-danger.no-border.active {
  418. background-color: #ba4b39 !important;
  419. border-color: #ba4b39;
  420. }
  421. .btn-danger.disabled,
  422. .btn-danger[disabled],
  423. fieldset[disabled] .btn-danger,
  424. .btn-danger.disabled:hover,
  425. .btn-danger[disabled]:hover,
  426. fieldset[disabled] .btn-danger:hover,
  427. .btn-danger.disabled:focus,
  428. .btn-danger[disabled]:focus,
  429. fieldset[disabled] .btn-danger:focus,
  430. .btn-danger.disabled:active,
  431. .btn-danger[disabled]:active,
  432. fieldset[disabled] .btn-danger:active,
  433. .btn-danger.disabled.active,
  434. .btn-danger[disabled].active,
  435. fieldset[disabled] .btn-danger.active {
  436. background-color: #d15b47 !important;
  437. border-color: #d15b47;
  438. }
  439. .btn-inverse,
  440. .btn-inverse:focus {
  441. background-color: #555555 !important;
  442. border-color: #555555;
  443. }
  444. .btn-inverse:hover,
  445. .btn-inverse:active,
  446. .open > .btn-inverse.dropdown-toggle {
  447. background-color: #303030 !important;
  448. border-color: #555555;
  449. }
  450. .btn-inverse.no-border:hover,
  451. .btn-inverse.no-border:active {
  452. border-color: #303030;
  453. }
  454. .btn-inverse.no-hover:hover,
  455. .btn-inverse.no-hover:active {
  456. background-color: #555555 !important;
  457. }
  458. .btn-inverse.active {
  459. background-color: #434343 !important;
  460. border-color: #313131;
  461. }
  462. .btn-inverse.no-border.active {
  463. background-color: #3b3b3b !important;
  464. border-color: #3b3b3b;
  465. }
  466. .btn-inverse.disabled,
  467. .btn-inverse[disabled],
  468. fieldset[disabled] .btn-inverse,
  469. .btn-inverse.disabled:hover,
  470. .btn-inverse[disabled]:hover,
  471. fieldset[disabled] .btn-inverse:hover,
  472. .btn-inverse.disabled:focus,
  473. .btn-inverse[disabled]:focus,
  474. fieldset[disabled] .btn-inverse:focus,
  475. .btn-inverse.disabled:active,
  476. .btn-inverse[disabled]:active,
  477. fieldset[disabled] .btn-inverse:active,
  478. .btn-inverse.disabled.active,
  479. .btn-inverse[disabled].active,
  480. fieldset[disabled] .btn-inverse.active {
  481. background-color: #555555 !important;
  482. border-color: #555555;
  483. }
  484. .btn-pink,
  485. .btn-pink:focus {
  486. background-color: #d6487e !important;
  487. border-color: #d6487e;
  488. }
  489. .btn-pink:hover,
  490. .btn-pink:active,
  491. .open > .btn-pink.dropdown-toggle {
  492. background-color: #b73766 !important;
  493. border-color: #d6487e;
  494. }
  495. .btn-pink.no-border:hover,
  496. .btn-pink.no-border:active {
  497. border-color: #b73766;
  498. }
  499. .btn-pink.no-hover:hover,
  500. .btn-pink.no-hover:active {
  501. background-color: #d6487e !important;
  502. }
  503. .btn-pink.active {
  504. background-color: #c74072 !important;
  505. border-color: #af3462;
  506. }
  507. .btn-pink.no-border.active {
  508. background-color: #be386a !important;
  509. border-color: #be386a;
  510. }
  511. .btn-pink.disabled,
  512. .btn-pink[disabled],
  513. fieldset[disabled] .btn-pink,
  514. .btn-pink.disabled:hover,
  515. .btn-pink[disabled]:hover,
  516. fieldset[disabled] .btn-pink:hover,
  517. .btn-pink.disabled:focus,
  518. .btn-pink[disabled]:focus,
  519. fieldset[disabled] .btn-pink:focus,
  520. .btn-pink.disabled:active,
  521. .btn-pink[disabled]:active,
  522. fieldset[disabled] .btn-pink:active,
  523. .btn-pink.disabled.active,
  524. .btn-pink[disabled].active,
  525. fieldset[disabled] .btn-pink.active {
  526. background-color: #d6487e !important;
  527. border-color: #d6487e;
  528. }
  529. .btn-purple,
  530. .btn-purple:focus {
  531. background-color: #9585bf !important;
  532. border-color: #9585bf;
  533. }
  534. .btn-purple:hover,
  535. .btn-purple:active,
  536. .open > .btn-purple.dropdown-toggle {
  537. background-color: #7461aa !important;
  538. border-color: #9585bf;
  539. }
  540. .btn-purple.no-border:hover,
  541. .btn-purple.no-border:active {
  542. border-color: #7461aa;
  543. }
  544. .btn-purple.no-hover:hover,
  545. .btn-purple.no-hover:active {
  546. background-color: #9585bf !important;
  547. }
  548. .btn-purple.active {
  549. background-color: #8573b5 !important;
  550. border-color: #705ca8;
  551. }
  552. .btn-purple.no-border.active {
  553. background-color: #7c69af !important;
  554. border-color: #7c69af;
  555. }
  556. .btn-purple.disabled,
  557. .btn-purple[disabled],
  558. fieldset[disabled] .btn-purple,
  559. .btn-purple.disabled:hover,
  560. .btn-purple[disabled]:hover,
  561. fieldset[disabled] .btn-purple:hover,
  562. .btn-purple.disabled:focus,
  563. .btn-purple[disabled]:focus,
  564. fieldset[disabled] .btn-purple:focus,
  565. .btn-purple.disabled:active,
  566. .btn-purple[disabled]:active,
  567. fieldset[disabled] .btn-purple:active,
  568. .btn-purple.disabled.active,
  569. .btn-purple[disabled].active,
  570. fieldset[disabled] .btn-purple.active {
  571. background-color: #9585bf !important;
  572. border-color: #9585bf;
  573. }
  574. .btn-grey,
  575. .btn-grey:focus {
  576. background-color: #a0a0a0 !important;
  577. border-color: #a0a0a0;
  578. }
  579. .btn-grey:hover,
  580. .btn-grey:active,
  581. .open > .btn-grey.dropdown-toggle {
  582. background-color: #888888 !important;
  583. border-color: #a0a0a0;
  584. }
  585. .btn-grey.no-border:hover,
  586. .btn-grey.no-border:active {
  587. border-color: #888888;
  588. }
  589. .btn-grey.no-hover:hover,
  590. .btn-grey.no-hover:active {
  591. background-color: #a0a0a0 !important;
  592. }
  593. .btn-grey.active {
  594. background-color: #949494 !important;
  595. border-color: #828282;
  596. }
  597. .btn-grey.no-border.active {
  598. background-color: #8c8c8c !important;
  599. border-color: #8c8c8c;
  600. }
  601. .btn-grey.disabled,
  602. .btn-grey[disabled],
  603. fieldset[disabled] .btn-grey,
  604. .btn-grey.disabled:hover,
  605. .btn-grey[disabled]:hover,
  606. fieldset[disabled] .btn-grey:hover,
  607. .btn-grey.disabled:focus,
  608. .btn-grey[disabled]:focus,
  609. fieldset[disabled] .btn-grey:focus,
  610. .btn-grey.disabled:active,
  611. .btn-grey[disabled]:active,
  612. fieldset[disabled] .btn-grey:active,
  613. .btn-grey.disabled.active,
  614. .btn-grey[disabled].active,
  615. fieldset[disabled] .btn-grey.active {
  616. background-color: #a0a0a0 !important;
  617. border-color: #a0a0a0;
  618. }
  619. .btn-yellow {
  620. color: #996633 !important;
  621. text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
  622. }
  623. .btn-yellow,
  624. .btn-yellow:focus {
  625. background-color: #fee188 !important;
  626. border-color: #fee188;
  627. }
  628. .btn-yellow:hover,
  629. .btn-yellow:active,
  630. .open > .btn-yellow.dropdown-toggle {
  631. background-color: #f7d05b !important;
  632. border-color: #fee188;
  633. }
  634. .btn-yellow.no-border:hover,
  635. .btn-yellow.no-border:active {
  636. border-color: #f7d05b;
  637. }
  638. .btn-yellow.no-hover:hover,
  639. .btn-yellow.no-hover:active {
  640. background-color: #fee188 !important;
  641. }
  642. .btn-yellow.active {
  643. background-color: #fbd972 !important;
  644. border-color: #f9cf4f;
  645. }
  646. .btn-yellow.no-border.active {
  647. background-color: #fad463 !important;
  648. border-color: #fad463;
  649. }
  650. .btn-yellow.disabled,
  651. .btn-yellow[disabled],
  652. fieldset[disabled] .btn-yellow,
  653. .btn-yellow.disabled:hover,
  654. .btn-yellow[disabled]:hover,
  655. fieldset[disabled] .btn-yellow:hover,
  656. .btn-yellow.disabled:focus,
  657. .btn-yellow[disabled]:focus,
  658. fieldset[disabled] .btn-yellow:focus,
  659. .btn-yellow.disabled:active,
  660. .btn-yellow[disabled]:active,
  661. fieldset[disabled] .btn-yellow:active,
  662. .btn-yellow.disabled.active,
  663. .btn-yellow[disabled].active,
  664. fieldset[disabled] .btn-yellow.active {
  665. background-color: #fee188 !important;
  666. border-color: #fee188;
  667. }
  668. .btn-yellow:hover,
  669. .btn-yellow:focus,
  670. .btn-yellow.focus,
  671. .open > .btn-yellow.dropdown-toggle,
  672. .btn-yellow.active,
  673. .open > .btn-yellow.active.dropdown-toggle {
  674. color: #996633;
  675. }
  676. .btn-light {
  677. color: #888888 !important;
  678. text-shadow: 0 -1px 0 rgba(250, 250, 250, 0.25) !important;
  679. }
  680. .btn-light,
  681. .btn-light:focus {
  682. background-color: #e7e7e7 !important;
  683. border-color: #e7e7e7;
  684. }
  685. .btn-light:hover,
  686. .btn-light:active,
  687. .open > .btn-light.dropdown-toggle {
  688. background-color: #d9d9d9 !important;
  689. border-color: #e7e7e7;
  690. }
  691. .btn-light.no-border:hover,
  692. .btn-light.no-border:active {
  693. border-color: #d9d9d9;
  694. }
  695. .btn-light.no-hover:hover,
  696. .btn-light.no-hover:active {
  697. background-color: #e7e7e7 !important;
  698. }
  699. .btn-light.active {
  700. background-color: #e0e0e0 !important;
  701. border-color: #cecece;
  702. }
  703. .btn-light.no-border.active {
  704. background-color: #d8d8d8 !important;
  705. border-color: #d8d8d8;
  706. }
  707. .btn-light.disabled,
  708. .btn-light[disabled],
  709. fieldset[disabled] .btn-light,
  710. .btn-light.disabled:hover,
  711. .btn-light[disabled]:hover,
  712. fieldset[disabled] .btn-light:hover,
  713. .btn-light.disabled:focus,
  714. .btn-light[disabled]:focus,
  715. fieldset[disabled] .btn-light:focus,
  716. .btn-light.disabled:active,
  717. .btn-light[disabled]:active,
  718. fieldset[disabled] .btn-light:active,
  719. .btn-light.disabled.active,
  720. .btn-light[disabled].active,
  721. fieldset[disabled] .btn-light.active {
  722. background-color: #e7e7e7 !important;
  723. border-color: #e7e7e7;
  724. }
  725. .btn-light:hover,
  726. .btn-light:focus,
  727. .btn-light.focus,
  728. .open > .btn-light.dropdown-toggle,
  729. .btn-light.active,
  730. .open > .btn-light.active.dropdown-toggle {
  731. color: #888888;
  732. }
  733. .btn-light.btn-xs:after,
  734. .btn-light.btn-mini:after {
  735. left: -2px;
  736. right: -2px;
  737. top: -2px;
  738. bottom: -2px;
  739. }
  740. .btn-light.btn-sm:after {
  741. left: -4px;
  742. right: -4px;
  743. top: -4px;
  744. bottom: -4px;
  745. }
  746. .btn-light .btn-lg:after {
  747. left: -6px;
  748. right: -6px;
  749. top: -6px;
  750. bottom: -6px;
  751. }
  752. .btn.btn-white {
  753. text-shadow: none !important;
  754. background-color: #FFF !important;
  755. }
  756. .btn.btn-white.no-hover:hover,
  757. .btn.btn-white.no-hover:active {
  758. background-color: #FFF !important;
  759. }
  760. .btn.btn-white:focus,
  761. .btn.btn-white.active {
  762. box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
  763. }
  764. .btn.btn-white:focus.btn-bold,
  765. .btn.btn-white.active.btn-bold {
  766. box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.15) !important;
  767. }
  768. .btn.btn-white.active:after {
  769. display: none;
  770. }
  771. .btn.btn-white {
  772. border-color: #cccccc;
  773. color: #444444 !important;
  774. /**
  775. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  776. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  777. //}
  778. //&.no-border:hover , &.no-border:active {
  779. //border-color: @border-color;
  780. //}
  781. */
  782. }
  783. .btn.btn-white:hover,
  784. .btn.btn-white:focus,
  785. .btn.btn-white.active,
  786. .btn.btn-white:active,
  787. .open > .btn.btn-white.dropdown-toggle,
  788. .open > .btn.btn-white.active.dropdown-toggle {
  789. background-color: #ebebeb !important;
  790. border-color: #cccccc;
  791. color: #3a3434 !important;
  792. }
  793. .btn.btn-white:hover.no-border,
  794. .btn.btn-white:focus.no-border,
  795. .btn.btn-white.active.no-border,
  796. .btn.btn-white:active.no-border,
  797. .open > .btn.btn-white.dropdown-toggle.no-border,
  798. .open > .btn.btn-white.active.dropdown-toggle.no-border {
  799. border-color: #cccccc;
  800. }
  801. .btn.btn-white.disabled,
  802. .btn.btn-white[disabled],
  803. fieldset[disabled] .btn.btn-white,
  804. .btn.btn-white.disabled:hover,
  805. .btn.btn-white[disabled]:hover,
  806. fieldset[disabled] .btn.btn-white:hover,
  807. .btn.btn-white.disabled:focus,
  808. .btn.btn-white[disabled]:focus,
  809. fieldset[disabled] .btn.btn-white:focus,
  810. .btn.btn-white.disabled:active,
  811. .btn.btn-white[disabled]:active,
  812. fieldset[disabled] .btn.btn-white:active,
  813. .btn.btn-white.disabled.active,
  814. .btn.btn-white[disabled].active,
  815. fieldset[disabled] .btn.btn-white.active {
  816. border-color: #cccccc;
  817. }
  818. .btn-white.btn-default {
  819. border-color: #abbac3;
  820. color: #80909a !important;
  821. /**
  822. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  823. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  824. //}
  825. //&.no-border:hover , &.no-border:active {
  826. //border-color: @border-color;
  827. //}
  828. */
  829. }
  830. .btn-white.btn-default:hover,
  831. .btn-white.btn-default:focus,
  832. .btn-white.btn-default.active,
  833. .btn-white.btn-default:active,
  834. .open > .btn-white.btn-default.dropdown-toggle,
  835. .open > .btn-white.btn-default.active.dropdown-toggle {
  836. background-color: #eff2f4 !important;
  837. border-color: #abbac3;
  838. color: #6b8595 !important;
  839. }
  840. .btn-white.btn-default:hover.no-border,
  841. .btn-white.btn-default:focus.no-border,
  842. .btn-white.btn-default.active.no-border,
  843. .btn-white.btn-default:active.no-border,
  844. .open > .btn-white.btn-default.dropdown-toggle.no-border,
  845. .open > .btn-white.btn-default.active.dropdown-toggle.no-border {
  846. border-color: #abbac3;
  847. }
  848. .btn-white.btn-default.disabled,
  849. .btn-white.btn-default[disabled],
  850. fieldset[disabled] .btn-white.btn-default,
  851. .btn-white.btn-default.disabled:hover,
  852. .btn-white.btn-default[disabled]:hover,
  853. fieldset[disabled] .btn-white.btn-default:hover,
  854. .btn-white.btn-default.disabled:focus,
  855. .btn-white.btn-default[disabled]:focus,
  856. fieldset[disabled] .btn-white.btn-default:focus,
  857. .btn-white.btn-default.disabled:active,
  858. .btn-white.btn-default[disabled]:active,
  859. fieldset[disabled] .btn-white.btn-default:active,
  860. .btn-white.btn-default.disabled.active,
  861. .btn-white.btn-default[disabled].active,
  862. fieldset[disabled] .btn-white.btn-default.active {
  863. border-color: #abbac3;
  864. }
  865. .btn-white.btn-primary {
  866. border-color: #8aafce;
  867. color: #6688a6 !important;
  868. /**
  869. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  870. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  871. //}
  872. //&.no-border:hover , &.no-border:active {
  873. //border-color: @border-color;
  874. //}
  875. */
  876. }
  877. .btn-white.btn-primary:hover,
  878. .btn-white.btn-primary:focus,
  879. .btn-white.btn-primary.active,
  880. .btn-white.btn-primary:active,
  881. .open > .btn-white.btn-primary.dropdown-toggle,
  882. .open > .btn-white.btn-primary.active.dropdown-toggle {
  883. background-color: #eaf2f8 !important;
  884. border-color: #8aafce;
  885. color: #537c9f !important;
  886. }
  887. .btn-white.btn-primary:hover.no-border,
  888. .btn-white.btn-primary:focus.no-border,
  889. .btn-white.btn-primary.active.no-border,
  890. .btn-white.btn-primary:active.no-border,
  891. .open > .btn-white.btn-primary.dropdown-toggle.no-border,
  892. .open > .btn-white.btn-primary.active.dropdown-toggle.no-border {
  893. border-color: #8aafce;
  894. }
  895. .btn-white.btn-primary.disabled,
  896. .btn-white.btn-primary[disabled],
  897. fieldset[disabled] .btn-white.btn-primary,
  898. .btn-white.btn-primary.disabled:hover,
  899. .btn-white.btn-primary[disabled]:hover,
  900. fieldset[disabled] .btn-white.btn-primary:hover,
  901. .btn-white.btn-primary.disabled:focus,
  902. .btn-white.btn-primary[disabled]:focus,
  903. fieldset[disabled] .btn-white.btn-primary:focus,
  904. .btn-white.btn-primary.disabled:active,
  905. .btn-white.btn-primary[disabled]:active,
  906. fieldset[disabled] .btn-white.btn-primary:active,
  907. .btn-white.btn-primary.disabled.active,
  908. .btn-white.btn-primary[disabled].active,
  909. fieldset[disabled] .btn-white.btn-primary.active {
  910. border-color: #8aafce;
  911. }
  912. .btn-white.btn-success {
  913. border-color: #a7c9a1;
  914. color: #81a87b !important;
  915. /**
  916. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  917. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  918. //}
  919. //&.no-border:hover , &.no-border:active {
  920. //border-color: @border-color;
  921. //}
  922. */
  923. }
  924. .btn-white.btn-success:hover,
  925. .btn-white.btn-success:focus,
  926. .btn-white.btn-success.active,
  927. .btn-white.btn-success:active,
  928. .open > .btn-white.btn-success.dropdown-toggle,
  929. .open > .btn-white.btn-success.active.dropdown-toggle {
  930. background-color: #edf4eb !important;
  931. border-color: #a7c9a1;
  932. color: #6ea465 !important;
  933. }
  934. .btn-white.btn-success:hover.no-border,
  935. .btn-white.btn-success:focus.no-border,
  936. .btn-white.btn-success.active.no-border,
  937. .btn-white.btn-success:active.no-border,
  938. .open > .btn-white.btn-success.dropdown-toggle.no-border,
  939. .open > .btn-white.btn-success.active.dropdown-toggle.no-border {
  940. border-color: #a7c9a1;
  941. }
  942. .btn-white.btn-success.disabled,
  943. .btn-white.btn-success[disabled],
  944. fieldset[disabled] .btn-white.btn-success,
  945. .btn-white.btn-success.disabled:hover,
  946. .btn-white.btn-success[disabled]:hover,
  947. fieldset[disabled] .btn-white.btn-success:hover,
  948. .btn-white.btn-success.disabled:focus,
  949. .btn-white.btn-success[disabled]:focus,
  950. fieldset[disabled] .btn-white.btn-success:focus,
  951. .btn-white.btn-success.disabled:active,
  952. .btn-white.btn-success[disabled]:active,
  953. fieldset[disabled] .btn-white.btn-success:active,
  954. .btn-white.btn-success.disabled.active,
  955. .btn-white.btn-success[disabled].active,
  956. fieldset[disabled] .btn-white.btn-success.active {
  957. border-color: #a7c9a1;
  958. }
  959. .btn-white.btn-danger {
  960. border-color: #d7a59d;
  961. color: #b7837a !important;
  962. /**
  963. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  964. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  965. //}
  966. //&.no-border:hover , &.no-border:active {
  967. //border-color: @border-color;
  968. //}
  969. */
  970. }
  971. .btn-white.btn-danger:hover,
  972. .btn-white.btn-danger:focus,
  973. .btn-white.btn-danger.active,
  974. .btn-white.btn-danger:active,
  975. .open > .btn-white.btn-danger.dropdown-toggle,
  976. .open > .btn-white.btn-danger.active.dropdown-toggle {
  977. background-color: #fbf4f3 !important;
  978. border-color: #d7a59d;
  979. color: #b46f64 !important;
  980. }
  981. .btn-white.btn-danger:hover.no-border,
  982. .btn-white.btn-danger:focus.no-border,
  983. .btn-white.btn-danger.active.no-border,
  984. .btn-white.btn-danger:active.no-border,
  985. .open > .btn-white.btn-danger.dropdown-toggle.no-border,
  986. .open > .btn-white.btn-danger.active.dropdown-toggle.no-border {
  987. border-color: #d7a59d;
  988. }
  989. .btn-white.btn-danger.disabled,
  990. .btn-white.btn-danger[disabled],
  991. fieldset[disabled] .btn-white.btn-danger,
  992. .btn-white.btn-danger.disabled:hover,
  993. .btn-white.btn-danger[disabled]:hover,
  994. fieldset[disabled] .btn-white.btn-danger:hover,
  995. .btn-white.btn-danger.disabled:focus,
  996. .btn-white.btn-danger[disabled]:focus,
  997. fieldset[disabled] .btn-white.btn-danger:focus,
  998. .btn-white.btn-danger.disabled:active,
  999. .btn-white.btn-danger[disabled]:active,
  1000. fieldset[disabled] .btn-white.btn-danger:active,
  1001. .btn-white.btn-danger.disabled.active,
  1002. .btn-white.btn-danger[disabled].active,
  1003. fieldset[disabled] .btn-white.btn-danger.active {
  1004. border-color: #d7a59d;
  1005. }
  1006. .btn-white.btn-warning {
  1007. border-color: #e7b979;
  1008. color: #daa458 !important;
  1009. /**
  1010. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1011. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1012. //}
  1013. //&.no-border:hover , &.no-border:active {
  1014. //border-color: @border-color;
  1015. //}
  1016. */
  1017. }
  1018. .btn-white.btn-warning:hover,
  1019. .btn-white.btn-warning:focus,
  1020. .btn-white.btn-warning.active,
  1021. .btn-white.btn-warning:active,
  1022. .open > .btn-white.btn-warning.dropdown-toggle,
  1023. .open > .btn-white.btn-warning.active.dropdown-toggle {
  1024. background-color: #fef7ec !important;
  1025. border-color: #e7b979;
  1026. color: #db9a3d !important;
  1027. }
  1028. .btn-white.btn-warning:hover.no-border,
  1029. .btn-white.btn-warning:focus.no-border,
  1030. .btn-white.btn-warning.active.no-border,
  1031. .btn-white.btn-warning:active.no-border,
  1032. .open > .btn-white.btn-warning.dropdown-toggle.no-border,
  1033. .open > .btn-white.btn-warning.active.dropdown-toggle.no-border {
  1034. border-color: #e7b979;
  1035. }
  1036. .btn-white.btn-warning.disabled,
  1037. .btn-white.btn-warning[disabled],
  1038. fieldset[disabled] .btn-white.btn-warning,
  1039. .btn-white.btn-warning.disabled:hover,
  1040. .btn-white.btn-warning[disabled]:hover,
  1041. fieldset[disabled] .btn-white.btn-warning:hover,
  1042. .btn-white.btn-warning.disabled:focus,
  1043. .btn-white.btn-warning[disabled]:focus,
  1044. fieldset[disabled] .btn-white.btn-warning:focus,
  1045. .btn-white.btn-warning.disabled:active,
  1046. .btn-white.btn-warning[disabled]:active,
  1047. fieldset[disabled] .btn-white.btn-warning:active,
  1048. .btn-white.btn-warning.disabled.active,
  1049. .btn-white.btn-warning[disabled].active,
  1050. fieldset[disabled] .btn-white.btn-warning.active {
  1051. border-color: #e7b979;
  1052. }
  1053. .btn-white.btn-info {
  1054. border-color: #8fbcd9;
  1055. color: #70a0c1 !important;
  1056. /**
  1057. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1058. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1059. //}
  1060. //&.no-border:hover , &.no-border:active {
  1061. //border-color: @border-color;
  1062. //}
  1063. */
  1064. }
  1065. .btn-white.btn-info:hover,
  1066. .btn-white.btn-info:focus,
  1067. .btn-white.btn-info.active,
  1068. .btn-white.btn-info:active,
  1069. .open > .btn-white.btn-info.dropdown-toggle,
  1070. .open > .btn-white.btn-info.active.dropdown-toggle {
  1071. background-color: #eef5fa !important;
  1072. border-color: #8fbcd9;
  1073. color: #5896bf !important;
  1074. }
  1075. .btn-white.btn-info:hover.no-border,
  1076. .btn-white.btn-info:focus.no-border,
  1077. .btn-white.btn-info.active.no-border,
  1078. .btn-white.btn-info:active.no-border,
  1079. .open > .btn-white.btn-info.dropdown-toggle.no-border,
  1080. .open > .btn-white.btn-info.active.dropdown-toggle.no-border {
  1081. border-color: #8fbcd9;
  1082. }
  1083. .btn-white.btn-info.disabled,
  1084. .btn-white.btn-info[disabled],
  1085. fieldset[disabled] .btn-white.btn-info,
  1086. .btn-white.btn-info.disabled:hover,
  1087. .btn-white.btn-info[disabled]:hover,
  1088. fieldset[disabled] .btn-white.btn-info:hover,
  1089. .btn-white.btn-info.disabled:focus,
  1090. .btn-white.btn-info[disabled]:focus,
  1091. fieldset[disabled] .btn-white.btn-info:focus,
  1092. .btn-white.btn-info.disabled:active,
  1093. .btn-white.btn-info[disabled]:active,
  1094. fieldset[disabled] .btn-white.btn-info:active,
  1095. .btn-white.btn-info.disabled.active,
  1096. .btn-white.btn-info[disabled].active,
  1097. fieldset[disabled] .btn-white.btn-info.active {
  1098. border-color: #8fbcd9;
  1099. }
  1100. .btn-white.btn-inverse {
  1101. border-color: #959595;
  1102. color: #555555 !important;
  1103. /**
  1104. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1105. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1106. //}
  1107. //&.no-border:hover , &.no-border:active {
  1108. //border-color: @border-color;
  1109. //}
  1110. */
  1111. }
  1112. .btn-white.btn-inverse:hover,
  1113. .btn-white.btn-inverse:focus,
  1114. .btn-white.btn-inverse.active,
  1115. .btn-white.btn-inverse:active,
  1116. .open > .btn-white.btn-inverse.dropdown-toggle,
  1117. .open > .btn-white.btn-inverse.active.dropdown-toggle {
  1118. background-color: #e4e4e4 !important;
  1119. border-color: #959595;
  1120. color: #4c4545 !important;
  1121. }
  1122. .btn-white.btn-inverse:hover.no-border,
  1123. .btn-white.btn-inverse:focus.no-border,
  1124. .btn-white.btn-inverse.active.no-border,
  1125. .btn-white.btn-inverse:active.no-border,
  1126. .open > .btn-white.btn-inverse.dropdown-toggle.no-border,
  1127. .open > .btn-white.btn-inverse.active.dropdown-toggle.no-border {
  1128. border-color: #959595;
  1129. }
  1130. .btn-white.btn-inverse.disabled,
  1131. .btn-white.btn-inverse[disabled],
  1132. fieldset[disabled] .btn-white.btn-inverse,
  1133. .btn-white.btn-inverse.disabled:hover,
  1134. .btn-white.btn-inverse[disabled]:hover,
  1135. fieldset[disabled] .btn-white.btn-inverse:hover,
  1136. .btn-white.btn-inverse.disabled:focus,
  1137. .btn-white.btn-inverse[disabled]:focus,
  1138. fieldset[disabled] .btn-white.btn-inverse:focus,
  1139. .btn-white.btn-inverse.disabled:active,
  1140. .btn-white.btn-inverse[disabled]:active,
  1141. fieldset[disabled] .btn-white.btn-inverse:active,
  1142. .btn-white.btn-inverse.disabled.active,
  1143. .btn-white.btn-inverse[disabled].active,
  1144. fieldset[disabled] .btn-white.btn-inverse.active {
  1145. border-color: #959595;
  1146. }
  1147. .btn-white.btn-pink {
  1148. border-color: #d299ae;
  1149. color: #af6f87 !important;
  1150. /**
  1151. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1152. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1153. //}
  1154. //&.no-border:hover , &.no-border:active {
  1155. //border-color: @border-color;
  1156. //}
  1157. */
  1158. }
  1159. .btn-white.btn-pink:hover,
  1160. .btn-white.btn-pink:focus,
  1161. .btn-white.btn-pink.active,
  1162. .btn-white.btn-pink:active,
  1163. .open > .btn-white.btn-pink.dropdown-toggle,
  1164. .open > .btn-white.btn-pink.active.dropdown-toggle {
  1165. background-color: #fbeff4 !important;
  1166. border-color: #d299ae;
  1167. color: #ac5978 !important;
  1168. }
  1169. .btn-white.btn-pink:hover.no-border,
  1170. .btn-white.btn-pink:focus.no-border,
  1171. .btn-white.btn-pink.active.no-border,
  1172. .btn-white.btn-pink:active.no-border,
  1173. .open > .btn-white.btn-pink.dropdown-toggle.no-border,
  1174. .open > .btn-white.btn-pink.active.dropdown-toggle.no-border {
  1175. border-color: #d299ae;
  1176. }
  1177. .btn-white.btn-pink.disabled,
  1178. .btn-white.btn-pink[disabled],
  1179. fieldset[disabled] .btn-white.btn-pink,
  1180. .btn-white.btn-pink.disabled:hover,
  1181. .btn-white.btn-pink[disabled]:hover,
  1182. fieldset[disabled] .btn-white.btn-pink:hover,
  1183. .btn-white.btn-pink.disabled:focus,
  1184. .btn-white.btn-pink[disabled]:focus,
  1185. fieldset[disabled] .btn-white.btn-pink:focus,
  1186. .btn-white.btn-pink.disabled:active,
  1187. .btn-white.btn-pink[disabled]:active,
  1188. fieldset[disabled] .btn-white.btn-pink:active,
  1189. .btn-white.btn-pink.disabled.active,
  1190. .btn-white.btn-pink[disabled].active,
  1191. fieldset[disabled] .btn-white.btn-pink.active {
  1192. border-color: #d299ae;
  1193. }
  1194. .btn-white.btn-purple {
  1195. border-color: #b7b1c6;
  1196. color: #7d6fa2 !important;
  1197. /**
  1198. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1199. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1200. //}
  1201. //&.no-border:hover , &.no-border:active {
  1202. //border-color: @border-color;
  1203. //}
  1204. */
  1205. }
  1206. .btn-white.btn-purple:hover,
  1207. .btn-white.btn-purple:focus,
  1208. .btn-white.btn-purple.active,
  1209. .btn-white.btn-purple:active,
  1210. .open > .btn-white.btn-purple.dropdown-toggle,
  1211. .open > .btn-white.btn-purple.active.dropdown-toggle {
  1212. background-color: #efedf5 !important;
  1213. border-color: #b7b1c6;
  1214. color: #6d5b9c !important;
  1215. }
  1216. .btn-white.btn-purple:hover.no-border,
  1217. .btn-white.btn-purple:focus.no-border,
  1218. .btn-white.btn-purple.active.no-border,
  1219. .btn-white.btn-purple:active.no-border,
  1220. .open > .btn-white.btn-purple.dropdown-toggle.no-border,
  1221. .open > .btn-white.btn-purple.active.dropdown-toggle.no-border {
  1222. border-color: #b7b1c6;
  1223. }
  1224. .btn-white.btn-purple.disabled,
  1225. .btn-white.btn-purple[disabled],
  1226. fieldset[disabled] .btn-white.btn-purple,
  1227. .btn-white.btn-purple.disabled:hover,
  1228. .btn-white.btn-purple[disabled]:hover,
  1229. fieldset[disabled] .btn-white.btn-purple:hover,
  1230. .btn-white.btn-purple.disabled:focus,
  1231. .btn-white.btn-purple[disabled]:focus,
  1232. fieldset[disabled] .btn-white.btn-purple:focus,
  1233. .btn-white.btn-purple.disabled:active,
  1234. .btn-white.btn-purple[disabled]:active,
  1235. fieldset[disabled] .btn-white.btn-purple:active,
  1236. .btn-white.btn-purple.disabled.active,
  1237. .btn-white.btn-purple[disabled].active,
  1238. fieldset[disabled] .btn-white.btn-purple.active {
  1239. border-color: #b7b1c6;
  1240. }
  1241. .btn-white.btn-yellow {
  1242. border-color: #ecd181;
  1243. color: #d3a61a !important;
  1244. /**
  1245. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1246. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1247. //}
  1248. //&.no-border:hover , &.no-border:active {
  1249. //border-color: @border-color;
  1250. //}
  1251. */
  1252. }
  1253. .btn-white.btn-yellow:hover,
  1254. .btn-white.btn-yellow:focus,
  1255. .btn-white.btn-yellow.active,
  1256. .btn-white.btn-yellow:active,
  1257. .open > .btn-white.btn-yellow.dropdown-toggle,
  1258. .open > .btn-white.btn-yellow.active.dropdown-toggle {
  1259. background-color: #fdf7e4 !important;
  1260. border-color: #ecd181;
  1261. color: #c29712 !important;
  1262. }
  1263. .btn-white.btn-yellow:hover.no-border,
  1264. .btn-white.btn-yellow:focus.no-border,
  1265. .btn-white.btn-yellow.active.no-border,
  1266. .btn-white.btn-yellow:active.no-border,
  1267. .open > .btn-white.btn-yellow.dropdown-toggle.no-border,
  1268. .open > .btn-white.btn-yellow.active.dropdown-toggle.no-border {
  1269. border-color: #ecd181;
  1270. }
  1271. .btn-white.btn-yellow.disabled,
  1272. .btn-white.btn-yellow[disabled],
  1273. fieldset[disabled] .btn-white.btn-yellow,
  1274. .btn-white.btn-yellow.disabled:hover,
  1275. .btn-white.btn-yellow[disabled]:hover,
  1276. fieldset[disabled] .btn-white.btn-yellow:hover,
  1277. .btn-white.btn-yellow.disabled:focus,
  1278. .btn-white.btn-yellow[disabled]:focus,
  1279. fieldset[disabled] .btn-white.btn-yellow:focus,
  1280. .btn-white.btn-yellow.disabled:active,
  1281. .btn-white.btn-yellow[disabled]:active,
  1282. fieldset[disabled] .btn-white.btn-yellow:active,
  1283. .btn-white.btn-yellow.disabled.active,
  1284. .btn-white.btn-yellow[disabled].active,
  1285. fieldset[disabled] .btn-white.btn-yellow.active {
  1286. border-color: #ecd181;
  1287. }
  1288. .btn-white.btn-grey {
  1289. border-color: #c6c6c6;
  1290. color: #8c8c8c !important;
  1291. /**
  1292. //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
  1293. //color: saturate(darken(@txt-color , 5%) , 5%) !important;
  1294. //}
  1295. //&.no-border:hover , &.no-border:active {
  1296. //border-color: @border-color;
  1297. //}
  1298. */
  1299. }
  1300. .btn-white.btn-grey:hover,
  1301. .btn-white.btn-grey:focus,
  1302. .btn-white.btn-grey.active,
  1303. .btn-white.btn-grey:active,
  1304. .open > .btn-white.btn-grey.dropdown-toggle,
  1305. .open > .btn-white.btn-grey.active.dropdown-toggle {
  1306. background-color: #ededed !important;
  1307. border-color: #c6c6c6;
  1308. color: #857979 !important;
  1309. }
  1310. .btn-white.btn-grey:hover.no-border,
  1311. .btn-white.btn-grey:focus.no-border,
  1312. .btn-white.btn-grey.active.no-border,
  1313. .btn-white.btn-grey:active.no-border,
  1314. .open > .btn-white.btn-grey.dropdown-toggle.no-border,
  1315. .open > .btn-white.btn-grey.active.dropdown-toggle.no-border {
  1316. border-color: #c6c6c6;
  1317. }
  1318. .btn-white.btn-grey.disabled,
  1319. .btn-white.btn-grey[disabled],
  1320. fieldset[disabled] .btn-white.btn-grey,
  1321. .btn-white.btn-grey.disabled:hover,
  1322. .btn-white.btn-grey[disabled]:hover,
  1323. fieldset[disabled] .btn-white.btn-grey:hover,
  1324. .btn-white.btn-grey.disabled:focus,
  1325. .btn-white.btn-grey[disabled]:focus,
  1326. fieldset[disabled] .btn-white.btn-grey:focus,
  1327. .btn-white.btn-grey.disabled:active,
  1328. .btn-white.btn-grey[disabled]:active,
  1329. fieldset[disabled] .btn-white.btn-grey:active,
  1330. .btn-white.btn-grey.disabled.active,
  1331. .btn-white.btn-grey[disabled].active,
  1332. fieldset[disabled] .btn-white.btn-grey.active {
  1333. border-color: #c6c6c6;
  1334. }
  1335. .btn.disabled.active,
  1336. .btn[disabled].active,
  1337. .btn.disabled:focus,
  1338. .btn[disabled]:focus,
  1339. .btn.disabled:active,
  1340. .btn[disabled]:active {
  1341. outline: none;
  1342. }
  1343. .btn.disabled:active,
  1344. .btn[disabled]:active {
  1345. top: 0;
  1346. left: 0;
  1347. }
  1348. .btn.active:after {
  1349. display: inline-block;
  1350. content: "";
  1351. position: absolute;
  1352. border-bottom: 1px solid #efe5b5;
  1353. left: -4px;
  1354. right: -4px;
  1355. bottom: -4px;
  1356. }
  1357. .btn.active.btn-sm:after {
  1358. left: -3px;
  1359. right: -3px;
  1360. bottom: -3px;
  1361. }
  1362. .btn.active.btn-lg:after {
  1363. left: -5px;
  1364. right: -5px;
  1365. bottom: -5px;
  1366. }
  1367. .btn.active.btn-xs:after,
  1368. .btn.active.btn-mini:after,
  1369. .btn.active.btn-minier:after {
  1370. left: -1px;
  1371. right: -1px;
  1372. bottom: -2px;
  1373. }
  1374. .btn.active.btn-minier:after {
  1375. bottom: -1px;
  1376. }
  1377. .btn.active.btn-yellow:after {
  1378. border-bottom-color: #c96338;
  1379. }
  1380. .btn.active.btn-light {
  1381. color: #515151;
  1382. }
  1383. .btn.active.btn-light:after {
  1384. border-bottom-color: #B5B5B5;
  1385. }
  1386. .btn > .ace-icon {
  1387. margin-right: 4px;
  1388. }
  1389. .btn > .ace-icon.icon-on-right {
  1390. margin-right: 0;
  1391. margin-left: 4px;
  1392. }
  1393. .btn > .icon-only.ace-icon {
  1394. margin: 0 !important;
  1395. text-align: center;
  1396. padding: 0;
  1397. }
  1398. .btn-lg > .ace-icon {
  1399. margin-right: 6px;
  1400. }
  1401. .btn-lg > .ace-icon.icon-on-right {
  1402. margin-right: 0;
  1403. margin-left: 6px;
  1404. }
  1405. .btn-sm > .ace-icon {
  1406. margin-right: 3px;
  1407. }
  1408. .btn-sm > .ace-icon.icon-on-right {
  1409. margin-right: 0;
  1410. margin-left: 3px;
  1411. }
  1412. .btn-xs > .ace-icon,
  1413. .btn-mini > .ace-icon,
  1414. .btn-minier > .ace-icon {
  1415. margin-right: 2px;
  1416. }
  1417. .btn-xs > .ace-icon.icon-on-right,
  1418. .btn-mini > .ace-icon.icon-on-right,
  1419. .btn-minier > .ace-icon.icon-on-right {
  1420. margin-right: 0;
  1421. margin-left: 2px;
  1422. }
  1423. .btn.btn-link {
  1424. border-width: 0 !important;
  1425. background: transparent none !important;
  1426. color: #0088cc !important;
  1427. text-shadow: none !important;
  1428. padding: 4px 12px !important;
  1429. line-height: 20px !important;
  1430. }
  1431. .btn.btn-link:hover {
  1432. background: none !important;
  1433. text-shadow: none !important;
  1434. }
  1435. .btn.btn-link.active {
  1436. background: none !important;
  1437. text-decoration: underline;
  1438. color: #009ceb !important;
  1439. }
  1440. .btn.btn-link.active:after {
  1441. display: none;
  1442. }
  1443. .btn.btn-link.disabled,
  1444. .btn.btn-link[disabled] {
  1445. background: transparent none !important;
  1446. opacity: 0.65;
  1447. filter: alpha(opacity=65);
  1448. text-decoration: none !important;
  1449. }
  1450. .btn.btn-no-border {
  1451. border-width: 0 !important;
  1452. }
  1453. .btn-group:first-child {
  1454. margin-left: 0;
  1455. }
  1456. .btn-group > .btn,
  1457. .btn-group > .btn + .btn {
  1458. margin: 0 1px 0 0;
  1459. }
  1460. .btn-group > .btn:first-child {
  1461. margin: 0 1px 0 0;
  1462. }
  1463. .btn-group > .btn > .caret {
  1464. margin-top: 15px;
  1465. margin-left: 1px;
  1466. border-width: 5px;
  1467. border-top-color: #FFF;
  1468. }
  1469. .btn-group > .btn.btn-sm > .caret {
  1470. margin-top: 10px;
  1471. border-width: 4px;
  1472. }
  1473. .btn-group > .btn.btn-lg > .caret {
  1474. margin-top: 18px;
  1475. border-width: 6px;
  1476. }
  1477. .btn-group > .btn.btn-xs > .caret,
  1478. .btn-group > .btn.btn-mini > .caret {
  1479. margin-top: 9px;
  1480. border-width: 4px;
  1481. }
  1482. .btn-group > .btn.btn-minier > .caret {
  1483. margin-top: 7px;
  1484. border-width: 3px;
  1485. }
  1486. .btn-group > .btn + .btn.dropdown-toggle {
  1487. padding-right: 3px;
  1488. padding-left: 3px;
  1489. }
  1490. .btn-group > .btn + .btn-lg.dropdown-toggle {
  1491. padding-right: 4px;
  1492. padding-left: 4px;
  1493. }
  1494. .btn-group .dropdown-toggle {
  1495. border-radius: 0;
  1496. }
  1497. .btn-group > .btn,
  1498. .btn-group + .btn {
  1499. margin: 0 1px 0 0;
  1500. border-width: 3px;
  1501. /* the border under an active button in button groups */
  1502. }
  1503. .btn-group > .btn.active:after,
  1504. .btn-group + .btn.active:after {
  1505. left: -2px;
  1506. right: -2px;
  1507. bottom: -2px;
  1508. border-bottom-width: 1px;
  1509. }
  1510. .btn-group > .btn-lg,
  1511. .btn-group + .btn-lg {
  1512. border-width: 4px;
  1513. /* the border under an active button in button groups */
  1514. }
  1515. .btn-group > .btn-lg.active:after,
  1516. .btn-group + .btn-lg.active:after {
  1517. left: -3px;
  1518. right: -3px;
  1519. bottom: -3px;
  1520. border-bottom-width: 1px;
  1521. }
  1522. .btn-group > .btn-sm,
  1523. .btn-group + .btn-sm {
  1524. border-width: 2px;
  1525. /* the border under an active button in button groups */
  1526. }
  1527. .btn-group > .btn-sm.active:after,
  1528. .btn-group + .btn-sm.active:after {
  1529. left: -1px;
  1530. right: -1px;
  1531. bottom: -1px;
  1532. border-bottom-width: 1px;
  1533. }
  1534. .btn-group > .btn-xs,
  1535. .btn-group + .btn-xs,
  1536. .btn-group > .btn-mini,
  1537. .btn-group + .btn-mini {
  1538. border-width: 1px;
  1539. /* the border under an active button in button groups */
  1540. }
  1541. .btn-group > .btn-xs.active:after,
  1542. .btn-group + .btn-xs.active:after,
  1543. .btn-group > .btn-mini.active:after,
  1544. .btn-group + .btn-mini.active:after {
  1545. left: 0px;
  1546. right: 0px;
  1547. bottom: 0px;
  1548. border-bottom-width: 1px;
  1549. }
  1550. .btn-group > .btn-minier,
  1551. .btn-group + .btn-minier {
  1552. border-width: 1px;
  1553. /* the border under an active button in button groups */
  1554. }
  1555. .btn-group > .btn-minier.active:after,
  1556. .btn-group + .btn-minier.active:after {
  1557. left: 0px;
  1558. right: 0px;
  1559. bottom: 0px;
  1560. border-bottom-width: 1px;
  1561. }
  1562. .btn-group-vertical > .btn:last-child:not(:first-child) {
  1563. border-radius: 0;
  1564. }
  1565. .btn-group-vertical > .btn,
  1566. .btn-group-vertical > .btn + .btn {
  1567. margin: 1px 0 0;
  1568. }
  1569. .btn-group-vertical > .btn:first-child {
  1570. margin-top: 0;
  1571. }
  1572. .btn-group.btn-overlap > .btn {
  1573. margin-right: -1px;
  1574. }
  1575. .btn-group.btn-corner > .btn:first-child {
  1576. border-bottom-left-radius: 8px;
  1577. border-top-left-radius: 8px;
  1578. }
  1579. .btn-group.btn-corner > .btn:last-child {
  1580. border-bottom-right-radius: 8px;
  1581. border-top-right-radius: 8px;
  1582. }
  1583. .btn-group.btn-corner > .btn.btn-sm:first-child {
  1584. border-bottom-left-radius: 6px;
  1585. border-top-left-radius: 6px;
  1586. }
  1587. .btn-group.btn-corner > .btn.btn-sm:last-child {
  1588. border-bottom-right-radius: 6px;
  1589. border-top-right-radius: 6px;
  1590. }
  1591. .btn-group.btn-corner > .btn.btn-xs:first-child,
  1592. .btn-group.btn-corner > .btn.btn-mini:first-child {
  1593. border-bottom-left-radius: 4px;
  1594. border-top-left-radius: 4px;
  1595. }
  1596. .btn-group.btn-corner > .btn.btn-xs:last-child,
  1597. .btn-group.btn-corner > .btn.btn-mini:last-child {
  1598. border-bottom-right-radius: 4px;
  1599. border-top-right-radius: 4px;
  1600. }
  1601. .btn.btn-white {
  1602. border-width: 1px;
  1603. }
  1604. .btn.btn-bold {
  1605. border-bottom-width: 2px;
  1606. }
  1607. .btn.btn-round {
  1608. border-bottom-width: 2px;
  1609. border-radius: 4px !important;
  1610. }
  1611. .btn.btn-app {
  1612. display: inline-block;
  1613. width: 100px;
  1614. font-size: 18px;
  1615. font-weight: normal;
  1616. color: #FFF;
  1617. text-align: center;
  1618. text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.2) !important;
  1619. border: none;
  1620. border-radius: 12px;
  1621. padding: 12px 0 8px;
  1622. margin: 2px;
  1623. line-height: 1.7;
  1624. position: relative;
  1625. }
  1626. .btn-app,
  1627. .btn-app.btn-default,
  1628. .btn-app.no-hover:hover,
  1629. .btn-app.btn-default.no-hover:hover,
  1630. .btn-app.disabled:hover,
  1631. .btn-app.btn-default.disabled:hover {
  1632. background: #b4c2cc !important;
  1633. background-image: -webkit-linear-gradient(top, #bcc9d5 0%, #abbac3 100%) !important;
  1634. background-image: -o-linear-gradient(top, #bcc9d5 0%, #abbac3 100%) !important;
  1635. background-image: linear-gradient(to bottom, #bcc9d5 0%, #abbac3 100%) !important;
  1636. background-repeat: repeat-x !important;
  1637. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbcc9d5', endColorstr='#ffabbac3', GradientType=0) !important;
  1638. }
  1639. .btn-app:hover,
  1640. .btn-app.btn-default:hover {
  1641. background: #9baebc !important;
  1642. background-image: -webkit-linear-gradient(top, #a3b5c5 0%, #93a6b2 100%) !important;
  1643. background-image: -o-linear-gradient(top, #a3b5c5 0%, #93a6b2 100%) !important;
  1644. background-image: linear-gradient(to bottom, #a3b5c5 0%, #93a6b2 100%) !important;
  1645. background-repeat: repeat-x !important;
  1646. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa3b5c5', endColorstr='#ff93a6b2', GradientType=0) !important;
  1647. }
  1648. .btn-app.btn-primary,
  1649. .btn-app.btn-primary.no-hover:hover,
  1650. .btn-app.btn-primary.disabled:hover {
  1651. background: #2a8bcb !important;
  1652. background-image: -webkit-linear-gradient(top, #3b98d6 0%, #197ec1 100%) !important;
  1653. background-image: -o-linear-gradient(top, #3b98d6 0%, #197ec1 100%) !important;
  1654. background-image: linear-gradient(to bottom, #3b98d6 0%, #197ec1 100%) !important;
  1655. background-repeat: repeat-x !important;
  1656. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b98d6', endColorstr='#ff197ec1', GradientType=0) !important;
  1657. }
  1658. .btn-app.btn-primary:hover {
  1659. background: #1d6fa6 !important;
  1660. background-image: -webkit-linear-gradient(top, #267eb8 0%, #136194 100%) !important;
  1661. background-image: -o-linear-gradient(top, #267eb8 0%, #136194 100%) !important;
  1662. background-image: linear-gradient(to bottom, #267eb8 0%, #136194 100%) !important;
  1663. background-repeat: repeat-x !important;
  1664. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff267eb8', endColorstr='#ff136194', GradientType=0) !important;
  1665. }
  1666. .btn-app.btn-info,
  1667. .btn-app.btn-info.no-hover:hover,
  1668. .btn-app.btn-info.disabled:hover {
  1669. background: #68adde !important;
  1670. background-image: -webkit-linear-gradient(top, #75b5e6 0%, #5ba4d5 100%) !important;
  1671. background-image: -o-linear-gradient(top, #75b5e6 0%, #5ba4d5 100%) !important;
  1672. background-image: linear-gradient(to bottom, #75b5e6 0%, #5ba4d5 100%) !important;
  1673. background-repeat: repeat-x !important;
  1674. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff75b5e6', endColorstr='#ff5ba4d5', GradientType=0) !important;
  1675. }
  1676. .btn-app.btn-info:hover {
  1677. background: #3f96d4 !important;
  1678. background-image: -webkit-linear-gradient(top, #4a9ede 0%, #348dc9 100%) !important;
  1679. background-image: -o-linear-gradient(top, #4a9ede 0%, #348dc9 100%) !important;
  1680. background-image: linear-gradient(to bottom, #4a9ede 0%, #348dc9 100%) !important;
  1681. background-repeat: repeat-x !important;
  1682. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4a9ede', endColorstr='#ff348dc9', GradientType=0) !important;
  1683. }
  1684. .btn-app.btn-success,
  1685. .btn-app.btn-success.no-hover:hover,
  1686. .btn-app.btn-success.disabled:hover {
  1687. background: #85b558 !important;
  1688. background-image: -webkit-linear-gradient(top, #8ebf60 0%, #7daa50 100%) !important;
  1689. background-image: -o-linear-gradient(top, #8ebf60 0%, #7daa50 100%) !important;
  1690. background-image: linear-gradient(to bottom, #8ebf60 0%, #7daa50 100%) !important;
  1691. background-repeat: repeat-x !important;
  1692. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ebf60', endColorstr='#ff7daa50', GradientType=0) !important;
  1693. }
  1694. .btn-app.btn-success:hover {
  1695. background: #6c9842 !important;
  1696. background-image: -webkit-linear-gradient(top, #74a844 0%, #648740 100%) !important;
  1697. background-image: -o-linear-gradient(top, #74a844 0%, #648740 100%) !important;
  1698. background-image: linear-gradient(to bottom, #74a844 0%, #648740 100%) !important;
  1699. background-repeat: repeat-x !important;
  1700. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff74a844', endColorstr='#ff648740', GradientType=0) !important;
  1701. }
  1702. .btn-app.btn-danger,
  1703. .btn-app.btn-danger.no-hover:hover,
  1704. .btn-app.btn-danger.disabled:hover {
  1705. background: #d3413b !important;
  1706. background-image: -webkit-linear-gradient(top, #d55b52 0%, #d12723 100%) !important;
  1707. background-image: -o-linear-gradient(top, #d55b52 0%, #d12723 100%) !important;
  1708. background-image: linear-gradient(to bottom, #d55b52 0%, #d12723 100%) !important;
  1709. background-repeat: repeat-x !important;
  1710. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd55b52', endColorstr='#ffd12723', GradientType=0) !important;
  1711. }
  1712. .btn-app.btn-danger:hover {
  1713. background: #b52c26 !important;
  1714. background-image: -webkit-linear-gradient(top, #c43a30 0%, #a51f1c 100%) !important;
  1715. background-image: -o-linear-gradient(top, #c43a30 0%, #a51f1c 100%) !important;
  1716. background-image: linear-gradient(to bottom, #c43a30 0%, #a51f1c 100%) !important;
  1717. background-repeat: repeat-x !important;
  1718. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc43a30', endColorstr='#ffa51f1c', GradientType=0) !important;
  1719. }
  1720. .btn-app.btn-warning,
  1721. .btn-app.btn-warning.no-hover:hover,
  1722. .btn-app.btn-warning.disabled:hover {
  1723. background: #ffb44b !important;
  1724. background-image: -webkit-linear-gradient(top, #ffbf66 0%, #ffa830 100%) !important;
  1725. background-image: -o-linear-gradient(top, #ffbf66 0%, #ffa830 100%) !important;
  1726. background-image: linear-gradient(to bottom, #ffbf66 0%, #ffa830 100%) !important;
  1727. background-repeat: repeat-x !important;
  1728. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffbf66', endColorstr='#ffffa830', GradientType=0) !important;
  1729. }
  1730. .btn-app.btn-warning:hover {
  1731. background: #fe9e19 !important;
  1732. background-image: -webkit-linear-gradient(top, #ffaa33 0%, #fc9200 100%) !important;
  1733. background-image: -o-linear-gradient(top, #ffaa33 0%, #fc9200 100%) !important;
  1734. background-image: linear-gradient(to bottom, #ffaa33 0%, #fc9200 100%) !important;
  1735. background-repeat: repeat-x !important;
  1736. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffaa33', endColorstr='#fffc9200', GradientType=0) !important;
  1737. }
  1738. .btn-app.btn-purple,
  1739. .btn-app.btn-purple.no-hover:hover,
  1740. .btn-app.btn-purple.disabled:hover {
  1741. background: #9889c1 !important;
  1742. background-image: -webkit-linear-gradient(top, #a696ce 0%, #8a7cb4 100%) !important;
  1743. background-image: -o-linear-gradient(top, #a696ce 0%, #8a7cb4 100%) !important;
  1744. background-image: linear-gradient(to bottom, #a696ce 0%, #8a7cb4 100%) !important;
  1745. background-repeat: repeat-x !important;
  1746. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa696ce', endColorstr='#ff8a7cb4', GradientType=0) !important;
  1747. }
  1748. .btn-app.btn-purple:hover {
  1749. background: #7b68af !important;
  1750. background-image: -webkit-linear-gradient(top, #8973be 0%, #6d5ca1 100%) !important;
  1751. background-image: -o-linear-gradient(top, #8973be 0%, #6d5ca1 100%) !important;
  1752. background-image: linear-gradient(to bottom, #8973be 0%, #6d5ca1 100%) !important;
  1753. background-repeat: repeat-x !important;
  1754. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8973be', endColorstr='#ff6d5ca1', GradientType=0) !important;
  1755. }
  1756. .btn-app.btn-pink,
  1757. .btn-app.btn-pink.no-hover:hover,
  1758. .btn-app.btn-pink.disabled:hover {
  1759. background: #d54c7e !important;
  1760. background-image: -webkit-linear-gradient(top, #db5e8c 0%, #ce3970 100%) !important;
  1761. background-image: -o-linear-gradient(top, #db5e8c 0%, #ce3970 100%) !important;
  1762. background-image: linear-gradient(to bottom, #db5e8c 0%, #ce3970 100%) !important;
  1763. background-repeat: repeat-x !important;
  1764. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdb5e8c', endColorstr='#ffce3970', GradientType=0) !important;
  1765. }
  1766. .btn-app.btn-pink:hover {
  1767. background: #be2f64 !important;
  1768. background-image: -webkit-linear-gradient(top, #d2346e 0%, #aa2a59 100%) !important;
  1769. background-image: -o-linear-gradient(top, #d2346e 0%, #aa2a59 100%) !important;
  1770. background-image: linear-gradient(to bottom, #d2346e 0%, #aa2a59 100%) !important;
  1771. background-repeat: repeat-x !important;
  1772. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd2346e', endColorstr='#ffaa2a59', GradientType=0) !important;
  1773. }
  1774. .btn-app.btn-inverse,
  1775. .btn-app.btn-inverse.no-hover:hover,
  1776. .btn-app.btn-inverse.disabled:hover {
  1777. background: #444444 !important;
  1778. background-image: -webkit-linear-gradient(top, #555555 0%, #333333 100%) !important;
  1779. background-image: -o-linear-gradient(top, #555555 0%, #333333 100%) !important;
  1780. background-image: linear-gradient(to bottom, #555555 0%, #333333 100%) !important;
  1781. background-repeat: repeat-x !important;
  1782. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=0) !important;
  1783. }
  1784. .btn-app.btn-inverse:hover {
  1785. background: #2b2b2b !important;
  1786. background-image: -webkit-linear-gradient(top, #3b3b3b 0%, #1a1a1a 100%) !important;
  1787. background-image: -o-linear-gradient(top, #3b3b3b 0%, #1a1a1a 100%) !important;
  1788. background-image: linear-gradient(to bottom, #3b3b3b 0%, #1a1a1a 100%) !important;
  1789. background-repeat: repeat-x !important;
  1790. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b3b3b', endColorstr='#ff1a1a1a', GradientType=0) !important;
  1791. }
  1792. .btn-app.btn-grey,
  1793. .btn-app.btn-grey.no-hover:hover,
  1794. .btn-app.btn-grey.disabled:hover {
  1795. background: #797979 !important;
  1796. background-image: -webkit-linear-gradient(top, #898989 0%, #696969 100%) !important;
  1797. background-image: -o-linear-gradient(top, #898989 0%, #696969 100%) !important;
  1798. background-image: linear-gradient(to bottom, #898989 0%, #696969 100%) !important;
  1799. background-repeat: repeat-x !important;
  1800. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff898989', endColorstr='#ff696969', GradientType=0) !important;
  1801. }
  1802. .btn-app.btn-grey:hover {
  1803. background: #6c6c6c !important;
  1804. background-image: -webkit-linear-gradient(top, #7c7c7c 0%, #5c5c5c 100%) !important;
  1805. background-image: -o-linear-gradient(top, #7c7c7c 0%, #5c5c5c 100%) !important;
  1806. background-image: linear-gradient(to bottom, #7c7c7c 0%, #5c5c5c 100%) !important;
  1807. background-repeat: repeat-x !important;
  1808. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7c7c7c', endColorstr='#ff5c5c5c', GradientType=0) !important;
  1809. }
  1810. .btn.btn-app.btn-light {
  1811. color: #5a5a5a !important;
  1812. text-shadow: 0 1px 1px #EEE !important;
  1813. }
  1814. .btn.btn-app.btn-light,
  1815. .btn.btn-app.btn-light.no-hover:hover,
  1816. .btn.btn-app.btn-light.disabled:hover {
  1817. background: #ededed !important;
  1818. background-image: -webkit-linear-gradient(top, #f4f4f4 0%, #e6e6e6 100%) !important;
  1819. background-image: -o-linear-gradient(top, #f4f4f4 0%, #e6e6e6 100%) !important;
  1820. background-image: linear-gradient(to bottom, #f4f4f4 0%, #e6e6e6 100%) !important;
  1821. background-repeat: repeat-x !important;
  1822. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff4f4f4', endColorstr='#ffe6e6e6', GradientType=0) !important;
  1823. }
  1824. .btn.btn-app.btn-light:hover {
  1825. background: #e0e0e0 !important;
  1826. background-image: -webkit-linear-gradient(top, #e7e7e7 0%, #d9d9d9 100%) !important;
  1827. background-image: -o-linear-gradient(top, #e7e7e7 0%, #d9d9d9 100%) !important;
  1828. background-image: linear-gradient(to bottom, #e7e7e7 0%, #d9d9d9 100%) !important;
  1829. background-repeat: repeat-x !important;
  1830. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe7e7e7', endColorstr='#ffd9d9d9', GradientType=0) !important;
  1831. }
  1832. .btn.btn-app.btn-yellow {
  1833. color: #996633 !important;
  1834. text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
  1835. }
  1836. .btn.btn-app.btn-yellow,
  1837. .btn.btn-app.btn-yellow.no-hover:hover,
  1838. .btn.btn-app.btn-yellow.disabled:hover {
  1839. background: #fee088 !important;
  1840. background-image: -webkit-linear-gradient(top, #ffe8a5 0%, #fcd76a 100%) !important;
  1841. background-image: -o-linear-gradient(top, #ffe8a5 0%, #fcd76a 100%) !important;
  1842. background-image: linear-gradient(to bottom, #ffe8a5 0%, #fcd76a 100%) !important;
  1843. background-repeat: repeat-x !important;
  1844. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe8a5', endColorstr='#fffcd76a', GradientType=0) !important;
  1845. }
  1846. .btn.btn-app.btn-yellow:hover {
  1847. background: #fdd96e !important;
  1848. background-image: -webkit-linear-gradient(top, #ffe18b 0%, #fbd051 100%) !important;
  1849. background-image: -o-linear-gradient(top, #ffe18b 0%, #fbd051 100%) !important;
  1850. background-image: linear-gradient(to bottom, #ffe18b 0%, #fbd051 100%) !important;
  1851. background-repeat: repeat-x !important;
  1852. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe18b', endColorstr='#fffbd051', GradientType=0) !important;
  1853. }
  1854. .btn.btn-app > .ace-icon {
  1855. opacity: 0.88;
  1856. }
  1857. .btn.btn-app:hover > .ace-icon {
  1858. opacity: 1;
  1859. }
  1860. .btn.btn-app.btn-sm {
  1861. width: 80px;
  1862. font-size: 16px;
  1863. border-radius: 10px;
  1864. line-height: 1.5;
  1865. }
  1866. .btn.btn-app.btn-xs {
  1867. width: 64px;
  1868. font-size: 15px;
  1869. border-radius: 8px;
  1870. padding-bottom: 7px;
  1871. padding-top: 8px;
  1872. line-height: 1.45;
  1873. }
  1874. .btn.btn-app > .ace-icon {
  1875. display: block;
  1876. font-size: 42px;
  1877. margin: 0 0 4px;
  1878. line-height: 36px;
  1879. min-width: 0;
  1880. padding: 0;
  1881. }
  1882. .btn.btn-app.btn-sm > .ace-icon {
  1883. display: block;
  1884. font-size: 32px;
  1885. line-height: 30px;
  1886. margin: 0 0 3px;
  1887. }
  1888. .btn.btn-app.btn-xs > .ace-icon {
  1889. display: block;
  1890. font-size: 24px;
  1891. line-height: 24px;
  1892. margin: 0;
  1893. }
  1894. .btn.btn-app.no-radius {
  1895. border-radius: 0;
  1896. }
  1897. .btn.btn-app.radius-4 {
  1898. border-radius: 4px;
  1899. }
  1900. .btn.btn-app > .badge,
  1901. .btn.btn-app > .label {
  1902. position: absolute !important;
  1903. top: -2px;
  1904. right: -2px;
  1905. padding: 1px 3px;
  1906. text-align: center;
  1907. font-size: 12px;
  1908. color: #FFF;
  1909. }
  1910. .btn.btn-app > .badge.badge-left,
  1911. .btn.btn-app > .label.badge-left,
  1912. .btn.btn-app > .badge.label-left,
  1913. .btn.btn-app > .label.label-left {
  1914. right: auto;
  1915. left: -2px;
  1916. }
  1917. .btn.btn-app > .badge-yellow,
  1918. .btn.btn-app > .label-yellow {
  1919. color: #996633;
  1920. }
  1921. .btn.btn-app > .badge-light,
  1922. .btn.btn-app > .label-light {
  1923. color: #888888;
  1924. }
  1925. .btn.btn-app > .label {
  1926. padding: 1px 6px 3px;
  1927. font-size: 13px;
  1928. }
  1929. .btn.btn-app.radius-4 > .badge,
  1930. .btn.btn-app.no-radius > .badge {
  1931. border-radius: 3px;
  1932. }
  1933. .btn.btn-app.radius-4 > .badge.no-radius,
  1934. .btn.btn-app.no-radius > .badge.no-radius {
  1935. border-radius: 0;
  1936. }
  1937. .btn.btn-app.active {
  1938. color: #ffffff;
  1939. }
  1940. .btn.btn-app.active:after {
  1941. display: none;
  1942. }
  1943. .btn.btn-app.active.btn-yellow {
  1944. color: #996633;
  1945. border-color: #fee188;
  1946. }
  1947. .btn.btn-app.active.btn-light {
  1948. color: #515151;
  1949. }
  1950. .btn-group > .btn-app:first-child:not(:last-child):not(.dropdown-toggle) {
  1951. margin-right: 24px;
  1952. }
  1953. .btn-group > .btn-app + .btn-app.dropdown-toggle {
  1954. position: absolute;
  1955. width: auto;
  1956. height: 100%;
  1957. padding-left: 6px;
  1958. padding-right: 6px;
  1959. margin-left: -23px;
  1960. border-bottom-left-radius: 0;
  1961. border-top-left-radius: 0;
  1962. right: 0;
  1963. }
  1964. .btn.btn-app.btn-light,
  1965. .btn.btn-app.btn-yellow {
  1966. -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset !important;
  1967. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset !important;
  1968. }