From 79fcfcba337fa44d7f5a2b565f0573530afec2ff Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期二, 01 九月 2020 22:33:05 +0800
Subject: [PATCH] 新增区域不能写入的bug

---
 public/index.html |  110 +++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 79 insertions(+), 31 deletions(-)

diff --git a/public/index.html b/public/index.html
index 095ad5a..577320a 100644
--- a/public/index.html
+++ b/public/index.html
@@ -24,43 +24,44 @@
       color: #2c3e50;
       width: 100%;
       height: 100%;
+      font-size: 12px;
     }
     .el-button--primary:hover,
-      .el-button--primary:focus {
-        background: #2249b4;
-        border-color: #2249b4;
-      }
-      .el-button--warning:hover,
-      .el-button--warning:focus {
-        background: #fd780b;
-        border-color: #fd780b;
-      }
+    .el-button--primary:focus {
+      background: #2249b4;
+      border-color: #2249b4;
+    }
+    .el-button--warning:hover,
+    .el-button--warning:focus {
+      background: #fd780b;
+      border-color: #fd780b;
+    }
 
-      .el-button--danger:hover,
-      .el-button--danger:focus {
-        background: #d22929;
-        border-color: #d22929;
-      }
+    .el-button--danger:hover,
+    .el-button--danger:focus {
+      background: #d22929;
+      border-color: #d22929;
+    }
 
-      .el-button--info {
-        color: #222222;
-      }
-      .el-button--info:hover,
-      .el-button--info:focus {
-        background: rgb(190, 190, 190);
-        border-color: rgb(190, 190, 190);
-      }
+    .el-button--info {
+      color: #222222;
+    }
+    .el-button--info:hover,
+    .el-button--info:focus {
+      background: rgb(190, 190, 190);
+      border-color: rgb(190, 190, 190);
+    }
 
-      .el-button--text:focus,
-      .el-button--text:hover {
-        color: #2249b4;
-      }
+    .el-button--text:focus,
+    .el-button--text:hover {
+      color: #2249b4;
+    }
 
-      .el-tag.el-tag--info {
-        background-color: #f4f4f5;
-        border-color: #e9e9eb;
-        color: #909399;
-      }
+    body .el-tag.el-tag--info {
+      background-color: #f4f4f5;
+      border-color: #e9e9eb;
+      color: #909399;
+    }
     /* reset */
     html {
       color: #000;
@@ -306,6 +307,53 @@
       height: 0;
       clear: both;
     }
+    .mb10 {
+      margin-bottom: 10px;
+    }
+    .mt15 {
+      margin-top: 15px;
+    }
+    .pl20 {
+      padding-left: 20px;
+    }
+    .cursor-pointer{
+      cursor: pointer;
+    }
+    /* .flex-box{
+      display: flex;
+    } */
+    .el-button--primary {
+      color: #FFFFFF;
+      background-color: #3D68E1!important;
+      border-color: #3D68E1!important;
+    }
+    .el-button--primary:hover,.el-button--primary:focus {
+      background: #2249b4!important;
+      border-color: #2249b4!important;
+    }
+    /* .el-input>input,.el-date-editor.el-input__inner{
+      border-color: #dcdfe6!important;
+    } */
+    /* .el-date-editor.el-input__inner:focus{
+      border-color: #2249b4!important;
+    } */
+    /* .el-input>input:focus{
+      border-color: #3D68E1!important;
+    }
+    .el-input__inner:focus {
+      outline: none!important;
+      border-color: #3D68E1!important;
+    } */
+    .el-select-dropdown__list{
+      text-align: left;
+    }
+    .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before{
+      margin-left: -8px!important;
+      margin-right: 0;
+    }
+    .el-input.is-disabled .el-input__suffix{
+      visibility: hidden;
+    }
     </style>
 
   </head>

--
Gitblit v1.8.0