Browse Source

Merge branch 'master' of http://47.108.172.52:3000/dayou/productivity-platform-web

GouGengquan 9 months ago
parent
commit
5f58843967
2 changed files with 133 additions and 136 deletions
  1. 7 6
      src/assets/base.css
  2. 126 130
      src/views/home/index.vue

+ 7 - 6
src/assets/base.css

@@ -21,7 +21,6 @@
   --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
 
   --thenme-color-orange: #ff6154;
-  --thenme-report-icon: #ff8176;
 }
 
 /* semantic color variables for this project */
@@ -112,18 +111,20 @@ body {
   padding-top: 20px;
 }
 .report-item {
-  height: auto;
   width: 100%;
-  margin-bottom: 20px;
+  margin-bottom: 10px;
   border: none;
 }
+.report-item:hover {
+  background: rgb(255,255,255);
+background: linear-gradient(15deg, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 50%, rgba(255,97,84,0.103876925770308106) 100%);
+}
 .report-icon {
   float: left;
   margin-left: -20px;
 }
 .report-text {
   float: left;
-  height: auto;
   width: 88%;
   margin-left: 2%;
 }
@@ -138,7 +139,7 @@ body {
   float: right;
   width: 50px;
   height: 50px;
-  margin-right: -20px;
+  margin-right: -10px;
   margin-top: 0px;
   font-size: 40px;
   text-align: center;
@@ -152,6 +153,6 @@ body {
   cursor: pointer;
 }
 .report-text-name:hover {
-  color: #ff6154;
+  text-decoration: underline;
   cursor: pointer;
 }

File diff suppressed because it is too large
+ 126 - 130
src/views/home/index.vue