From ae2d855c89ca722ac7309fdf1aa6ceed370e3b95 Mon Sep 17 00:00:00 2001
From: heyujie <516346543@qq.com>
Date: 星期一, 11 十月 2021 20:22:30 +0800
Subject: [PATCH] 监控ui

---
 src/pages/settings/views/keyboardLanguage.vue |   30 ++++++++++++++++--------------
 1 files changed, 16 insertions(+), 14 deletions(-)

diff --git a/src/pages/settings/views/keyboardLanguage.vue b/src/pages/settings/views/keyboardLanguage.vue
index 2e30cae..c8a7d6c 100644
--- a/src/pages/settings/views/keyboardLanguage.vue
+++ b/src/pages/settings/views/keyboardLanguage.vue
@@ -10,7 +10,8 @@
           @click="openRight( i)"
           ref="leftbar"
         >
-          <span class="iconfont">{{ item.icon }}</span>
+          <img :src="item.icon_black" alt="" v-if="activePage != i" class="secondIcon">
+          <img :src="item.icon_white" alt="" v-else class="secondIcon">
           <span class="title">{{ item.name }}</span>
         </div>
       </div>
@@ -26,9 +27,9 @@
             <span class="name">{{ item.Name }}</span>
             <span
               class="icon iconfont"
-              style="color: #4E94FF;font-size:16px;"
+              style="color: var(--colorCard);font-size:16px;"
               v-show="activeLang == item.Lang"
-              >&#xe6f1;</span
+              >&#xe759;</span
             >
           </div>
         </div>
@@ -45,7 +46,7 @@
               class="icon iconfont"
               style="color: #4E94FF;font-size:16px;"
               v-show="activeKb == item.id"
-              >&#xe6f1;</span
+              >&#xe759;</span
             >
           </div>
         </div>
@@ -72,8 +73,8 @@
       langList: [],
       keyboardList: [],
       tabList: [
-        { name: "绯荤粺璇█", icon: "\ue6e8" },
-        { name: "閿洏绠$悊", icon: "\ue6fe" },
+        { name: "绯荤粺璇█", icon: "\ue74a" ,icon_white:"/images/settings/璇█-鐧�.png",icon_black:"/images/settings/璇█-榛�.png"},
+        { name: "閿洏绠$悊", icon: "\ue74e" ,icon_white:"/images/settings/閿洏-鐧�.png",icon_black:"/images/settings/閿洏-榛�.png"},
       ],
       activePage: 0,
     };
@@ -186,18 +187,19 @@
         font-size: 16px;
         font-weight: 700;
       }
-      .iconfont {
+      .secondIcon {
         margin: 15px;
-        font-size: 24px;
+        width: 24px;
+        height: 24px;
       }
     }
     .menu-item-active {
-      background-color: var(--colorCard);
+      background-color: var(--colorCard) !important;
       color: white;
+      
     }
     .menu-item:hover {
-      background-color: var(--colorCard);
-      color: white;
+      background-color: #F2F2F7;
     }
   }
   .language-right {
@@ -256,7 +258,7 @@
         }
       }
       .bar:hover{
-            border: 2px solid #4E94FF;
+            border: 2px solid var(--colorCard);
       }
       .title {
          cursor:default ;
@@ -265,7 +267,7 @@
        border: 2px solid #f8f8f8 !important;
       }
     }
-    .save-btn {
+    /* .save-btn {
       background-color: #3d68e1;
       width: 240px;
       height: 40px;
@@ -275,7 +277,7 @@
       line-height: 40px;
       font-size: 14px;
       margin-top: 20px;
-    }
+    } */
   }
 }
 </style>

--
Gitblit v1.8.0