mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
107 lines
2.2 KiB
CSS
107 lines
2.2 KiB
CSS
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
@import "iconfont/iconfont.css";
|
|
@import "css/sidebar.css";
|
|
@import "css/header.css";
|
|
@import "css/table.css";
|
|
@import "css/widget.css";
|
|
@import "css/form.css";
|
|
@import "css/dialog.css";
|
|
@import "css/tabs.css";
|
|
|
|
* {
|
|
font-family: PingFangSC-Regular, PingFang SC, 微软雅黑, serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
:root {
|
|
--sidebar-width: 0px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-button {
|
|
display: none !important;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: #f4f4f4!important;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background: #999999!important;
|
|
}
|
|
|
|
input, textarea {
|
|
outline: none;
|
|
}
|
|
input::placeholder, textarea::placeholder {
|
|
color: #bbbbbb;
|
|
}
|
|
.msgbox {
|
|
visibility: unset;
|
|
top: -50px !important;
|
|
border-radius: 4px;
|
|
letter-spacing: 1px;
|
|
font-size: 14px;
|
|
padding: 5px 30px;
|
|
position: fixed !important;
|
|
left: 45% !important;
|
|
right: auto !important;
|
|
max-width: 60%;
|
|
transition: top .5s;
|
|
will-change: transition;
|
|
}
|
|
|
|
.msgbox.default, .msgbox.warning, .msgbox.exception {
|
|
top: 20px !important;
|
|
}
|
|
|
|
.msgbox.default {
|
|
background-color: #f0f9eb;
|
|
border-color: #e1f3d8;
|
|
color: #67c23a;
|
|
}
|
|
|
|
.msgbox.warning {
|
|
background-color: #fdf6ec;
|
|
border-color: #faecd8;
|
|
color: #e6a23c;
|
|
}
|
|
|
|
.msgbox.exception {
|
|
background-color: #fef0f0;
|
|
border-color: #fde2e2;
|
|
color: #f56c6c;
|
|
}
|
|
|
|
.dashbd-head {
|
|
padding: 0;
|
|
}
|
|
|
|
.dashbd-head .dashbd-headl {
|
|
background: #5897db;
|
|
color: #fff;
|
|
border-top-right-radius: 4px;
|
|
border-top-left-radius: 4px;
|
|
line-height: 31px;
|
|
}
|