Skip to content

Commit 78657e2

Browse files
committed
fix(light): highlight on hover
1 parent c1c73b9 commit 78657e2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

light/src/components/CustomSelect.vue

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,17 @@ export default {
148148
.vcron-select-input {
149149
display: inline-block;
150150
border-radius: 3px;
151-
border: 1px solid #eee;
152-
background-color: #ddd;
151+
border: 1px solid #ddd;
152+
background-color: #eee;
153153
user-select: none;
154154
padding: 0 0.5em;
155155
}
156156
157+
.vcron-select-input:hover {
158+
border: 1px solid #ccc;
159+
background-color: #ddd;
160+
}
161+
157162
.vcron-select-list {
158163
position: absolute;
159164
top: 1.8em;

0 commit comments

Comments
 (0)