|
|
|
@ -10,11 +10,14 @@ body {
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
|
background-color: $background-light;
|
|
|
|
|
color: #303133;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
@ -49,8 +52,9 @@ a,
|
|
|
|
|
a:focus,
|
|
|
|
|
a:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: inherit;
|
|
|
|
|
color: $blue;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div:focus {
|
|
|
|
@ -82,7 +86,7 @@ div:focus {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inlineBlock {
|
|
|
|
|
display: block;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clearfix {
|
|
|
|
@ -96,32 +100,121 @@ div:focus {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 新增常用边距类
|
|
|
|
|
.m-0 { margin: 0 !important; }
|
|
|
|
|
.mt-0 { margin-top: 0 !important; }
|
|
|
|
|
.mr-0 { margin-right: 0 !important; }
|
|
|
|
|
.mb-0 { margin-bottom: 0 !important; }
|
|
|
|
|
.ml-0 { margin-left: 0 !important; }
|
|
|
|
|
|
|
|
|
|
.m-1 { margin: 4px !important; }
|
|
|
|
|
.mt-1 { margin-top: 4px !important; }
|
|
|
|
|
.mr-1 { margin-right: 4px !important; }
|
|
|
|
|
.mb-1 { margin-bottom: 4px !important; }
|
|
|
|
|
.ml-1 { margin-left: 4px !important; }
|
|
|
|
|
|
|
|
|
|
.m-2 { margin: 8px !important; }
|
|
|
|
|
.mt-2 { margin-top: 8px !important; }
|
|
|
|
|
.mr-2 { margin-right: 8px !important; }
|
|
|
|
|
.mb-2 { margin-bottom: 8px !important; }
|
|
|
|
|
.ml-2 { margin-left: 8px !important; }
|
|
|
|
|
|
|
|
|
|
.m-3 { margin: 16px !important; }
|
|
|
|
|
.mt-3 { margin-top: 16px !important; }
|
|
|
|
|
.mr-3 { margin-right: 16px !important; }
|
|
|
|
|
.mb-3 { margin-bottom: 16px !important; }
|
|
|
|
|
.ml-3 { margin-left: 16px !important; }
|
|
|
|
|
|
|
|
|
|
.m-4 { margin: 24px !important; }
|
|
|
|
|
.mt-4 { margin-top: 24px !important; }
|
|
|
|
|
.mr-4 { margin-right: 24px !important; }
|
|
|
|
|
.mb-4 { margin-bottom: 24px !important; }
|
|
|
|
|
.ml-4 { margin-left: 24px !important; }
|
|
|
|
|
|
|
|
|
|
.p-0 { padding: 0 !important; }
|
|
|
|
|
.pt-0 { padding-top: 0 !important; }
|
|
|
|
|
.pr-0 { padding-right: 0 !important; }
|
|
|
|
|
.pb-0 { padding-bottom: 0 !important; }
|
|
|
|
|
.pl-0 { padding-left: 0 !important; }
|
|
|
|
|
|
|
|
|
|
.p-1 { padding: 4px !important; }
|
|
|
|
|
.pt-1 { padding-top: 4px !important; }
|
|
|
|
|
.pr-1 { padding-right: 4px !important; }
|
|
|
|
|
.pb-1 { padding-bottom: 4px !important; }
|
|
|
|
|
.pl-1 { padding-left: 4px !important; }
|
|
|
|
|
|
|
|
|
|
.p-2 { padding: 8px !important; }
|
|
|
|
|
.pt-2 { padding-top: 8px !important; }
|
|
|
|
|
.pr-2 { padding-right: 8px !important; }
|
|
|
|
|
.pb-2 { padding-bottom: 8px !important; }
|
|
|
|
|
.pl-2 { padding-left: 8px !important; }
|
|
|
|
|
|
|
|
|
|
.p-3 { padding: 16px !important; }
|
|
|
|
|
.pt-3 { padding-top: 16px !important; }
|
|
|
|
|
.pr-3 { padding-right: 16px !important; }
|
|
|
|
|
.pb-3 { padding-bottom: 16px !important; }
|
|
|
|
|
.pl-3 { padding-left: 16px !important; }
|
|
|
|
|
|
|
|
|
|
.p-4 { padding: 24px !important; }
|
|
|
|
|
.pt-4 { padding-top: 24px !important; }
|
|
|
|
|
.pr-4 { padding-right: 24px !important; }
|
|
|
|
|
.pb-4 { padding-bottom: 24px !important; }
|
|
|
|
|
.pl-4 { padding-left: 24px !important; }
|
|
|
|
|
|
|
|
|
|
// 文本对齐
|
|
|
|
|
.text-left { text-align: left !important; }
|
|
|
|
|
.text-center { text-align: center !important; }
|
|
|
|
|
.text-right { text-align: right !important; }
|
|
|
|
|
|
|
|
|
|
// 文本颜色
|
|
|
|
|
.text-primary { color: $blue !important; }
|
|
|
|
|
.text-success { color: $green !important; }
|
|
|
|
|
.text-warning { color: $yellow !important; }
|
|
|
|
|
.text-danger { color: $red !important; }
|
|
|
|
|
.text-info { color: #909399 !important; }
|
|
|
|
|
.text-muted { color: #606266 !important; }
|
|
|
|
|
|
|
|
|
|
aside {
|
|
|
|
|
background: #eef1f6;
|
|
|
|
|
padding: 8px 24px;
|
|
|
|
|
background: $background-light;
|
|
|
|
|
padding: 16px 24px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
border-radius: $base-border-radius;
|
|
|
|
|
box-shadow: $base-box-shadow;
|
|
|
|
|
display: block;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
|
|
|
color: #2c3e50;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #337ab7;
|
|
|
|
|
color: $blue;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: rgb(32, 160, 255);
|
|
|
|
|
color: lighten($blue, 10%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//main-container全局样式
|
|
|
|
|
.app-container {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
background-color: $card-background-light;
|
|
|
|
|
border-radius: $base-border-radius;
|
|
|
|
|
box-shadow: $base-box-shadow;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.components-container {
|
|
|
|
@ -130,11 +223,12 @@ aside {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pagination-container {
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
|
text-align: center
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sub-navbar {
|
|
|
|
@ -144,12 +238,14 @@ aside {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: right;
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
transition: 600ms ease position;
|
|
|
|
|
background: linear-gradient(90deg, rgba(32, 182, 249, 1) 0%, rgba(32, 182, 249, 1) 0%, rgba(33, 120, 241, 1) 100%, rgba(33, 120, 241, 1) 100%);
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
background: $primary-gradient;
|
|
|
|
|
border-radius: $base-border-radius $base-border-radius 0 0;
|
|
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.draft {
|
|
|
|
@ -163,20 +259,26 @@ aside {
|
|
|
|
|
|
|
|
|
|
.link-type,
|
|
|
|
|
.link-type:focus {
|
|
|
|
|
color: #337ab7;
|
|
|
|
|
color: $blue;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: rgb(32, 160, 255);
|
|
|
|
|
color: lighten($blue, 10%);
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filter-container {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.filter-item {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -190,7 +292,7 @@ aside {
|
|
|
|
|
z-index: 1000 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 表格内边距优化
|
|
|
|
|
.el-table--mini .el-table__cell {
|
|
|
|
|
padding:0px!important;
|
|
|
|
|
padding: 4px 0 !important;
|
|
|
|
|
}
|
|
|
|
|