This commit is contained in:
syuilo 2018-09-28 11:49:32 +09:00
parent fe8c384618
commit d715af0620
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
3 changed files with 8 additions and 16 deletions

View file

@ -154,9 +154,7 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
main
> .nav
> .pointer
position fixed
@ -176,7 +174,7 @@ root(isDark)
border-top solid $size transparent
border-left solid $size transparent
border-right solid $size transparent
border-bottom solid $size isDark ? #272f3a : #fff
border-bottom solid $size var(--popupBg)
> .bg
position fixed
@ -198,7 +196,7 @@ root(isDark)
margin 0 auto
overflow auto
-webkit-overflow-scrolling touch
background isDark ? #272f3a : #fff
background var(--popupBg)
border-radius 8px
box-shadow 0 0 16px rgba(#000, 0.1)
@ -207,19 +205,19 @@ root(isDark)
> .hr
margin 8px 0
border-top solid 1px isDark ? rgba(#000, 0.3) : rgba(#000, 0.1)
border-top solid 1px var(--faceDivider)
> *:not(.hr)
display block
padding 8px 16px
color isDark ? #cdd0d8 : #666
color var(--text)
&[data-active]
color var(--primaryForeground)
background var(--primary)
&:not([data-active]):hover
background isDark ? #353e4a : #eee
background var(--mobileHomeTlItemHover)
> .badge
margin-left 6px
@ -237,17 +235,9 @@ root(isDark)
@media (min-width 600px)
padding 32px
main[data-darkmode]
root(true)
main:not([data-darkmode])
root(false)
</style>
<style lang="stylus" module>
.title
i
margin-right 4px

View file

@ -131,6 +131,7 @@
"mobileHeaderBg": ":lighten<5<$secondary",
"mobileHeaderFg": "$text",
"mobileNavBackdrop": "rgba(0, 0, 0, 0.7)",
"mobileHomeTlItemHover": "rgba(255, 255, 255, 0.1)",
"mobileUserPageName": "#fff",
"mobileUserPageAcct": "$text",
"mobileUserPageDescription": "$text",

View file

@ -131,6 +131,7 @@
"mobileHeaderBg": ":lighten<5<$secondary",
"mobileHeaderFg": "$text",
"mobileNavBackdrop": "rgba(0, 0, 0, 0.2)",
"mobileHomeTlItemHover": "rgba(0, 0, 0, 0.05)",
"mobileUserPageName": "#757c82",
"mobileUserPageAcct": "#969ea5",
"mobileUserPageDescription": "#757c82",