mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-14 00:03:42 +08:00
64 lines
841 B
SCSS
64 lines
841 B
SCSS
/* Legacy theme helper classes and color accents. */
|
|
|
|
.el-button--cyan.is-active,
|
|
.el-button--cyan:active {
|
|
background: #20b2aa;
|
|
border-color: #20b2aa;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.el-button--cyan:focus,
|
|
.el-button--cyan:hover {
|
|
background: #48d1cc;
|
|
border-color: #48d1cc;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.el-button--cyan {
|
|
background-color: #20b2aa;
|
|
border-color: #20b2aa;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.text-navy {
|
|
color: #1ab394;
|
|
}
|
|
|
|
.text-primary {
|
|
color: inherit;
|
|
}
|
|
|
|
.text-success {
|
|
color: #1c84c6;
|
|
}
|
|
|
|
.text-info {
|
|
color: #23c6c8;
|
|
}
|
|
|
|
.text-warning {
|
|
color: #f8ac59;
|
|
}
|
|
|
|
.text-danger {
|
|
color: #ed5565;
|
|
}
|
|
|
|
.text-muted {
|
|
color: #888888;
|
|
}
|
|
|
|
|
|
.avatar-upload-preview {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(50%, -50%);
|
|
width: 200px;
|
|
height: 200px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 4px #ccc;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|