fix: 固定滚动条的颜色

main
wu.jian2 2 years ago
parent 17d6578268
commit 31c67cebb6

@ -117,7 +117,7 @@ export default {
position: relative;
background-color: rgba(var(--bs-el-color-primary-active), 0.4);
color: var(--bs-el-text);
&::after{
&::before{
content: '';
position: absolute;
left: 0;

@ -314,7 +314,7 @@ export default {
position: relative;
background-color: rgba(var(--bs-el-color-primary-active), 0.4);
color: var(--bs-el-text);
&::after{
&::before{
content: '';
position: absolute;
left: 0;

@ -178,9 +178,7 @@
/>
<div class="bs-codemirror-bottom-text">
示例
<strong>call 存储过程名称(<span
style="color: red;"
>${参数名称}</span>,?)</strong>
<strong>call 存储过程名称(<span style="color: red;">${参数名称}</span>,?)</strong>
</div>
</div>
<div style="text-align: center; padding: 16px 0;">
@ -219,8 +217,9 @@
<span>{{ param.name }}</span>&nbsp;<span
v-show="param.remark"
style="color: #909399;"
>({{ param.remark
}})</span>
>
({{ param.remark }})
</span>
<el-button
class="edit_field"
type="text"

@ -345,7 +345,7 @@ export default {
position: relative;
background-color: rgba(var(--bs-el-color-primary-active), 0.4);
color: var(--bs-el-text);
&::after{
&::before{
content: '';
position: absolute;
left: 0;

@ -1,7 +1,7 @@
/* theme color */
/* icon font path, required */
$--font-path: '~element-ui/lib/theme-chalk/fonts';
$--font-path: "~element-ui/lib/theme-chalk/fonts";
@import "~element-ui/packages/theme-chalk/src/index";
//
@ -85,7 +85,6 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
font-size: 12px;
}
}
}
//
@ -99,7 +98,6 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
background-color: transparent !important;
border: 1px solid #e4e4e4 !important;
th > .cell {
padding-left: 14px !important;
}
@ -141,7 +139,8 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
background: #f5f5f5;
}
.el-table th, .el-table td {
.el-table th,
.el-table td {
padding: 8px 0 !important;
}
@ -186,7 +185,6 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
.cell .el-button {
padding: 5px 8px !important;
}
}
//
.bs-pagination {
@ -237,7 +235,8 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
background-color: var(--bs-el-color-primary) !important;
}
.el-pagination span:not([class*=suffix]), .el-pagination button {
.el-pagination span:not([class*="suffix"]),
.el-pagination button {
font-size: 14px !important;
min-width: 0 !important;
height: 32px !important;
@ -252,7 +251,6 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
.el-pagination__editor.el-input .el-input__inner {
height: 32px !important;
}
}
/*解决el-scroll底部出现空白滚动条*/
@ -260,8 +258,6 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
overflow-x: hidden !important;
}
// dialog
.bs-dialog-wrap {
.el-select {
@ -287,7 +283,7 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
// dialog
.el-dialog__header {
background: #f5f5f5;
background-color: #F5F5F5;
background-color: #f5f5f5;
padding: 0 !important;
height: 40px;
line-height: 40px;
@ -326,3 +322,7 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
}
}
.el-scrollbar__thumb {
background: rgba(144, 147, 153, 0.3) !important;
background-color: rgba(144, 147, 153, 0.3) !important;
}

Loading…
Cancel
Save