index.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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-page-header {
  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: relative;
  14. padding: 16px 24px;
  15. background-color: #fff;
  16. }
  17. .ant-page-header-ghost {
  18. background-color: inherit;
  19. }
  20. .ant-page-header.has-breadcrumb {
  21. padding-top: 12px;
  22. }
  23. .ant-page-header.has-footer {
  24. padding-bottom: 0;
  25. }
  26. .ant-page-header-back {
  27. margin-right: 16px;
  28. font-size: 16px;
  29. line-height: 1;
  30. }
  31. .ant-page-header-back-button {
  32. color: #1890ff;
  33. outline: none;
  34. cursor: pointer;
  35. transition: color 0.3s;
  36. color: #000;
  37. }
  38. .ant-page-header-back-button:focus-visible,
  39. .ant-page-header-back-button:hover {
  40. color: #40a9ff;
  41. }
  42. .ant-page-header-back-button:active {
  43. color: #096dd9;
  44. }
  45. .ant-page-header .ant-divider-vertical {
  46. height: 14px;
  47. margin: 0 12px;
  48. vertical-align: middle;
  49. }
  50. .ant-breadcrumb + .ant-page-header-heading {
  51. margin-top: 8px;
  52. }
  53. .ant-page-header-heading {
  54. display: flex;
  55. justify-content: space-between;
  56. }
  57. .ant-page-header-heading-left {
  58. display: flex;
  59. align-items: center;
  60. margin: 4px 0;
  61. overflow: hidden;
  62. }
  63. .ant-page-header-heading-title {
  64. margin-right: 12px;
  65. margin-bottom: 0;
  66. color: rgba(0, 0, 0, 0.85);
  67. font-weight: 600;
  68. font-size: 20px;
  69. line-height: 32px;
  70. overflow: hidden;
  71. white-space: nowrap;
  72. text-overflow: ellipsis;
  73. }
  74. .ant-page-header-heading .ant-avatar {
  75. margin-right: 12px;
  76. }
  77. .ant-page-header-heading-sub-title {
  78. margin-right: 12px;
  79. color: rgba(0, 0, 0, 0.45);
  80. font-size: 14px;
  81. line-height: 1.5715;
  82. overflow: hidden;
  83. white-space: nowrap;
  84. text-overflow: ellipsis;
  85. }
  86. .ant-page-header-heading-extra {
  87. margin: 4px 0;
  88. white-space: nowrap;
  89. }
  90. .ant-page-header-heading-extra > * {
  91. white-space: unset;
  92. }
  93. .ant-page-header-content {
  94. padding-top: 12px;
  95. }
  96. .ant-page-header-footer {
  97. margin-top: 16px;
  98. }
  99. .ant-page-header-footer .ant-tabs > .ant-tabs-nav {
  100. margin: 0;
  101. }
  102. .ant-page-header-footer .ant-tabs > .ant-tabs-nav::before {
  103. border: none;
  104. }
  105. .ant-page-header-footer .ant-tabs .ant-tabs-tab {
  106. padding-top: 8px;
  107. padding-bottom: 8px;
  108. font-size: 16px;
  109. }
  110. .ant-page-header-compact .ant-page-header-heading {
  111. flex-wrap: wrap;
  112. }
  113. .ant-page-header-rtl {
  114. direction: rtl;
  115. }
  116. .ant-page-header-rtl .ant-page-header-back {
  117. float: right;
  118. margin-right: 0;
  119. margin-left: 16px;
  120. }
  121. .ant-page-header-rtl .ant-page-header-heading-title {
  122. margin-right: 0;
  123. margin-left: 12px;
  124. }
  125. .ant-page-header-rtl .ant-page-header-heading .ant-avatar {
  126. margin-right: 0;
  127. margin-left: 12px;
  128. }
  129. .ant-page-header-rtl .ant-page-header-heading-sub-title {
  130. float: right;
  131. margin-right: 0;
  132. margin-left: 12px;
  133. }
  134. .ant-page-header-rtl .ant-page-header-heading-tags {
  135. float: right;
  136. }
  137. .ant-page-header-rtl .ant-page-header-heading-extra {
  138. float: left;
  139. }
  140. .ant-page-header-rtl .ant-page-header-heading-extra > * {
  141. margin-right: 12px;
  142. margin-left: 0;
  143. }
  144. .ant-page-header-rtl .ant-page-header-heading-extra > *:first-child {
  145. margin-right: 0;
  146. }
  147. .ant-page-header-rtl .ant-page-header-footer .ant-tabs-bar .ant-tabs-nav {
  148. float: right;
  149. }
  150. .ant-divider {
  151. box-sizing: border-box;
  152. margin: 0;
  153. padding: 0;
  154. color: rgba(0, 0, 0, 0.85);
  155. font-size: 14px;
  156. font-variant: tabular-nums;
  157. line-height: 1.5715;
  158. list-style: none;
  159. font-feature-settings: 'tnum';
  160. border-top: 1px solid rgba(0, 0, 0, 0.06);
  161. }
  162. .ant-divider-vertical {
  163. position: relative;
  164. top: -0.06em;
  165. display: inline-block;
  166. height: 0.9em;
  167. margin: 0 8px;
  168. vertical-align: middle;
  169. border-top: 0;
  170. border-left: 1px solid rgba(0, 0, 0, 0.06);
  171. }
  172. .ant-divider-horizontal {
  173. display: flex;
  174. clear: both;
  175. width: 100%;
  176. min-width: 100%;
  177. margin: 24px 0;
  178. }
  179. .ant-divider-horizontal.ant-divider-with-text {
  180. display: flex;
  181. align-items: center;
  182. margin: 16px 0;
  183. color: rgba(0, 0, 0, 0.85);
  184. font-weight: 500;
  185. font-size: 16px;
  186. white-space: nowrap;
  187. text-align: center;
  188. border-top: 0;
  189. border-top-color: rgba(0, 0, 0, 0.06);
  190. }
  191. .ant-divider-horizontal.ant-divider-with-text::before,
  192. .ant-divider-horizontal.ant-divider-with-text::after {
  193. position: relative;
  194. width: 50%;
  195. border-top: 1px solid transparent;
  196. border-top-color: inherit;
  197. border-bottom: 0;
  198. transform: translateY(50%);
  199. content: '';
  200. }
  201. .ant-divider-horizontal.ant-divider-with-text-left::before {
  202. width: 5%;
  203. }
  204. .ant-divider-horizontal.ant-divider-with-text-left::after {
  205. width: 95%;
  206. }
  207. .ant-divider-horizontal.ant-divider-with-text-right::before {
  208. width: 95%;
  209. }
  210. .ant-divider-horizontal.ant-divider-with-text-right::after {
  211. width: 5%;
  212. }
  213. .ant-divider-inner-text {
  214. display: inline-block;
  215. padding: 0 1em;
  216. }
  217. .ant-divider-dashed {
  218. background: none;
  219. border-color: rgba(0, 0, 0, 0.06);
  220. border-style: dashed;
  221. border-width: 1px 0 0;
  222. }
  223. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
  224. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
  225. border-style: dashed none none;
  226. }
  227. .ant-divider-vertical.ant-divider-dashed {
  228. border-width: 0 0 0 1px;
  229. }
  230. .ant-divider-plain.ant-divider-with-text {
  231. color: rgba(0, 0, 0, 0.85);
  232. font-weight: normal;
  233. font-size: 14px;
  234. }
  235. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
  236. width: 0;
  237. }
  238. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
  239. width: 100%;
  240. }
  241. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
  242. padding-left: 0;
  243. }
  244. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
  245. width: 100%;
  246. }
  247. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
  248. width: 0;
  249. }
  250. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
  251. padding-right: 0;
  252. }
  253. .ant-divider-rtl {
  254. direction: rtl;
  255. }
  256. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before {
  257. width: 95%;
  258. }
  259. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after {
  260. width: 5%;
  261. }
  262. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before {
  263. width: 5%;
  264. }
  265. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after {
  266. width: 95%;
  267. }
  268. .ant-divider-dotted {
  269. background: none;
  270. border-color: rgba(0, 0, 0, 0.06);
  271. border-style: dotted;
  272. border-width: 1px 0 0;
  273. }
  274. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dotted::after,
  275. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dotted::before {
  276. border-style: dotted none none;
  277. }
  278. .ant-divider-vertical.ant-divider-dotted {
  279. border-width: 0 0 0 1px;
  280. }
  281. .ant-breadcrumb {
  282. box-sizing: border-box;
  283. margin: 0;
  284. padding: 0;
  285. color: rgba(0, 0, 0, 0.85);
  286. font-variant: tabular-nums;
  287. line-height: 1.5715;
  288. list-style: none;
  289. font-feature-settings: 'tnum';
  290. color: rgba(0, 0, 0, 0.45);
  291. font-size: 14px;
  292. }
  293. .ant-breadcrumb .anticon {
  294. font-size: 14px;
  295. }
  296. .ant-breadcrumb ol {
  297. display: flex;
  298. flex-wrap: wrap;
  299. margin: 0;
  300. padding: 0;
  301. list-style: none;
  302. }
  303. .ant-breadcrumb a {
  304. color: rgba(0, 0, 0, 0.45);
  305. transition: color 0.3s;
  306. }
  307. .ant-breadcrumb a:hover {
  308. color: rgba(0, 0, 0, 0.85);
  309. }
  310. .ant-breadcrumb li:last-child {
  311. color: rgba(0, 0, 0, 0.85);
  312. }
  313. .ant-breadcrumb li:last-child a {
  314. color: rgba(0, 0, 0, 0.85);
  315. }
  316. li:last-child > .ant-breadcrumb-separator {
  317. display: none;
  318. }
  319. .ant-breadcrumb-separator {
  320. margin: 0 8px;
  321. color: rgba(0, 0, 0, 0.45);
  322. }
  323. .ant-breadcrumb-link > .anticon + span,
  324. .ant-breadcrumb-link > .anticon + a {
  325. margin-left: 4px;
  326. }
  327. .ant-breadcrumb-overlay-link > .anticon {
  328. margin-left: 4px;
  329. }
  330. .ant-breadcrumb-rtl {
  331. direction: rtl;
  332. }
  333. .ant-breadcrumb-rtl::before {
  334. display: table;
  335. content: '';
  336. }
  337. .ant-breadcrumb-rtl::after {
  338. display: table;
  339. clear: both;
  340. content: '';
  341. }
  342. .ant-breadcrumb-rtl > span {
  343. float: right;
  344. }
  345. .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span,
  346. .ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a {
  347. margin-right: 4px;
  348. margin-left: 0;
  349. }
  350. .ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon {
  351. margin-right: 4px;
  352. margin-left: 0;
  353. }
  354. .ant-breadcrumb-link .anticon + span {
  355. margin-left: 4px;
  356. }
  357. .ant-breadcrumb > nz-breadcrumb-item:last-child {
  358. color: rgba(0, 0, 0, 0.85);
  359. }
  360. .ant-breadcrumb > nz-breadcrumb-item:last-child a {
  361. color: rgba(0, 0, 0, 0.85);
  362. }
  363. .ant-breadcrumb-rtl > nz-breadcrumb-item {
  364. float: right;
  365. }
  366. nz-breadcrumb {
  367. display: block;
  368. }
  369. nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
  370. display: none;
  371. }
  372. .ant-page-header-back-button {
  373. display: inline-block;
  374. padding: 0;
  375. line-height: inherit;
  376. background: transparent;
  377. border: 0;
  378. }
  379. nz-page-header,
  380. nz-page-header-content,
  381. nz-page-header-footer {
  382. display: block;
  383. }