gy-webcode2 1.1.5 → 1.1.6
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 +1 -1
- 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('background-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