123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968 |
- .footer .footer-inner .footer-content {
- position: absolute;
- left: 12px;
- right: 12px;
- bottom: 4px;
- padding: 8px;
- line-height: 36px;
- border-top: 3px double #E5E5E5;
- }
- .footer.footer-fixed .footer-inner {
- position: fixed;
- z-index: 999;
- bottom: 0;
- }
- .footer.footer-fixed .footer-inner .footer-content {
- left: 2px;
- right: 2px;
- bottom: 2px;
- border: 1px solid #DDD;
- background-color: #F2F2F2;
- }
- .footer.footer-fixed + .btn-scroll-up {
- z-index: 999;
- }
- .btn {
- display: inline-block;
- color: #FFF !important;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-image: none !important;
- border: 5px solid #FFF;
- border-radius: 0;
- box-shadow: none !important;
- -webkit-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
- -o-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
- transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
- cursor: pointer;
- vertical-align: middle;
- margin: 0;
- position: relative;
- /**
- &:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- color: #FFF;
- box-shadow: none;
- }
- */
- }
- .btn.active,
- .open > .btn.active.dropdown-toggle {
- box-shadow: none;
- }
- .btn-lg,
- .btn-group-lg > .btn {
- border-width: 5px;
- line-height: 1.4;
- padding: 5px 16px 6px;
- }
- .btn-xlg,
- .btn-group-xlg > .btn {
- border-width: 5px;
- line-height: 1.35;
- padding: 7px 16px;
- font-size: 18px;
- }
- .btn-sm,
- .btn-group-sm > .btn {
- border-width: 4px;
- font-size: 13px;
- padding: 4px 9px;
- line-height: 1.38;
- }
- .btn-xs,
- .btn-group-xs > .btn {
- padding-top: 3px;
- padding-bottom: 3px;
- border-width: 3px;
- }
- .btn-mini,
- .btn-group-mini > .btn {
- /* padding: 1px 5px;
- border-width: 3px;
- font-size: 12px;
- line-height: 1.5; */
- padding: 1px 8px;
- border-width: 4px;
- font-size: 15px;
- line-height: 1.5;
- }
- .btn-minier,
- .btn-group-minier > .btn {
- padding: 0 4px;
- line-height: 18px;
- border-width: 2px;
- font-size: 12px;
- }
- button.btn:active {
- top: 1px;
- }
- .btn,
- .btn-default,
- .btn:focus,
- .btn-default:focus {
- background-color: #abbac3 !important;
- border-color: #abbac3;
- }
- .btn:hover,
- .btn-default:hover,
- .btn:active,
- .btn-default:active,
- .open > .btn.dropdown-toggle,
- .open > .btn-default.dropdown-toggle {
- background-color: #8b9aa3 !important;
- border-color: #abbac3;
- }
- .btn.no-border:hover,
- .btn-default.no-border:hover,
- .btn.no-border:active,
- .btn-default.no-border:active {
- border-color: #8b9aa3;
- }
- .btn.no-hover:hover,
- .btn-default.no-hover:hover,
- .btn.no-hover:active,
- .btn-default.no-hover:active {
- background-color: #abbac3 !important;
- }
- .btn.active,
- .btn-default.active {
- background-color: #9baab3 !important;
- border-color: #8799a4;
- }
- .btn.no-border.active,
- .btn-default.no-border.active {
- background-color: #92a3ac !important;
- border-color: #92a3ac;
- }
- .btn.disabled,
- .btn-default.disabled,
- .btn[disabled],
- .btn-default[disabled],
- fieldset[disabled] .btn,
- fieldset[disabled] .btn-default,
- .btn.disabled:hover,
- .btn-default.disabled:hover,
- .btn[disabled]:hover,
- .btn-default[disabled]:hover,
- fieldset[disabled] .btn:hover,
- fieldset[disabled] .btn-default:hover,
- .btn.disabled:focus,
- .btn-default.disabled:focus,
- .btn[disabled]:focus,
- .btn-default[disabled]:focus,
- fieldset[disabled] .btn:focus,
- fieldset[disabled] .btn-default:focus,
- .btn.disabled:active,
- .btn-default.disabled:active,
- .btn[disabled]:active,
- .btn-default[disabled]:active,
- fieldset[disabled] .btn:active,
- fieldset[disabled] .btn-default:active,
- .btn.disabled.active,
- .btn-default.disabled.active,
- .btn[disabled].active,
- .btn-default[disabled].active,
- fieldset[disabled] .btn.active,
- fieldset[disabled] .btn-default.active {
- background-color: #abbac3 !important;
- border-color: #abbac3;
- }
- .btn-primary,
- .btn-primary:focus {
- background-color: #428bca !important;
- border-color: #428bca;
- }
- .btn-primary:hover,
- .btn-primary:active,
- .open > .btn-primary.dropdown-toggle {
- background-color: #1b6aaa !important;
- border-color: #428bca;
- }
- .btn-primary.no-border:hover,
- .btn-primary.no-border:active {
- border-color: #1b6aaa;
- }
- .btn-primary.no-hover:hover,
- .btn-primary.no-hover:active {
- background-color: #428bca !important;
- }
- .btn-primary.active {
- background-color: #2f7bba !important;
- border-color: #27689d;
- }
- .btn-primary.no-border.active {
- background-color: #2b72ae !important;
- border-color: #2b72ae;
- }
- .btn-primary.disabled,
- .btn-primary[disabled],
- fieldset[disabled] .btn-primary,
- .btn-primary.disabled:hover,
- .btn-primary[disabled]:hover,
- fieldset[disabled] .btn-primary:hover,
- .btn-primary.disabled:focus,
- .btn-primary[disabled]:focus,
- fieldset[disabled] .btn-primary:focus,
- .btn-primary.disabled:active,
- .btn-primary[disabled]:active,
- fieldset[disabled] .btn-primary:active,
- .btn-primary.disabled.active,
- .btn-primary[disabled].active,
- fieldset[disabled] .btn-primary.active {
- background-color: #428bca !important;
- border-color: #428bca;
- }
- .btn-info,
- .btn-info:focus {
- background-color: #6fb3e0 !important;
- border-color: #6fb3e0;
- }
- .btn-info:hover,
- .btn-info:active,
- .open > .btn-info.dropdown-toggle {
- background-color: #4f99c6 !important;
- border-color: #6fb3e0;
- }
- .btn-info.no-border:hover,
- .btn-info.no-border:active {
- border-color: #4f99c6;
- }
- .btn-info.no-hover:hover,
- .btn-info.no-hover:active {
- background-color: #6fb3e0 !important;
- }
- .btn-info.active {
- background-color: #5fa6d3 !important;
- border-color: #4396cb;
- }
- .btn-info.no-border.active {
- background-color: #539fd0 !important;
- border-color: #539fd0;
- }
- .btn-info.disabled,
- .btn-info[disabled],
- fieldset[disabled] .btn-info,
- .btn-info.disabled:hover,
- .btn-info[disabled]:hover,
- fieldset[disabled] .btn-info:hover,
- .btn-info.disabled:focus,
- .btn-info[disabled]:focus,
- fieldset[disabled] .btn-info:focus,
- .btn-info.disabled:active,
- .btn-info[disabled]:active,
- fieldset[disabled] .btn-info:active,
- .btn-info.disabled.active,
- .btn-info[disabled].active,
- fieldset[disabled] .btn-info.active {
- background-color: #6fb3e0 !important;
- border-color: #6fb3e0;
- }
- .btn-info2,
- .btn-info2:focus {
- background-color: #95c6e5 !important;
- border-color: #95c6e5;
- }
- .btn-info2:hover,
- .btn-info2:active,
- .open > .btn-info2.dropdown-toggle {
- background-color: #67a6ce !important;
- border-color: #95c6e5;
- }
- .btn-info2.no-border:hover,
- .btn-info2.no-border:active {
- border-color: #67a6ce;
- }
- .btn-info2.no-hover:hover,
- .btn-info2.no-hover:active {
- background-color: #95c6e5 !important;
- }
- .btn-info2.active {
- background-color: #7eb6da !important;
- border-color: #62a6d1;
- }
- .btn-info2.no-border.active {
- background-color: #72afd6 !important;
- border-color: #72afd6;
- }
- .btn-info2.disabled,
- .btn-info2[disabled],
- fieldset[disabled] .btn-info2,
- .btn-info2.disabled:hover,
- .btn-info2[disabled]:hover,
- fieldset[disabled] .btn-info2:hover,
- .btn-info2.disabled:focus,
- .btn-info2[disabled]:focus,
- fieldset[disabled] .btn-info2:focus,
- .btn-info2.disabled:active,
- .btn-info2[disabled]:active,
- fieldset[disabled] .btn-info2:active,
- .btn-info2.disabled.active,
- .btn-info2[disabled].active,
- fieldset[disabled] .btn-info2.active {
- background-color: #95c6e5 !important;
- border-color: #95c6e5;
- }
- .btn-success,
- .btn-success:focus {
- background-color: #87b87f !important;
- border-color: #87b87f;
- }
- .btn-success:hover,
- .btn-success:active,
- .open > .btn-success.dropdown-toggle {
- background-color: #629b58 !important;
- border-color: #87b87f;
- }
- .btn-success.no-border:hover,
- .btn-success.no-border:active {
- border-color: #629b58;
- }
- .btn-success.no-hover:hover,
- .btn-success.no-hover:active {
- background-color: #87b87f !important;
- }
- .btn-success.active {
- background-color: #75aa6c !important;
- border-color: #629959;
- }
- .btn-success.no-border.active {
- background-color: #6ba462 !important;
- border-color: #6ba462;
- }
- .btn-success.disabled,
- .btn-success[disabled],
- fieldset[disabled] .btn-success,
- .btn-success.disabled:hover,
- .btn-success[disabled]:hover,
- fieldset[disabled] .btn-success:hover,
- .btn-success.disabled:focus,
- .btn-success[disabled]:focus,
- fieldset[disabled] .btn-success:focus,
- .btn-success.disabled:active,
- .btn-success[disabled]:active,
- fieldset[disabled] .btn-success:active,
- .btn-success.disabled.active,
- .btn-success[disabled].active,
- fieldset[disabled] .btn-success.active {
- background-color: #87b87f !important;
- border-color: #87b87f;
- }
- .btn-warning,
- .btn-warning:focus {
- background-color: #ffb752 !important;
- border-color: #ffb752;
- }
- .btn-warning:hover,
- .btn-warning:active,
- .open > .btn-warning.dropdown-toggle {
- background-color: #e59729 !important;
- border-color: #ffb752;
- }
- .btn-warning.no-border:hover,
- .btn-warning.no-border:active {
- border-color: #e59729;
- }
- .btn-warning.no-hover:hover,
- .btn-warning.no-hover:active {
- background-color: #ffb752 !important;
- }
- .btn-warning.active {
- background-color: #f2a73e !important;
- border-color: #f0981c;
- }
- .btn-warning.no-border.active {
- background-color: #f1a02f !important;
- border-color: #f1a02f;
- }
- .btn-warning.disabled,
- .btn-warning[disabled],
- fieldset[disabled] .btn-warning,
- .btn-warning.disabled:hover,
- .btn-warning[disabled]:hover,
- fieldset[disabled] .btn-warning:hover,
- .btn-warning.disabled:focus,
- .btn-warning[disabled]:focus,
- fieldset[disabled] .btn-warning:focus,
- .btn-warning.disabled:active,
- .btn-warning[disabled]:active,
- fieldset[disabled] .btn-warning:active,
- .btn-warning.disabled.active,
- .btn-warning[disabled].active,
- fieldset[disabled] .btn-warning.active {
- background-color: #ffb752 !important;
- border-color: #ffb752;
- }
- .btn-danger,
- .btn-danger:focus {
- background-color: #d15b47 !important;
- border-color: #d15b47;
- }
- .btn-danger:hover,
- .btn-danger:active,
- .open > .btn-danger.dropdown-toggle {
- background-color: #b74635 !important;
- border-color: #d15b47;
- }
- .btn-danger.no-border:hover,
- .btn-danger.no-border:active {
- border-color: #b74635;
- }
- .btn-danger.no-hover:hover,
- .btn-danger.no-hover:active {
- background-color: #d15b47 !important;
- }
- .btn-danger.active {
- background-color: #c4513e !important;
- border-color: #aa4434;
- }
- .btn-danger.no-border.active {
- background-color: #ba4b39 !important;
- border-color: #ba4b39;
- }
- .btn-danger.disabled,
- .btn-danger[disabled],
- fieldset[disabled] .btn-danger,
- .btn-danger.disabled:hover,
- .btn-danger[disabled]:hover,
- fieldset[disabled] .btn-danger:hover,
- .btn-danger.disabled:focus,
- .btn-danger[disabled]:focus,
- fieldset[disabled] .btn-danger:focus,
- .btn-danger.disabled:active,
- .btn-danger[disabled]:active,
- fieldset[disabled] .btn-danger:active,
- .btn-danger.disabled.active,
- .btn-danger[disabled].active,
- fieldset[disabled] .btn-danger.active {
- background-color: #d15b47 !important;
- border-color: #d15b47;
- }
- .btn-inverse,
- .btn-inverse:focus {
- background-color: #555555 !important;
- border-color: #555555;
- }
- .btn-inverse:hover,
- .btn-inverse:active,
- .open > .btn-inverse.dropdown-toggle {
- background-color: #303030 !important;
- border-color: #555555;
- }
- .btn-inverse.no-border:hover,
- .btn-inverse.no-border:active {
- border-color: #303030;
- }
- .btn-inverse.no-hover:hover,
- .btn-inverse.no-hover:active {
- background-color: #555555 !important;
- }
- .btn-inverse.active {
- background-color: #434343 !important;
- border-color: #313131;
- }
- .btn-inverse.no-border.active {
- background-color: #3b3b3b !important;
- border-color: #3b3b3b;
- }
- .btn-inverse.disabled,
- .btn-inverse[disabled],
- fieldset[disabled] .btn-inverse,
- .btn-inverse.disabled:hover,
- .btn-inverse[disabled]:hover,
- fieldset[disabled] .btn-inverse:hover,
- .btn-inverse.disabled:focus,
- .btn-inverse[disabled]:focus,
- fieldset[disabled] .btn-inverse:focus,
- .btn-inverse.disabled:active,
- .btn-inverse[disabled]:active,
- fieldset[disabled] .btn-inverse:active,
- .btn-inverse.disabled.active,
- .btn-inverse[disabled].active,
- fieldset[disabled] .btn-inverse.active {
- background-color: #555555 !important;
- border-color: #555555;
- }
- .btn-pink,
- .btn-pink:focus {
- background-color: #d6487e !important;
- border-color: #d6487e;
- }
- .btn-pink:hover,
- .btn-pink:active,
- .open > .btn-pink.dropdown-toggle {
- background-color: #b73766 !important;
- border-color: #d6487e;
- }
- .btn-pink.no-border:hover,
- .btn-pink.no-border:active {
- border-color: #b73766;
- }
- .btn-pink.no-hover:hover,
- .btn-pink.no-hover:active {
- background-color: #d6487e !important;
- }
- .btn-pink.active {
- background-color: #c74072 !important;
- border-color: #af3462;
- }
- .btn-pink.no-border.active {
- background-color: #be386a !important;
- border-color: #be386a;
- }
- .btn-pink.disabled,
- .btn-pink[disabled],
- fieldset[disabled] .btn-pink,
- .btn-pink.disabled:hover,
- .btn-pink[disabled]:hover,
- fieldset[disabled] .btn-pink:hover,
- .btn-pink.disabled:focus,
- .btn-pink[disabled]:focus,
- fieldset[disabled] .btn-pink:focus,
- .btn-pink.disabled:active,
- .btn-pink[disabled]:active,
- fieldset[disabled] .btn-pink:active,
- .btn-pink.disabled.active,
- .btn-pink[disabled].active,
- fieldset[disabled] .btn-pink.active {
- background-color: #d6487e !important;
- border-color: #d6487e;
- }
- .btn-purple,
- .btn-purple:focus {
- background-color: #9585bf !important;
- border-color: #9585bf;
- }
- .btn-purple:hover,
- .btn-purple:active,
- .open > .btn-purple.dropdown-toggle {
- background-color: #7461aa !important;
- border-color: #9585bf;
- }
- .btn-purple.no-border:hover,
- .btn-purple.no-border:active {
- border-color: #7461aa;
- }
- .btn-purple.no-hover:hover,
- .btn-purple.no-hover:active {
- background-color: #9585bf !important;
- }
- .btn-purple.active {
- background-color: #8573b5 !important;
- border-color: #705ca8;
- }
- .btn-purple.no-border.active {
- background-color: #7c69af !important;
- border-color: #7c69af;
- }
- .btn-purple.disabled,
- .btn-purple[disabled],
- fieldset[disabled] .btn-purple,
- .btn-purple.disabled:hover,
- .btn-purple[disabled]:hover,
- fieldset[disabled] .btn-purple:hover,
- .btn-purple.disabled:focus,
- .btn-purple[disabled]:focus,
- fieldset[disabled] .btn-purple:focus,
- .btn-purple.disabled:active,
- .btn-purple[disabled]:active,
- fieldset[disabled] .btn-purple:active,
- .btn-purple.disabled.active,
- .btn-purple[disabled].active,
- fieldset[disabled] .btn-purple.active {
- background-color: #9585bf !important;
- border-color: #9585bf;
- }
- .btn-grey,
- .btn-grey:focus {
- background-color: #a0a0a0 !important;
- border-color: #a0a0a0;
- }
- .btn-grey:hover,
- .btn-grey:active,
- .open > .btn-grey.dropdown-toggle {
- background-color: #888888 !important;
- border-color: #a0a0a0;
- }
- .btn-grey.no-border:hover,
- .btn-grey.no-border:active {
- border-color: #888888;
- }
- .btn-grey.no-hover:hover,
- .btn-grey.no-hover:active {
- background-color: #a0a0a0 !important;
- }
- .btn-grey.active {
- background-color: #949494 !important;
- border-color: #828282;
- }
- .btn-grey.no-border.active {
- background-color: #8c8c8c !important;
- border-color: #8c8c8c;
- }
- .btn-grey.disabled,
- .btn-grey[disabled],
- fieldset[disabled] .btn-grey,
- .btn-grey.disabled:hover,
- .btn-grey[disabled]:hover,
- fieldset[disabled] .btn-grey:hover,
- .btn-grey.disabled:focus,
- .btn-grey[disabled]:focus,
- fieldset[disabled] .btn-grey:focus,
- .btn-grey.disabled:active,
- .btn-grey[disabled]:active,
- fieldset[disabled] .btn-grey:active,
- .btn-grey.disabled.active,
- .btn-grey[disabled].active,
- fieldset[disabled] .btn-grey.active {
- background-color: #a0a0a0 !important;
- border-color: #a0a0a0;
- }
- .btn-yellow {
- color: #996633 !important;
- text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
- }
- .btn-yellow,
- .btn-yellow:focus {
- background-color: #fee188 !important;
- border-color: #fee188;
- }
- .btn-yellow:hover,
- .btn-yellow:active,
- .open > .btn-yellow.dropdown-toggle {
- background-color: #f7d05b !important;
- border-color: #fee188;
- }
- .btn-yellow.no-border:hover,
- .btn-yellow.no-border:active {
- border-color: #f7d05b;
- }
- .btn-yellow.no-hover:hover,
- .btn-yellow.no-hover:active {
- background-color: #fee188 !important;
- }
- .btn-yellow.active {
- background-color: #fbd972 !important;
- border-color: #f9cf4f;
- }
- .btn-yellow.no-border.active {
- background-color: #fad463 !important;
- border-color: #fad463;
- }
- .btn-yellow.disabled,
- .btn-yellow[disabled],
- fieldset[disabled] .btn-yellow,
- .btn-yellow.disabled:hover,
- .btn-yellow[disabled]:hover,
- fieldset[disabled] .btn-yellow:hover,
- .btn-yellow.disabled:focus,
- .btn-yellow[disabled]:focus,
- fieldset[disabled] .btn-yellow:focus,
- .btn-yellow.disabled:active,
- .btn-yellow[disabled]:active,
- fieldset[disabled] .btn-yellow:active,
- .btn-yellow.disabled.active,
- .btn-yellow[disabled].active,
- fieldset[disabled] .btn-yellow.active {
- background-color: #fee188 !important;
- border-color: #fee188;
- }
- .btn-yellow:hover,
- .btn-yellow:focus,
- .btn-yellow.focus,
- .open > .btn-yellow.dropdown-toggle,
- .btn-yellow.active,
- .open > .btn-yellow.active.dropdown-toggle {
- color: #996633;
- }
- .btn-light {
- color: #888888 !important;
- text-shadow: 0 -1px 0 rgba(250, 250, 250, 0.25) !important;
- }
- .btn-light,
- .btn-light:focus {
- background-color: #e7e7e7 !important;
- border-color: #e7e7e7;
- }
- .btn-light:hover,
- .btn-light:active,
- .open > .btn-light.dropdown-toggle {
- background-color: #d9d9d9 !important;
- border-color: #e7e7e7;
- }
- .btn-light.no-border:hover,
- .btn-light.no-border:active {
- border-color: #d9d9d9;
- }
- .btn-light.no-hover:hover,
- .btn-light.no-hover:active {
- background-color: #e7e7e7 !important;
- }
- .btn-light.active {
- background-color: #e0e0e0 !important;
- border-color: #cecece;
- }
- .btn-light.no-border.active {
- background-color: #d8d8d8 !important;
- border-color: #d8d8d8;
- }
- .btn-light.disabled,
- .btn-light[disabled],
- fieldset[disabled] .btn-light,
- .btn-light.disabled:hover,
- .btn-light[disabled]:hover,
- fieldset[disabled] .btn-light:hover,
- .btn-light.disabled:focus,
- .btn-light[disabled]:focus,
- fieldset[disabled] .btn-light:focus,
- .btn-light.disabled:active,
- .btn-light[disabled]:active,
- fieldset[disabled] .btn-light:active,
- .btn-light.disabled.active,
- .btn-light[disabled].active,
- fieldset[disabled] .btn-light.active {
- background-color: #e7e7e7 !important;
- border-color: #e7e7e7;
- }
- .btn-light:hover,
- .btn-light:focus,
- .btn-light.focus,
- .open > .btn-light.dropdown-toggle,
- .btn-light.active,
- .open > .btn-light.active.dropdown-toggle {
- color: #888888;
- }
- .btn-light.btn-xs:after,
- .btn-light.btn-mini:after {
- left: -2px;
- right: -2px;
- top: -2px;
- bottom: -2px;
- }
- .btn-light.btn-sm:after {
- left: -4px;
- right: -4px;
- top: -4px;
- bottom: -4px;
- }
- .btn-light .btn-lg:after {
- left: -6px;
- right: -6px;
- top: -6px;
- bottom: -6px;
- }
- .btn.btn-white {
- text-shadow: none !important;
- background-color: #FFF !important;
- }
- .btn.btn-white.no-hover:hover,
- .btn.btn-white.no-hover:active {
- background-color: #FFF !important;
- }
- .btn.btn-white:focus,
- .btn.btn-white.active {
- box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
- }
- .btn.btn-white:focus.btn-bold,
- .btn.btn-white.active.btn-bold {
- box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.15) !important;
- }
- .btn.btn-white.active:after {
- display: none;
- }
- .btn.btn-white {
- border-color: #cccccc;
- color: #444444 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn.btn-white:hover,
- .btn.btn-white:focus,
- .btn.btn-white.active,
- .btn.btn-white:active,
- .open > .btn.btn-white.dropdown-toggle,
- .open > .btn.btn-white.active.dropdown-toggle {
- background-color: #ebebeb !important;
- border-color: #cccccc;
- color: #3a3434 !important;
- }
- .btn.btn-white:hover.no-border,
- .btn.btn-white:focus.no-border,
- .btn.btn-white.active.no-border,
- .btn.btn-white:active.no-border,
- .open > .btn.btn-white.dropdown-toggle.no-border,
- .open > .btn.btn-white.active.dropdown-toggle.no-border {
- border-color: #cccccc;
- }
- .btn.btn-white.disabled,
- .btn.btn-white[disabled],
- fieldset[disabled] .btn.btn-white,
- .btn.btn-white.disabled:hover,
- .btn.btn-white[disabled]:hover,
- fieldset[disabled] .btn.btn-white:hover,
- .btn.btn-white.disabled:focus,
- .btn.btn-white[disabled]:focus,
- fieldset[disabled] .btn.btn-white:focus,
- .btn.btn-white.disabled:active,
- .btn.btn-white[disabled]:active,
- fieldset[disabled] .btn.btn-white:active,
- .btn.btn-white.disabled.active,
- .btn.btn-white[disabled].active,
- fieldset[disabled] .btn.btn-white.active {
- border-color: #cccccc;
- }
- .btn-white.btn-default {
- border-color: #abbac3;
- color: #80909a !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-default:hover,
- .btn-white.btn-default:focus,
- .btn-white.btn-default.active,
- .btn-white.btn-default:active,
- .open > .btn-white.btn-default.dropdown-toggle,
- .open > .btn-white.btn-default.active.dropdown-toggle {
- background-color: #eff2f4 !important;
- border-color: #abbac3;
- color: #6b8595 !important;
- }
- .btn-white.btn-default:hover.no-border,
- .btn-white.btn-default:focus.no-border,
- .btn-white.btn-default.active.no-border,
- .btn-white.btn-default:active.no-border,
- .open > .btn-white.btn-default.dropdown-toggle.no-border,
- .open > .btn-white.btn-default.active.dropdown-toggle.no-border {
- border-color: #abbac3;
- }
- .btn-white.btn-default.disabled,
- .btn-white.btn-default[disabled],
- fieldset[disabled] .btn-white.btn-default,
- .btn-white.btn-default.disabled:hover,
- .btn-white.btn-default[disabled]:hover,
- fieldset[disabled] .btn-white.btn-default:hover,
- .btn-white.btn-default.disabled:focus,
- .btn-white.btn-default[disabled]:focus,
- fieldset[disabled] .btn-white.btn-default:focus,
- .btn-white.btn-default.disabled:active,
- .btn-white.btn-default[disabled]:active,
- fieldset[disabled] .btn-white.btn-default:active,
- .btn-white.btn-default.disabled.active,
- .btn-white.btn-default[disabled].active,
- fieldset[disabled] .btn-white.btn-default.active {
- border-color: #abbac3;
- }
- .btn-white.btn-primary {
- border-color: #8aafce;
- color: #6688a6 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-primary:hover,
- .btn-white.btn-primary:focus,
- .btn-white.btn-primary.active,
- .btn-white.btn-primary:active,
- .open > .btn-white.btn-primary.dropdown-toggle,
- .open > .btn-white.btn-primary.active.dropdown-toggle {
- background-color: #eaf2f8 !important;
- border-color: #8aafce;
- color: #537c9f !important;
- }
- .btn-white.btn-primary:hover.no-border,
- .btn-white.btn-primary:focus.no-border,
- .btn-white.btn-primary.active.no-border,
- .btn-white.btn-primary:active.no-border,
- .open > .btn-white.btn-primary.dropdown-toggle.no-border,
- .open > .btn-white.btn-primary.active.dropdown-toggle.no-border {
- border-color: #8aafce;
- }
- .btn-white.btn-primary.disabled,
- .btn-white.btn-primary[disabled],
- fieldset[disabled] .btn-white.btn-primary,
- .btn-white.btn-primary.disabled:hover,
- .btn-white.btn-primary[disabled]:hover,
- fieldset[disabled] .btn-white.btn-primary:hover,
- .btn-white.btn-primary.disabled:focus,
- .btn-white.btn-primary[disabled]:focus,
- fieldset[disabled] .btn-white.btn-primary:focus,
- .btn-white.btn-primary.disabled:active,
- .btn-white.btn-primary[disabled]:active,
- fieldset[disabled] .btn-white.btn-primary:active,
- .btn-white.btn-primary.disabled.active,
- .btn-white.btn-primary[disabled].active,
- fieldset[disabled] .btn-white.btn-primary.active {
- border-color: #8aafce;
- }
- .btn-white.btn-success {
- border-color: #a7c9a1;
- color: #81a87b !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-success:hover,
- .btn-white.btn-success:focus,
- .btn-white.btn-success.active,
- .btn-white.btn-success:active,
- .open > .btn-white.btn-success.dropdown-toggle,
- .open > .btn-white.btn-success.active.dropdown-toggle {
- background-color: #edf4eb !important;
- border-color: #a7c9a1;
- color: #6ea465 !important;
- }
- .btn-white.btn-success:hover.no-border,
- .btn-white.btn-success:focus.no-border,
- .btn-white.btn-success.active.no-border,
- .btn-white.btn-success:active.no-border,
- .open > .btn-white.btn-success.dropdown-toggle.no-border,
- .open > .btn-white.btn-success.active.dropdown-toggle.no-border {
- border-color: #a7c9a1;
- }
- .btn-white.btn-success.disabled,
- .btn-white.btn-success[disabled],
- fieldset[disabled] .btn-white.btn-success,
- .btn-white.btn-success.disabled:hover,
- .btn-white.btn-success[disabled]:hover,
- fieldset[disabled] .btn-white.btn-success:hover,
- .btn-white.btn-success.disabled:focus,
- .btn-white.btn-success[disabled]:focus,
- fieldset[disabled] .btn-white.btn-success:focus,
- .btn-white.btn-success.disabled:active,
- .btn-white.btn-success[disabled]:active,
- fieldset[disabled] .btn-white.btn-success:active,
- .btn-white.btn-success.disabled.active,
- .btn-white.btn-success[disabled].active,
- fieldset[disabled] .btn-white.btn-success.active {
- border-color: #a7c9a1;
- }
- .btn-white.btn-danger {
- border-color: #d7a59d;
- color: #b7837a !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-danger:hover,
- .btn-white.btn-danger:focus,
- .btn-white.btn-danger.active,
- .btn-white.btn-danger:active,
- .open > .btn-white.btn-danger.dropdown-toggle,
- .open > .btn-white.btn-danger.active.dropdown-toggle {
- background-color: #fbf4f3 !important;
- border-color: #d7a59d;
- color: #b46f64 !important;
- }
- .btn-white.btn-danger:hover.no-border,
- .btn-white.btn-danger:focus.no-border,
- .btn-white.btn-danger.active.no-border,
- .btn-white.btn-danger:active.no-border,
- .open > .btn-white.btn-danger.dropdown-toggle.no-border,
- .open > .btn-white.btn-danger.active.dropdown-toggle.no-border {
- border-color: #d7a59d;
- }
- .btn-white.btn-danger.disabled,
- .btn-white.btn-danger[disabled],
- fieldset[disabled] .btn-white.btn-danger,
- .btn-white.btn-danger.disabled:hover,
- .btn-white.btn-danger[disabled]:hover,
- fieldset[disabled] .btn-white.btn-danger:hover,
- .btn-white.btn-danger.disabled:focus,
- .btn-white.btn-danger[disabled]:focus,
- fieldset[disabled] .btn-white.btn-danger:focus,
- .btn-white.btn-danger.disabled:active,
- .btn-white.btn-danger[disabled]:active,
- fieldset[disabled] .btn-white.btn-danger:active,
- .btn-white.btn-danger.disabled.active,
- .btn-white.btn-danger[disabled].active,
- fieldset[disabled] .btn-white.btn-danger.active {
- border-color: #d7a59d;
- }
- .btn-white.btn-warning {
- border-color: #e7b979;
- color: #daa458 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-warning:hover,
- .btn-white.btn-warning:focus,
- .btn-white.btn-warning.active,
- .btn-white.btn-warning:active,
- .open > .btn-white.btn-warning.dropdown-toggle,
- .open > .btn-white.btn-warning.active.dropdown-toggle {
- background-color: #fef7ec !important;
- border-color: #e7b979;
- color: #db9a3d !important;
- }
- .btn-white.btn-warning:hover.no-border,
- .btn-white.btn-warning:focus.no-border,
- .btn-white.btn-warning.active.no-border,
- .btn-white.btn-warning:active.no-border,
- .open > .btn-white.btn-warning.dropdown-toggle.no-border,
- .open > .btn-white.btn-warning.active.dropdown-toggle.no-border {
- border-color: #e7b979;
- }
- .btn-white.btn-warning.disabled,
- .btn-white.btn-warning[disabled],
- fieldset[disabled] .btn-white.btn-warning,
- .btn-white.btn-warning.disabled:hover,
- .btn-white.btn-warning[disabled]:hover,
- fieldset[disabled] .btn-white.btn-warning:hover,
- .btn-white.btn-warning.disabled:focus,
- .btn-white.btn-warning[disabled]:focus,
- fieldset[disabled] .btn-white.btn-warning:focus,
- .btn-white.btn-warning.disabled:active,
- .btn-white.btn-warning[disabled]:active,
- fieldset[disabled] .btn-white.btn-warning:active,
- .btn-white.btn-warning.disabled.active,
- .btn-white.btn-warning[disabled].active,
- fieldset[disabled] .btn-white.btn-warning.active {
- border-color: #e7b979;
- }
- .btn-white.btn-info {
- border-color: #8fbcd9;
- color: #70a0c1 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-info:hover,
- .btn-white.btn-info:focus,
- .btn-white.btn-info.active,
- .btn-white.btn-info:active,
- .open > .btn-white.btn-info.dropdown-toggle,
- .open > .btn-white.btn-info.active.dropdown-toggle {
- background-color: #eef5fa !important;
- border-color: #8fbcd9;
- color: #5896bf !important;
- }
- .btn-white.btn-info:hover.no-border,
- .btn-white.btn-info:focus.no-border,
- .btn-white.btn-info.active.no-border,
- .btn-white.btn-info:active.no-border,
- .open > .btn-white.btn-info.dropdown-toggle.no-border,
- .open > .btn-white.btn-info.active.dropdown-toggle.no-border {
- border-color: #8fbcd9;
- }
- .btn-white.btn-info.disabled,
- .btn-white.btn-info[disabled],
- fieldset[disabled] .btn-white.btn-info,
- .btn-white.btn-info.disabled:hover,
- .btn-white.btn-info[disabled]:hover,
- fieldset[disabled] .btn-white.btn-info:hover,
- .btn-white.btn-info.disabled:focus,
- .btn-white.btn-info[disabled]:focus,
- fieldset[disabled] .btn-white.btn-info:focus,
- .btn-white.btn-info.disabled:active,
- .btn-white.btn-info[disabled]:active,
- fieldset[disabled] .btn-white.btn-info:active,
- .btn-white.btn-info.disabled.active,
- .btn-white.btn-info[disabled].active,
- fieldset[disabled] .btn-white.btn-info.active {
- border-color: #8fbcd9;
- }
- .btn-white.btn-inverse {
- border-color: #959595;
- color: #555555 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-inverse:hover,
- .btn-white.btn-inverse:focus,
- .btn-white.btn-inverse.active,
- .btn-white.btn-inverse:active,
- .open > .btn-white.btn-inverse.dropdown-toggle,
- .open > .btn-white.btn-inverse.active.dropdown-toggle {
- background-color: #e4e4e4 !important;
- border-color: #959595;
- color: #4c4545 !important;
- }
- .btn-white.btn-inverse:hover.no-border,
- .btn-white.btn-inverse:focus.no-border,
- .btn-white.btn-inverse.active.no-border,
- .btn-white.btn-inverse:active.no-border,
- .open > .btn-white.btn-inverse.dropdown-toggle.no-border,
- .open > .btn-white.btn-inverse.active.dropdown-toggle.no-border {
- border-color: #959595;
- }
- .btn-white.btn-inverse.disabled,
- .btn-white.btn-inverse[disabled],
- fieldset[disabled] .btn-white.btn-inverse,
- .btn-white.btn-inverse.disabled:hover,
- .btn-white.btn-inverse[disabled]:hover,
- fieldset[disabled] .btn-white.btn-inverse:hover,
- .btn-white.btn-inverse.disabled:focus,
- .btn-white.btn-inverse[disabled]:focus,
- fieldset[disabled] .btn-white.btn-inverse:focus,
- .btn-white.btn-inverse.disabled:active,
- .btn-white.btn-inverse[disabled]:active,
- fieldset[disabled] .btn-white.btn-inverse:active,
- .btn-white.btn-inverse.disabled.active,
- .btn-white.btn-inverse[disabled].active,
- fieldset[disabled] .btn-white.btn-inverse.active {
- border-color: #959595;
- }
- .btn-white.btn-pink {
- border-color: #d299ae;
- color: #af6f87 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-pink:hover,
- .btn-white.btn-pink:focus,
- .btn-white.btn-pink.active,
- .btn-white.btn-pink:active,
- .open > .btn-white.btn-pink.dropdown-toggle,
- .open > .btn-white.btn-pink.active.dropdown-toggle {
- background-color: #fbeff4 !important;
- border-color: #d299ae;
- color: #ac5978 !important;
- }
- .btn-white.btn-pink:hover.no-border,
- .btn-white.btn-pink:focus.no-border,
- .btn-white.btn-pink.active.no-border,
- .btn-white.btn-pink:active.no-border,
- .open > .btn-white.btn-pink.dropdown-toggle.no-border,
- .open > .btn-white.btn-pink.active.dropdown-toggle.no-border {
- border-color: #d299ae;
- }
- .btn-white.btn-pink.disabled,
- .btn-white.btn-pink[disabled],
- fieldset[disabled] .btn-white.btn-pink,
- .btn-white.btn-pink.disabled:hover,
- .btn-white.btn-pink[disabled]:hover,
- fieldset[disabled] .btn-white.btn-pink:hover,
- .btn-white.btn-pink.disabled:focus,
- .btn-white.btn-pink[disabled]:focus,
- fieldset[disabled] .btn-white.btn-pink:focus,
- .btn-white.btn-pink.disabled:active,
- .btn-white.btn-pink[disabled]:active,
- fieldset[disabled] .btn-white.btn-pink:active,
- .btn-white.btn-pink.disabled.active,
- .btn-white.btn-pink[disabled].active,
- fieldset[disabled] .btn-white.btn-pink.active {
- border-color: #d299ae;
- }
- .btn-white.btn-purple {
- border-color: #b7b1c6;
- color: #7d6fa2 !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-purple:hover,
- .btn-white.btn-purple:focus,
- .btn-white.btn-purple.active,
- .btn-white.btn-purple:active,
- .open > .btn-white.btn-purple.dropdown-toggle,
- .open > .btn-white.btn-purple.active.dropdown-toggle {
- background-color: #efedf5 !important;
- border-color: #b7b1c6;
- color: #6d5b9c !important;
- }
- .btn-white.btn-purple:hover.no-border,
- .btn-white.btn-purple:focus.no-border,
- .btn-white.btn-purple.active.no-border,
- .btn-white.btn-purple:active.no-border,
- .open > .btn-white.btn-purple.dropdown-toggle.no-border,
- .open > .btn-white.btn-purple.active.dropdown-toggle.no-border {
- border-color: #b7b1c6;
- }
- .btn-white.btn-purple.disabled,
- .btn-white.btn-purple[disabled],
- fieldset[disabled] .btn-white.btn-purple,
- .btn-white.btn-purple.disabled:hover,
- .btn-white.btn-purple[disabled]:hover,
- fieldset[disabled] .btn-white.btn-purple:hover,
- .btn-white.btn-purple.disabled:focus,
- .btn-white.btn-purple[disabled]:focus,
- fieldset[disabled] .btn-white.btn-purple:focus,
- .btn-white.btn-purple.disabled:active,
- .btn-white.btn-purple[disabled]:active,
- fieldset[disabled] .btn-white.btn-purple:active,
- .btn-white.btn-purple.disabled.active,
- .btn-white.btn-purple[disabled].active,
- fieldset[disabled] .btn-white.btn-purple.active {
- border-color: #b7b1c6;
- }
- .btn-white.btn-yellow {
- border-color: #ecd181;
- color: #d3a61a !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-yellow:hover,
- .btn-white.btn-yellow:focus,
- .btn-white.btn-yellow.active,
- .btn-white.btn-yellow:active,
- .open > .btn-white.btn-yellow.dropdown-toggle,
- .open > .btn-white.btn-yellow.active.dropdown-toggle {
- background-color: #fdf7e4 !important;
- border-color: #ecd181;
- color: #c29712 !important;
- }
- .btn-white.btn-yellow:hover.no-border,
- .btn-white.btn-yellow:focus.no-border,
- .btn-white.btn-yellow.active.no-border,
- .btn-white.btn-yellow:active.no-border,
- .open > .btn-white.btn-yellow.dropdown-toggle.no-border,
- .open > .btn-white.btn-yellow.active.dropdown-toggle.no-border {
- border-color: #ecd181;
- }
- .btn-white.btn-yellow.disabled,
- .btn-white.btn-yellow[disabled],
- fieldset[disabled] .btn-white.btn-yellow,
- .btn-white.btn-yellow.disabled:hover,
- .btn-white.btn-yellow[disabled]:hover,
- fieldset[disabled] .btn-white.btn-yellow:hover,
- .btn-white.btn-yellow.disabled:focus,
- .btn-white.btn-yellow[disabled]:focus,
- fieldset[disabled] .btn-white.btn-yellow:focus,
- .btn-white.btn-yellow.disabled:active,
- .btn-white.btn-yellow[disabled]:active,
- fieldset[disabled] .btn-white.btn-yellow:active,
- .btn-white.btn-yellow.disabled.active,
- .btn-white.btn-yellow[disabled].active,
- fieldset[disabled] .btn-white.btn-yellow.active {
- border-color: #ecd181;
- }
- .btn-white.btn-grey {
- border-color: #c6c6c6;
- color: #8c8c8c !important;
- /**
- //&:hover, &:focus, &.focus, .open > &.dropdown-toggle {
- //color: saturate(darken(@txt-color , 5%) , 5%) !important;
- //}
- //&.no-border:hover , &.no-border:active {
- //border-color: @border-color;
- //}
- */
- }
- .btn-white.btn-grey:hover,
- .btn-white.btn-grey:focus,
- .btn-white.btn-grey.active,
- .btn-white.btn-grey:active,
- .open > .btn-white.btn-grey.dropdown-toggle,
- .open > .btn-white.btn-grey.active.dropdown-toggle {
- background-color: #ededed !important;
- border-color: #c6c6c6;
- color: #857979 !important;
- }
- .btn-white.btn-grey:hover.no-border,
- .btn-white.btn-grey:focus.no-border,
- .btn-white.btn-grey.active.no-border,
- .btn-white.btn-grey:active.no-border,
- .open > .btn-white.btn-grey.dropdown-toggle.no-border,
- .open > .btn-white.btn-grey.active.dropdown-toggle.no-border {
- border-color: #c6c6c6;
- }
- .btn-white.btn-grey.disabled,
- .btn-white.btn-grey[disabled],
- fieldset[disabled] .btn-white.btn-grey,
- .btn-white.btn-grey.disabled:hover,
- .btn-white.btn-grey[disabled]:hover,
- fieldset[disabled] .btn-white.btn-grey:hover,
- .btn-white.btn-grey.disabled:focus,
- .btn-white.btn-grey[disabled]:focus,
- fieldset[disabled] .btn-white.btn-grey:focus,
- .btn-white.btn-grey.disabled:active,
- .btn-white.btn-grey[disabled]:active,
- fieldset[disabled] .btn-white.btn-grey:active,
- .btn-white.btn-grey.disabled.active,
- .btn-white.btn-grey[disabled].active,
- fieldset[disabled] .btn-white.btn-grey.active {
- border-color: #c6c6c6;
- }
- .btn.disabled.active,
- .btn[disabled].active,
- .btn.disabled:focus,
- .btn[disabled]:focus,
- .btn.disabled:active,
- .btn[disabled]:active {
- outline: none;
- }
- .btn.disabled:active,
- .btn[disabled]:active {
- top: 0;
- left: 0;
- }
- .btn.active:after {
- display: inline-block;
- content: "";
- position: absolute;
- border-bottom: 1px solid #efe5b5;
- left: -4px;
- right: -4px;
- bottom: -4px;
- }
- .btn.active.btn-sm:after {
- left: -3px;
- right: -3px;
- bottom: -3px;
- }
- .btn.active.btn-lg:after {
- left: -5px;
- right: -5px;
- bottom: -5px;
- }
- .btn.active.btn-xs:after,
- .btn.active.btn-mini:after,
- .btn.active.btn-minier:after {
- left: -1px;
- right: -1px;
- bottom: -2px;
- }
- .btn.active.btn-minier:after {
- bottom: -1px;
- }
- .btn.active.btn-yellow:after {
- border-bottom-color: #c96338;
- }
- .btn.active.btn-light {
- color: #515151;
- }
- .btn.active.btn-light:after {
- border-bottom-color: #B5B5B5;
- }
- .btn > .ace-icon {
- margin-right: 4px;
- }
- .btn > .ace-icon.icon-on-right {
- margin-right: 0;
- margin-left: 4px;
- }
- .btn > .icon-only.ace-icon {
- margin: 0 !important;
- text-align: center;
- padding: 0;
- }
- .btn-lg > .ace-icon {
- margin-right: 6px;
- }
- .btn-lg > .ace-icon.icon-on-right {
- margin-right: 0;
- margin-left: 6px;
- }
- .btn-sm > .ace-icon {
- margin-right: 3px;
- }
- .btn-sm > .ace-icon.icon-on-right {
- margin-right: 0;
- margin-left: 3px;
- }
- .btn-xs > .ace-icon,
- .btn-mini > .ace-icon,
- .btn-minier > .ace-icon {
- margin-right: 2px;
- }
- .btn-xs > .ace-icon.icon-on-right,
- .btn-mini > .ace-icon.icon-on-right,
- .btn-minier > .ace-icon.icon-on-right {
- margin-right: 0;
- margin-left: 2px;
- }
- .btn.btn-link {
- border-width: 0 !important;
- background: transparent none !important;
- color: #0088cc !important;
- text-shadow: none !important;
- padding: 4px 12px !important;
- line-height: 20px !important;
- }
- .btn.btn-link:hover {
- background: none !important;
- text-shadow: none !important;
- }
- .btn.btn-link.active {
- background: none !important;
- text-decoration: underline;
- color: #009ceb !important;
- }
- .btn.btn-link.active:after {
- display: none;
- }
- .btn.btn-link.disabled,
- .btn.btn-link[disabled] {
- background: transparent none !important;
- opacity: 0.65;
- filter: alpha(opacity=65);
- text-decoration: none !important;
- }
- .btn.btn-no-border {
- border-width: 0 !important;
- }
- .btn-group:first-child {
- margin-left: 0;
- }
- .btn-group > .btn,
- .btn-group > .btn + .btn {
- margin: 0 1px 0 0;
- }
- .btn-group > .btn:first-child {
- margin: 0 1px 0 0;
- }
- .btn-group > .btn > .caret {
- margin-top: 15px;
- margin-left: 1px;
- border-width: 5px;
- border-top-color: #FFF;
- }
- .btn-group > .btn.btn-sm > .caret {
- margin-top: 10px;
- border-width: 4px;
- }
- .btn-group > .btn.btn-lg > .caret {
- margin-top: 18px;
- border-width: 6px;
- }
- .btn-group > .btn.btn-xs > .caret,
- .btn-group > .btn.btn-mini > .caret {
- margin-top: 9px;
- border-width: 4px;
- }
- .btn-group > .btn.btn-minier > .caret {
- margin-top: 7px;
- border-width: 3px;
- }
- .btn-group > .btn + .btn.dropdown-toggle {
- padding-right: 3px;
- padding-left: 3px;
- }
- .btn-group > .btn + .btn-lg.dropdown-toggle {
- padding-right: 4px;
- padding-left: 4px;
- }
- .btn-group .dropdown-toggle {
- border-radius: 0;
- }
- .btn-group > .btn,
- .btn-group + .btn {
- margin: 0 1px 0 0;
- border-width: 3px;
- /* the border under an active button in button groups */
- }
- .btn-group > .btn.active:after,
- .btn-group + .btn.active:after {
- left: -2px;
- right: -2px;
- bottom: -2px;
- border-bottom-width: 1px;
- }
- .btn-group > .btn-lg,
- .btn-group + .btn-lg {
- border-width: 4px;
- /* the border under an active button in button groups */
- }
- .btn-group > .btn-lg.active:after,
- .btn-group + .btn-lg.active:after {
- left: -3px;
- right: -3px;
- bottom: -3px;
- border-bottom-width: 1px;
- }
- .btn-group > .btn-sm,
- .btn-group + .btn-sm {
- border-width: 2px;
- /* the border under an active button in button groups */
- }
- .btn-group > .btn-sm.active:after,
- .btn-group + .btn-sm.active:after {
- left: -1px;
- right: -1px;
- bottom: -1px;
- border-bottom-width: 1px;
- }
- .btn-group > .btn-xs,
- .btn-group + .btn-xs,
- .btn-group > .btn-mini,
- .btn-group + .btn-mini {
- border-width: 1px;
- /* the border under an active button in button groups */
- }
- .btn-group > .btn-xs.active:after,
- .btn-group + .btn-xs.active:after,
- .btn-group > .btn-mini.active:after,
- .btn-group + .btn-mini.active:after {
- left: 0px;
- right: 0px;
- bottom: 0px;
- border-bottom-width: 1px;
- }
- .btn-group > .btn-minier,
- .btn-group + .btn-minier {
- border-width: 1px;
- /* the border under an active button in button groups */
- }
- .btn-group > .btn-minier.active:after,
- .btn-group + .btn-minier.active:after {
- left: 0px;
- right: 0px;
- bottom: 0px;
- border-bottom-width: 1px;
- }
- .btn-group-vertical > .btn:last-child:not(:first-child) {
- border-radius: 0;
- }
- .btn-group-vertical > .btn,
- .btn-group-vertical > .btn + .btn {
- margin: 1px 0 0;
- }
- .btn-group-vertical > .btn:first-child {
- margin-top: 0;
- }
- .btn-group.btn-overlap > .btn {
- margin-right: -1px;
- }
- .btn-group.btn-corner > .btn:first-child {
- border-bottom-left-radius: 8px;
- border-top-left-radius: 8px;
- }
- .btn-group.btn-corner > .btn:last-child {
- border-bottom-right-radius: 8px;
- border-top-right-radius: 8px;
- }
- .btn-group.btn-corner > .btn.btn-sm:first-child {
- border-bottom-left-radius: 6px;
- border-top-left-radius: 6px;
- }
- .btn-group.btn-corner > .btn.btn-sm:last-child {
- border-bottom-right-radius: 6px;
- border-top-right-radius: 6px;
- }
- .btn-group.btn-corner > .btn.btn-xs:first-child,
- .btn-group.btn-corner > .btn.btn-mini:first-child {
- border-bottom-left-radius: 4px;
- border-top-left-radius: 4px;
- }
- .btn-group.btn-corner > .btn.btn-xs:last-child,
- .btn-group.btn-corner > .btn.btn-mini:last-child {
- border-bottom-right-radius: 4px;
- border-top-right-radius: 4px;
- }
- .btn.btn-white {
- border-width: 1px;
- }
- .btn.btn-bold {
- border-bottom-width: 2px;
- }
- .btn.btn-round {
- border-bottom-width: 2px;
- border-radius: 4px !important;
- }
- .btn.btn-app {
- display: inline-block;
- width: 100px;
- font-size: 18px;
- font-weight: normal;
- color: #FFF;
- text-align: center;
- text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.2) !important;
- border: none;
- border-radius: 12px;
- padding: 12px 0 8px;
- margin: 2px;
- line-height: 1.7;
- position: relative;
- }
- .btn-app,
- .btn-app.btn-default,
- .btn-app.no-hover:hover,
- .btn-app.btn-default.no-hover:hover,
- .btn-app.disabled:hover,
- .btn-app.btn-default.disabled:hover {
- background: #b4c2cc !important;
- background-image: -webkit-linear-gradient(top, #bcc9d5 0%, #abbac3 100%) !important;
- background-image: -o-linear-gradient(top, #bcc9d5 0%, #abbac3 100%) !important;
- background-image: linear-gradient(to bottom, #bcc9d5 0%, #abbac3 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbcc9d5', endColorstr='#ffabbac3', GradientType=0) !important;
- }
- .btn-app:hover,
- .btn-app.btn-default:hover {
- background: #9baebc !important;
- background-image: -webkit-linear-gradient(top, #a3b5c5 0%, #93a6b2 100%) !important;
- background-image: -o-linear-gradient(top, #a3b5c5 0%, #93a6b2 100%) !important;
- background-image: linear-gradient(to bottom, #a3b5c5 0%, #93a6b2 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa3b5c5', endColorstr='#ff93a6b2', GradientType=0) !important;
- }
- .btn-app.btn-primary,
- .btn-app.btn-primary.no-hover:hover,
- .btn-app.btn-primary.disabled:hover {
- background: #2a8bcb !important;
- background-image: -webkit-linear-gradient(top, #3b98d6 0%, #197ec1 100%) !important;
- background-image: -o-linear-gradient(top, #3b98d6 0%, #197ec1 100%) !important;
- background-image: linear-gradient(to bottom, #3b98d6 0%, #197ec1 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b98d6', endColorstr='#ff197ec1', GradientType=0) !important;
- }
- .btn-app.btn-primary:hover {
- background: #1d6fa6 !important;
- background-image: -webkit-linear-gradient(top, #267eb8 0%, #136194 100%) !important;
- background-image: -o-linear-gradient(top, #267eb8 0%, #136194 100%) !important;
- background-image: linear-gradient(to bottom, #267eb8 0%, #136194 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff267eb8', endColorstr='#ff136194', GradientType=0) !important;
- }
- .btn-app.btn-info,
- .btn-app.btn-info.no-hover:hover,
- .btn-app.btn-info.disabled:hover {
- background: #68adde !important;
- background-image: -webkit-linear-gradient(top, #75b5e6 0%, #5ba4d5 100%) !important;
- background-image: -o-linear-gradient(top, #75b5e6 0%, #5ba4d5 100%) !important;
- background-image: linear-gradient(to bottom, #75b5e6 0%, #5ba4d5 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff75b5e6', endColorstr='#ff5ba4d5', GradientType=0) !important;
- }
- .btn-app.btn-info:hover {
- background: #3f96d4 !important;
- background-image: -webkit-linear-gradient(top, #4a9ede 0%, #348dc9 100%) !important;
- background-image: -o-linear-gradient(top, #4a9ede 0%, #348dc9 100%) !important;
- background-image: linear-gradient(to bottom, #4a9ede 0%, #348dc9 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4a9ede', endColorstr='#ff348dc9', GradientType=0) !important;
- }
- .btn-app.btn-success,
- .btn-app.btn-success.no-hover:hover,
- .btn-app.btn-success.disabled:hover {
- background: #85b558 !important;
- background-image: -webkit-linear-gradient(top, #8ebf60 0%, #7daa50 100%) !important;
- background-image: -o-linear-gradient(top, #8ebf60 0%, #7daa50 100%) !important;
- background-image: linear-gradient(to bottom, #8ebf60 0%, #7daa50 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ebf60', endColorstr='#ff7daa50', GradientType=0) !important;
- }
- .btn-app.btn-success:hover {
- background: #6c9842 !important;
- background-image: -webkit-linear-gradient(top, #74a844 0%, #648740 100%) !important;
- background-image: -o-linear-gradient(top, #74a844 0%, #648740 100%) !important;
- background-image: linear-gradient(to bottom, #74a844 0%, #648740 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff74a844', endColorstr='#ff648740', GradientType=0) !important;
- }
- .btn-app.btn-danger,
- .btn-app.btn-danger.no-hover:hover,
- .btn-app.btn-danger.disabled:hover {
- background: #d3413b !important;
- background-image: -webkit-linear-gradient(top, #d55b52 0%, #d12723 100%) !important;
- background-image: -o-linear-gradient(top, #d55b52 0%, #d12723 100%) !important;
- background-image: linear-gradient(to bottom, #d55b52 0%, #d12723 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd55b52', endColorstr='#ffd12723', GradientType=0) !important;
- }
- .btn-app.btn-danger:hover {
- background: #b52c26 !important;
- background-image: -webkit-linear-gradient(top, #c43a30 0%, #a51f1c 100%) !important;
- background-image: -o-linear-gradient(top, #c43a30 0%, #a51f1c 100%) !important;
- background-image: linear-gradient(to bottom, #c43a30 0%, #a51f1c 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc43a30', endColorstr='#ffa51f1c', GradientType=0) !important;
- }
- .btn-app.btn-warning,
- .btn-app.btn-warning.no-hover:hover,
- .btn-app.btn-warning.disabled:hover {
- background: #ffb44b !important;
- background-image: -webkit-linear-gradient(top, #ffbf66 0%, #ffa830 100%) !important;
- background-image: -o-linear-gradient(top, #ffbf66 0%, #ffa830 100%) !important;
- background-image: linear-gradient(to bottom, #ffbf66 0%, #ffa830 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffbf66', endColorstr='#ffffa830', GradientType=0) !important;
- }
- .btn-app.btn-warning:hover {
- background: #fe9e19 !important;
- background-image: -webkit-linear-gradient(top, #ffaa33 0%, #fc9200 100%) !important;
- background-image: -o-linear-gradient(top, #ffaa33 0%, #fc9200 100%) !important;
- background-image: linear-gradient(to bottom, #ffaa33 0%, #fc9200 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffaa33', endColorstr='#fffc9200', GradientType=0) !important;
- }
- .btn-app.btn-purple,
- .btn-app.btn-purple.no-hover:hover,
- .btn-app.btn-purple.disabled:hover {
- background: #9889c1 !important;
- background-image: -webkit-linear-gradient(top, #a696ce 0%, #8a7cb4 100%) !important;
- background-image: -o-linear-gradient(top, #a696ce 0%, #8a7cb4 100%) !important;
- background-image: linear-gradient(to bottom, #a696ce 0%, #8a7cb4 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa696ce', endColorstr='#ff8a7cb4', GradientType=0) !important;
- }
- .btn-app.btn-purple:hover {
- background: #7b68af !important;
- background-image: -webkit-linear-gradient(top, #8973be 0%, #6d5ca1 100%) !important;
- background-image: -o-linear-gradient(top, #8973be 0%, #6d5ca1 100%) !important;
- background-image: linear-gradient(to bottom, #8973be 0%, #6d5ca1 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8973be', endColorstr='#ff6d5ca1', GradientType=0) !important;
- }
- .btn-app.btn-pink,
- .btn-app.btn-pink.no-hover:hover,
- .btn-app.btn-pink.disabled:hover {
- background: #d54c7e !important;
- background-image: -webkit-linear-gradient(top, #db5e8c 0%, #ce3970 100%) !important;
- background-image: -o-linear-gradient(top, #db5e8c 0%, #ce3970 100%) !important;
- background-image: linear-gradient(to bottom, #db5e8c 0%, #ce3970 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdb5e8c', endColorstr='#ffce3970', GradientType=0) !important;
- }
- .btn-app.btn-pink:hover {
- background: #be2f64 !important;
- background-image: -webkit-linear-gradient(top, #d2346e 0%, #aa2a59 100%) !important;
- background-image: -o-linear-gradient(top, #d2346e 0%, #aa2a59 100%) !important;
- background-image: linear-gradient(to bottom, #d2346e 0%, #aa2a59 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd2346e', endColorstr='#ffaa2a59', GradientType=0) !important;
- }
- .btn-app.btn-inverse,
- .btn-app.btn-inverse.no-hover:hover,
- .btn-app.btn-inverse.disabled:hover {
- background: #444444 !important;
- background-image: -webkit-linear-gradient(top, #555555 0%, #333333 100%) !important;
- background-image: -o-linear-gradient(top, #555555 0%, #333333 100%) !important;
- background-image: linear-gradient(to bottom, #555555 0%, #333333 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=0) !important;
- }
- .btn-app.btn-inverse:hover {
- background: #2b2b2b !important;
- background-image: -webkit-linear-gradient(top, #3b3b3b 0%, #1a1a1a 100%) !important;
- background-image: -o-linear-gradient(top, #3b3b3b 0%, #1a1a1a 100%) !important;
- background-image: linear-gradient(to bottom, #3b3b3b 0%, #1a1a1a 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b3b3b', endColorstr='#ff1a1a1a', GradientType=0) !important;
- }
- .btn-app.btn-grey,
- .btn-app.btn-grey.no-hover:hover,
- .btn-app.btn-grey.disabled:hover {
- background: #797979 !important;
- background-image: -webkit-linear-gradient(top, #898989 0%, #696969 100%) !important;
- background-image: -o-linear-gradient(top, #898989 0%, #696969 100%) !important;
- background-image: linear-gradient(to bottom, #898989 0%, #696969 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff898989', endColorstr='#ff696969', GradientType=0) !important;
- }
- .btn-app.btn-grey:hover {
- background: #6c6c6c !important;
- background-image: -webkit-linear-gradient(top, #7c7c7c 0%, #5c5c5c 100%) !important;
- background-image: -o-linear-gradient(top, #7c7c7c 0%, #5c5c5c 100%) !important;
- background-image: linear-gradient(to bottom, #7c7c7c 0%, #5c5c5c 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7c7c7c', endColorstr='#ff5c5c5c', GradientType=0) !important;
- }
- .btn.btn-app.btn-light {
- color: #5a5a5a !important;
- text-shadow: 0 1px 1px #EEE !important;
- }
- .btn.btn-app.btn-light,
- .btn.btn-app.btn-light.no-hover:hover,
- .btn.btn-app.btn-light.disabled:hover {
- background: #ededed !important;
- background-image: -webkit-linear-gradient(top, #f4f4f4 0%, #e6e6e6 100%) !important;
- background-image: -o-linear-gradient(top, #f4f4f4 0%, #e6e6e6 100%) !important;
- background-image: linear-gradient(to bottom, #f4f4f4 0%, #e6e6e6 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff4f4f4', endColorstr='#ffe6e6e6', GradientType=0) !important;
- }
- .btn.btn-app.btn-light:hover {
- background: #e0e0e0 !important;
- background-image: -webkit-linear-gradient(top, #e7e7e7 0%, #d9d9d9 100%) !important;
- background-image: -o-linear-gradient(top, #e7e7e7 0%, #d9d9d9 100%) !important;
- background-image: linear-gradient(to bottom, #e7e7e7 0%, #d9d9d9 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe7e7e7', endColorstr='#ffd9d9d9', GradientType=0) !important;
- }
- .btn.btn-app.btn-yellow {
- color: #996633 !important;
- text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
- }
- .btn.btn-app.btn-yellow,
- .btn.btn-app.btn-yellow.no-hover:hover,
- .btn.btn-app.btn-yellow.disabled:hover {
- background: #fee088 !important;
- background-image: -webkit-linear-gradient(top, #ffe8a5 0%, #fcd76a 100%) !important;
- background-image: -o-linear-gradient(top, #ffe8a5 0%, #fcd76a 100%) !important;
- background-image: linear-gradient(to bottom, #ffe8a5 0%, #fcd76a 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe8a5', endColorstr='#fffcd76a', GradientType=0) !important;
- }
- .btn.btn-app.btn-yellow:hover {
- background: #fdd96e !important;
- background-image: -webkit-linear-gradient(top, #ffe18b 0%, #fbd051 100%) !important;
- background-image: -o-linear-gradient(top, #ffe18b 0%, #fbd051 100%) !important;
- background-image: linear-gradient(to bottom, #ffe18b 0%, #fbd051 100%) !important;
- background-repeat: repeat-x !important;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe18b', endColorstr='#fffbd051', GradientType=0) !important;
- }
- .btn.btn-app > .ace-icon {
- opacity: 0.88;
- }
- .btn.btn-app:hover > .ace-icon {
- opacity: 1;
- }
- .btn.btn-app.btn-sm {
- width: 80px;
- font-size: 16px;
- border-radius: 10px;
- line-height: 1.5;
- }
- .btn.btn-app.btn-xs {
- width: 64px;
- font-size: 15px;
- border-radius: 8px;
- padding-bottom: 7px;
- padding-top: 8px;
- line-height: 1.45;
- }
- .btn.btn-app > .ace-icon {
- display: block;
- font-size: 42px;
- margin: 0 0 4px;
- line-height: 36px;
- min-width: 0;
- padding: 0;
- }
- .btn.btn-app.btn-sm > .ace-icon {
- display: block;
- font-size: 32px;
- line-height: 30px;
- margin: 0 0 3px;
- }
- .btn.btn-app.btn-xs > .ace-icon {
- display: block;
- font-size: 24px;
- line-height: 24px;
- margin: 0;
- }
- .btn.btn-app.no-radius {
- border-radius: 0;
- }
- .btn.btn-app.radius-4 {
- border-radius: 4px;
- }
- .btn.btn-app > .badge,
- .btn.btn-app > .label {
- position: absolute !important;
- top: -2px;
- right: -2px;
- padding: 1px 3px;
- text-align: center;
- font-size: 12px;
- color: #FFF;
- }
- .btn.btn-app > .badge.badge-left,
- .btn.btn-app > .label.badge-left,
- .btn.btn-app > .badge.label-left,
- .btn.btn-app > .label.label-left {
- right: auto;
- left: -2px;
- }
- .btn.btn-app > .badge-yellow,
- .btn.btn-app > .label-yellow {
- color: #996633;
- }
- .btn.btn-app > .badge-light,
- .btn.btn-app > .label-light {
- color: #888888;
- }
- .btn.btn-app > .label {
- padding: 1px 6px 3px;
- font-size: 13px;
- }
- .btn.btn-app.radius-4 > .badge,
- .btn.btn-app.no-radius > .badge {
- border-radius: 3px;
- }
- .btn.btn-app.radius-4 > .badge.no-radius,
- .btn.btn-app.no-radius > .badge.no-radius {
- border-radius: 0;
- }
- .btn.btn-app.active {
- color: #ffffff;
- }
- .btn.btn-app.active:after {
- display: none;
- }
- .btn.btn-app.active.btn-yellow {
- color: #996633;
- border-color: #fee188;
- }
- .btn.btn-app.active.btn-light {
- color: #515151;
- }
- .btn-group > .btn-app:first-child:not(:last-child):not(.dropdown-toggle) {
- margin-right: 24px;
- }
- .btn-group > .btn-app + .btn-app.dropdown-toggle {
- position: absolute;
- width: auto;
- height: 100%;
- padding-left: 6px;
- padding-right: 6px;
- margin-left: -23px;
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- right: 0;
- }
- .btn.btn-app.btn-light,
- .btn.btn-app.btn-yellow {
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset !important;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset !important;
- }
|