Skip to content

Commit 5470adb

Browse files
committed
- switch back to transparent border on open dropdown toggle
- pull font-family up to .v-select - add default box-shadow and background to dropdown menu
1 parent da12f96 commit 5470adb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/Select.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<style>
22
.v-select {
33
position: relative;
4+
font-family: sans-serif;
45
}
56
.v-select,
67
.v-select * {
78
-webkit-box-sizing: border-box;
89
-moz-box-sizing: border-box;
910
box-sizing: border-box;
10-
font-family: sans-serif;
1111
}
1212
/* Open Indicator */
1313
.v-select .open-indicator {
@@ -76,6 +76,7 @@
7676
cursor: pointer;
7777
}
7878
.v-select.open .dropdown-toggle {
79+
border-bottom-color: transparent;
7980
border-bottom-left-radius: 0;
8081
border-bottom-right-radius: 0;
8182
}
@@ -91,10 +92,12 @@
9192
width: 100%;
9293
overflow-y: scroll;
9394
border: 1px solid rgba(0, 0, 0, .26);
95+
box-shadow: 0px 3px 6px 0px rgba(0,0,0,.15);
9496
border-top: none;
9597
border-radius: 0 0 4px 4px;
9698
text-align: left;
9799
list-style: none;
100+
background: #fff;
98101
}
99102
.v-select .no-options {
100103
text-align: center;

0 commit comments

Comments
 (0)