fix: 1. 系统设置入口进来只会跳转到拥有权限访问的页面。
2. 优化登录样式
This commit is contained in:
@@ -235,6 +235,50 @@
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
/* 密码输入框包装器 */
|
||||
.password-input-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.password-input-wrapper .form-input {
|
||||
padding-right: 3rem;
|
||||
}
|
||||
|
||||
/* 密码切换按钮 */
|
||||
.password-toggle-button {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: #6b7280;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s ease;
|
||||
font-family: 'remixicon' !important;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.password-toggle-button:hover {
|
||||
color: #015c42;
|
||||
}
|
||||
|
||||
.password-toggle-button:focus {
|
||||
outline: none;
|
||||
color: #015c42;
|
||||
}
|
||||
|
||||
.password-toggle-button i {
|
||||
font-size: 1.25rem;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.admin-login-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -562,6 +606,15 @@
|
||||
.admin-login-text:hover {
|
||||
color: #93c5fd;
|
||||
}
|
||||
|
||||
.password-toggle-button {
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
.password-toggle-button:hover,
|
||||
.password-toggle-button:focus {
|
||||
color: #60a5fa;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user