File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
packages/@vue/cli-ui/src/components Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ export default {
78
78
<style lang="stylus" scoped>
79
79
@import "~@/style/imports"
80
80
81
- $bg = darken ($vue-ui-color-dark , 70% )
81
+ $bg = $vue-ui-color-light-neutral
82
+ $bg-dark = $vue-ui-color-dark
82
83
83
84
.project-nav-button
84
85
position relative
@@ -91,7 +92,7 @@ $bg = darken($vue-ui-color-dark, 70%)
91
92
bottom 12px
92
93
left 27px
93
94
pointer-events none
94
- border solid 2px $vue-ui-color-dark
95
+ border solid 2px $bg
95
96
transition border-color .1s
96
97
& .type-info
97
98
background $vue-ui-color-info
@@ -105,6 +106,8 @@ $bg = darken($vue-ui-color-dark, 70%)
105
106
background $vue-ui-color-accent
106
107
& .type-dim
107
108
background $md-grey
109
+ .vue-ui-dark-mode &
110
+ border-color $bg-dark
108
111
109
112
.wide &
110
113
.bullet
@@ -113,9 +116,13 @@ $bg = darken($vue-ui-color-dark, 70%)
113
116
& :hover
114
117
.bullet
115
118
border-color lighten ($bg , 25% )
119
+ .vue-ui-dark-mode &
120
+ border-color lighten ($bg-dark , 25% )
116
121
& :active
117
122
.bullet
118
123
border-color darken ($bg , 8% )
124
+ .vue-ui-dark-mode &
125
+ border-color darken ($bg-dark , 8% )
119
126
120
127
.image-icon
121
128
max-width 24px
You can’t perform that action at this time.
0 commit comments