index.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. /* stylelint-disable */
  4. /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
  5. .ant-input-affix-wrapper {
  6. position: relative;
  7. display: inline-block;
  8. width: 100%;
  9. min-width: 0;
  10. padding: 4px 11px;
  11. color: rgba(0, 0, 0, 0.85);
  12. font-size: 14px;
  13. line-height: 1.5715;
  14. background-color: #fff;
  15. background-image: none;
  16. border: 1px solid #d9d9d9;
  17. border-radius: 2px;
  18. transition: all 0.3s;
  19. /* stylelint-disable-next-line selector-no-vendor-prefix */
  20. display: inline-flex;
  21. }
  22. .ant-input-affix-wrapper::-moz-placeholder {
  23. opacity: 1;
  24. }
  25. .ant-input-affix-wrapper::placeholder {
  26. color: #bfbfbf;
  27. -webkit-user-select: none;
  28. -moz-user-select: none;
  29. user-select: none;
  30. }
  31. .ant-input-affix-wrapper:-moz-placeholder-shown {
  32. text-overflow: ellipsis;
  33. }
  34. .ant-input-affix-wrapper:placeholder-shown {
  35. text-overflow: ellipsis;
  36. }
  37. .ant-input-affix-wrapper:hover {
  38. border-color: #40a9ff;
  39. border-right-width: 1px !important;
  40. }
  41. .ant-input-rtl .ant-input-affix-wrapper:hover {
  42. border-right-width: 0;
  43. border-left-width: 1px !important;
  44. }
  45. .ant-input-affix-wrapper:focus,
  46. .ant-input-affix-wrapper-focused {
  47. border-color: #40a9ff;
  48. box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  49. border-right-width: 1px !important;
  50. outline: 0;
  51. }
  52. .ant-input-rtl .ant-input-affix-wrapper:focus,
  53. .ant-input-rtl .ant-input-affix-wrapper-focused {
  54. border-right-width: 0;
  55. border-left-width: 1px !important;
  56. }
  57. .ant-input-affix-wrapper-disabled {
  58. color: rgba(0, 0, 0, 0.25);
  59. background-color: #f5f5f5;
  60. border-color: #d9d9d9;
  61. box-shadow: none;
  62. cursor: not-allowed;
  63. opacity: 1;
  64. }
  65. .ant-input-affix-wrapper-disabled:hover {
  66. border-color: #d9d9d9;
  67. border-right-width: 1px !important;
  68. }
  69. .ant-input-affix-wrapper[disabled] {
  70. color: rgba(0, 0, 0, 0.25);
  71. background-color: #f5f5f5;
  72. border-color: #d9d9d9;
  73. box-shadow: none;
  74. cursor: not-allowed;
  75. opacity: 1;
  76. }
  77. .ant-input-affix-wrapper[disabled]:hover {
  78. border-color: #d9d9d9;
  79. border-right-width: 1px !important;
  80. }
  81. .ant-input-affix-wrapper-borderless,
  82. .ant-input-affix-wrapper-borderless:hover,
  83. .ant-input-affix-wrapper-borderless:focus,
  84. .ant-input-affix-wrapper-borderless-focused,
  85. .ant-input-affix-wrapper-borderless-disabled,
  86. .ant-input-affix-wrapper-borderless[disabled] {
  87. background-color: transparent;
  88. border: none;
  89. box-shadow: none;
  90. }
  91. textarea.ant-input-affix-wrapper {
  92. max-width: 100%;
  93. height: auto;
  94. min-height: 32px;
  95. line-height: 1.5715;
  96. vertical-align: bottom;
  97. transition: all 0.3s, height 0s;
  98. }
  99. .ant-input-affix-wrapper-lg {
  100. padding: 6.5px 11px;
  101. font-size: 16px;
  102. }
  103. .ant-input-affix-wrapper-sm {
  104. padding: 0px 7px;
  105. }
  106. .ant-input-affix-wrapper-rtl {
  107. direction: rtl;
  108. }
  109. .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  110. border-color: #40a9ff;
  111. border-right-width: 1px !important;
  112. z-index: 1;
  113. }
  114. .ant-input-rtl .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  115. border-right-width: 0;
  116. border-left-width: 1px !important;
  117. }
  118. .ant-input-search-with-button .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  119. z-index: 0;
  120. }
  121. .ant-input-affix-wrapper-focused,
  122. .ant-input-affix-wrapper:focus {
  123. z-index: 1;
  124. }
  125. .ant-input-affix-wrapper-disabled .ant-input[disabled] {
  126. background: transparent;
  127. }
  128. .ant-input-affix-wrapper > input.ant-input {
  129. padding: 0;
  130. border: none;
  131. outline: none;
  132. }
  133. .ant-input-affix-wrapper > input.ant-input:focus {
  134. box-shadow: none !important;
  135. }
  136. .ant-input-affix-wrapper::before {
  137. width: 0;
  138. visibility: hidden;
  139. content: '\a0';
  140. }
  141. .ant-input-prefix,
  142. .ant-input-suffix {
  143. display: flex;
  144. flex: none;
  145. align-items: center;
  146. }
  147. .ant-input-show-count-suffix {
  148. color: rgba(0, 0, 0, 0.45);
  149. }
  150. .ant-input-show-count-has-suffix {
  151. margin-right: 2px;
  152. }
  153. .ant-input-prefix {
  154. margin-right: 4px;
  155. }
  156. .ant-input-suffix {
  157. margin-left: 4px;
  158. }
  159. .anticon.ant-input-clear-icon {
  160. margin: 0;
  161. color: rgba(0, 0, 0, 0.25);
  162. font-size: 12px;
  163. vertical-align: -1px;
  164. cursor: pointer;
  165. transition: color 0.3s;
  166. }
  167. .anticon.ant-input-clear-icon:hover {
  168. color: rgba(0, 0, 0, 0.45);
  169. }
  170. .anticon.ant-input-clear-icon:active {
  171. color: rgba(0, 0, 0, 0.85);
  172. }
  173. .anticon.ant-input-clear-icon-hidden {
  174. visibility: hidden;
  175. }
  176. .anticon.ant-input-clear-icon-has-suffix {
  177. margin: 0 4px;
  178. }
  179. .ant-input-affix-wrapper-textarea-with-clear-btn {
  180. padding: 0 !important;
  181. border: 0 !important;
  182. }
  183. .ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
  184. position: absolute;
  185. top: 8px;
  186. right: 8px;
  187. z-index: 1;
  188. }
  189. .ant-input {
  190. box-sizing: border-box;
  191. margin: 0;
  192. padding: 0;
  193. font-variant: tabular-nums;
  194. list-style: none;
  195. font-feature-settings: 'tnum';
  196. position: relative;
  197. display: inline-block;
  198. width: 100%;
  199. min-width: 0;
  200. padding: 4px 11px;
  201. color: rgba(0, 0, 0, 0.85);
  202. font-size: 14px;
  203. line-height: 1.5715;
  204. background-color: #fff;
  205. background-image: none;
  206. border: 1px solid #d9d9d9;
  207. border-radius: 2px;
  208. transition: all 0.3s;
  209. /* stylelint-disable-next-line selector-no-vendor-prefix */
  210. }
  211. .ant-input::-moz-placeholder {
  212. opacity: 1;
  213. }
  214. .ant-input::placeholder {
  215. color: #bfbfbf;
  216. -webkit-user-select: none;
  217. -moz-user-select: none;
  218. user-select: none;
  219. }
  220. .ant-input:-moz-placeholder-shown {
  221. text-overflow: ellipsis;
  222. }
  223. .ant-input:placeholder-shown {
  224. text-overflow: ellipsis;
  225. }
  226. .ant-input:hover {
  227. border-color: #40a9ff;
  228. border-right-width: 1px !important;
  229. }
  230. .ant-input-rtl .ant-input:hover {
  231. border-right-width: 0;
  232. border-left-width: 1px !important;
  233. }
  234. .ant-input:focus,
  235. .ant-input-focused {
  236. border-color: #40a9ff;
  237. box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  238. border-right-width: 1px !important;
  239. outline: 0;
  240. }
  241. .ant-input-rtl .ant-input:focus,
  242. .ant-input-rtl .ant-input-focused {
  243. border-right-width: 0;
  244. border-left-width: 1px !important;
  245. }
  246. .ant-input-disabled {
  247. color: rgba(0, 0, 0, 0.25);
  248. background-color: #f5f5f5;
  249. border-color: #d9d9d9;
  250. box-shadow: none;
  251. cursor: not-allowed;
  252. opacity: 1;
  253. }
  254. .ant-input-disabled:hover {
  255. border-color: #d9d9d9;
  256. border-right-width: 1px !important;
  257. }
  258. .ant-input[disabled] {
  259. color: rgba(0, 0, 0, 0.25);
  260. background-color: #f5f5f5;
  261. border-color: #d9d9d9;
  262. box-shadow: none;
  263. cursor: not-allowed;
  264. opacity: 1;
  265. }
  266. .ant-input[disabled]:hover {
  267. border-color: #d9d9d9;
  268. border-right-width: 1px !important;
  269. }
  270. .ant-input-borderless,
  271. .ant-input-borderless:hover,
  272. .ant-input-borderless:focus,
  273. .ant-input-borderless-focused,
  274. .ant-input-borderless-disabled,
  275. .ant-input-borderless[disabled] {
  276. background-color: transparent;
  277. border: none;
  278. box-shadow: none;
  279. }
  280. textarea.ant-input {
  281. max-width: 100%;
  282. height: auto;
  283. min-height: 32px;
  284. line-height: 1.5715;
  285. vertical-align: bottom;
  286. transition: all 0.3s, height 0s;
  287. }
  288. .ant-input-lg {
  289. padding: 6.5px 11px;
  290. font-size: 16px;
  291. }
  292. .ant-input-sm {
  293. padding: 0px 7px;
  294. }
  295. .ant-input-rtl {
  296. direction: rtl;
  297. }
  298. .ant-input-group {
  299. box-sizing: border-box;
  300. margin: 0;
  301. padding: 0;
  302. color: rgba(0, 0, 0, 0.85);
  303. font-size: 14px;
  304. font-variant: tabular-nums;
  305. line-height: 1.5715;
  306. list-style: none;
  307. font-feature-settings: 'tnum';
  308. position: relative;
  309. display: table;
  310. width: 100%;
  311. border-collapse: separate;
  312. border-spacing: 0;
  313. }
  314. .ant-input-group[class*='col-'] {
  315. float: none;
  316. padding-right: 0;
  317. padding-left: 0;
  318. }
  319. .ant-input-group > [class*='col-'] {
  320. padding-right: 8px;
  321. }
  322. .ant-input-group > [class*='col-']:last-child {
  323. padding-right: 0;
  324. }
  325. .ant-input-group-addon,
  326. .ant-input-group-wrap,
  327. .ant-input-group > .ant-input {
  328. display: table-cell;
  329. }
  330. .ant-input-group-addon:not(:first-child):not(:last-child),
  331. .ant-input-group-wrap:not(:first-child):not(:last-child),
  332. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  333. border-radius: 0;
  334. }
  335. .ant-input-group-addon,
  336. .ant-input-group-wrap {
  337. width: 1px;
  338. white-space: nowrap;
  339. vertical-align: middle;
  340. }
  341. .ant-input-group-wrap > * {
  342. display: block !important;
  343. }
  344. .ant-input-group .ant-input {
  345. float: left;
  346. width: 100%;
  347. margin-bottom: 0;
  348. text-align: inherit;
  349. }
  350. .ant-input-group .ant-input:focus {
  351. z-index: 1;
  352. border-right-width: 1px;
  353. }
  354. .ant-input-group .ant-input:hover {
  355. z-index: 1;
  356. border-right-width: 1px;
  357. }
  358. .ant-input-search-with-button .ant-input-group .ant-input:hover {
  359. z-index: 0;
  360. }
  361. .ant-input-group-addon {
  362. position: relative;
  363. padding: 0 11px;
  364. color: rgba(0, 0, 0, 0.85);
  365. font-weight: normal;
  366. font-size: 14px;
  367. text-align: center;
  368. background-color: #fafafa;
  369. border: 1px solid #d9d9d9;
  370. border-radius: 2px;
  371. transition: all 0.3s;
  372. }
  373. .ant-input-group-addon .ant-select {
  374. margin: -5px -11px;
  375. }
  376. .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  377. background-color: inherit;
  378. border: 1px solid transparent;
  379. box-shadow: none;
  380. }
  381. .ant-input-group-addon .ant-select-open .ant-select-selector,
  382. .ant-input-group-addon .ant-select-focused .ant-select-selector {
  383. color: #1890ff;
  384. }
  385. .ant-input-group-addon .ant-cascader-picker {
  386. margin: -9px -12px;
  387. background-color: transparent;
  388. }
  389. .ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
  390. text-align: left;
  391. border: 0;
  392. box-shadow: none;
  393. }
  394. .ant-input-group > .ant-input:first-child,
  395. .ant-input-group-addon:first-child {
  396. border-top-right-radius: 0;
  397. border-bottom-right-radius: 0;
  398. }
  399. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selector,
  400. .ant-input-group-addon:first-child .ant-select .ant-select-selector {
  401. border-top-right-radius: 0;
  402. border-bottom-right-radius: 0;
  403. }
  404. .ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input {
  405. border-top-left-radius: 0;
  406. border-bottom-left-radius: 0;
  407. }
  408. .ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input {
  409. border-top-right-radius: 0;
  410. border-bottom-right-radius: 0;
  411. }
  412. .ant-input-group-addon:first-child {
  413. border-right: 0;
  414. }
  415. .ant-input-group-addon:last-child {
  416. border-left: 0;
  417. }
  418. .ant-input-group > .ant-input:last-child,
  419. .ant-input-group-addon:last-child {
  420. border-top-left-radius: 0;
  421. border-bottom-left-radius: 0;
  422. }
  423. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selector,
  424. .ant-input-group-addon:last-child .ant-select .ant-select-selector {
  425. border-top-left-radius: 0;
  426. border-bottom-left-radius: 0;
  427. }
  428. .ant-input-group-lg .ant-input,
  429. .ant-input-group-lg > .ant-input-group-addon {
  430. padding: 6.5px 11px;
  431. font-size: 16px;
  432. }
  433. .ant-input-group-sm .ant-input,
  434. .ant-input-group-sm > .ant-input-group-addon {
  435. padding: 0px 7px;
  436. }
  437. .ant-input-group-lg .ant-select-single .ant-select-selector {
  438. height: 40px;
  439. }
  440. .ant-input-group-sm .ant-select-single .ant-select-selector {
  441. height: 24px;
  442. }
  443. .ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  444. border-top-right-radius: 0;
  445. border-bottom-right-radius: 0;
  446. }
  447. .ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  448. border-top-left-radius: 2px;
  449. border-bottom-left-radius: 2px;
  450. }
  451. .ant-input-group .ant-input-affix-wrapper:not(:first-child),
  452. .ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) {
  453. border-top-left-radius: 0;
  454. border-bottom-left-radius: 0;
  455. }
  456. .ant-input-group.ant-input-group-compact {
  457. display: block;
  458. }
  459. .ant-input-group.ant-input-group-compact::before {
  460. display: table;
  461. content: '';
  462. }
  463. .ant-input-group.ant-input-group-compact::after {
  464. display: table;
  465. clear: both;
  466. content: '';
  467. }
  468. .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),
  469. .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),
  470. .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) {
  471. border-right-width: 1px;
  472. }
  473. .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,
  474. .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,
  475. .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover {
  476. z-index: 1;
  477. }
  478. .ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,
  479. .ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,
  480. .ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus {
  481. z-index: 1;
  482. }
  483. .ant-input-group.ant-input-group-compact > * {
  484. display: inline-block;
  485. float: none;
  486. vertical-align: top;
  487. border-radius: 0;
  488. }
  489. .ant-input-group.ant-input-group-compact > .ant-input-affix-wrapper {
  490. display: inline-flex;
  491. }
  492. .ant-input-group.ant-input-group-compact > .ant-picker-range {
  493. display: inline-flex;
  494. }
  495. .ant-input-group.ant-input-group-compact > *:not(:last-child) {
  496. margin-right: -1px;
  497. border-right-width: 1px;
  498. }
  499. .ant-input-group.ant-input-group-compact .ant-input {
  500. float: none;
  501. }
  502. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector,
  503. .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input,
  504. .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input,
  505. .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input {
  506. border-right-width: 1px;
  507. border-radius: 0;
  508. }
  509. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:hover,
  510. .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover,
  511. .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover,
  512. .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:hover {
  513. z-index: 1;
  514. }
  515. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:focus,
  516. .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus,
  517. .ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus,
  518. .ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:focus {
  519. z-index: 1;
  520. }
  521. .ant-input-group.ant-input-group-compact > .ant-select-focused {
  522. z-index: 1;
  523. }
  524. .ant-input-group.ant-input-group-compact > .ant-select > .ant-select-arrow {
  525. z-index: 1;
  526. }
  527. .ant-input-group.ant-input-group-compact > *:first-child,
  528. .ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector,
  529. .ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
  530. .ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input {
  531. border-top-left-radius: 2px;
  532. border-bottom-left-radius: 2px;
  533. }
  534. .ant-input-group.ant-input-group-compact > *:last-child,
  535. .ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector,
  536. .ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
  537. .ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  538. border-right-width: 1px;
  539. border-top-right-radius: 2px;
  540. border-bottom-right-radius: 2px;
  541. }
  542. .ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input {
  543. vertical-align: top;
  544. }
  545. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
  546. margin-left: -1px;
  547. }
  548. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
  549. border-radius: 0;
  550. }
  551. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button {
  552. border-radius: 0;
  553. }
  554. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  555. border-radius: 2px 0 0 2px;
  556. }
  557. .ant-input-group > .ant-input-rtl:first-child,
  558. .ant-input-group-rtl .ant-input-group-addon:first-child {
  559. border-radius: 0 2px 2px 0;
  560. }
  561. .ant-input-group-rtl .ant-input-group-addon:first-child {
  562. border-right: 1px solid #d9d9d9;
  563. border-left: 0;
  564. }
  565. .ant-input-group-rtl .ant-input-group-addon:last-child {
  566. border-right: 0;
  567. border-left: 1px solid #d9d9d9;
  568. }
  569. .ant-input-group-rtl.ant-input-group > .ant-input:last-child,
  570. .ant-input-group-rtl.ant-input-group-addon:last-child {
  571. border-radius: 2px 0 0 2px;
  572. }
  573. .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:first-child) {
  574. border-radius: 2px 0 0 2px;
  575. }
  576. .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  577. border-radius: 0 2px 2px 0;
  578. }
  579. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:not(:last-child) {
  580. margin-right: 0;
  581. margin-left: -1px;
  582. border-left-width: 1px;
  583. }
  584. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:first-child,
  585. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector,
  586. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
  587. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input {
  588. border-radius: 0 2px 2px 0;
  589. }
  590. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:last-child,
  591. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector,
  592. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input,
  593. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
  594. .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  595. border-left-width: 1px;
  596. border-radius: 2px 0 0 2px;
  597. }
  598. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
  599. margin-right: -1px;
  600. margin-left: 0;
  601. }
  602. .ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  603. border-radius: 0 2px 2px 0;
  604. }
  605. .ant-input-group-wrapper {
  606. display: inline-block;
  607. width: 100%;
  608. text-align: start;
  609. vertical-align: top;
  610. }
  611. .ant-input-password-icon {
  612. color: rgba(0, 0, 0, 0.45);
  613. cursor: pointer;
  614. transition: all 0.3s;
  615. }
  616. .ant-input-password-icon:hover {
  617. color: rgba(0, 0, 0, 0.85);
  618. }
  619. .ant-input[type='color'] {
  620. height: 32px;
  621. }
  622. .ant-input[type='color'].ant-input-lg {
  623. height: 40px;
  624. }
  625. .ant-input[type='color'].ant-input-sm {
  626. height: 24px;
  627. padding-top: 3px;
  628. padding-bottom: 3px;
  629. }
  630. .ant-input-textarea-show-count > .ant-input {
  631. height: 100%;
  632. }
  633. .ant-input-textarea-show-count::after {
  634. float: right;
  635. color: rgba(0, 0, 0, 0.45);
  636. white-space: nowrap;
  637. content: attr(data-count);
  638. pointer-events: none;
  639. }
  640. .ant-input-search .ant-input:hover,
  641. .ant-input-search .ant-input:focus {
  642. border-color: #40a9ff;
  643. }
  644. .ant-input-search .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
  645. .ant-input-search .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
  646. border-left-color: #40a9ff;
  647. }
  648. .ant-input-search .ant-input-affix-wrapper {
  649. border-radius: 0;
  650. }
  651. .ant-input-search .ant-input-lg {
  652. line-height: 1.5713;
  653. }
  654. .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child {
  655. left: -1px;
  656. padding: 0;
  657. border: 0;
  658. }
  659. .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
  660. padding-top: 0;
  661. padding-bottom: 0;
  662. border-radius: 0 2px 2px 0;
  663. }
  664. .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary) {
  665. color: rgba(0, 0, 0, 0.45);
  666. }
  667. .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary).ant-btn-loading::before {
  668. top: 0;
  669. right: 0;
  670. bottom: 0;
  671. left: 0;
  672. }
  673. .ant-input-search-button {
  674. height: 32px;
  675. }
  676. .ant-input-search-button:hover,
  677. .ant-input-search-button:focus {
  678. z-index: 1;
  679. }
  680. .ant-input-search-large .ant-input-search-button {
  681. height: 40px;
  682. }
  683. .ant-input-search-small .ant-input-search-button {
  684. height: 24px;
  685. }
  686. .ant-input-group-wrapper-rtl {
  687. direction: rtl;
  688. }
  689. .ant-input-group-rtl {
  690. direction: rtl;
  691. }
  692. .ant-input-affix-wrapper.ant-input-affix-wrapper-rtl > input.ant-input {
  693. border: none;
  694. outline: none;
  695. }
  696. .ant-input-affix-wrapper-rtl .ant-input-prefix {
  697. margin: 0 0 0 4px;
  698. }
  699. .ant-input-affix-wrapper-rtl .ant-input-suffix {
  700. margin: 0 4px 0 0;
  701. }
  702. .ant-input-textarea-rtl {
  703. direction: rtl;
  704. }
  705. .ant-input-textarea-rtl.ant-input-textarea-show-count::after {
  706. text-align: left;
  707. }
  708. .ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
  709. margin-right: 0;
  710. margin-left: 4px;
  711. }
  712. .ant-input-affix-wrapper-rtl .ant-input-clear-icon {
  713. right: auto;
  714. left: 8px;
  715. }
  716. .ant-input-search-rtl {
  717. direction: rtl;
  718. }
  719. .ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
  720. .ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
  721. border-right-color: #40a9ff;
  722. border-left-color: #d9d9d9;
  723. }
  724. .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
  725. .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused {
  726. border-right-color: #40a9ff;
  727. }
  728. .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon {
  729. right: -1px;
  730. left: auto;
  731. }
  732. .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon .ant-input-search-button {
  733. border-radius: 2px 0 0 2px;
  734. }
  735. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  736. .ant-input {
  737. height: 32px;
  738. }
  739. .ant-input-lg {
  740. height: 40px;
  741. }
  742. .ant-input-sm {
  743. height: 24px;
  744. }
  745. .ant-input-affix-wrapper > input.ant-input {
  746. height: auto;
  747. }
  748. }