zhouna il y a 5 ans
Parent
commit
fe92e14387
2 fichiers modifiés avec 29 ajouts et 2 suppressions
  1. 23 0
      src/css/console.less
  2. 6 2
      src/js/console.js

+ 23 - 0
src/css/console.less

@@ -76,6 +76,7 @@ body.console {
     font-size: 16px;
     font-weight: bold;
     color: @themeFontClr;
+    opacity: .9;
     border-bottom: 1px solid @themeBorderClr;
     height: 40px;
     line-height: 40px;
@@ -125,14 +126,17 @@ body.console {
     display: inline-block;
     font-size: 16px;
     color: @themeFontClr;
+    opacity: .9;
     span {
       font-size: 16px;
       color: #fff;
+      opacity: .9;
     }
   }
   .dateDetail {
     font-size: 12px;
     color: @themeFontClr;
+    opacity: .6;
     margin-right: 30px;
     font-weight: normal;
   }
@@ -157,9 +161,11 @@ body.console {
     .year {
       background-color: #00A1FF;
       color: #fff;
+      opacity: .9;
     }
     .mon {
       color: @themeFontClr;
+      opacity: .6;
     }
   }
 }
@@ -248,6 +254,7 @@ body.console {
         text-overflow: ellipsis;
         white-space: nowrap;
         color: @themeFontClr;
+        opacity: .6;
       }
       .smp {
         width: 100px;
@@ -255,6 +262,7 @@ body.console {
     }
     .deptNum {
       color: @themeFontClr;
+      opacity: .6;
       font-size: 16px;
       font-weight: bold;
       padding-right: 10px;
@@ -263,6 +271,7 @@ body.console {
     }
     .percent {
       color: @themeFontClr;
+      opacity: .6;
       width: 40px;
     }
   }
@@ -282,6 +291,7 @@ body.console {
       float: left;
       width: 33.33%;
       color: #fff;
+      opacity: .9;
       border-left: 3px solid #F2637B;
       height: 72px;
       box-sizing: border-box;
@@ -299,6 +309,9 @@ body.console {
     /*background-color: @themeColor;*/
     height: 410px;
     overflow: hidden;
+    .partTitlePub{
+      opacity: .9;
+    }
     .list {
       padding: 6px 5px;
       width: 100%;
@@ -323,6 +336,7 @@ body.console {
     td {
       padding: 7px 10px;
       color: @themeFontClr;
+      opacity: .9;
       i {
         width: 17px;
         height: 17px;
@@ -330,6 +344,7 @@ body.console {
         border-radius: 8px;
         background-color: #526186;
         color: #fff;
+        opacity: .9;
         display: inline-block;
         text-align: center;
         font-size: 12px;
@@ -347,6 +362,7 @@ body.console {
     .td02name {
       min-width: 113px;
       color: @themeFontClr;
+      opacity: .9;
     }
     .td02 {
     }
@@ -385,6 +401,7 @@ body.console {
     p {
       text-align: center;
       color: @themeFontClr;
+      opacity: .9;
       font-weight: bold;
       font-size: 16px;
       padding-bottom: 5px;
@@ -403,6 +420,7 @@ body.console {
       text-align: center;
       font-size: 12px;
       color: @themeFontClr;
+      opacity: .6;
       font-weight: normal;
       width: 78px;
       position: absolute;
@@ -450,6 +468,7 @@ body.console {
   cursor: pointer;
   span{
     color: @themeFontClr;
+    opacity: .9;
   }
   .name {
     float: left;
@@ -458,6 +477,7 @@ body.console {
   .personNum {
     float: right;
     color: @themeFontClr;
+    opacity: .9;
   }
 }
 
@@ -468,10 +488,12 @@ body.console {
   line-height: 40px;
   font-weight: bold;
   color: @themeFontClr;
+  opacity: .9;
 }
 .explainNum {
   margin-top: 8px;
   color: @themeFontClr;
+  opacity: .6;
 }
 
 .toggleSlide {
@@ -491,6 +513,7 @@ body.console {
     border-radius: 4px;
     span{
       color: @themeFontClr;
+      opacity: .9;
     }
     img {
       width: 10px;

+ 6 - 2
src/js/console.js

@@ -102,9 +102,11 @@ function dateChange(){
     $(".monthYear .mon").click(function(){
         $(this).css({
             backgroundColor:'#00A1FF',
-            color:'#fff'
+            color:'#fff',
+            opacity:'0.9',
         }).siblings().css({
             color:'#fff',
+            opacity:'0.6',
             backgroundColor:'#203463'
         })
         dateType = 1
@@ -113,9 +115,11 @@ function dateChange(){
     $(".monthYear .year").click(function(){
         $(this).css({
             backgroundColor:'#00A1FF',
-            color:'#fff'
+            color:'#fff',
+            opacity:'0.9',
         }).siblings().css({
             color:'#fff',
+            opacity:'0.6',
             backgroundColor:'#203463'
         })
         dateType = 2