Browse Source

Merge branch 'master' into antd-3.0

pull/8252/head
afc163 7 years ago
parent
commit
81fc6d613c
  1. 1
      components/progress/style/index.less
  2. 2
      components/table/style/index.less
  3. 4
      scripts/generateColorLess.js

1
components/progress/style/index.less

@ -54,6 +54,7 @@
}
&-text {
word-break: normal;
width: 2em;
text-align: left;
font-size: 1em;

2
components/table/style/index.less

@ -451,7 +451,7 @@
}
}
&-pagination {
&-pagination.@{ant-prefix}-pagination {
margin: 16px 0;
float: right;
}

4
scripts/generateColorLess.js

@ -21,6 +21,10 @@ const COLOR_MAP = {
const reducePlugin = postcss.plugin('reducePlugin', () => {
const cleanRule = (rule) => {
if (rule.selector.startsWith('.main-color .palatte-')) {
rule.remove();
return;
}
let removeRule = true;
rule.walkDecls((decl) => {
if (

Loading…
Cancel
Save