whao 2 vuotta sitten
vanhempi
commit
4c8ca77abd
1 muutettua tiedostoa jossa 41 lisäystä ja 12 poistoa
  1. 41 12
      src/views/eventdetailsdialog.vue

+ 41 - 12
src/views/eventdetailsdialog.vue

@@ -748,9 +748,11 @@
             </tr>
             </tbody>
           </table>
+		  <div class="btm-btn-group">
           <el-button size="mini" type="primary"
                      @click="updateCentereventTEventcatalogueStatus('gd',true)">归档
           </el-button>
+		  </div>
         </form>
       </div>
     </el-dialog>
@@ -1488,7 +1490,7 @@ export default {
     border-collapse: collapse;
     width: 99%;
     margin: 0 auto;
-    color: #000;
+    color: $inBlue;
   }
 
   table input {
@@ -1496,15 +1498,17 @@ export default {
     border: 0px;
     outline: 0px;
     font-family: "微软雅黑";
+	background: none ;
+	color: $inBlue;
 
   }
-  table input:hover {
-    background: #daf1f8;
-
+  table th input:hover{
+	 background: $eventBG;
   }
 
+
   table thead th {
-    font-size: 1.2rem;
+    font-size: 1rem;
     font-family: "宋体";
     height: 2rem;
     border-top: 0px;
@@ -1514,11 +1518,12 @@ export default {
   }
 
   table tr td {
-    font-size: 1.2rem;
+    font-size: 1rem;
     font-family: "fontnameRegular";
     height: 2rem;
-    border: 1px solid #000;
+    border: 1px $searchBorder;
     text-align: center;
+	
   }
 
   .font1 {
@@ -1535,12 +1540,20 @@ export default {
   }
 
   table tr td input {
-    width: 87%;
+    width: 100%;
     /*    display: inline-block;*/
     outline: 0px;
     text-align: left;
     height: 94%;
+		color: $inBlue;
+		background: none ;
+		float: left;
+		padding: 0 .5rem;
+  }
+  table tr td input:hover{
+	  background: $eventBG;
   }
+  
 
   .int_tr td input {
     text-align: center !important;
@@ -1553,7 +1566,7 @@ export default {
   }
 
   .table2 tr td {
-    font-size:1.2rem;
+    font-size:1rem;
   }
 
   .table2 tr td select {
@@ -1563,9 +1576,11 @@ export default {
     font-family: "微软雅黑";
     font-size: 1rem;
     padding-left: 1%;
+	color: $inBlue;
+	background: none ;
   }
   .table2 tr td select:hover{
-    background: #e9f5f8;
+    background: $eventBG;
   }
 
   .table2 tr td select option {
@@ -1574,7 +1589,7 @@ export default {
   }
 
   .border_l0 {
-    border-right: 1px solid #ececec !important;
+    // border-right: 1px solid #ececec !important;
   }
 
   .table2 tr td textarea {
@@ -1584,12 +1599,26 @@ export default {
     padding: .5rem;
     font-size: 1rem;
     resize: none;
+	background: none ;
+	color: $inBlue;
+	
   }
-
+  .table2 tr td textarea:hover {
+	background: $eventBG;
+  }
+ 
   .tr_border td {
     border-right: 0px !important;
     border-left: 0px !important;
     border-bottom: 0px !important;
     font-size: 15px;
   }
+  .btm-btn-group{
+  	padding: 1rem 0;
+  	width: 100%;
+  	display: flex;
+	button{
+		padding: .5rem 2rem;
+	}
+  }
 </style>