@douyinfe/semi-theme-default 2.1.1 → 2.1.5
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 +2 -2
- package/scss/global.scss +2 -2
- package/scss/variables.scss +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douyinfe/semi-theme-default",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "semi-theme-default",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"semi-theme",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"sideEffects": "*.scss",
|
|
14
14
|
"author": "huangzhijing.pixel@bytedance.com",
|
|
15
15
|
"license": "MIT",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "8e2db56ec6e5a3f2ddf47ec03224e5e6adf443c2",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"glob": "^7.1.6"
|
|
19
19
|
},
|
package/scss/global.scss
CHANGED
|
@@ -80,7 +80,7 @@ body, body[theme-mode="dark"] .semi-always-light {
|
|
|
80
80
|
--semi-color-border: rgba(var(--semi-grey-9), .08); // 默认描边颜色
|
|
81
81
|
--semi-color-nav-bg: rgba(var(--semi-white), 1); // 导航背景色
|
|
82
82
|
|
|
83
|
-
--semi-overlay-bg: rgba(22, 22, 26, .6); // 蒙层背景色
|
|
83
|
+
--semi-color-overlay-bg: rgba(22, 22, 26, .6); // 蒙层背景色
|
|
84
84
|
|
|
85
85
|
--semi-color-fill-0: rgba(var(--semi-grey-8), .05); // 填充色 - 默认态
|
|
86
86
|
--semi-color-fill-1: rgba(var(--semi-grey-8), .09); // 填充色 - 悬浮态
|
|
@@ -168,7 +168,7 @@ body[theme-mode="dark"], body .semi-always-dark {
|
|
|
168
168
|
--semi-color-link-visited: rgba(var(--semi-blue-5), 1);
|
|
169
169
|
--semi-color-nav-bg: rgba(35, 36, 41, 1);
|
|
170
170
|
--semi-shadow-elevated: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 4px 14px rgba(0, 0, 0, .25);
|
|
171
|
-
--semi-overlay-bg: rgba(22, 22, 26, .6);
|
|
171
|
+
--semi-color-overlay-bg: rgba(22, 22, 26, .6);
|
|
172
172
|
--semi-color-fill-0: rgba(var(--semi-white), .05);
|
|
173
173
|
--semi-color-fill-1: rgba(var(--semi-white), .09);
|
|
174
174
|
--semi-color-fill-2: rgba(var(--semi-white), .13);
|
package/scss/variables.scss
CHANGED
|
@@ -31,6 +31,8 @@ $z-portal: 1; // 抽象插槽,适用于未经特殊定制的所有组件
|
|
|
31
31
|
$z-affix: 10; // 固定位置的页面元素 z-index
|
|
32
32
|
$z-backtop: 10; // 返回顶部 z-index
|
|
33
33
|
$z-badge: 10; // badge z-index
|
|
34
|
+
// $z-avatar-default: 100;
|
|
35
|
+
$z-table-fixed: 101; // table fixed column
|
|
34
36
|
$z-modal: 1000; // modal z-index
|
|
35
37
|
$z-modal-mask: 1000; // modal 遮罩 z-index
|
|
36
38
|
|