From 7f0ec738a0af4d9d334ce85012f864f2519ebb3f Mon Sep 17 00:00:00 2001
From: songshankun <songshankun@foxmail.com>
Date: 星期六, 23 九月 2023 13:32:24 +0800
Subject: [PATCH] feat: 表格组件新增表头配置组件, 各列表页适配此组件
---
src/assets/style/index.scss | 43 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 43 insertions(+), 0 deletions(-)
diff --git a/src/assets/style/index.scss b/src/assets/style/index.scss
index d4cf06e..89fe4ef 100644
--- a/src/assets/style/index.scss
+++ b/src/assets/style/index.scss
@@ -135,3 +135,46 @@
margin-left: auto;
}
}
+
+.border_radius_12{
+ border-radius: 12px;
+}
+
+::-webkit-scrollbar {
+ width: 8px !important;
+ height: 8px !important;
+ -webkit-appearance: none;
+ background-color: #00000040;
+}
+::-webkit-scrollbar-thumb {
+ box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
+ background: #e1e1e1;
+}
+::-webkit-scrollbar-track {
+ box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
+ // border-radius: 10px;
+ background: #ffffff;
+ // background:#2c60c5;
+}
+
+.el-button--primary {
+ color: #fff;
+ background-color: $color-primary !important;
+ border-color: $color-primary !important;
+}
+
+.el-pagination.is-background .el-pager li:not(.disabled).active {
+ background: $color-primary !important;
+}
+
+.el-button--text {
+ color: #2a78fb !important;
+}
+.el-button--text.is-disabled {
+ color: #7c7f85 !important;
+}
+.el-button--primary {
+ color: #fff;
+ background-color: #2a78fb !important;
+ border-color: #2a78fb !important;
+}
--
Gitblit v1.8.0