bri-components 1.4.94 → 1.4.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
max-width: 100%;
|
|
109
109
|
height: 38px;
|
|
110
110
|
margin-bottom: 4px;
|
|
111
|
-
background: linear-gradient(57deg,
|
|
111
|
+
background: linear-gradient(57deg, @themeColor 0%, #85CBED 100%);
|
|
112
112
|
line-height:38px;
|
|
113
113
|
display: inline-flex;
|
|
114
114
|
align-items: center;
|
|
@@ -110,10 +110,10 @@
|
|
|
110
110
|
color: @theme-active;
|
|
111
111
|
}
|
|
112
112
|
&[disabled] {
|
|
113
|
-
color: @
|
|
113
|
+
color: @btnBgDisabled;
|
|
114
114
|
background-color: transparent;
|
|
115
115
|
&:hover, &:active {
|
|
116
|
-
color: @
|
|
116
|
+
color: @btnBgDisabled;
|
|
117
117
|
background-color: transparent;
|
|
118
118
|
}
|
|
119
119
|
}
|
|
@@ -4,10 +4,6 @@
|
|
|
4
4
|
@theme-active : #298089;
|
|
5
5
|
@theme-focus : #DCF2F4;
|
|
6
6
|
@theme-disabled : #BCE7EB;
|
|
7
|
-
@brand2 : #5EC4CF; // 暂时未用到,名字待修改
|
|
8
|
-
@brand3 : #329EA9;
|
|
9
|
-
@brand5 : #9DDBE2;
|
|
10
|
-
@brand9 : #20636A;
|
|
11
7
|
|
|
12
8
|
// 背景色
|
|
13
9
|
@bgColor : #F5F5F5;
|
|
@@ -17,8 +13,6 @@
|
|
|
17
13
|
|
|
18
14
|
// border
|
|
19
15
|
@borderColor : #E5E5E5;
|
|
20
|
-
@border-hover : @theme-hover;
|
|
21
|
-
@border-active : @theme-active;
|
|
22
16
|
@border-readonly : @borderColor;
|
|
23
17
|
@border-disabled : #CCC;
|
|
24
18
|
@grey3 : #999999;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
// 可替换样式 https://github.com/view-design/ViewUI/blob/master/src/styles/custom.less
|
|
2
|
-
@primary-color :
|
|
2
|
+
@primary-color : @themeColor;
|
|
3
3
|
@text-color : rgba(0, 0, 0, 0.9);
|
|
4
4
|
@border-radius-base : 4px;
|
|
5
5
|
@border-color-split : #E5E5E5;
|
|
6
6
|
@border-color-base : #E5E5E5;
|
|
7
7
|
@background-color-base : #F5F5F5;
|
|
8
8
|
@font-family : "PingFang SC","Microsoft YaHei","微软雅黑";
|
|
9
|
-
@processing-color : @
|
|
9
|
+
@processing-color : @themeColor;
|
|
10
10
|
@normal-color : red;
|
|
11
|
-
@link-color :
|
|
11
|
+
@link-color : @themeColor;
|
|
12
12
|
@info-color : #2db7f5;
|
|
13
13
|
|
|
14
14
|
// Button
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
@btn-disable-bg : #E5E5E5;
|
|
20
20
|
@btn-disable-border : #ccc;
|
|
21
21
|
@btn-font-size-small : 12px;
|
|
22
|
-
@btn-ghost-color :
|
|
22
|
+
@btn-ghost-color : @themeColor;
|
|
23
23
|
@btn-ghost-bg : rgba(255, 255,255, 0.9);
|
|
24
24
|
@btn-ghost-border : #E5E5E5;
|
|
25
25
|
|