forked from FoundKeyGang/FoundKey
example commit
This commit is contained in:
parent
4dde54e344
commit
97d68d7b31
3 changed files with 10 additions and 10 deletions
|
@ -22,23 +22,17 @@ export default Vue.extend({
|
|||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
root(isDark)
|
||||
.nrvgflfuaxwgkxoynpnumyookecqrrvh
|
||||
display inline-block
|
||||
padding 4px 8px
|
||||
font-size 0.7em
|
||||
color isDark ? #393f4f : #fff
|
||||
background isDark ? #687390 : #b1b9c1
|
||||
color var(--cwButtonFg)
|
||||
background var(--cwButtonBg)
|
||||
border-radius 2px
|
||||
cursor pointer
|
||||
user-select none
|
||||
|
||||
&:hover
|
||||
background isDark ? #707b97 : #bbc4ce
|
||||
|
||||
.nrvgflfuaxwgkxoynpnumyookecqrrvh[data-darkmode]
|
||||
root(true)
|
||||
|
||||
.nrvgflfuaxwgkxoynpnumyookecqrrvh:not([data-darkmode])
|
||||
root(false)
|
||||
background var(--cwButtonHoverBg)
|
||||
|
||||
</style>
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
"autocompleteItemHoverBg": "rgba(255, 255, 255, 0.1)",
|
||||
"autocompleteItemText": "rgba(255, 255, 255, 0.8)",
|
||||
"autocompleteItemTextSub": "rgba(255, 255, 255, 0.3)",
|
||||
"cwButtonBg": "#687390",
|
||||
"cwButtonFg": "#393f4f",
|
||||
"cwButtonHoverBg": "#707b97",
|
||||
"reactionPickerButtonHoverBg": "rgba(255, 255, 255, 0.18)",
|
||||
"desktopHeaderBg": "#313543",
|
||||
"mobileSignedInAsBg": "#273c34",
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
"autocompleteItemHoverBg": "rgba(0, 0, 0, 0.1)",
|
||||
"autocompleteItemText": "rgba(0, 0, 0, 0.8)",
|
||||
"autocompleteItemTextSub": "rgba(0, 0, 0, 0.3)",
|
||||
"cwButtonBg": "#b1b9c1",
|
||||
"cwButtonFg": "#fff",
|
||||
"cwButtonHoverBg": "#bbc4ce",
|
||||
"reactionPickerButtonHoverBg": "#eee",
|
||||
"desktopHeaderBg": "#f7f7f7",
|
||||
"mobileSignedInAsBg": "#fcfff5",
|
||||
|
|
Loading…
Reference in a new issue