index.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. .ant-popover {
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. color: rgba(0, 0, 0, 0.85);
  8. font-size: 14px;
  9. font-variant: tabular-nums;
  10. line-height: 1.5715;
  11. list-style: none;
  12. font-feature-settings: 'tnum';
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. z-index: 1030;
  17. max-width: 100vw;
  18. font-weight: normal;
  19. white-space: normal;
  20. text-align: left;
  21. cursor: auto;
  22. user-select: text;
  23. }
  24. .ant-popover-content {
  25. position: relative;
  26. }
  27. .ant-popover::after {
  28. position: absolute;
  29. background: rgba(255, 255, 255, 0.01);
  30. content: '';
  31. }
  32. .ant-popover-hidden {
  33. display: none;
  34. }
  35. .ant-popover-placement-top,
  36. .ant-popover-placement-topLeft,
  37. .ant-popover-placement-topRight {
  38. padding-bottom: 15.3137085px;
  39. }
  40. .ant-popover-placement-right,
  41. .ant-popover-placement-rightTop,
  42. .ant-popover-placement-rightBottom {
  43. padding-left: 15.3137085px;
  44. }
  45. .ant-popover-placement-bottom,
  46. .ant-popover-placement-bottomLeft,
  47. .ant-popover-placement-bottomRight {
  48. padding-top: 15.3137085px;
  49. }
  50. .ant-popover-placement-left,
  51. .ant-popover-placement-leftTop,
  52. .ant-popover-placement-leftBottom {
  53. padding-right: 15.3137085px;
  54. }
  55. .ant-popover-inner {
  56. background-color: #fff;
  57. background-clip: padding-box;
  58. border-radius: 2px;
  59. 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);
  60. }
  61. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  62. .ant-popover {
  63. /* IE10+ */
  64. }
  65. .ant-popover-inner {
  66. 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);
  67. }
  68. }
  69. .ant-popover-title {
  70. min-width: 177px;
  71. min-height: 32px;
  72. margin: 0;
  73. padding: 5px 16px 4px;
  74. color: rgba(0, 0, 0, 0.85);
  75. font-weight: 500;
  76. border-bottom: 1px solid #f0f0f0;
  77. }
  78. .ant-popover-inner-content {
  79. width: max-content;
  80. max-width: 100%;
  81. padding: 12px 16px;
  82. color: rgba(0, 0, 0, 0.85);
  83. }
  84. .ant-popover-message {
  85. display: flex;
  86. padding: 4px 0 12px;
  87. color: rgba(0, 0, 0, 0.85);
  88. font-size: 14px;
  89. }
  90. .ant-popover-message-icon {
  91. display: inline-block;
  92. margin-right: 8px;
  93. color: #faad14;
  94. font-size: 14px;
  95. }
  96. .ant-popover-buttons {
  97. margin-bottom: 4px;
  98. text-align: right;
  99. }
  100. .ant-popover-buttons button:not(:first-child) {
  101. margin-left: 8px;
  102. }
  103. .ant-popover-arrow {
  104. position: absolute;
  105. display: block;
  106. width: 22px;
  107. height: 22px;
  108. overflow: hidden;
  109. background: transparent;
  110. pointer-events: none;
  111. }
  112. .ant-popover-arrow-content {
  113. --antd-arrow-background-color: #fff;
  114. position: absolute;
  115. top: 0;
  116. right: 0;
  117. bottom: 0;
  118. left: 0;
  119. display: block;
  120. width: 11.3137085px;
  121. height: 11.3137085px;
  122. margin: auto;
  123. content: '';
  124. pointer-events: auto;
  125. border-radius: 0 0 2px;
  126. pointer-events: none;
  127. }
  128. .ant-popover-arrow-content::before {
  129. position: absolute;
  130. top: -11.3137085px;
  131. left: -11.3137085px;
  132. width: 33.9411255px;
  133. height: 33.9411255px;
  134. background: var(--antd-arrow-background-color);
  135. background-repeat: no-repeat;
  136. background-position: -10px -10px;
  137. content: '';
  138. clip-path: inset(33% 33%);
  139. 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');
  140. }
  141. .ant-popover-placement-top .ant-popover-arrow,
  142. .ant-popover-placement-topLeft .ant-popover-arrow,
  143. .ant-popover-placement-topRight .ant-popover-arrow {
  144. bottom: 0;
  145. transform: translateY(100%);
  146. }
  147. .ant-popover-placement-top .ant-popover-arrow-content,
  148. .ant-popover-placement-topLeft .ant-popover-arrow-content,
  149. .ant-popover-placement-topRight .ant-popover-arrow-content {
  150. box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  151. transform: translateY(-11px) rotate(45deg);
  152. }
  153. .ant-popover-placement-top .ant-popover-arrow {
  154. left: 50%;
  155. transform: translateY(100%) translateX(-50%);
  156. }
  157. .ant-popover-placement-topLeft .ant-popover-arrow {
  158. left: 16px;
  159. }
  160. .ant-popover-placement-topRight .ant-popover-arrow {
  161. right: 16px;
  162. }
  163. .ant-popover-placement-right .ant-popover-arrow,
  164. .ant-popover-placement-rightTop .ant-popover-arrow,
  165. .ant-popover-placement-rightBottom .ant-popover-arrow {
  166. left: 0;
  167. transform: translateX(-100%);
  168. }
  169. .ant-popover-placement-right .ant-popover-arrow-content,
  170. .ant-popover-placement-rightTop .ant-popover-arrow-content,
  171. .ant-popover-placement-rightBottom .ant-popover-arrow-content {
  172. box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  173. transform: translateX(11px) rotate(135deg);
  174. }
  175. .ant-popover-placement-right .ant-popover-arrow {
  176. top: 50%;
  177. transform: translateX(-100%) translateY(-50%);
  178. }
  179. .ant-popover-placement-rightTop .ant-popover-arrow {
  180. top: 12px;
  181. }
  182. .ant-popover-placement-rightBottom .ant-popover-arrow {
  183. bottom: 12px;
  184. }
  185. .ant-popover-placement-bottom .ant-popover-arrow,
  186. .ant-popover-placement-bottomLeft .ant-popover-arrow,
  187. .ant-popover-placement-bottomRight .ant-popover-arrow {
  188. top: 0;
  189. transform: translateY(-100%);
  190. }
  191. .ant-popover-placement-bottom .ant-popover-arrow-content,
  192. .ant-popover-placement-bottomLeft .ant-popover-arrow-content,
  193. .ant-popover-placement-bottomRight .ant-popover-arrow-content {
  194. box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);
  195. transform: translateY(11px) rotate(-135deg);
  196. }
  197. .ant-popover-placement-bottom .ant-popover-arrow {
  198. left: 50%;
  199. transform: translateY(-100%) translateX(-50%);
  200. }
  201. .ant-popover-placement-bottomLeft .ant-popover-arrow {
  202. left: 16px;
  203. }
  204. .ant-popover-placement-bottomRight .ant-popover-arrow {
  205. right: 16px;
  206. }
  207. .ant-popover-placement-left .ant-popover-arrow,
  208. .ant-popover-placement-leftTop .ant-popover-arrow,
  209. .ant-popover-placement-leftBottom .ant-popover-arrow {
  210. right: 0;
  211. transform: translateX(100%);
  212. }
  213. .ant-popover-placement-left .ant-popover-arrow-content,
  214. .ant-popover-placement-leftTop .ant-popover-arrow-content,
  215. .ant-popover-placement-leftBottom .ant-popover-arrow-content {
  216. box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  217. transform: translateX(-11px) rotate(-45deg);
  218. }
  219. .ant-popover-placement-left .ant-popover-arrow {
  220. top: 50%;
  221. transform: translateX(100%) translateY(-50%);
  222. }
  223. .ant-popover-placement-leftTop .ant-popover-arrow {
  224. top: 12px;
  225. }
  226. .ant-popover-placement-leftBottom .ant-popover-arrow {
  227. bottom: 12px;
  228. }
  229. .ant-popover-pink .ant-popover-inner {
  230. background-color: #eb2f96;
  231. }
  232. .ant-popover-pink .ant-popover-arrow-content {
  233. background-color: #eb2f96;
  234. }
  235. .ant-popover-magenta .ant-popover-inner {
  236. background-color: #eb2f96;
  237. }
  238. .ant-popover-magenta .ant-popover-arrow-content {
  239. background-color: #eb2f96;
  240. }
  241. .ant-popover-red .ant-popover-inner {
  242. background-color: #f5222d;
  243. }
  244. .ant-popover-red .ant-popover-arrow-content {
  245. background-color: #f5222d;
  246. }
  247. .ant-popover-volcano .ant-popover-inner {
  248. background-color: #fa541c;
  249. }
  250. .ant-popover-volcano .ant-popover-arrow-content {
  251. background-color: #fa541c;
  252. }
  253. .ant-popover-orange .ant-popover-inner {
  254. background-color: #fa8c16;
  255. }
  256. .ant-popover-orange .ant-popover-arrow-content {
  257. background-color: #fa8c16;
  258. }
  259. .ant-popover-yellow .ant-popover-inner {
  260. background-color: #fadb14;
  261. }
  262. .ant-popover-yellow .ant-popover-arrow-content {
  263. background-color: #fadb14;
  264. }
  265. .ant-popover-gold .ant-popover-inner {
  266. background-color: #faad14;
  267. }
  268. .ant-popover-gold .ant-popover-arrow-content {
  269. background-color: #faad14;
  270. }
  271. .ant-popover-cyan .ant-popover-inner {
  272. background-color: #13c2c2;
  273. }
  274. .ant-popover-cyan .ant-popover-arrow-content {
  275. background-color: #13c2c2;
  276. }
  277. .ant-popover-lime .ant-popover-inner {
  278. background-color: #a0d911;
  279. }
  280. .ant-popover-lime .ant-popover-arrow-content {
  281. background-color: #a0d911;
  282. }
  283. .ant-popover-green .ant-popover-inner {
  284. background-color: #52c41a;
  285. }
  286. .ant-popover-green .ant-popover-arrow-content {
  287. background-color: #52c41a;
  288. }
  289. .ant-popover-blue .ant-popover-inner {
  290. background-color: #1890ff;
  291. }
  292. .ant-popover-blue .ant-popover-arrow-content {
  293. background-color: #1890ff;
  294. }
  295. .ant-popover-geekblue .ant-popover-inner {
  296. background-color: #2f54eb;
  297. }
  298. .ant-popover-geekblue .ant-popover-arrow-content {
  299. background-color: #2f54eb;
  300. }
  301. .ant-popover-purple .ant-popover-inner {
  302. background-color: #722ed1;
  303. }
  304. .ant-popover-purple .ant-popover-arrow-content {
  305. background-color: #722ed1;
  306. }
  307. .ant-popover-rtl {
  308. direction: rtl;
  309. text-align: right;
  310. }
  311. .ant-popover-rtl .ant-popover-message-icon {
  312. margin-right: 0;
  313. margin-left: 8px;
  314. }
  315. .ant-popover-rtl .ant-popover-message-title {
  316. padding-left: 16px;
  317. }
  318. .ant-popover-rtl .ant-popover-buttons {
  319. text-align: left;
  320. }
  321. .ant-popover-rtl .ant-popover-buttons button {
  322. margin-right: 8px;
  323. margin-left: 0;
  324. }
  325. .ant-popover {
  326. position: relative;
  327. }
  328. .ant-btn {
  329. line-height: 1.5715;
  330. position: relative;
  331. display: inline-block;
  332. font-weight: 400;
  333. white-space: nowrap;
  334. text-align: center;
  335. background-image: none;
  336. border: 1px solid transparent;
  337. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  338. cursor: pointer;
  339. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  340. user-select: none;
  341. touch-action: manipulation;
  342. height: 32px;
  343. padding: 4px 15px;
  344. font-size: 14px;
  345. border-radius: 2px;
  346. color: rgba(0, 0, 0, 0.85);
  347. border-color: #d9d9d9;
  348. background: #fff;
  349. }
  350. .ant-btn > .anticon {
  351. line-height: 1;
  352. }
  353. .ant-btn,
  354. .ant-btn:active,
  355. .ant-btn:focus {
  356. outline: 0;
  357. }
  358. .ant-btn:not([disabled]):hover {
  359. text-decoration: none;
  360. }
  361. .ant-btn:not([disabled]):active {
  362. outline: 0;
  363. box-shadow: none;
  364. }
  365. .ant-btn[disabled] {
  366. cursor: not-allowed;
  367. }
  368. .ant-btn[disabled] > * {
  369. pointer-events: none;
  370. }
  371. .ant-btn-lg {
  372. height: 40px;
  373. padding: 6.4px 15px;
  374. font-size: 16px;
  375. border-radius: 2px;
  376. }
  377. .ant-btn-sm {
  378. height: 24px;
  379. padding: 0px 7px;
  380. font-size: 14px;
  381. border-radius: 2px;
  382. }
  383. .ant-btn > a:only-child {
  384. color: currentcolor;
  385. }
  386. .ant-btn > a:only-child::after {
  387. position: absolute;
  388. top: 0;
  389. right: 0;
  390. bottom: 0;
  391. left: 0;
  392. background: transparent;
  393. content: '';
  394. }
  395. .ant-btn:hover,
  396. .ant-btn:focus {
  397. color: #40a9ff;
  398. border-color: #40a9ff;
  399. background: #fff;
  400. }
  401. .ant-btn:hover > a:only-child,
  402. .ant-btn:focus > a:only-child {
  403. color: currentcolor;
  404. }
  405. .ant-btn:hover > a:only-child::after,
  406. .ant-btn:focus > a:only-child::after {
  407. position: absolute;
  408. top: 0;
  409. right: 0;
  410. bottom: 0;
  411. left: 0;
  412. background: transparent;
  413. content: '';
  414. }
  415. .ant-btn:active {
  416. color: #096dd9;
  417. border-color: #096dd9;
  418. background: #fff;
  419. }
  420. .ant-btn:active > a:only-child {
  421. color: currentcolor;
  422. }
  423. .ant-btn:active > a:only-child::after {
  424. position: absolute;
  425. top: 0;
  426. right: 0;
  427. bottom: 0;
  428. left: 0;
  429. background: transparent;
  430. content: '';
  431. }
  432. .ant-btn[disabled],
  433. .ant-btn[disabled]:hover,
  434. .ant-btn[disabled]:focus,
  435. .ant-btn[disabled]:active {
  436. color: rgba(0, 0, 0, 0.25);
  437. border-color: #d9d9d9;
  438. background: #f5f5f5;
  439. text-shadow: none;
  440. box-shadow: none;
  441. }
  442. .ant-btn[disabled] > a:only-child,
  443. .ant-btn[disabled]:hover > a:only-child,
  444. .ant-btn[disabled]:focus > a:only-child,
  445. .ant-btn[disabled]:active > a:only-child {
  446. color: currentcolor;
  447. }
  448. .ant-btn[disabled] > a:only-child::after,
  449. .ant-btn[disabled]:hover > a:only-child::after,
  450. .ant-btn[disabled]:focus > a:only-child::after,
  451. .ant-btn[disabled]:active > a:only-child::after {
  452. position: absolute;
  453. top: 0;
  454. right: 0;
  455. bottom: 0;
  456. left: 0;
  457. background: transparent;
  458. content: '';
  459. }
  460. .ant-btn:hover,
  461. .ant-btn:focus,
  462. .ant-btn:active {
  463. text-decoration: none;
  464. background: #fff;
  465. }
  466. .ant-btn > span {
  467. display: inline-block;
  468. }
  469. .ant-btn-primary {
  470. color: #fff;
  471. border-color: #1890ff;
  472. background: #1890ff;
  473. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  474. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  475. }
  476. .ant-btn-primary > a:only-child {
  477. color: currentcolor;
  478. }
  479. .ant-btn-primary > a:only-child::after {
  480. position: absolute;
  481. top: 0;
  482. right: 0;
  483. bottom: 0;
  484. left: 0;
  485. background: transparent;
  486. content: '';
  487. }
  488. .ant-btn-primary:hover,
  489. .ant-btn-primary:focus {
  490. color: #fff;
  491. border-color: #40a9ff;
  492. background: #40a9ff;
  493. }
  494. .ant-btn-primary:hover > a:only-child,
  495. .ant-btn-primary:focus > a:only-child {
  496. color: currentcolor;
  497. }
  498. .ant-btn-primary:hover > a:only-child::after,
  499. .ant-btn-primary:focus > a:only-child::after {
  500. position: absolute;
  501. top: 0;
  502. right: 0;
  503. bottom: 0;
  504. left: 0;
  505. background: transparent;
  506. content: '';
  507. }
  508. .ant-btn-primary:active {
  509. color: #fff;
  510. border-color: #096dd9;
  511. background: #096dd9;
  512. }
  513. .ant-btn-primary:active > a:only-child {
  514. color: currentcolor;
  515. }
  516. .ant-btn-primary:active > a:only-child::after {
  517. position: absolute;
  518. top: 0;
  519. right: 0;
  520. bottom: 0;
  521. left: 0;
  522. background: transparent;
  523. content: '';
  524. }
  525. .ant-btn-primary[disabled],
  526. .ant-btn-primary[disabled]:hover,
  527. .ant-btn-primary[disabled]:focus,
  528. .ant-btn-primary[disabled]:active {
  529. color: rgba(0, 0, 0, 0.25);
  530. border-color: #d9d9d9;
  531. background: #f5f5f5;
  532. text-shadow: none;
  533. box-shadow: none;
  534. }
  535. .ant-btn-primary[disabled] > a:only-child,
  536. .ant-btn-primary[disabled]:hover > a:only-child,
  537. .ant-btn-primary[disabled]:focus > a:only-child,
  538. .ant-btn-primary[disabled]:active > a:only-child {
  539. color: currentcolor;
  540. }
  541. .ant-btn-primary[disabled] > a:only-child::after,
  542. .ant-btn-primary[disabled]:hover > a:only-child::after,
  543. .ant-btn-primary[disabled]:focus > a:only-child::after,
  544. .ant-btn-primary[disabled]:active > a:only-child::after {
  545. position: absolute;
  546. top: 0;
  547. right: 0;
  548. bottom: 0;
  549. left: 0;
  550. background: transparent;
  551. content: '';
  552. }
  553. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  554. border-right-color: #40a9ff;
  555. border-left-color: #40a9ff;
  556. }
  557. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  558. border-color: #d9d9d9;
  559. }
  560. .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  561. border-right-color: #40a9ff;
  562. }
  563. .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  564. border-right-color: #d9d9d9;
  565. }
  566. .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  567. .ant-btn-group .ant-btn-primary + .ant-btn-primary {
  568. border-left-color: #40a9ff;
  569. }
  570. .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  571. .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  572. border-left-color: #d9d9d9;
  573. }
  574. .ant-btn-ghost {
  575. color: rgba(0, 0, 0, 0.85);
  576. border-color: #d9d9d9;
  577. background: transparent;
  578. }
  579. .ant-btn-ghost > a:only-child {
  580. color: currentcolor;
  581. }
  582. .ant-btn-ghost > a:only-child::after {
  583. position: absolute;
  584. top: 0;
  585. right: 0;
  586. bottom: 0;
  587. left: 0;
  588. background: transparent;
  589. content: '';
  590. }
  591. .ant-btn-ghost:hover,
  592. .ant-btn-ghost:focus {
  593. color: #40a9ff;
  594. border-color: #40a9ff;
  595. background: transparent;
  596. }
  597. .ant-btn-ghost:hover > a:only-child,
  598. .ant-btn-ghost:focus > a:only-child {
  599. color: currentcolor;
  600. }
  601. .ant-btn-ghost:hover > a:only-child::after,
  602. .ant-btn-ghost:focus > a:only-child::after {
  603. position: absolute;
  604. top: 0;
  605. right: 0;
  606. bottom: 0;
  607. left: 0;
  608. background: transparent;
  609. content: '';
  610. }
  611. .ant-btn-ghost:active {
  612. color: #096dd9;
  613. border-color: #096dd9;
  614. background: transparent;
  615. }
  616. .ant-btn-ghost:active > a:only-child {
  617. color: currentcolor;
  618. }
  619. .ant-btn-ghost:active > a:only-child::after {
  620. position: absolute;
  621. top: 0;
  622. right: 0;
  623. bottom: 0;
  624. left: 0;
  625. background: transparent;
  626. content: '';
  627. }
  628. .ant-btn-ghost[disabled],
  629. .ant-btn-ghost[disabled]:hover,
  630. .ant-btn-ghost[disabled]:focus,
  631. .ant-btn-ghost[disabled]:active {
  632. color: rgba(0, 0, 0, 0.25);
  633. border-color: #d9d9d9;
  634. background: #f5f5f5;
  635. text-shadow: none;
  636. box-shadow: none;
  637. }
  638. .ant-btn-ghost[disabled] > a:only-child,
  639. .ant-btn-ghost[disabled]:hover > a:only-child,
  640. .ant-btn-ghost[disabled]:focus > a:only-child,
  641. .ant-btn-ghost[disabled]:active > a:only-child {
  642. color: currentcolor;
  643. }
  644. .ant-btn-ghost[disabled] > a:only-child::after,
  645. .ant-btn-ghost[disabled]:hover > a:only-child::after,
  646. .ant-btn-ghost[disabled]:focus > a:only-child::after,
  647. .ant-btn-ghost[disabled]:active > a:only-child::after {
  648. position: absolute;
  649. top: 0;
  650. right: 0;
  651. bottom: 0;
  652. left: 0;
  653. background: transparent;
  654. content: '';
  655. }
  656. .ant-btn-dashed {
  657. color: rgba(0, 0, 0, 0.85);
  658. border-color: #d9d9d9;
  659. background: #fff;
  660. border-style: dashed;
  661. }
  662. .ant-btn-dashed > a:only-child {
  663. color: currentcolor;
  664. }
  665. .ant-btn-dashed > a:only-child::after {
  666. position: absolute;
  667. top: 0;
  668. right: 0;
  669. bottom: 0;
  670. left: 0;
  671. background: transparent;
  672. content: '';
  673. }
  674. .ant-btn-dashed:hover,
  675. .ant-btn-dashed:focus {
  676. color: #40a9ff;
  677. border-color: #40a9ff;
  678. background: #fff;
  679. }
  680. .ant-btn-dashed:hover > a:only-child,
  681. .ant-btn-dashed:focus > a:only-child {
  682. color: currentcolor;
  683. }
  684. .ant-btn-dashed:hover > a:only-child::after,
  685. .ant-btn-dashed:focus > a:only-child::after {
  686. position: absolute;
  687. top: 0;
  688. right: 0;
  689. bottom: 0;
  690. left: 0;
  691. background: transparent;
  692. content: '';
  693. }
  694. .ant-btn-dashed:active {
  695. color: #096dd9;
  696. border-color: #096dd9;
  697. background: #fff;
  698. }
  699. .ant-btn-dashed:active > a:only-child {
  700. color: currentcolor;
  701. }
  702. .ant-btn-dashed:active > a:only-child::after {
  703. position: absolute;
  704. top: 0;
  705. right: 0;
  706. bottom: 0;
  707. left: 0;
  708. background: transparent;
  709. content: '';
  710. }
  711. .ant-btn-dashed[disabled],
  712. .ant-btn-dashed[disabled]:hover,
  713. .ant-btn-dashed[disabled]:focus,
  714. .ant-btn-dashed[disabled]:active {
  715. color: rgba(0, 0, 0, 0.25);
  716. border-color: #d9d9d9;
  717. background: #f5f5f5;
  718. text-shadow: none;
  719. box-shadow: none;
  720. }
  721. .ant-btn-dashed[disabled] > a:only-child,
  722. .ant-btn-dashed[disabled]:hover > a:only-child,
  723. .ant-btn-dashed[disabled]:focus > a:only-child,
  724. .ant-btn-dashed[disabled]:active > a:only-child {
  725. color: currentcolor;
  726. }
  727. .ant-btn-dashed[disabled] > a:only-child::after,
  728. .ant-btn-dashed[disabled]:hover > a:only-child::after,
  729. .ant-btn-dashed[disabled]:focus > a:only-child::after,
  730. .ant-btn-dashed[disabled]:active > a:only-child::after {
  731. position: absolute;
  732. top: 0;
  733. right: 0;
  734. bottom: 0;
  735. left: 0;
  736. background: transparent;
  737. content: '';
  738. }
  739. .ant-btn-danger {
  740. color: #fff;
  741. border-color: #ff4d4f;
  742. background: #ff4d4f;
  743. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  744. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  745. }
  746. .ant-btn-danger > a:only-child {
  747. color: currentcolor;
  748. }
  749. .ant-btn-danger > a:only-child::after {
  750. position: absolute;
  751. top: 0;
  752. right: 0;
  753. bottom: 0;
  754. left: 0;
  755. background: transparent;
  756. content: '';
  757. }
  758. .ant-btn-danger:hover,
  759. .ant-btn-danger:focus {
  760. color: #fff;
  761. border-color: #ff7875;
  762. background: #ff7875;
  763. }
  764. .ant-btn-danger:hover > a:only-child,
  765. .ant-btn-danger:focus > a:only-child {
  766. color: currentcolor;
  767. }
  768. .ant-btn-danger:hover > a:only-child::after,
  769. .ant-btn-danger:focus > a:only-child::after {
  770. position: absolute;
  771. top: 0;
  772. right: 0;
  773. bottom: 0;
  774. left: 0;
  775. background: transparent;
  776. content: '';
  777. }
  778. .ant-btn-danger:active {
  779. color: #fff;
  780. border-color: #d9363e;
  781. background: #d9363e;
  782. }
  783. .ant-btn-danger:active > a:only-child {
  784. color: currentcolor;
  785. }
  786. .ant-btn-danger:active > a:only-child::after {
  787. position: absolute;
  788. top: 0;
  789. right: 0;
  790. bottom: 0;
  791. left: 0;
  792. background: transparent;
  793. content: '';
  794. }
  795. .ant-btn-danger[disabled],
  796. .ant-btn-danger[disabled]:hover,
  797. .ant-btn-danger[disabled]:focus,
  798. .ant-btn-danger[disabled]:active {
  799. color: rgba(0, 0, 0, 0.25);
  800. border-color: #d9d9d9;
  801. background: #f5f5f5;
  802. text-shadow: none;
  803. box-shadow: none;
  804. }
  805. .ant-btn-danger[disabled] > a:only-child,
  806. .ant-btn-danger[disabled]:hover > a:only-child,
  807. .ant-btn-danger[disabled]:focus > a:only-child,
  808. .ant-btn-danger[disabled]:active > a:only-child {
  809. color: currentcolor;
  810. }
  811. .ant-btn-danger[disabled] > a:only-child::after,
  812. .ant-btn-danger[disabled]:hover > a:only-child::after,
  813. .ant-btn-danger[disabled]:focus > a:only-child::after,
  814. .ant-btn-danger[disabled]:active > a:only-child::after {
  815. position: absolute;
  816. top: 0;
  817. right: 0;
  818. bottom: 0;
  819. left: 0;
  820. background: transparent;
  821. content: '';
  822. }
  823. .ant-btn-link {
  824. color: #1890ff;
  825. border-color: transparent;
  826. background: transparent;
  827. box-shadow: none;
  828. }
  829. .ant-btn-link > a:only-child {
  830. color: currentcolor;
  831. }
  832. .ant-btn-link > a:only-child::after {
  833. position: absolute;
  834. top: 0;
  835. right: 0;
  836. bottom: 0;
  837. left: 0;
  838. background: transparent;
  839. content: '';
  840. }
  841. .ant-btn-link:hover,
  842. .ant-btn-link:focus {
  843. color: #40a9ff;
  844. border-color: #40a9ff;
  845. background: transparent;
  846. }
  847. .ant-btn-link:hover > a:only-child,
  848. .ant-btn-link:focus > a:only-child {
  849. color: currentcolor;
  850. }
  851. .ant-btn-link:hover > a:only-child::after,
  852. .ant-btn-link:focus > a:only-child::after {
  853. position: absolute;
  854. top: 0;
  855. right: 0;
  856. bottom: 0;
  857. left: 0;
  858. background: transparent;
  859. content: '';
  860. }
  861. .ant-btn-link:active {
  862. color: #096dd9;
  863. border-color: #096dd9;
  864. background: transparent;
  865. }
  866. .ant-btn-link:active > a:only-child {
  867. color: currentcolor;
  868. }
  869. .ant-btn-link:active > a:only-child::after {
  870. position: absolute;
  871. top: 0;
  872. right: 0;
  873. bottom: 0;
  874. left: 0;
  875. background: transparent;
  876. content: '';
  877. }
  878. .ant-btn-link[disabled],
  879. .ant-btn-link[disabled]:hover,
  880. .ant-btn-link[disabled]:focus,
  881. .ant-btn-link[disabled]:active {
  882. color: rgba(0, 0, 0, 0.25);
  883. border-color: #d9d9d9;
  884. background: #f5f5f5;
  885. text-shadow: none;
  886. box-shadow: none;
  887. }
  888. .ant-btn-link[disabled] > a:only-child,
  889. .ant-btn-link[disabled]:hover > a:only-child,
  890. .ant-btn-link[disabled]:focus > a:only-child,
  891. .ant-btn-link[disabled]:active > a:only-child {
  892. color: currentcolor;
  893. }
  894. .ant-btn-link[disabled] > a:only-child::after,
  895. .ant-btn-link[disabled]:hover > a:only-child::after,
  896. .ant-btn-link[disabled]:focus > a:only-child::after,
  897. .ant-btn-link[disabled]:active > a:only-child::after {
  898. position: absolute;
  899. top: 0;
  900. right: 0;
  901. bottom: 0;
  902. left: 0;
  903. background: transparent;
  904. content: '';
  905. }
  906. .ant-btn-link:hover {
  907. background: transparent;
  908. }
  909. .ant-btn-link:hover,
  910. .ant-btn-link:focus,
  911. .ant-btn-link:active {
  912. border-color: transparent;
  913. }
  914. .ant-btn-link[disabled],
  915. .ant-btn-link[disabled]:hover,
  916. .ant-btn-link[disabled]:focus,
  917. .ant-btn-link[disabled]:active {
  918. color: rgba(0, 0, 0, 0.25);
  919. border-color: transparent;
  920. background: transparent;
  921. text-shadow: none;
  922. box-shadow: none;
  923. }
  924. .ant-btn-link[disabled] > a:only-child,
  925. .ant-btn-link[disabled]:hover > a:only-child,
  926. .ant-btn-link[disabled]:focus > a:only-child,
  927. .ant-btn-link[disabled]:active > a:only-child {
  928. color: currentcolor;
  929. }
  930. .ant-btn-link[disabled] > a:only-child::after,
  931. .ant-btn-link[disabled]:hover > a:only-child::after,
  932. .ant-btn-link[disabled]:focus > a:only-child::after,
  933. .ant-btn-link[disabled]:active > a:only-child::after {
  934. position: absolute;
  935. top: 0;
  936. right: 0;
  937. bottom: 0;
  938. left: 0;
  939. background: transparent;
  940. content: '';
  941. }
  942. .ant-btn-text {
  943. color: rgba(0, 0, 0, 0.85);
  944. border-color: transparent;
  945. background: transparent;
  946. box-shadow: none;
  947. }
  948. .ant-btn-text > a:only-child {
  949. color: currentcolor;
  950. }
  951. .ant-btn-text > a:only-child::after {
  952. position: absolute;
  953. top: 0;
  954. right: 0;
  955. bottom: 0;
  956. left: 0;
  957. background: transparent;
  958. content: '';
  959. }
  960. .ant-btn-text:hover,
  961. .ant-btn-text:focus {
  962. color: #40a9ff;
  963. border-color: #40a9ff;
  964. background: transparent;
  965. }
  966. .ant-btn-text:hover > a:only-child,
  967. .ant-btn-text:focus > a:only-child {
  968. color: currentcolor;
  969. }
  970. .ant-btn-text:hover > a:only-child::after,
  971. .ant-btn-text:focus > a:only-child::after {
  972. position: absolute;
  973. top: 0;
  974. right: 0;
  975. bottom: 0;
  976. left: 0;
  977. background: transparent;
  978. content: '';
  979. }
  980. .ant-btn-text:active {
  981. color: #096dd9;
  982. border-color: #096dd9;
  983. background: transparent;
  984. }
  985. .ant-btn-text:active > a:only-child {
  986. color: currentcolor;
  987. }
  988. .ant-btn-text:active > a:only-child::after {
  989. position: absolute;
  990. top: 0;
  991. right: 0;
  992. bottom: 0;
  993. left: 0;
  994. background: transparent;
  995. content: '';
  996. }
  997. .ant-btn-text[disabled],
  998. .ant-btn-text[disabled]:hover,
  999. .ant-btn-text[disabled]:focus,
  1000. .ant-btn-text[disabled]:active {
  1001. color: rgba(0, 0, 0, 0.25);
  1002. border-color: #d9d9d9;
  1003. background: #f5f5f5;
  1004. text-shadow: none;
  1005. box-shadow: none;
  1006. }
  1007. .ant-btn-text[disabled] > a:only-child,
  1008. .ant-btn-text[disabled]:hover > a:only-child,
  1009. .ant-btn-text[disabled]:focus > a:only-child,
  1010. .ant-btn-text[disabled]:active > a:only-child {
  1011. color: currentcolor;
  1012. }
  1013. .ant-btn-text[disabled] > a:only-child::after,
  1014. .ant-btn-text[disabled]:hover > a:only-child::after,
  1015. .ant-btn-text[disabled]:focus > a:only-child::after,
  1016. .ant-btn-text[disabled]:active > a:only-child::after {
  1017. position: absolute;
  1018. top: 0;
  1019. right: 0;
  1020. bottom: 0;
  1021. left: 0;
  1022. background: transparent;
  1023. content: '';
  1024. }
  1025. .ant-btn-text:hover,
  1026. .ant-btn-text:focus {
  1027. color: rgba(0, 0, 0, 0.85);
  1028. background: rgba(0, 0, 0, 0.018);
  1029. border-color: transparent;
  1030. }
  1031. .ant-btn-text:active {
  1032. color: rgba(0, 0, 0, 0.85);
  1033. background: rgba(0, 0, 0, 0.028);
  1034. border-color: transparent;
  1035. }
  1036. .ant-btn-text[disabled],
  1037. .ant-btn-text[disabled]:hover,
  1038. .ant-btn-text[disabled]:focus,
  1039. .ant-btn-text[disabled]:active {
  1040. color: rgba(0, 0, 0, 0.25);
  1041. border-color: transparent;
  1042. background: transparent;
  1043. text-shadow: none;
  1044. box-shadow: none;
  1045. }
  1046. .ant-btn-text[disabled] > a:only-child,
  1047. .ant-btn-text[disabled]:hover > a:only-child,
  1048. .ant-btn-text[disabled]:focus > a:only-child,
  1049. .ant-btn-text[disabled]:active > a:only-child {
  1050. color: currentcolor;
  1051. }
  1052. .ant-btn-text[disabled] > a:only-child::after,
  1053. .ant-btn-text[disabled]:hover > a:only-child::after,
  1054. .ant-btn-text[disabled]:focus > a:only-child::after,
  1055. .ant-btn-text[disabled]:active > a:only-child::after {
  1056. position: absolute;
  1057. top: 0;
  1058. right: 0;
  1059. bottom: 0;
  1060. left: 0;
  1061. background: transparent;
  1062. content: '';
  1063. }
  1064. .ant-btn-dangerous {
  1065. color: #ff4d4f;
  1066. border-color: #ff4d4f;
  1067. background: #fff;
  1068. }
  1069. .ant-btn-dangerous > a:only-child {
  1070. color: currentcolor;
  1071. }
  1072. .ant-btn-dangerous > a:only-child::after {
  1073. position: absolute;
  1074. top: 0;
  1075. right: 0;
  1076. bottom: 0;
  1077. left: 0;
  1078. background: transparent;
  1079. content: '';
  1080. }
  1081. .ant-btn-dangerous:hover,
  1082. .ant-btn-dangerous:focus {
  1083. color: #ff7875;
  1084. border-color: #ff7875;
  1085. background: #fff;
  1086. }
  1087. .ant-btn-dangerous:hover > a:only-child,
  1088. .ant-btn-dangerous:focus > a:only-child {
  1089. color: currentcolor;
  1090. }
  1091. .ant-btn-dangerous:hover > a:only-child::after,
  1092. .ant-btn-dangerous:focus > a:only-child::after {
  1093. position: absolute;
  1094. top: 0;
  1095. right: 0;
  1096. bottom: 0;
  1097. left: 0;
  1098. background: transparent;
  1099. content: '';
  1100. }
  1101. .ant-btn-dangerous:active {
  1102. color: #d9363e;
  1103. border-color: #d9363e;
  1104. background: #fff;
  1105. }
  1106. .ant-btn-dangerous:active > a:only-child {
  1107. color: currentcolor;
  1108. }
  1109. .ant-btn-dangerous:active > a:only-child::after {
  1110. position: absolute;
  1111. top: 0;
  1112. right: 0;
  1113. bottom: 0;
  1114. left: 0;
  1115. background: transparent;
  1116. content: '';
  1117. }
  1118. .ant-btn-dangerous[disabled],
  1119. .ant-btn-dangerous[disabled]:hover,
  1120. .ant-btn-dangerous[disabled]:focus,
  1121. .ant-btn-dangerous[disabled]:active {
  1122. color: rgba(0, 0, 0, 0.25);
  1123. border-color: #d9d9d9;
  1124. background: #f5f5f5;
  1125. text-shadow: none;
  1126. box-shadow: none;
  1127. }
  1128. .ant-btn-dangerous[disabled] > a:only-child,
  1129. .ant-btn-dangerous[disabled]:hover > a:only-child,
  1130. .ant-btn-dangerous[disabled]:focus > a:only-child,
  1131. .ant-btn-dangerous[disabled]:active > a:only-child {
  1132. color: currentcolor;
  1133. }
  1134. .ant-btn-dangerous[disabled] > a:only-child::after,
  1135. .ant-btn-dangerous[disabled]:hover > a:only-child::after,
  1136. .ant-btn-dangerous[disabled]:focus > a:only-child::after,
  1137. .ant-btn-dangerous[disabled]:active > a:only-child::after {
  1138. position: absolute;
  1139. top: 0;
  1140. right: 0;
  1141. bottom: 0;
  1142. left: 0;
  1143. background: transparent;
  1144. content: '';
  1145. }
  1146. .ant-btn-dangerous.ant-btn-primary {
  1147. color: #fff;
  1148. border-color: #ff4d4f;
  1149. background: #ff4d4f;
  1150. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  1151. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  1152. }
  1153. .ant-btn-dangerous.ant-btn-primary > a:only-child {
  1154. color: currentcolor;
  1155. }
  1156. .ant-btn-dangerous.ant-btn-primary > a:only-child::after {
  1157. position: absolute;
  1158. top: 0;
  1159. right: 0;
  1160. bottom: 0;
  1161. left: 0;
  1162. background: transparent;
  1163. content: '';
  1164. }
  1165. .ant-btn-dangerous.ant-btn-primary:hover,
  1166. .ant-btn-dangerous.ant-btn-primary:focus {
  1167. color: #fff;
  1168. border-color: #ff7875;
  1169. background: #ff7875;
  1170. }
  1171. .ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
  1172. .ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
  1173. color: currentcolor;
  1174. }
  1175. .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
  1176. .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
  1177. position: absolute;
  1178. top: 0;
  1179. right: 0;
  1180. bottom: 0;
  1181. left: 0;
  1182. background: transparent;
  1183. content: '';
  1184. }
  1185. .ant-btn-dangerous.ant-btn-primary:active {
  1186. color: #fff;
  1187. border-color: #d9363e;
  1188. background: #d9363e;
  1189. }
  1190. .ant-btn-dangerous.ant-btn-primary:active > a:only-child {
  1191. color: currentcolor;
  1192. }
  1193. .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
  1194. position: absolute;
  1195. top: 0;
  1196. right: 0;
  1197. bottom: 0;
  1198. left: 0;
  1199. background: transparent;
  1200. content: '';
  1201. }
  1202. .ant-btn-dangerous.ant-btn-primary[disabled],
  1203. .ant-btn-dangerous.ant-btn-primary[disabled]:hover,
  1204. .ant-btn-dangerous.ant-btn-primary[disabled]:focus,
  1205. .ant-btn-dangerous.ant-btn-primary[disabled]:active {
  1206. color: rgba(0, 0, 0, 0.25);
  1207. border-color: #d9d9d9;
  1208. background: #f5f5f5;
  1209. text-shadow: none;
  1210. box-shadow: none;
  1211. }
  1212. .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child,
  1213. .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
  1214. .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
  1215. .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
  1216. color: currentcolor;
  1217. }
  1218. .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
  1219. .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
  1220. .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after,
  1221. .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after {
  1222. position: absolute;
  1223. top: 0;
  1224. right: 0;
  1225. bottom: 0;
  1226. left: 0;
  1227. background: transparent;
  1228. content: '';
  1229. }
  1230. .ant-btn-dangerous.ant-btn-link {
  1231. color: #ff4d4f;
  1232. border-color: transparent;
  1233. background: transparent;
  1234. box-shadow: none;
  1235. }
  1236. .ant-btn-dangerous.ant-btn-link > a:only-child {
  1237. color: currentcolor;
  1238. }
  1239. .ant-btn-dangerous.ant-btn-link > a:only-child::after {
  1240. position: absolute;
  1241. top: 0;
  1242. right: 0;
  1243. bottom: 0;
  1244. left: 0;
  1245. background: transparent;
  1246. content: '';
  1247. }
  1248. .ant-btn-dangerous.ant-btn-link:hover,
  1249. .ant-btn-dangerous.ant-btn-link:focus {
  1250. color: #40a9ff;
  1251. border-color: #40a9ff;
  1252. background: transparent;
  1253. }
  1254. .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
  1255. .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  1256. color: currentcolor;
  1257. }
  1258. .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
  1259. .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  1260. position: absolute;
  1261. top: 0;
  1262. right: 0;
  1263. bottom: 0;
  1264. left: 0;
  1265. background: transparent;
  1266. content: '';
  1267. }
  1268. .ant-btn-dangerous.ant-btn-link:active {
  1269. color: #096dd9;
  1270. border-color: #096dd9;
  1271. background: transparent;
  1272. }
  1273. .ant-btn-dangerous.ant-btn-link:active > a:only-child {
  1274. color: currentcolor;
  1275. }
  1276. .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  1277. position: absolute;
  1278. top: 0;
  1279. right: 0;
  1280. bottom: 0;
  1281. left: 0;
  1282. background: transparent;
  1283. content: '';
  1284. }
  1285. .ant-btn-dangerous.ant-btn-link[disabled],
  1286. .ant-btn-dangerous.ant-btn-link[disabled]:hover,
  1287. .ant-btn-dangerous.ant-btn-link[disabled]:focus,
  1288. .ant-btn-dangerous.ant-btn-link[disabled]:active {
  1289. color: rgba(0, 0, 0, 0.25);
  1290. border-color: #d9d9d9;
  1291. background: #f5f5f5;
  1292. text-shadow: none;
  1293. box-shadow: none;
  1294. }
  1295. .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
  1296. .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
  1297. .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
  1298. .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  1299. color: currentcolor;
  1300. }
  1301. .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
  1302. .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
  1303. .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
  1304. .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  1305. position: absolute;
  1306. top: 0;
  1307. right: 0;
  1308. bottom: 0;
  1309. left: 0;
  1310. background: transparent;
  1311. content: '';
  1312. }
  1313. .ant-btn-dangerous.ant-btn-link:hover,
  1314. .ant-btn-dangerous.ant-btn-link:focus {
  1315. color: #ff7875;
  1316. border-color: transparent;
  1317. background: transparent;
  1318. }
  1319. .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
  1320. .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  1321. color: currentcolor;
  1322. }
  1323. .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
  1324. .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  1325. position: absolute;
  1326. top: 0;
  1327. right: 0;
  1328. bottom: 0;
  1329. left: 0;
  1330. background: transparent;
  1331. content: '';
  1332. }
  1333. .ant-btn-dangerous.ant-btn-link:active {
  1334. color: #d9363e;
  1335. border-color: transparent;
  1336. background: transparent;
  1337. }
  1338. .ant-btn-dangerous.ant-btn-link:active > a:only-child {
  1339. color: currentcolor;
  1340. }
  1341. .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  1342. position: absolute;
  1343. top: 0;
  1344. right: 0;
  1345. bottom: 0;
  1346. left: 0;
  1347. background: transparent;
  1348. content: '';
  1349. }
  1350. .ant-btn-dangerous.ant-btn-link[disabled],
  1351. .ant-btn-dangerous.ant-btn-link[disabled]:hover,
  1352. .ant-btn-dangerous.ant-btn-link[disabled]:focus,
  1353. .ant-btn-dangerous.ant-btn-link[disabled]:active {
  1354. color: rgba(0, 0, 0, 0.25);
  1355. border-color: transparent;
  1356. background: transparent;
  1357. text-shadow: none;
  1358. box-shadow: none;
  1359. }
  1360. .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
  1361. .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
  1362. .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
  1363. .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  1364. color: currentcolor;
  1365. }
  1366. .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
  1367. .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
  1368. .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
  1369. .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  1370. position: absolute;
  1371. top: 0;
  1372. right: 0;
  1373. bottom: 0;
  1374. left: 0;
  1375. background: transparent;
  1376. content: '';
  1377. }
  1378. .ant-btn-dangerous.ant-btn-text {
  1379. color: #ff4d4f;
  1380. border-color: transparent;
  1381. background: transparent;
  1382. box-shadow: none;
  1383. }
  1384. .ant-btn-dangerous.ant-btn-text > a:only-child {
  1385. color: currentcolor;
  1386. }
  1387. .ant-btn-dangerous.ant-btn-text > a:only-child::after {
  1388. position: absolute;
  1389. top: 0;
  1390. right: 0;
  1391. bottom: 0;
  1392. left: 0;
  1393. background: transparent;
  1394. content: '';
  1395. }
  1396. .ant-btn-dangerous.ant-btn-text:hover,
  1397. .ant-btn-dangerous.ant-btn-text:focus {
  1398. color: #40a9ff;
  1399. border-color: #40a9ff;
  1400. background: transparent;
  1401. }
  1402. .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
  1403. .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
  1404. color: currentcolor;
  1405. }
  1406. .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
  1407. .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
  1408. position: absolute;
  1409. top: 0;
  1410. right: 0;
  1411. bottom: 0;
  1412. left: 0;
  1413. background: transparent;
  1414. content: '';
  1415. }
  1416. .ant-btn-dangerous.ant-btn-text:active {
  1417. color: #096dd9;
  1418. border-color: #096dd9;
  1419. background: transparent;
  1420. }
  1421. .ant-btn-dangerous.ant-btn-text:active > a:only-child {
  1422. color: currentcolor;
  1423. }
  1424. .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
  1425. position: absolute;
  1426. top: 0;
  1427. right: 0;
  1428. bottom: 0;
  1429. left: 0;
  1430. background: transparent;
  1431. content: '';
  1432. }
  1433. .ant-btn-dangerous.ant-btn-text[disabled],
  1434. .ant-btn-dangerous.ant-btn-text[disabled]:hover,
  1435. .ant-btn-dangerous.ant-btn-text[disabled]:focus,
  1436. .ant-btn-dangerous.ant-btn-text[disabled]:active {
  1437. color: rgba(0, 0, 0, 0.25);
  1438. border-color: #d9d9d9;
  1439. background: #f5f5f5;
  1440. text-shadow: none;
  1441. box-shadow: none;
  1442. }
  1443. .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
  1444. .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
  1445. .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
  1446. .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
  1447. color: currentcolor;
  1448. }
  1449. .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
  1450. .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
  1451. .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
  1452. .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
  1453. position: absolute;
  1454. top: 0;
  1455. right: 0;
  1456. bottom: 0;
  1457. left: 0;
  1458. background: transparent;
  1459. content: '';
  1460. }
  1461. .ant-btn-dangerous.ant-btn-text:hover,
  1462. .ant-btn-dangerous.ant-btn-text:focus {
  1463. color: #ff7875;
  1464. border-color: transparent;
  1465. background: rgba(0, 0, 0, 0.018);
  1466. }
  1467. .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
  1468. .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
  1469. color: currentcolor;
  1470. }
  1471. .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
  1472. .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
  1473. position: absolute;
  1474. top: 0;
  1475. right: 0;
  1476. bottom: 0;
  1477. left: 0;
  1478. background: transparent;
  1479. content: '';
  1480. }
  1481. .ant-btn-dangerous.ant-btn-text:active {
  1482. color: #d9363e;
  1483. border-color: transparent;
  1484. background: rgba(0, 0, 0, 0.028);
  1485. }
  1486. .ant-btn-dangerous.ant-btn-text:active > a:only-child {
  1487. color: currentcolor;
  1488. }
  1489. .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
  1490. position: absolute;
  1491. top: 0;
  1492. right: 0;
  1493. bottom: 0;
  1494. left: 0;
  1495. background: transparent;
  1496. content: '';
  1497. }
  1498. .ant-btn-dangerous.ant-btn-text[disabled],
  1499. .ant-btn-dangerous.ant-btn-text[disabled]:hover,
  1500. .ant-btn-dangerous.ant-btn-text[disabled]:focus,
  1501. .ant-btn-dangerous.ant-btn-text[disabled]:active {
  1502. color: rgba(0, 0, 0, 0.25);
  1503. border-color: transparent;
  1504. background: transparent;
  1505. text-shadow: none;
  1506. box-shadow: none;
  1507. }
  1508. .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
  1509. .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
  1510. .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
  1511. .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
  1512. color: currentcolor;
  1513. }
  1514. .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
  1515. .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
  1516. .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
  1517. .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
  1518. position: absolute;
  1519. top: 0;
  1520. right: 0;
  1521. bottom: 0;
  1522. left: 0;
  1523. background: transparent;
  1524. content: '';
  1525. }
  1526. .ant-btn-icon-only {
  1527. width: 32px;
  1528. height: 32px;
  1529. padding: 2.4px 0;
  1530. font-size: 16px;
  1531. border-radius: 2px;
  1532. vertical-align: -3px;
  1533. }
  1534. .ant-btn-icon-only > * {
  1535. font-size: 16px;
  1536. }
  1537. .ant-btn-icon-only.ant-btn-lg {
  1538. width: 40px;
  1539. height: 40px;
  1540. padding: 4.9px 0;
  1541. font-size: 18px;
  1542. border-radius: 2px;
  1543. }
  1544. .ant-btn-icon-only.ant-btn-lg > * {
  1545. font-size: 18px;
  1546. }
  1547. .ant-btn-icon-only.ant-btn-sm {
  1548. width: 24px;
  1549. height: 24px;
  1550. padding: 0px 0;
  1551. font-size: 14px;
  1552. border-radius: 2px;
  1553. }
  1554. .ant-btn-icon-only.ant-btn-sm > * {
  1555. font-size: 14px;
  1556. }
  1557. .ant-btn-icon-only > .anticon {
  1558. display: flex;
  1559. justify-content: center;
  1560. }
  1561. .ant-btn-icon-only .anticon-loading {
  1562. padding: 0 !important;
  1563. }
  1564. a.ant-btn-icon-only {
  1565. vertical-align: -1px;
  1566. }
  1567. a.ant-btn-icon-only > .anticon {
  1568. display: inline;
  1569. }
  1570. .ant-btn-round {
  1571. height: 32px;
  1572. padding: 4px 16px;
  1573. font-size: 14px;
  1574. border-radius: 32px;
  1575. }
  1576. .ant-btn-round.ant-btn-lg {
  1577. height: 40px;
  1578. padding: 6.4px 20px;
  1579. font-size: 16px;
  1580. border-radius: 40px;
  1581. }
  1582. .ant-btn-round.ant-btn-sm {
  1583. height: 24px;
  1584. padding: 0px 12px;
  1585. font-size: 14px;
  1586. border-radius: 24px;
  1587. }
  1588. .ant-btn-round.ant-btn-icon-only {
  1589. width: auto;
  1590. }
  1591. .ant-btn-circle {
  1592. min-width: 32px;
  1593. padding-right: 0;
  1594. padding-left: 0;
  1595. text-align: center;
  1596. border-radius: 50%;
  1597. }
  1598. .ant-btn-circle.ant-btn-lg {
  1599. min-width: 40px;
  1600. border-radius: 50%;
  1601. }
  1602. .ant-btn-circle.ant-btn-sm {
  1603. min-width: 24px;
  1604. border-radius: 50%;
  1605. }
  1606. .ant-btn::before {
  1607. position: absolute;
  1608. top: -1px;
  1609. right: -1px;
  1610. bottom: -1px;
  1611. left: -1px;
  1612. z-index: 1;
  1613. display: none;
  1614. background: #fff;
  1615. border-radius: inherit;
  1616. opacity: 0.35;
  1617. transition: opacity 0.2s;
  1618. content: '';
  1619. pointer-events: none;
  1620. }
  1621. .ant-btn .anticon {
  1622. transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  1623. }
  1624. .ant-btn .anticon.anticon-plus > svg,
  1625. .ant-btn .anticon.anticon-minus > svg {
  1626. shape-rendering: optimizespeed;
  1627. }
  1628. .ant-btn.ant-btn-loading {
  1629. position: relative;
  1630. cursor: default;
  1631. }
  1632. .ant-btn.ant-btn-loading::before {
  1633. display: block;
  1634. }
  1635. .ant-btn > .ant-btn-loading-icon {
  1636. 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);
  1637. }
  1638. .ant-btn > .ant-btn-loading-icon .anticon {
  1639. padding-right: 8px;
  1640. animation: none;
  1641. }
  1642. .ant-btn > .ant-btn-loading-icon .anticon svg {
  1643. animation: loadingCircle 1s infinite linear;
  1644. }
  1645. .ant-btn-group {
  1646. position: relative;
  1647. display: inline-flex;
  1648. }
  1649. .ant-btn-group > .ant-btn,
  1650. .ant-btn-group > span > .ant-btn {
  1651. position: relative;
  1652. }
  1653. .ant-btn-group > .ant-btn:hover,
  1654. .ant-btn-group > span > .ant-btn:hover,
  1655. .ant-btn-group > .ant-btn:focus,
  1656. .ant-btn-group > span > .ant-btn:focus,
  1657. .ant-btn-group > .ant-btn:active,
  1658. .ant-btn-group > span > .ant-btn:active {
  1659. z-index: 2;
  1660. }
  1661. .ant-btn-group > .ant-btn[disabled],
  1662. .ant-btn-group > span > .ant-btn[disabled] {
  1663. z-index: 0;
  1664. }
  1665. .ant-btn-group .ant-btn-icon-only {
  1666. font-size: 14px;
  1667. }
  1668. .ant-btn-group .ant-btn + .ant-btn,
  1669. .ant-btn + .ant-btn-group,
  1670. .ant-btn-group span + .ant-btn,
  1671. .ant-btn-group .ant-btn + span,
  1672. .ant-btn-group > span + span,
  1673. .ant-btn-group + .ant-btn,
  1674. .ant-btn-group + .ant-btn-group {
  1675. margin-left: -1px;
  1676. }
  1677. .ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
  1678. border-left-color: transparent;
  1679. }
  1680. .ant-btn-group .ant-btn {
  1681. border-radius: 0;
  1682. }
  1683. .ant-btn-group > .ant-btn:first-child,
  1684. .ant-btn-group > span:first-child > .ant-btn {
  1685. margin-left: 0;
  1686. }
  1687. .ant-btn-group > .ant-btn:only-child {
  1688. border-radius: 2px;
  1689. }
  1690. .ant-btn-group > span:only-child > .ant-btn {
  1691. border-radius: 2px;
  1692. }
  1693. .ant-btn-group > .ant-btn:first-child:not(:last-child),
  1694. .ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
  1695. border-top-left-radius: 2px;
  1696. border-bottom-left-radius: 2px;
  1697. }
  1698. .ant-btn-group > .ant-btn:last-child:not(:first-child),
  1699. .ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
  1700. border-top-right-radius: 2px;
  1701. border-bottom-right-radius: 2px;
  1702. }
  1703. .ant-btn-group-sm > .ant-btn:only-child {
  1704. border-radius: 2px;
  1705. }
  1706. .ant-btn-group-sm > span:only-child > .ant-btn {
  1707. border-radius: 2px;
  1708. }
  1709. .ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
  1710. .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
  1711. border-top-left-radius: 2px;
  1712. border-bottom-left-radius: 2px;
  1713. }
  1714. .ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
  1715. .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
  1716. border-top-right-radius: 2px;
  1717. border-bottom-right-radius: 2px;
  1718. }
  1719. .ant-btn-group > .ant-btn-group {
  1720. float: left;
  1721. }
  1722. .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  1723. border-radius: 0;
  1724. }
  1725. .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  1726. padding-right: 8px;
  1727. border-top-right-radius: 0;
  1728. border-bottom-right-radius: 0;
  1729. }
  1730. .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  1731. padding-left: 8px;
  1732. border-top-left-radius: 0;
  1733. border-bottom-left-radius: 0;
  1734. }
  1735. .ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn,
  1736. .ant-btn-rtl.ant-btn + .ant-btn-group,
  1737. .ant-btn-rtl.ant-btn-group span + .ant-btn,
  1738. .ant-btn-rtl.ant-btn-group .ant-btn + span,
  1739. .ant-btn-rtl.ant-btn-group > span + span,
  1740. .ant-btn-rtl.ant-btn-group + .ant-btn,
  1741. .ant-btn-rtl.ant-btn-group + .ant-btn-group,
  1742. .ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn,
  1743. .ant-btn-group-rtl.ant-btn + .ant-btn-group,
  1744. .ant-btn-group-rtl.ant-btn-group span + .ant-btn,
  1745. .ant-btn-group-rtl.ant-btn-group .ant-btn + span,
  1746. .ant-btn-group-rtl.ant-btn-group > span + span,
  1747. .ant-btn-group-rtl.ant-btn-group + .ant-btn,
  1748. .ant-btn-group-rtl.ant-btn-group + .ant-btn-group {
  1749. margin-right: -1px;
  1750. margin-left: auto;
  1751. }
  1752. .ant-btn-group.ant-btn-group-rtl {
  1753. direction: rtl;
  1754. }
  1755. .ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
  1756. .ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
  1757. border-radius: 0 2px 2px 0;
  1758. }
  1759. .ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
  1760. .ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
  1761. border-radius: 2px 0 0 2px;
  1762. }
  1763. .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
  1764. .ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
  1765. border-radius: 0 2px 2px 0;
  1766. }
  1767. .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
  1768. .ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
  1769. border-radius: 2px 0 0 2px;
  1770. }
  1771. .ant-btn:focus > span,
  1772. .ant-btn:active > span {
  1773. position: relative;
  1774. }
  1775. .ant-btn > .anticon + span,
  1776. .ant-btn > span + .anticon {
  1777. margin-left: 8px;
  1778. }
  1779. .ant-btn.ant-btn-background-ghost {
  1780. color: #fff;
  1781. border-color: #fff;
  1782. }
  1783. .ant-btn.ant-btn-background-ghost,
  1784. .ant-btn.ant-btn-background-ghost:hover,
  1785. .ant-btn.ant-btn-background-ghost:active,
  1786. .ant-btn.ant-btn-background-ghost:focus {
  1787. background: transparent;
  1788. }
  1789. .ant-btn.ant-btn-background-ghost:hover,
  1790. .ant-btn.ant-btn-background-ghost:focus {
  1791. color: #40a9ff;
  1792. border-color: #40a9ff;
  1793. }
  1794. .ant-btn.ant-btn-background-ghost:active {
  1795. color: #096dd9;
  1796. border-color: #096dd9;
  1797. }
  1798. .ant-btn.ant-btn-background-ghost[disabled] {
  1799. color: rgba(0, 0, 0, 0.25);
  1800. background: transparent;
  1801. border-color: #d9d9d9;
  1802. }
  1803. .ant-btn-background-ghost.ant-btn-primary {
  1804. color: #1890ff;
  1805. border-color: #1890ff;
  1806. text-shadow: none;
  1807. }
  1808. .ant-btn-background-ghost.ant-btn-primary > a:only-child {
  1809. color: currentcolor;
  1810. }
  1811. .ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
  1812. position: absolute;
  1813. top: 0;
  1814. right: 0;
  1815. bottom: 0;
  1816. left: 0;
  1817. background: transparent;
  1818. content: '';
  1819. }
  1820. .ant-btn-background-ghost.ant-btn-primary:hover,
  1821. .ant-btn-background-ghost.ant-btn-primary:focus {
  1822. color: #40a9ff;
  1823. border-color: #40a9ff;
  1824. }
  1825. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
  1826. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
  1827. color: currentcolor;
  1828. }
  1829. .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
  1830. .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
  1831. position: absolute;
  1832. top: 0;
  1833. right: 0;
  1834. bottom: 0;
  1835. left: 0;
  1836. background: transparent;
  1837. content: '';
  1838. }
  1839. .ant-btn-background-ghost.ant-btn-primary:active {
  1840. color: #096dd9;
  1841. border-color: #096dd9;
  1842. }
  1843. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
  1844. color: currentcolor;
  1845. }
  1846. .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
  1847. position: absolute;
  1848. top: 0;
  1849. right: 0;
  1850. bottom: 0;
  1851. left: 0;
  1852. background: transparent;
  1853. content: '';
  1854. }
  1855. .ant-btn-background-ghost.ant-btn-primary[disabled],
  1856. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
  1857. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
  1858. .ant-btn-background-ghost.ant-btn-primary[disabled]:active {
  1859. color: rgba(0, 0, 0, 0.25);
  1860. border-color: #d9d9d9;
  1861. background: #f5f5f5;
  1862. text-shadow: none;
  1863. box-shadow: none;
  1864. }
  1865. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
  1866. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
  1867. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
  1868. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
  1869. color: currentcolor;
  1870. }
  1871. .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
  1872. .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
  1873. .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after,
  1874. .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after {
  1875. position: absolute;
  1876. top: 0;
  1877. right: 0;
  1878. bottom: 0;
  1879. left: 0;
  1880. background: transparent;
  1881. content: '';
  1882. }
  1883. .ant-btn-background-ghost.ant-btn-danger {
  1884. color: #ff4d4f;
  1885. border-color: #ff4d4f;
  1886. text-shadow: none;
  1887. }
  1888. .ant-btn-background-ghost.ant-btn-danger > a:only-child {
  1889. color: currentcolor;
  1890. }
  1891. .ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
  1892. position: absolute;
  1893. top: 0;
  1894. right: 0;
  1895. bottom: 0;
  1896. left: 0;
  1897. background: transparent;
  1898. content: '';
  1899. }
  1900. .ant-btn-background-ghost.ant-btn-danger:hover,
  1901. .ant-btn-background-ghost.ant-btn-danger:focus {
  1902. color: #ff7875;
  1903. border-color: #ff7875;
  1904. }
  1905. .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
  1906. .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
  1907. color: currentcolor;
  1908. }
  1909. .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
  1910. .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
  1911. position: absolute;
  1912. top: 0;
  1913. right: 0;
  1914. bottom: 0;
  1915. left: 0;
  1916. background: transparent;
  1917. content: '';
  1918. }
  1919. .ant-btn-background-ghost.ant-btn-danger:active {
  1920. color: #d9363e;
  1921. border-color: #d9363e;
  1922. }
  1923. .ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
  1924. color: currentcolor;
  1925. }
  1926. .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
  1927. position: absolute;
  1928. top: 0;
  1929. right: 0;
  1930. bottom: 0;
  1931. left: 0;
  1932. background: transparent;
  1933. content: '';
  1934. }
  1935. .ant-btn-background-ghost.ant-btn-danger[disabled],
  1936. .ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
  1937. .ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
  1938. .ant-btn-background-ghost.ant-btn-danger[disabled]:active {
  1939. color: rgba(0, 0, 0, 0.25);
  1940. border-color: #d9d9d9;
  1941. background: #f5f5f5;
  1942. text-shadow: none;
  1943. box-shadow: none;
  1944. }
  1945. .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
  1946. .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
  1947. .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
  1948. .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
  1949. color: currentcolor;
  1950. }
  1951. .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
  1952. .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
  1953. .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after,
  1954. .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after {
  1955. position: absolute;
  1956. top: 0;
  1957. right: 0;
  1958. bottom: 0;
  1959. left: 0;
  1960. background: transparent;
  1961. content: '';
  1962. }
  1963. .ant-btn-background-ghost.ant-btn-dangerous {
  1964. color: #ff4d4f;
  1965. border-color: #ff4d4f;
  1966. text-shadow: none;
  1967. }
  1968. .ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
  1969. color: currentcolor;
  1970. }
  1971. .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
  1972. position: absolute;
  1973. top: 0;
  1974. right: 0;
  1975. bottom: 0;
  1976. left: 0;
  1977. background: transparent;
  1978. content: '';
  1979. }
  1980. .ant-btn-background-ghost.ant-btn-dangerous:hover,
  1981. .ant-btn-background-ghost.ant-btn-dangerous:focus {
  1982. color: #ff7875;
  1983. border-color: #ff7875;
  1984. }
  1985. .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
  1986. .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
  1987. color: currentcolor;
  1988. }
  1989. .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
  1990. .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
  1991. position: absolute;
  1992. top: 0;
  1993. right: 0;
  1994. bottom: 0;
  1995. left: 0;
  1996. background: transparent;
  1997. content: '';
  1998. }
  1999. .ant-btn-background-ghost.ant-btn-dangerous:active {
  2000. color: #d9363e;
  2001. border-color: #d9363e;
  2002. }
  2003. .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
  2004. color: currentcolor;
  2005. }
  2006. .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
  2007. position: absolute;
  2008. top: 0;
  2009. right: 0;
  2010. bottom: 0;
  2011. left: 0;
  2012. background: transparent;
  2013. content: '';
  2014. }
  2015. .ant-btn-background-ghost.ant-btn-dangerous[disabled],
  2016. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover,
  2017. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
  2018. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
  2019. color: rgba(0, 0, 0, 0.25);
  2020. border-color: #d9d9d9;
  2021. background: #f5f5f5;
  2022. text-shadow: none;
  2023. box-shadow: none;
  2024. }
  2025. .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child,
  2026. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
  2027. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
  2028. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
  2029. color: currentcolor;
  2030. }
  2031. .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
  2032. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
  2033. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child::after,
  2034. .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child::after {
  2035. position: absolute;
  2036. top: 0;
  2037. right: 0;
  2038. bottom: 0;
  2039. left: 0;
  2040. background: transparent;
  2041. content: '';
  2042. }
  2043. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
  2044. color: #ff4d4f;
  2045. border-color: transparent;
  2046. text-shadow: none;
  2047. }
  2048. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
  2049. color: currentcolor;
  2050. }
  2051. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
  2052. position: absolute;
  2053. top: 0;
  2054. right: 0;
  2055. bottom: 0;
  2056. left: 0;
  2057. background: transparent;
  2058. content: '';
  2059. }
  2060. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
  2061. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
  2062. color: #ff7875;
  2063. border-color: transparent;
  2064. }
  2065. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
  2066. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  2067. color: currentcolor;
  2068. }
  2069. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
  2070. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  2071. position: absolute;
  2072. top: 0;
  2073. right: 0;
  2074. bottom: 0;
  2075. left: 0;
  2076. background: transparent;
  2077. content: '';
  2078. }
  2079. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
  2080. color: #d9363e;
  2081. border-color: transparent;
  2082. }
  2083. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
  2084. color: currentcolor;
  2085. }
  2086. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  2087. position: absolute;
  2088. top: 0;
  2089. right: 0;
  2090. bottom: 0;
  2091. left: 0;
  2092. background: transparent;
  2093. content: '';
  2094. }
  2095. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],
  2096. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover,
  2097. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
  2098. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
  2099. color: rgba(0, 0, 0, 0.25);
  2100. border-color: #d9d9d9;
  2101. background: #f5f5f5;
  2102. text-shadow: none;
  2103. box-shadow: none;
  2104. }
  2105. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
  2106. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
  2107. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
  2108. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  2109. color: currentcolor;
  2110. }
  2111. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
  2112. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
  2113. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
  2114. .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  2115. position: absolute;
  2116. top: 0;
  2117. right: 0;
  2118. bottom: 0;
  2119. left: 0;
  2120. background: transparent;
  2121. content: '';
  2122. }
  2123. .ant-btn-two-chinese-chars::first-letter {
  2124. letter-spacing: 0.34em;
  2125. }
  2126. .ant-btn-two-chinese-chars > *:not(.anticon) {
  2127. margin-right: -0.34em;
  2128. letter-spacing: 0.34em;
  2129. }
  2130. .ant-btn.ant-btn-block {
  2131. width: 100%;
  2132. }
  2133. .ant-btn:empty {
  2134. display: inline-block;
  2135. width: 0;
  2136. visibility: hidden;
  2137. content: '\a0';
  2138. }
  2139. a.ant-btn {
  2140. padding-top: 0.01px !important;
  2141. line-height: 30px;
  2142. }
  2143. a.ant-btn-disabled {
  2144. cursor: not-allowed;
  2145. }
  2146. a.ant-btn-disabled > * {
  2147. pointer-events: none;
  2148. }
  2149. a.ant-btn-disabled,
  2150. a.ant-btn-disabled:hover,
  2151. a.ant-btn-disabled:focus,
  2152. a.ant-btn-disabled:active {
  2153. color: rgba(0, 0, 0, 0.25);
  2154. border-color: transparent;
  2155. background: transparent;
  2156. text-shadow: none;
  2157. box-shadow: none;
  2158. }
  2159. a.ant-btn-disabled > a:only-child,
  2160. a.ant-btn-disabled:hover > a:only-child,
  2161. a.ant-btn-disabled:focus > a:only-child,
  2162. a.ant-btn-disabled:active > a:only-child {
  2163. color: currentcolor;
  2164. }
  2165. a.ant-btn-disabled > a:only-child::after,
  2166. a.ant-btn-disabled:hover > a:only-child::after,
  2167. a.ant-btn-disabled:focus > a:only-child::after,
  2168. a.ant-btn-disabled:active > a:only-child::after {
  2169. position: absolute;
  2170. top: 0;
  2171. right: 0;
  2172. bottom: 0;
  2173. left: 0;
  2174. background: transparent;
  2175. content: '';
  2176. }
  2177. a.ant-btn-lg {
  2178. line-height: 38px;
  2179. }
  2180. a.ant-btn-sm {
  2181. line-height: 22px;
  2182. }
  2183. .ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
  2184. margin-right: -1px;
  2185. }
  2186. .ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl {
  2187. margin-left: -1px;
  2188. }
  2189. .ant-btn-compact-item:hover,
  2190. .ant-btn-compact-item:focus,
  2191. .ant-btn-compact-item:active {
  2192. z-index: 2;
  2193. }
  2194. .ant-btn-compact-item[disabled] {
  2195. z-index: 0;
  2196. }
  2197. .ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn {
  2198. border-radius: 0;
  2199. }
  2200. .ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
  2201. border-top-right-radius: 0;
  2202. border-bottom-right-radius: 0;
  2203. }
  2204. .ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl) {
  2205. border-top-left-radius: 0;
  2206. border-bottom-left-radius: 0;
  2207. }
  2208. .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item) {
  2209. border-top-left-radius: 0;
  2210. border-bottom-left-radius: 0;
  2211. }
  2212. .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item) {
  2213. border-top-right-radius: 0;
  2214. border-bottom-right-radius: 0;
  2215. }
  2216. .ant-btn-icon-only.ant-btn-compact-item {
  2217. flex: none;
  2218. }
  2219. .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']) {
  2220. position: relative;
  2221. }
  2222. .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 {
  2223. position: absolute;
  2224. top: -1px;
  2225. left: -1px;
  2226. display: inline-block;
  2227. width: 1px;
  2228. height: calc(100% + 1px * 2);
  2229. background-color: #40a9ff;
  2230. content: ' ';
  2231. }
  2232. .ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
  2233. border-top-left-radius: 0;
  2234. border-bottom-left-radius: 0;
  2235. }
  2236. .ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item) {
  2237. border-top-right-radius: 0;
  2238. border-bottom-right-radius: 0;
  2239. }
  2240. .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) {
  2241. border-top-left-radius: 0;
  2242. border-bottom-left-radius: 0;
  2243. }
  2244. .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) {
  2245. border-top-right-radius: 0;
  2246. border-bottom-right-radius: 0;
  2247. }
  2248. .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled]) + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
  2249. right: -1px;
  2250. }
  2251. .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
  2252. margin-bottom: -1px;
  2253. }
  2254. .ant-btn-compact-vertical-item:hover,
  2255. .ant-btn-compact-vertical-item:focus,
  2256. .ant-btn-compact-vertical-item:active {
  2257. z-index: 2;
  2258. }
  2259. .ant-btn-compact-vertical-item[disabled] {
  2260. z-index: 0;
  2261. }
  2262. .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item) {
  2263. border-radius: 0;
  2264. }
  2265. .ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item) {
  2266. border-bottom-right-radius: 0;
  2267. border-bottom-left-radius: 0;
  2268. }
  2269. .ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item) {
  2270. border-top-left-radius: 0;
  2271. border-top-right-radius: 0;
  2272. }
  2273. .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']) {
  2274. position: relative;
  2275. }
  2276. .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 {
  2277. position: absolute;
  2278. top: -1px;
  2279. left: -1px;
  2280. display: inline-block;
  2281. width: calc(100% + 1px * 2);
  2282. height: 1px;
  2283. background-color: #40a9ff;
  2284. content: ' ';
  2285. }
  2286. .ant-btn-rtl {
  2287. direction: rtl;
  2288. }
  2289. .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  2290. .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
  2291. border-right-color: #40a9ff;
  2292. border-left-color: #d9d9d9;
  2293. }
  2294. .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  2295. .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  2296. border-right-color: #d9d9d9;
  2297. border-left-color: #40a9ff;
  2298. }
  2299. .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
  2300. padding-right: 0;
  2301. padding-left: 8px;
  2302. }
  2303. .ant-btn-rtl.ant-btn > .anticon + span,
  2304. .ant-btn-rtl.ant-btn > span + .anticon {
  2305. margin-right: 8px;
  2306. margin-left: 0;
  2307. }
  2308. .ant-popover {
  2309. position: relative;
  2310. }