From 3e17c0d3c0e94602376dec43b9dd55e1abb094d0 Mon Sep 17 00:00:00 2001
From: YM <479443481@qq.com>
Date: 星期三, 22 五月 2024 16:28:58 +0800
Subject: [PATCH] 挂载全局教材配置信息,增加主题色应用

---
 src/books/childHealth/assets/main.less |   63 +++++++++++++++++++++++++++++--
 1 files changed, 58 insertions(+), 5 deletions(-)

diff --git a/src/books/childHealth/assets/main.less b/src/books/childHealth/assets/main.less
index e0fccc2..0fa669a 100644
--- a/src/books/childHealth/assets/main.less
+++ b/src/books/childHealth/assets/main.less
@@ -1,4 +1,6 @@
 .temp-book {
+  width: 100%;
+  height: 100%;
   font-family: "瀹嬩綋", SimSun, sans-serif;
   .custom_tag {
     background-color: #1eb9ee;
@@ -349,6 +351,9 @@
     outline: none;
     background: transparent;
   }
+  .textarea-border {
+    border-color:#15c0f2;
+  }
   .completion-input {
     width: 64px !important;
     color: #000 !important;
@@ -437,6 +442,7 @@
   .learn-btn img {
     cursor: pointer;
     height: 30px;
+    // width: 25px;
   }
 
   .lh {
@@ -541,9 +547,9 @@
   }
   .dl-bl {
     display: inline-block;
-  } 
+  }
   .mt-10 {
-    margin-top:10px
+    margin-top: 10px;
   }
   .w100 {
     width: 100% !important;
@@ -552,17 +558,21 @@
     color: #15c0f2;
   }
   .video-border {
-    border:1px dotted #15c0f2
+    border: 1px dotted #15c0f2;
   }
   .fm-st {
     font-family: "STKaiti";
   }
   .btn {
     cursor: pointer;
-    width: 30px;
+    width: 23px;
+    color: #15c0f2;
+    border-radius: 5px;
+    border:1px solid #666;
+    margin-left: 5px;
   }
   .table-br-color {
-    border-color:#e9e9e9
+    border-color: #e9e9e9;
   }
   .span-border {
     margin-left: -13px;
@@ -582,6 +592,26 @@
   }
   .word-break-all {
     word-break: break-all;
+  }
+  .textarea-text {
+    font-size: 16px;
+    font-family: "STKaiti";
+  }
+  .mt-20 {
+    margin-top: 20px;
+  }
+  .mt-40 {
+    margin-top: 40px;
+  }
+  .ta-br {
+    border-color: #C0C4CC;
+  }
+  textarea:focus {
+    border-color:#15c0f2;
+    outline: none; 
+  }
+  .cl-66 {
+    color: #666;
   }
 }
 
@@ -618,3 +648,26 @@
     }
   }
 }
+
+
+::-webkit-scrollbar {
+  width: 8px;
+  height: 10px;
+}
+  
+  ::-webkit-scrollbar-track-piece {
+  background-color: rgba(0, 0, 0, 0.1);
+  -webkit-border-radius: 6px;
+}
+  
+  ::-webkit-scrollbar-thumb:vertical {
+  height: 5px;
+  background-color:rgba(125, 125, 125, 0.3);
+  -webkit-border-radius:6px;
+}
+  
+  ::-webkit-scrollbar-thumb:horizontal {
+   width: 5px;
+   background-color: rgba(125, 125, 125, 0.3);
+   -webkit-border-radius: 6px;
+}
\ No newline at end of file

--
Gitblit v1.9.1