From b921e333300a26393291ffac44e9d9a2ed2d92ed Mon Sep 17 00:00:00 2001
From: wang1 <844966816@qq.com>
Date: 星期四, 13 七月 2023 18:18:49 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 Source/UBCS-WEB/dist/src/styles/sidebar.scss |   91 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)

diff --git a/Source/UBCS-WEB/dist/src/styles/sidebar.scss b/Source/UBCS-WEB/dist/src/styles/sidebar.scss
new file mode 100644
index 0000000..f4995d7
--- /dev/null
+++ b/Source/UBCS-WEB/dist/src/styles/sidebar.scss
@@ -0,0 +1,91 @@
+
+
+.el-menu--popup{
+    .el-menu-item{
+        background-color: #20222a;
+        i,span{
+            color:hsla(0,0%,100%,.7);
+        }
+        &:hover{
+            i,span{
+                color:#fff;
+            }
+        }
+        &.is-active {
+            background-color: rgba(0,0,0,.8);
+            &:before {
+                content: '';
+                top: 0;
+                left: 0;
+                bottom: 0;
+                width: 4px;
+                background: #409eff;
+                position: absolute;
+            }
+            i,span{
+                color:#fff;
+            }
+        }
+    }
+    
+}
+.avue-sidebar {
+    user-select: none; 
+    position: relative;
+    padding-top: 60px;
+    height: 100%;
+    position: relative;
+    background-color: #20222a;
+    transition: width .2s;
+    box-sizing: border-box;
+    box-shadow: 2px 0 6px rgba(0,21,41,.35);
+    .el-scrollbar__wrap {
+        overflow-x: hidden;
+    }
+    &--tip{
+        width:90%;
+        height: 140px;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        border-radius: 5px;
+        position: absolute;
+        top:5px;
+        left:5%;
+        color:#ccc;
+        z-index: 2;
+        text-align: center;
+        font-size: 14px;
+        background-color: rgba(0,0,0,.4);
+    }
+    .el-menu-item,.el-submenu__title{
+        i{
+            margin-right: 10px;
+        }
+        i,span{
+            color:hsla(0,0%,100%,.7);
+        }
+        &:hover{
+            background: transparent;
+            i,span{
+               color:#fff;
+            }
+        }
+        &.is-active {
+            &:before {
+                content: '';
+                top: 0;
+                left: 0;
+                bottom: 0;
+                width: 4px;
+                background: #409eff;
+                position: absolute;
+            }
+            background-color: rgba(0,0,0,.8);
+            i,span{
+                color:#fff;
+            }
+        }
+    }
+    
+}
\ No newline at end of file

--
Gitblit v1.10.0