浏览代码

feat(welcome-page): added hover fill to trash icon (#15431)

Fixes #15430.
factor2
Wilson Furtado 5 个月前
父节点
当前提交
00c6bee2fd
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 16 次插入8 次删除
  1. 16
    8
      css/_meetings_list.scss

+ 16
- 8
css/_meetings_list.scss 查看文件

@@ -19,11 +19,11 @@
19 19
         flex-direction: column;
20 20
 
21 21
         .description {
22
-           color: #2f3237;
23
-           font-size: 14px;
24
-           line-height: 18px;
25
-           margin-bottom: 16px;
26
-           max-width: 436px;
22
+            color: #2f3237;
23
+            font-size: 14px;
24
+            line-height: 18px;
25
+            margin-bottom: 16px;
26
+            max-width: 436px;
27 27
         }
28 28
     }
29 29
 
@@ -156,14 +156,22 @@
156 156
         margin-right: 16px;
157 157
         position: absolute;
158 158
 
159
-        &> svg {
159
+        &>svg {
160 160
             fill: #0074e0;
161 161
         }
162 162
     }
163 163
 
164
-    .item:hover, .item:focus, .item:focus-within {
164
+    .item:hover,
165
+    .item:focus,
166
+    .item:focus-within {
165 167
         .delete-meeting {
166 168
             display: block;
167 169
         }
170
+
171
+        .delete-meeting:hover {
172
+            &>svg {
173
+                fill: #4687ED;
174
+            }
175
+        }
168 176
     }
169
-}
177
+}

正在加载...
取消
保存