Browse Source

滚动条,最小宽度,高度规范

cxmo 1 year ago
parent
commit
ffe2ffb7c5

+ 10 - 2
src/App.vue

@@ -221,7 +221,7 @@ iframe {
   margin-top: 10px;
 }
 
-/*修改滚动条样式*/
+/*修改滚动条样式 chrome edge safari*/
 div::-webkit-scrollbar {
   width: 6px;
   height: 6px;
@@ -240,6 +240,10 @@ div::-webkit-scrollbar-thumb:hover {
 div::-webkit-scrollbar-corner {
   background: #666;
 }
+/*firefox*/
+div{
+    scrollbar-width: thin;
+}
 .customName:hover {
   text-decoration: underline;
 }
@@ -269,7 +273,7 @@ div::-webkit-scrollbar-corner {
   }
 }
 
-/*修改滚动条样式*/
+/*修改滚动条样式 chrome edge safari*/
 ul::-webkit-scrollbar {
   width: 6px;
   height: 6px;
@@ -288,6 +292,10 @@ ul::-webkit-scrollbar-thumb:hover {
 ul::-webkit-scrollbar-corner {
   background: #666;
 }
+/*firefox*/
+ul{
+    scrollbar-width: thin;
+}
 
 textarea {
   font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",

+ 5 - 4
src/views/Home.vue

@@ -277,12 +277,11 @@
         >
           <el-row
             class="grid-content bg-purple-light contentc"
-            style="min-width: 1200px"
+            style="min-width: 1000px"
           >
             <el-col
               :span="24"
               class="content-wrapper"
-              :style="!isHaveAside ? 'padding:30px;' : ''"
             >
               <transition name="fade" mode="out-in">
                 <router-view></router-view>
@@ -1179,7 +1178,7 @@ export default {
       //padding-top: 22px;
       left: 0;
       right:0;
-      top: 60px;
+      top: 68px; //应该是60px 但为了留出header的box-shadow多移了8px
       bottom: 0;
       z-index: 100;
       /*修改滚动条样式*/
@@ -1207,7 +1206,9 @@ export default {
         overflow: auto;
         .content-wrapper {
           width: 100%;
-          padding: 30px;
+          //padding-top:22px,是给header的box-shadow留出位置;
+          //padding-bottom:22px,是给内容页的滚动条留出位置
+          padding: 22px 30px;
           box-sizing: border-box;
           overflow: auto;
         }

+ 1 - 1
src/views/classify_manage/chapterSetting.vue

@@ -262,7 +262,7 @@ import PermissionDialog from './components/PermissionDialog.vue'
 
 <style lang="scss" scoped>
   #chapter-settring-container{
-    min-height: calc(100vh - 110px);
+    min-height: calc(100vh - 120px);
     box-sizing: border-box;
     .head-buttons-zone{
       background-color: white;

+ 1 - 1
src/views/dataEntry_manage/onlineExcelCopy.vue

@@ -576,7 +576,7 @@ created() {
 <style lang="scss" scoped>
   .excel-data-container{
     display: flex;
-    height: calc(100vh - 110px);
+    height: calc(100vh - 120px);
     .online-excel{
       flex-grow: 1;
       height: 100%;

+ 1 - 1
src/views/dataEntry_manage/thirdBase/UNdata.vue

@@ -243,7 +243,7 @@ import { dataInterence } from "@/api/api.js";
 <style lang="scss" scoped>
   #UN-data-container{
     background-color: white;
-    min-height: calc(100vh - 110px);
+    min-height: calc(100vh - 120px);
     position: relative;
     padding-bottom: 50px;
     box-sizing: border-box;

+ 2 - 2
src/views/report_manage/cloudDisk.vue

@@ -691,7 +691,7 @@ import 'streamsaver/examples/zip-stream'
 
 <style lang="scss" scoped>
   #cloud-disk-container{
-    min-height: calc(100vh - 110px);
+    min-height: calc(100vh - 120px);
     box-sizing: border-box;
     .top-zone{
       display: flex;
@@ -713,7 +713,7 @@ import 'streamsaver/examples/zip-stream'
     .table-zone{
       background-color: white;
       padding: 6px 10px 20px;
-      min-height: 727px;
+      min-height: 700px;
       box-sizing: border-box;
       .bread-crumb-row{
         padding:14px 10px 20px 50px;

+ 2 - 2
src/views/system_manage/outlinkListConfig.vue

@@ -161,8 +161,8 @@ import mPage from '@/components/mPage.vue';
 
 <style lang="scss" scoped>
   .outlink-list-config{
-    min-height: calc(100vh - 110px);
-    height:calc(100vh - 110px);
+    min-height: calc(100vh - 120px);
+    height:calc(100vh - 120px);
     background-color: white;
     border: solid 1px #DCDFE6;
     box-sizing: border-box;