diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 707d79e4..9dbd3ccf 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -19,13 +19,15 @@ body { // font-weight: 700; // } .searchBarBox .el-form-item--medium .el-form-item__label { - line-height: 40px; + line-height: 40px; } + .searchBarBox .el-form-item--medium .el-form-item__content { - line-height: 40px; + line-height: 40px; } + .searchBarBox .el-range-editor--small.el-input__inner { - height: 34px; + height: 34px; } html { @@ -153,13 +155,11 @@ aside { 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% - ); + 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%); .subtitle { font-size: 20px; @@ -204,10 +204,85 @@ aside { z-index: 1000 !important; } +// 滚动条 +::-webkit-scrollbar { + width: 8px; + height: 8px; + background-color: transparent; +} + +::-webkit-scrollbar-track-piece { + background-color: rgba(144, 147, 153, 0); +} + +::-webkit-scrollbar-corner { + background-color: rgba(144, 147, 153, 0); +} + +::-webkit-scrollbar-track { + width: 6px; + background: rgba(144, 147, 153, 0); + -webkit-border-radius: 2em; + -moz-border-radius: 2em; + border-radius: 2em; +} + +::-webkit-scrollbar-thumb { + background-color: #EDEDED; + background-clip: padding-box; + min-height: 28px; + -webkit-border-radius: 2em; + -moz-border-radius: 2em; + border-radius: 2em; + transition: background-color .3s; + cursor: pointer; +} + +::-webkit-scrollbar-thumb:hover { + background-color: #D9D9D9; +} + +// 抽屉head区域---start +.el-drawer__header { + padding-bottom: 20px; + padding-left: 30px; + margin-bottom: 23px; + font-size: 20px; + font-weight: 500; + color: rgba(0, 0, 0, 0.85); + border-bottom: 1px solid rgba(233, 233, 233, 1); +} + +.el-drawer__header> :first-child::before { + content: ''; + display: inline-block; + width: 4px; + height: 24px; + background-color: #0b58ff; + margin-right: 8px; + vertical-align: middle; +} + +// 抽屉head区域---end +// 弹出框,上下分布,去掉label的padding-bottom +.el-form--label-top .el-form-item__label { + padding: 0; +} + +// 大屏滚动表格 +.dv-scroll-board .rows .ceil, +.dv-scroll-board .header .header-item { + border-right: 1px solid rgba(13, 23, 40, 1); +} + +.dv-scroll-board .rows .ceil:last-child, +.dv-scroll-board .header .header-item:last-child { + border-right: none; +} + .no-data-bg { height: 240px; - background: url(../images/no-data-bg.png) 50% 100% / contain - no-repeat; + background: url(../images/no-data-bg.png) 50% 100% / contain no-repeat; position: relative; &::after { @@ -220,4 +295,4 @@ aside { font-size: 18px; letter-spacing: 1px; } -} +} \ No newline at end of file diff --git a/src/components/Breadcrumb/index.vue b/src/components/Breadcrumb/index.vue index d7c255e2..67b434ec 100644 --- a/src/components/Breadcrumb/index.vue +++ b/src/components/Breadcrumb/index.vue @@ -1,8 +1,9 @@