cmc-web/packages/common/css/lib/button.scss

30 lines
560 B
SCSS
Raw Normal View History

2024-08-20 12:11:31 +00:00
.el-button--text {
2024-08-21 01:17:14 +00:00
padding: 0 !important;
2024-08-20 12:11:31 +00:00
}
2024-08-21 01:17:14 +00:00
.el-button.el-button--text [class*='el-icon-'] + span {
margin-left: 2px;
2024-08-20 12:11:31 +00:00
}
.el-button--ghost {
2024-08-21 01:17:14 +00:00
color: #666;
background-color: #fff;
border-color: #d9d9d9;
2024-08-20 12:11:31 +00:00
}
.el-button--ghost:focus,
.el-button--ghost:hover {
2024-08-21 01:17:14 +00:00
color: #2b85e4;
background-color: transparent;
border-color: #2b85e4;
2024-08-20 12:11:31 +00:00
}
.el-button--ghost.is-disabled,
.el-button--ghost.is-disabled:active,
.el-button--ghost.is-disabled:focus,
.el-button--ghost.is-disabled:hover {
2024-08-21 01:17:14 +00:00
color: #bbb;
background-color: #f7f7f7;
border-color: #d9d9d9;
}