gy-webcode2 1.1.5 → 1.1.7
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/css/login.scss +3 -1
- package/css/modules/button.scss +15 -0
- package/css/modules/sidebar.scss +4 -3
- package/css/modules/tabs.scss +3 -0
- package/img/login_bg.png +0 -0
- package/index.js +3 -2
- package/package.json +1 -1
package/css/login.scss
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
.loginBody{
|
|
2
|
-
background:#00656b url("~gy-webcode2/img/login_bg2.jpg") top center no-repeat;
|
|
2
|
+
// background:#00656b url("~gy-webcode2/img/login_bg2.jpg") top center no-repeat;
|
|
3
|
+
background: url("~gy-webcode2/img/login_bg.png") top center no-repeat;
|
|
3
4
|
background-size: 100% 100%;
|
|
5
|
+
@include themeColor("background-color",'down');
|
|
4
6
|
position: absolute;
|
|
5
7
|
left: 0;
|
|
6
8
|
top: 0;
|
package/css/modules/button.scss
CHANGED
|
@@ -79,6 +79,21 @@
|
|
|
79
79
|
opacity: 0.3;
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
+
&.hui{
|
|
83
|
+
background: #ccc;
|
|
84
|
+
user-select: none;
|
|
85
|
+
&:hover{
|
|
86
|
+
background: #dddddd;
|
|
87
|
+
}
|
|
88
|
+
&:active{
|
|
89
|
+
background: #ccc;
|
|
90
|
+
}
|
|
91
|
+
&.disabled{
|
|
92
|
+
cursor: no-drop;
|
|
93
|
+
background: #c1c1c1;
|
|
94
|
+
opacity: 0.3;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
82
97
|
|
|
83
98
|
}
|
|
84
99
|
.operateBtnIconPopper.is-light{
|
package/css/modules/sidebar.scss
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
transition: all 0.3s ease;
|
|
9
9
|
user-select: none;
|
|
10
|
-
position: relative;
|
|
11
|
-
z-index: 100;
|
|
10
|
+
// position: relative;
|
|
11
|
+
// z-index: 100;
|
|
12
12
|
&.mini{
|
|
13
13
|
width: 48px;
|
|
14
14
|
.sildeBody {
|
|
@@ -110,7 +110,8 @@
|
|
|
110
110
|
transition: all 0.3s ease;
|
|
111
111
|
position: relative;
|
|
112
112
|
&:hover{
|
|
113
|
-
color: #60abff ;
|
|
113
|
+
// color: #60abff ;
|
|
114
|
+
@include themeColor('color','hover');
|
|
114
115
|
}
|
|
115
116
|
.icon{
|
|
116
117
|
transition: all 0.3s ease;
|
package/css/modules/tabs.scss
CHANGED
package/img/login_bg.png
ADDED
|
Binary file
|
package/index.js
CHANGED
|
@@ -10,8 +10,9 @@
|
|
|
10
10
|
// ~的意思是匹配最近的小版本 比如~1.0.2将会匹配所有的1.0.x版本,但不匹配1.1.0
|
|
11
11
|
// ^的意思是最近的一个大版本 比如1.0.2 将会匹配 所有 1.x.x, 但不包括2.x.x
|
|
12
12
|
// * 这意味着安装最新版本的依赖包
|
|
13
|
-
// 已使用项目
|
|
13
|
+
// 已使用项目 指标管理、数据治理
|
|
14
|
+
// https://registry.npmjs.org/gy-webcode2
|
|
14
15
|
|
|
15
16
|
module.exports = {
|
|
16
|
-
version :'1.1.
|
|
17
|
+
version :'1.1.7',
|
|
17
18
|
}
|