123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- .el-message-box {
- .el-message-box__status::before {
- font-size: 66px !important;
- }
- .el-message-box__content {
- font-size: 24px;
- }
- .el-message-box__btns {
- display: flex;
- justify-content: flex-end;
- .el-button {
- font-size: 16px;
- }
- // .confirmBtn{
- // background: #e90000 !important;
- // border: 1px solid #DCDFE6;
- // border-radius: 6px;
- // }
- }
- }
- .el-popover {
- padding: 0;
- border: none;
- }
- .el-switch {
- .el-switch__label {
- color: #50596b;
- }
- }
- .el-breadcrumb {
- font-family: Proxima Nova;
- margin-top: 21px;
- margin-bottom: 15px;
- line-height: 19px;
- .el-breadcrumb__item {
- .el-breadcrumb__inner.is-link {
- color: #303133;
- }
- .el-breadcrumb__inner {
- color: #606266;
- cursor: pointer;
- }
- .last-bread {
- span {
- color: #3882c1 !important;
- }
- }
- }
- }
- /**
- * 解决el-input设置类型为number时,中文输入法光标上移问题
- **/
- // .el-input__inner{
- // line-height: 1px !important;
- // }
- /**
- * 解决el-input设置类型为number时,去掉输入框后面上下箭头
- **/
- // input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
- // -webkit-appearance: none;
- // margin: 0;
- // }
- .el-button--danger:focus,
- .el-button--danger:hover {
- background: #a12524;
- border-color: #a12524;
- }
- // 去掉放大图的按钮背景色
- .el-image-viewer__close {
- background-color: transparent !important;
- }
- // 隐藏放大图底部工具栏
- .el-image-viewer__actions{
- display: none;
- }
- .el-empty__description {
- p {
- font-size: 36px;
- }
- }
- // 应用于商品详情页的表格
- .el-table,
- .el-table__body {
- font-size: 16px;
- .el-input__inner {
- height: 26px;
- }
- }
- .el-table__cell {
- padding: 8px 0 !important;
- }
- .cell {
- word-break: break-word !important;
- }
- // 防止覆盖header
- .el-loading-mask{
- z-index: 99;
- // header z-index为100
- // .el-image-viewer__mask z-index为2000
- }
|