123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310 |
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
- /* stylelint-disable no-duplicate-selectors */
- .ant-popover {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- color: rgba(0, 0, 0, 0.85);
- font-size: 14px;
- font-variant: tabular-nums;
- line-height: 1.5715;
- list-style: none;
- font-feature-settings: 'tnum';
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1030;
- max-width: 100vw;
- font-weight: normal;
- white-space: normal;
- text-align: left;
- cursor: auto;
- user-select: text;
- }
- .ant-popover-content {
- position: relative;
- }
- .ant-popover::after {
- position: absolute;
- background: rgba(255, 255, 255, 0.01);
- content: '';
- }
- .ant-popover-hidden {
- display: none;
- }
- .ant-popover-placement-top,
- .ant-popover-placement-topLeft,
- .ant-popover-placement-topRight {
- padding-bottom: 15.3137085px;
- }
- .ant-popover-placement-right,
- .ant-popover-placement-rightTop,
- .ant-popover-placement-rightBottom {
- padding-left: 15.3137085px;
- }
- .ant-popover-placement-bottom,
- .ant-popover-placement-bottomLeft,
- .ant-popover-placement-bottomRight {
- padding-top: 15.3137085px;
- }
- .ant-popover-placement-left,
- .ant-popover-placement-leftTop,
- .ant-popover-placement-leftBottom {
- padding-right: 15.3137085px;
- }
- .ant-popover-inner {
- background-color: #fff;
- background-clip: padding-box;
- border-radius: 2px;
- box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
- }
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
- .ant-popover {
- /* IE10+ */
- }
- .ant-popover-inner {
- box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
- }
- }
- .ant-popover-title {
- min-width: 177px;
- min-height: 32px;
- margin: 0;
- padding: 5px 16px 4px;
- color: rgba(0, 0, 0, 0.85);
- font-weight: 500;
- border-bottom: 1px solid #f0f0f0;
- }
- .ant-popover-inner-content {
- width: max-content;
- max-width: 100%;
- padding: 12px 16px;
- color: rgba(0, 0, 0, 0.85);
- }
- .ant-popover-message {
- display: flex;
- padding: 4px 0 12px;
- color: rgba(0, 0, 0, 0.85);
- font-size: 14px;
- }
- .ant-popover-message-icon {
- display: inline-block;
- margin-right: 8px;
- color: #faad14;
- font-size: 14px;
- }
- .ant-popover-buttons {
- margin-bottom: 4px;
- text-align: right;
- }
- .ant-popover-buttons button:not(:first-child) {
- margin-left: 8px;
- }
- .ant-popover-arrow {
- position: absolute;
- display: block;
- width: 22px;
- height: 22px;
- overflow: hidden;
- background: transparent;
- pointer-events: none;
- }
- .ant-popover-arrow-content {
- --antd-arrow-background-color: #fff;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- display: block;
- width: 11.3137085px;
- height: 11.3137085px;
- margin: auto;
- content: '';
- pointer-events: auto;
- border-radius: 0 0 2px;
- pointer-events: none;
- }
- .ant-popover-arrow-content::before {
- position: absolute;
- top: -11.3137085px;
- left: -11.3137085px;
- width: 33.9411255px;
- height: 33.9411255px;
- background: var(--antd-arrow-background-color);
- background-repeat: no-repeat;
- background-position: -10px -10px;
- content: '';
- clip-path: inset(33% 33%);
- clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
- }
- .ant-popover-placement-top .ant-popover-arrow,
- .ant-popover-placement-topLeft .ant-popover-arrow,
- .ant-popover-placement-topRight .ant-popover-arrow {
- bottom: 0;
- transform: translateY(100%);
- }
- .ant-popover-placement-top .ant-popover-arrow-content,
- .ant-popover-placement-topLeft .ant-popover-arrow-content,
- .ant-popover-placement-topRight .ant-popover-arrow-content {
- box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
- transform: translateY(-11px) rotate(45deg);
- }
- .ant-popover-placement-top .ant-popover-arrow {
- left: 50%;
- transform: translateY(100%) translateX(-50%);
- }
- .ant-popover-placement-topLeft .ant-popover-arrow {
- left: 16px;
- }
- .ant-popover-placement-topRight .ant-popover-arrow {
- right: 16px;
- }
- .ant-popover-placement-right .ant-popover-arrow,
- .ant-popover-placement-rightTop .ant-popover-arrow,
- .ant-popover-placement-rightBottom .ant-popover-arrow {
- left: 0;
- transform: translateX(-100%);
- }
- .ant-popover-placement-right .ant-popover-arrow-content,
- .ant-popover-placement-rightTop .ant-popover-arrow-content,
- .ant-popover-placement-rightBottom .ant-popover-arrow-content {
- box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
- transform: translateX(11px) rotate(135deg);
- }
- .ant-popover-placement-right .ant-popover-arrow {
- top: 50%;
- transform: translateX(-100%) translateY(-50%);
- }
- .ant-popover-placement-rightTop .ant-popover-arrow {
- top: 12px;
- }
- .ant-popover-placement-rightBottom .ant-popover-arrow {
- bottom: 12px;
- }
- .ant-popover-placement-bottom .ant-popover-arrow,
- .ant-popover-placement-bottomLeft .ant-popover-arrow,
- .ant-popover-placement-bottomRight .ant-popover-arrow {
- top: 0;
- transform: translateY(-100%);
- }
- .ant-popover-placement-bottom .ant-popover-arrow-content,
- .ant-popover-placement-bottomLeft .ant-popover-arrow-content,
- .ant-popover-placement-bottomRight .ant-popover-arrow-content {
- box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);
- transform: translateY(11px) rotate(-135deg);
- }
- .ant-popover-placement-bottom .ant-popover-arrow {
- left: 50%;
- transform: translateY(-100%) translateX(-50%);
- }
- .ant-popover-placement-bottomLeft .ant-popover-arrow {
- left: 16px;
- }
- .ant-popover-placement-bottomRight .ant-popover-arrow {
- right: 16px;
- }
- .ant-popover-placement-left .ant-popover-arrow,
- .ant-popover-placement-leftTop .ant-popover-arrow,
- .ant-popover-placement-leftBottom .ant-popover-arrow {
- right: 0;
- transform: translateX(100%);
- }
- .ant-popover-placement-left .ant-popover-arrow-content,
- .ant-popover-placement-leftTop .ant-popover-arrow-content,
- .ant-popover-placement-leftBottom .ant-popover-arrow-content {
- box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
- transform: translateX(-11px) rotate(-45deg);
- }
- .ant-popover-placement-left .ant-popover-arrow {
- top: 50%;
- transform: translateX(100%) translateY(-50%);
- }
- .ant-popover-placement-leftTop .ant-popover-arrow {
- top: 12px;
- }
- .ant-popover-placement-leftBottom .ant-popover-arrow {
- bottom: 12px;
- }
- .ant-popover-pink .ant-popover-inner {
- background-color: #eb2f96;
- }
- .ant-popover-pink .ant-popover-arrow-content {
- background-color: #eb2f96;
- }
- .ant-popover-magenta .ant-popover-inner {
- background-color: #eb2f96;
- }
- .ant-popover-magenta .ant-popover-arrow-content {
- background-color: #eb2f96;
- }
- .ant-popover-red .ant-popover-inner {
- background-color: #f5222d;
- }
- .ant-popover-red .ant-popover-arrow-content {
- background-color: #f5222d;
- }
- .ant-popover-volcano .ant-popover-inner {
- background-color: #fa541c;
- }
- .ant-popover-volcano .ant-popover-arrow-content {
- background-color: #fa541c;
- }
- .ant-popover-orange .ant-popover-inner {
- background-color: #fa8c16;
- }
- .ant-popover-orange .ant-popover-arrow-content {
- background-color: #fa8c16;
- }
- .ant-popover-yellow .ant-popover-inner {
- background-color: #fadb14;
- }
- .ant-popover-yellow .ant-popover-arrow-content {
- background-color: #fadb14;
- }
- .ant-popover-gold .ant-popover-inner {
- background-color: #faad14;
- }
- .ant-popover-gold .ant-popover-arrow-content {
- background-color: #faad14;
- }
- .ant-popover-cyan .ant-popover-inner {
- background-color: #13c2c2;
- }
- .ant-popover-cyan .ant-popover-arrow-content {
- background-color: #13c2c2;
- }
- .ant-popover-lime .ant-popover-inner {
- background-color: #a0d911;
- }
- .ant-popover-lime .ant-popover-arrow-content {
- background-color: #a0d911;
- }
- .ant-popover-green .ant-popover-inner {
- background-color: #52c41a;
- }
- .ant-popover-green .ant-popover-arrow-content {
- background-color: #52c41a;
- }
- .ant-popover-blue .ant-popover-inner {
- background-color: #1890ff;
- }
- .ant-popover-blue .ant-popover-arrow-content {
- background-color: #1890ff;
- }
- .ant-popover-geekblue .ant-popover-inner {
- background-color: #2f54eb;
- }
- .ant-popover-geekblue .ant-popover-arrow-content {
- background-color: #2f54eb;
- }
- .ant-popover-purple .ant-popover-inner {
- background-color: #722ed1;
- }
- .ant-popover-purple .ant-popover-arrow-content {
- background-color: #722ed1;
- }
- .ant-popover-rtl {
- direction: rtl;
- text-align: right;
- }
- .ant-popover-rtl .ant-popover-message-icon {
- margin-right: 0;
- margin-left: 8px;
- }
- .ant-popover-rtl .ant-popover-message-title {
- padding-left: 16px;
- }
- .ant-popover-rtl .ant-popover-buttons {
- text-align: left;
- }
- .ant-popover-rtl .ant-popover-buttons button {
- margin-right: 8px;
- margin-left: 0;
- }
- .ant-popover {
- position: relative;
- }
- .ant-btn {
- line-height: 1.5715;
- position: relative;
- display: inline-block;
- font-weight: 400;
- white-space: nowrap;
- text-align: center;
- background-image: none;
- border: 1px solid transparent;
- box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
- cursor: pointer;
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- user-select: none;
- touch-action: manipulation;
- height: 32px;
- padding: 4px 15px;
- font-size: 14px;
- border-radius: 2px;
- color: rgba(0, 0, 0, 0.85);
- border-color: #d9d9d9;
- background: #fff;
- }
- .ant-btn > .anticon {
- line-height: 1;
- }
- .ant-btn,
- .ant-btn:active,
- .ant-btn:focus {
- outline: 0;
- }
- .ant-btn:not([disabled]):hover {
- text-decoration: none;
- }
- .ant-btn:not([disabled]):active {
- outline: 0;
- box-shadow: none;
- }
- .ant-btn[disabled] {
- cursor: not-allowed;
- }
- .ant-btn[disabled] > * {
- pointer-events: none;
- }
- .ant-btn-lg {
- height: 40px;
- padding: 6.4px 15px;
- font-size: 16px;
- border-radius: 2px;
- }
- .ant-btn-sm {
- height: 24px;
- padding: 0px 7px;
- font-size: 14px;
- border-radius: 2px;
- }
- .ant-btn > a:only-child {
- color: currentcolor;
- }
- .ant-btn > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn:hover,
- .ant-btn:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: #fff;
- }
- .ant-btn:hover > a:only-child,
- .ant-btn:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn:hover > a:only-child::after,
- .ant-btn:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn:active {
- color: #096dd9;
- border-color: #096dd9;
- background: #fff;
- }
- .ant-btn:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn[disabled],
- .ant-btn[disabled]:hover,
- .ant-btn[disabled]:focus,
- .ant-btn[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn[disabled] > a:only-child,
- .ant-btn[disabled]:hover > a:only-child,
- .ant-btn[disabled]:focus > a:only-child,
- .ant-btn[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn[disabled] > a:only-child::after,
- .ant-btn[disabled]:hover > a:only-child::after,
- .ant-btn[disabled]:focus > a:only-child::after,
- .ant-btn[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn:hover,
- .ant-btn:focus,
- .ant-btn:active {
- text-decoration: none;
- background: #fff;
- }
- .ant-btn > span {
- display: inline-block;
- }
- .ant-btn-primary {
- color: #fff;
- border-color: #1890ff;
- background: #1890ff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
- box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
- }
- .ant-btn-primary > a:only-child {
- color: currentcolor;
- }
- .ant-btn-primary > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-primary:hover,
- .ant-btn-primary:focus {
- color: #fff;
- border-color: #40a9ff;
- background: #40a9ff;
- }
- .ant-btn-primary:hover > a:only-child,
- .ant-btn-primary:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-primary:hover > a:only-child::after,
- .ant-btn-primary:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-primary:active {
- color: #fff;
- border-color: #096dd9;
- background: #096dd9;
- }
- .ant-btn-primary:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-primary:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-primary[disabled],
- .ant-btn-primary[disabled]:hover,
- .ant-btn-primary[disabled]:focus,
- .ant-btn-primary[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-primary[disabled] > a:only-child,
- .ant-btn-primary[disabled]:hover > a:only-child,
- .ant-btn-primary[disabled]:focus > a:only-child,
- .ant-btn-primary[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-primary[disabled] > a:only-child::after,
- .ant-btn-primary[disabled]:hover > a:only-child::after,
- .ant-btn-primary[disabled]:focus > a:only-child::after,
- .ant-btn-primary[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
- border-right-color: #40a9ff;
- border-left-color: #40a9ff;
- }
- .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
- border-color: #d9d9d9;
- }
- .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
- border-right-color: #40a9ff;
- }
- .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
- border-right-color: #d9d9d9;
- }
- .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
- .ant-btn-group .ant-btn-primary + .ant-btn-primary {
- border-left-color: #40a9ff;
- }
- .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
- .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
- border-left-color: #d9d9d9;
- }
- .ant-btn-ghost {
- color: rgba(0, 0, 0, 0.85);
- border-color: #d9d9d9;
- background: transparent;
- }
- .ant-btn-ghost > a:only-child {
- color: currentcolor;
- }
- .ant-btn-ghost > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-ghost:hover,
- .ant-btn-ghost:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: transparent;
- }
- .ant-btn-ghost:hover > a:only-child,
- .ant-btn-ghost:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-ghost:hover > a:only-child::after,
- .ant-btn-ghost:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-ghost:active {
- color: #096dd9;
- border-color: #096dd9;
- background: transparent;
- }
- .ant-btn-ghost:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-ghost:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-ghost[disabled],
- .ant-btn-ghost[disabled]:hover,
- .ant-btn-ghost[disabled]:focus,
- .ant-btn-ghost[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-ghost[disabled] > a:only-child,
- .ant-btn-ghost[disabled]:hover > a:only-child,
- .ant-btn-ghost[disabled]:focus > a:only-child,
- .ant-btn-ghost[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-ghost[disabled] > a:only-child::after,
- .ant-btn-ghost[disabled]:hover > a:only-child::after,
- .ant-btn-ghost[disabled]:focus > a:only-child::after,
- .ant-btn-ghost[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dashed {
- color: rgba(0, 0, 0, 0.85);
- border-color: #d9d9d9;
- background: #fff;
- border-style: dashed;
- }
- .ant-btn-dashed > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dashed > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dashed:hover,
- .ant-btn-dashed:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: #fff;
- }
- .ant-btn-dashed:hover > a:only-child,
- .ant-btn-dashed:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dashed:hover > a:only-child::after,
- .ant-btn-dashed:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dashed:active {
- color: #096dd9;
- border-color: #096dd9;
- background: #fff;
- }
- .ant-btn-dashed:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dashed:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dashed[disabled],
- .ant-btn-dashed[disabled]:hover,
- .ant-btn-dashed[disabled]:focus,
- .ant-btn-dashed[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dashed[disabled] > a:only-child,
- .ant-btn-dashed[disabled]:hover > a:only-child,
- .ant-btn-dashed[disabled]:focus > a:only-child,
- .ant-btn-dashed[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dashed[disabled] > a:only-child::after,
- .ant-btn-dashed[disabled]:hover > a:only-child::after,
- .ant-btn-dashed[disabled]:focus > a:only-child::after,
- .ant-btn-dashed[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-danger {
- color: #fff;
- border-color: #ff4d4f;
- background: #ff4d4f;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
- box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
- }
- .ant-btn-danger > a:only-child {
- color: currentcolor;
- }
- .ant-btn-danger > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-danger:hover,
- .ant-btn-danger:focus {
- color: #fff;
- border-color: #ff7875;
- background: #ff7875;
- }
- .ant-btn-danger:hover > a:only-child,
- .ant-btn-danger:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-danger:hover > a:only-child::after,
- .ant-btn-danger:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-danger:active {
- color: #fff;
- border-color: #d9363e;
- background: #d9363e;
- }
- .ant-btn-danger:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-danger:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-danger[disabled],
- .ant-btn-danger[disabled]:hover,
- .ant-btn-danger[disabled]:focus,
- .ant-btn-danger[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-danger[disabled] > a:only-child,
- .ant-btn-danger[disabled]:hover > a:only-child,
- .ant-btn-danger[disabled]:focus > a:only-child,
- .ant-btn-danger[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-danger[disabled] > a:only-child::after,
- .ant-btn-danger[disabled]:hover > a:only-child::after,
- .ant-btn-danger[disabled]:focus > a:only-child::after,
- .ant-btn-danger[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-link {
- color: #1890ff;
- border-color: transparent;
- background: transparent;
- box-shadow: none;
- }
- .ant-btn-link > a:only-child {
- color: currentcolor;
- }
- .ant-btn-link > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-link:hover,
- .ant-btn-link:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: transparent;
- }
- .ant-btn-link:hover > a:only-child,
- .ant-btn-link:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-link:hover > a:only-child::after,
- .ant-btn-link:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-link:active {
- color: #096dd9;
- border-color: #096dd9;
- background: transparent;
- }
- .ant-btn-link:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-link:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-link[disabled],
- .ant-btn-link[disabled]:hover,
- .ant-btn-link[disabled]:focus,
- .ant-btn-link[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-link[disabled] > a:only-child,
- .ant-btn-link[disabled]:hover > a:only-child,
- .ant-btn-link[disabled]:focus > a:only-child,
- .ant-btn-link[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-link[disabled] > a:only-child::after,
- .ant-btn-link[disabled]:hover > a:only-child::after,
- .ant-btn-link[disabled]:focus > a:only-child::after,
- .ant-btn-link[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-link:hover {
- background: transparent;
- }
- .ant-btn-link:hover,
- .ant-btn-link:focus,
- .ant-btn-link:active {
- border-color: transparent;
- }
- .ant-btn-link[disabled],
- .ant-btn-link[disabled]:hover,
- .ant-btn-link[disabled]:focus,
- .ant-btn-link[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: transparent;
- background: transparent;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-link[disabled] > a:only-child,
- .ant-btn-link[disabled]:hover > a:only-child,
- .ant-btn-link[disabled]:focus > a:only-child,
- .ant-btn-link[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-link[disabled] > a:only-child::after,
- .ant-btn-link[disabled]:hover > a:only-child::after,
- .ant-btn-link[disabled]:focus > a:only-child::after,
- .ant-btn-link[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-text {
- color: rgba(0, 0, 0, 0.85);
- border-color: transparent;
- background: transparent;
- box-shadow: none;
- }
- .ant-btn-text > a:only-child {
- color: currentcolor;
- }
- .ant-btn-text > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-text:hover,
- .ant-btn-text:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: transparent;
- }
- .ant-btn-text:hover > a:only-child,
- .ant-btn-text:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-text:hover > a:only-child::after,
- .ant-btn-text:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-text:active {
- color: #096dd9;
- border-color: #096dd9;
- background: transparent;
- }
- .ant-btn-text:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-text:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-text[disabled],
- .ant-btn-text[disabled]:hover,
- .ant-btn-text[disabled]:focus,
- .ant-btn-text[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-text[disabled] > a:only-child,
- .ant-btn-text[disabled]:hover > a:only-child,
- .ant-btn-text[disabled]:focus > a:only-child,
- .ant-btn-text[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-text[disabled] > a:only-child::after,
- .ant-btn-text[disabled]:hover > a:only-child::after,
- .ant-btn-text[disabled]:focus > a:only-child::after,
- .ant-btn-text[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-text:hover,
- .ant-btn-text:focus {
- color: rgba(0, 0, 0, 0.85);
- background: rgba(0, 0, 0, 0.018);
- border-color: transparent;
- }
- .ant-btn-text:active {
- color: rgba(0, 0, 0, 0.85);
- background: rgba(0, 0, 0, 0.028);
- border-color: transparent;
- }
- .ant-btn-text[disabled],
- .ant-btn-text[disabled]:hover,
- .ant-btn-text[disabled]:focus,
- .ant-btn-text[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: transparent;
- background: transparent;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-text[disabled] > a:only-child,
- .ant-btn-text[disabled]:hover > a:only-child,
- .ant-btn-text[disabled]:focus > a:only-child,
- .ant-btn-text[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-text[disabled] > a:only-child::after,
- .ant-btn-text[disabled]:hover > a:only-child::after,
- .ant-btn-text[disabled]:focus > a:only-child::after,
- .ant-btn-text[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous {
- color: #ff4d4f;
- border-color: #ff4d4f;
- background: #fff;
- }
- .ant-btn-dangerous > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous:hover,
- .ant-btn-dangerous:focus {
- color: #ff7875;
- border-color: #ff7875;
- background: #fff;
- }
- .ant-btn-dangerous:hover > a:only-child,
- .ant-btn-dangerous:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous:hover > a:only-child::after,
- .ant-btn-dangerous:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous:active {
- color: #d9363e;
- border-color: #d9363e;
- background: #fff;
- }
- .ant-btn-dangerous:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous[disabled],
- .ant-btn-dangerous[disabled]:hover,
- .ant-btn-dangerous[disabled]:focus,
- .ant-btn-dangerous[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous[disabled] > a:only-child,
- .ant-btn-dangerous[disabled]:hover > a:only-child,
- .ant-btn-dangerous[disabled]:focus > a:only-child,
- .ant-btn-dangerous[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous[disabled] > a:only-child::after,
- .ant-btn-dangerous[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-primary {
- color: #fff;
- border-color: #ff4d4f;
- background: #ff4d4f;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
- box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
- }
- .ant-btn-dangerous.ant-btn-primary > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-primary > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-primary:hover,
- .ant-btn-dangerous.ant-btn-primary:focus {
- color: #fff;
- border-color: #ff7875;
- background: #ff7875;
- }
- .ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-primary:active {
- color: #fff;
- border-color: #d9363e;
- background: #d9363e;
- }
- .ant-btn-dangerous.ant-btn-primary:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-primary[disabled],
- .ant-btn-dangerous.ant-btn-primary[disabled]:hover,
- .ant-btn-dangerous.ant-btn-primary[disabled]:focus,
- .ant-btn-dangerous.ant-btn-primary[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child,
- .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
- .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
- .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link {
- color: #ff4d4f;
- border-color: transparent;
- background: transparent;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-link > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link:hover,
- .ant-btn-dangerous.ant-btn-link:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link:active {
- color: #096dd9;
- border-color: #096dd9;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-link:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link[disabled],
- .ant-btn-dangerous.ant-btn-link[disabled]:hover,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus,
- .ant-btn-dangerous.ant-btn-link[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link:hover,
- .ant-btn-dangerous.ant-btn-link:focus {
- color: #ff7875;
- border-color: transparent;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link:active {
- color: #d9363e;
- border-color: transparent;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-link:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-link[disabled],
- .ant-btn-dangerous.ant-btn-link[disabled]:hover,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus,
- .ant-btn-dangerous.ant-btn-link[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: transparent;
- background: transparent;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
- .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text {
- color: #ff4d4f;
- border-color: transparent;
- background: transparent;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-text > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text:hover,
- .ant-btn-dangerous.ant-btn-text:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text:active {
- color: #096dd9;
- border-color: #096dd9;
- background: transparent;
- }
- .ant-btn-dangerous.ant-btn-text:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text[disabled],
- .ant-btn-dangerous.ant-btn-text[disabled]:hover,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus,
- .ant-btn-dangerous.ant-btn-text[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text:hover,
- .ant-btn-dangerous.ant-btn-text:focus {
- color: #ff7875;
- border-color: transparent;
- background: rgba(0, 0, 0, 0.018);
- }
- .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text:active {
- color: #d9363e;
- border-color: transparent;
- background: rgba(0, 0, 0, 0.028);
- }
- .ant-btn-dangerous.ant-btn-text:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-dangerous.ant-btn-text[disabled],
- .ant-btn-dangerous.ant-btn-text[disabled]:hover,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus,
- .ant-btn-dangerous.ant-btn-text[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: transparent;
- background: transparent;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
- .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
- .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-icon-only {
- width: 32px;
- height: 32px;
- padding: 2.4px 0;
- font-size: 16px;
- border-radius: 2px;
- vertical-align: -3px;
- }
- .ant-btn-icon-only > * {
- font-size: 16px;
- }
- .ant-btn-icon-only.ant-btn-lg {
- width: 40px;
- height: 40px;
- padding: 4.9px 0;
- font-size: 18px;
- border-radius: 2px;
- }
- .ant-btn-icon-only.ant-btn-lg > * {
- font-size: 18px;
- }
- .ant-btn-icon-only.ant-btn-sm {
- width: 24px;
- height: 24px;
- padding: 0px 0;
- font-size: 14px;
- border-radius: 2px;
- }
- .ant-btn-icon-only.ant-btn-sm > * {
- font-size: 14px;
- }
- .ant-btn-icon-only > .anticon {
- display: flex;
- justify-content: center;
- }
- .ant-btn-icon-only .anticon-loading {
- padding: 0 !important;
- }
- a.ant-btn-icon-only {
- vertical-align: -1px;
- }
- a.ant-btn-icon-only > .anticon {
- display: inline;
- }
- .ant-btn-round {
- height: 32px;
- padding: 4px 16px;
- font-size: 14px;
- border-radius: 32px;
- }
- .ant-btn-round.ant-btn-lg {
- height: 40px;
- padding: 6.4px 20px;
- font-size: 16px;
- border-radius: 40px;
- }
- .ant-btn-round.ant-btn-sm {
- height: 24px;
- padding: 0px 12px;
- font-size: 14px;
- border-radius: 24px;
- }
- .ant-btn-round.ant-btn-icon-only {
- width: auto;
- }
- .ant-btn-circle {
- min-width: 32px;
- padding-right: 0;
- padding-left: 0;
- text-align: center;
- border-radius: 50%;
- }
- .ant-btn-circle.ant-btn-lg {
- min-width: 40px;
- border-radius: 50%;
- }
- .ant-btn-circle.ant-btn-sm {
- min-width: 24px;
- border-radius: 50%;
- }
- .ant-btn::before {
- position: absolute;
- top: -1px;
- right: -1px;
- bottom: -1px;
- left: -1px;
- z-index: 1;
- display: none;
- background: #fff;
- border-radius: inherit;
- opacity: 0.35;
- transition: opacity 0.2s;
- content: '';
- pointer-events: none;
- }
- .ant-btn .anticon {
- transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- }
- .ant-btn .anticon.anticon-plus > svg,
- .ant-btn .anticon.anticon-minus > svg {
- shape-rendering: optimizespeed;
- }
- .ant-btn.ant-btn-loading {
- position: relative;
- cursor: default;
- }
- .ant-btn.ant-btn-loading::before {
- display: block;
- }
- .ant-btn > .ant-btn-loading-icon {
- transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- }
- .ant-btn > .ant-btn-loading-icon .anticon {
- padding-right: 8px;
- animation: none;
- }
- .ant-btn > .ant-btn-loading-icon .anticon svg {
- animation: loadingCircle 1s infinite linear;
- }
- .ant-btn-group {
- position: relative;
- display: inline-flex;
- }
- .ant-btn-group > .ant-btn,
- .ant-btn-group > span > .ant-btn {
- position: relative;
- }
- .ant-btn-group > .ant-btn:hover,
- .ant-btn-group > span > .ant-btn:hover,
- .ant-btn-group > .ant-btn:focus,
- .ant-btn-group > span > .ant-btn:focus,
- .ant-btn-group > .ant-btn:active,
- .ant-btn-group > span > .ant-btn:active {
- z-index: 2;
- }
- .ant-btn-group > .ant-btn[disabled],
- .ant-btn-group > span > .ant-btn[disabled] {
- z-index: 0;
- }
- .ant-btn-group .ant-btn-icon-only {
- font-size: 14px;
- }
- .ant-btn-group .ant-btn + .ant-btn,
- .ant-btn + .ant-btn-group,
- .ant-btn-group span + .ant-btn,
- .ant-btn-group .ant-btn + span,
- .ant-btn-group > span + span,
- .ant-btn-group + .ant-btn,
- .ant-btn-group + .ant-btn-group {
- margin-left: -1px;
- }
- .ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
- border-left-color: transparent;
- }
- .ant-btn-group .ant-btn {
- border-radius: 0;
- }
- .ant-btn-group > .ant-btn:first-child,
- .ant-btn-group > span:first-child > .ant-btn {
- margin-left: 0;
- }
- .ant-btn-group > .ant-btn:only-child {
- border-radius: 2px;
- }
- .ant-btn-group > span:only-child > .ant-btn {
- border-radius: 2px;
- }
- .ant-btn-group > .ant-btn:first-child:not(:last-child),
- .ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
- border-top-left-radius: 2px;
- border-bottom-left-radius: 2px;
- }
- .ant-btn-group > .ant-btn:last-child:not(:first-child),
- .ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
- border-top-right-radius: 2px;
- border-bottom-right-radius: 2px;
- }
- .ant-btn-group-sm > .ant-btn:only-child {
- border-radius: 2px;
- }
- .ant-btn-group-sm > span:only-child > .ant-btn {
- border-radius: 2px;
- }
- .ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
- .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
- border-top-left-radius: 2px;
- border-bottom-left-radius: 2px;
- }
- .ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
- .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
- border-top-right-radius: 2px;
- border-bottom-right-radius: 2px;
- }
- .ant-btn-group > .ant-btn-group {
- float: left;
- }
- .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
- border-radius: 0;
- }
- .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
- padding-right: 8px;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
- padding-left: 8px;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn,
- .ant-btn-rtl.ant-btn + .ant-btn-group,
- .ant-btn-rtl.ant-btn-group span + .ant-btn,
- .ant-btn-rtl.ant-btn-group .ant-btn + span,
- .ant-btn-rtl.ant-btn-group > span + span,
- .ant-btn-rtl.ant-btn-group + .ant-btn,
- .ant-btn-rtl.ant-btn-group + .ant-btn-group,
- .ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn,
- .ant-btn-group-rtl.ant-btn + .ant-btn-group,
- .ant-btn-group-rtl.ant-btn-group span + .ant-btn,
- .ant-btn-group-rtl.ant-btn-group .ant-btn + span,
- .ant-btn-group-rtl.ant-btn-group > span + span,
- .ant-btn-group-rtl.ant-btn-group + .ant-btn,
- .ant-btn-group-rtl.ant-btn-group + .ant-btn-group {
- margin-right: -1px;
- margin-left: auto;
- }
- .ant-btn-group.ant-btn-group-rtl {
- direction: rtl;
- }
- .ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
- .ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
- border-radius: 0 2px 2px 0;
- }
- .ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
- .ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
- border-radius: 2px 0 0 2px;
- }
- .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
- .ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
- border-radius: 0 2px 2px 0;
- }
- .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
- .ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
- border-radius: 2px 0 0 2px;
- }
- .ant-btn:focus > span,
- .ant-btn:active > span {
- position: relative;
- }
- .ant-btn > .anticon + span,
- .ant-btn > span + .anticon {
- margin-left: 8px;
- }
- .ant-btn.ant-btn-background-ghost {
- color: #fff;
- border-color: #fff;
- }
- .ant-btn.ant-btn-background-ghost,
- .ant-btn.ant-btn-background-ghost:hover,
- .ant-btn.ant-btn-background-ghost:active,
- .ant-btn.ant-btn-background-ghost:focus {
- background: transparent;
- }
- .ant-btn.ant-btn-background-ghost:hover,
- .ant-btn.ant-btn-background-ghost:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- }
- .ant-btn.ant-btn-background-ghost:active {
- color: #096dd9;
- border-color: #096dd9;
- }
- .ant-btn.ant-btn-background-ghost[disabled] {
- color: rgba(0, 0, 0, 0.25);
- background: transparent;
- border-color: #d9d9d9;
- }
- .ant-btn-background-ghost.ant-btn-primary {
- color: #1890ff;
- border-color: #1890ff;
- text-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-primary > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-primary:hover,
- .ant-btn-background-ghost.ant-btn-primary:focus {
- color: #40a9ff;
- border-color: #40a9ff;
- }
- .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-primary:active {
- color: #096dd9;
- border-color: #096dd9;
- }
- .ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-primary[disabled],
- .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-danger {
- color: #ff4d4f;
- border-color: #ff4d4f;
- text-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-danger > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-danger:hover,
- .ant-btn-background-ghost.ant-btn-danger:focus {
- color: #ff7875;
- border-color: #ff7875;
- }
- .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-danger:active {
- color: #d9363e;
- border-color: #d9363e;
- }
- .ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-danger[disabled],
- .ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous {
- color: #ff4d4f;
- border-color: #ff4d4f;
- text-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous:hover,
- .ant-btn-background-ghost.ant-btn-dangerous:focus {
- color: #ff7875;
- border-color: #ff7875;
- }
- .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous:active {
- color: #d9363e;
- border-color: #d9363e;
- }
- .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous[disabled],
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
- color: #ff4d4f;
- border-color: transparent;
- text-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
- color: #ff7875;
- border-color: transparent;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
- color: #d9363e;
- border-color: transparent;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: #d9d9d9;
- background: #f5f5f5;
- text-shadow: none;
- box-shadow: none;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
- color: currentcolor;
- }
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
- .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- .ant-btn-two-chinese-chars::first-letter {
- letter-spacing: 0.34em;
- }
- .ant-btn-two-chinese-chars > *:not(.anticon) {
- margin-right: -0.34em;
- letter-spacing: 0.34em;
- }
- .ant-btn.ant-btn-block {
- width: 100%;
- }
- .ant-btn:empty {
- display: inline-block;
- width: 0;
- visibility: hidden;
- content: '\a0';
- }
- a.ant-btn {
- padding-top: 0.01px !important;
- line-height: 30px;
- }
- a.ant-btn-disabled {
- cursor: not-allowed;
- }
- a.ant-btn-disabled > * {
- pointer-events: none;
- }
- a.ant-btn-disabled,
- a.ant-btn-disabled:hover,
- a.ant-btn-disabled:focus,
- a.ant-btn-disabled:active {
- color: rgba(0, 0, 0, 0.25);
- border-color: transparent;
- background: transparent;
- text-shadow: none;
- box-shadow: none;
- }
- a.ant-btn-disabled > a:only-child,
- a.ant-btn-disabled:hover > a:only-child,
- a.ant-btn-disabled:focus > a:only-child,
- a.ant-btn-disabled:active > a:only-child {
- color: currentcolor;
- }
- a.ant-btn-disabled > a:only-child::after,
- a.ant-btn-disabled:hover > a:only-child::after,
- a.ant-btn-disabled:focus > a:only-child::after,
- a.ant-btn-disabled:active > a:only-child::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: transparent;
- content: '';
- }
- a.ant-btn-lg {
- line-height: 38px;
- }
- a.ant-btn-sm {
- line-height: 22px;
- }
- .ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
- margin-right: -1px;
- }
- .ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl {
- margin-left: -1px;
- }
- .ant-btn-compact-item:hover,
- .ant-btn-compact-item:focus,
- .ant-btn-compact-item:active {
- z-index: 2;
- }
- .ant-btn-compact-item[disabled] {
- z-index: 0;
- }
- .ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn {
- border-radius: 0;
- }
- .ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ant-btn-icon-only.ant-btn-compact-item {
- flex: none;
- }
- .ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled]):not([ant-click-animating-without-extra-node='true']) {
- position: relative;
- }
- .ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled]):not([ant-click-animating-without-extra-node='true'])::after {
- position: absolute;
- top: -1px;
- left: -1px;
- display: inline-block;
- width: 1px;
- height: calc(100% + 1px * 2);
- background-color: #40a9ff;
- content: ' ';
- }
- .ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled]) + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
- right: -1px;
- }
- .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
- margin-bottom: -1px;
- }
- .ant-btn-compact-vertical-item:hover,
- .ant-btn-compact-vertical-item:focus,
- .ant-btn-compact-vertical-item:active {
- z-index: 2;
- }
- .ant-btn-compact-vertical-item[disabled] {
- z-index: 0;
- }
- .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item) {
- border-radius: 0;
- }
- .ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item) {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item) {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]):not([ant-click-animating-without-extra-node='true']) {
- position: relative;
- }
- .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]):not([ant-click-animating-without-extra-node='true'])::after {
- position: absolute;
- top: -1px;
- left: -1px;
- display: inline-block;
- width: calc(100% + 1px * 2);
- height: 1px;
- background-color: #40a9ff;
- content: ' ';
- }
- .ant-btn-rtl {
- direction: rtl;
- }
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
- border-right-color: #40a9ff;
- border-left-color: #d9d9d9;
- }
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
- .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
- border-right-color: #d9d9d9;
- border-left-color: #40a9ff;
- }
- .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
- padding-right: 0;
- padding-left: 8px;
- }
- .ant-btn-rtl.ant-btn > .anticon + span,
- .ant-btn-rtl.ant-btn > span + .anticon {
- margin-right: 8px;
- margin-left: 0;
- }
- .ant-popover {
- position: relative;
- }
|