diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-07 19:30:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-07 19:30:24 +0900 |
| commit | 75cd580c3adca8dc8de69fdf0d5d023e2b16d38c (patch) | |
| tree | 2372d41bc912733dd46e5f69b72cc3107bdf0855 /src/client | |
| parent | 後方互換性を追加 (diff) | |
| download | sharkey-75cd580c3adca8dc8de69fdf0d5d023e2b16d38c.tar.gz sharkey-75cd580c3adca8dc8de69fdf0d5d023e2b16d38c.tar.bz2 sharkey-75cd580c3adca8dc8de69fdf0d5d023e2b16d38c.zip | |
Improve theming
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mobile/views/components/post-form.vue | 2 | ||||
| -rw-r--r-- | src/client/theme/dark.json5 | 1 | ||||
| -rw-r--r-- | src/client/theme/light.json5 | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index e4ec1aa576..3de920cf22 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -478,7 +478,7 @@ export default Vue.extend({ width 48px height 48px font-size 20px - color #657786 + color var(--mobilePostFormButton) background transparent outline none border none diff --git a/src/client/theme/dark.json5 b/src/client/theme/dark.json5 index 72362a2305..1f4585d14d 100644 --- a/src/client/theme/dark.json5 +++ b/src/client/theme/dark.json5 @@ -175,6 +175,7 @@ mobileNavBackdrop: 'rgba(0, 0, 0, 0.7)', mobilePostFormDivider: 'rgba(0, 0, 0, 0.2)', mobilePostFormTextareaBg: 'rgba(0, 0, 0, 0.3)', + mobilePostFormButton: '$text', mobileDriveNavBg: ':alpha<0.75<$secondary', mobileHomeTlItemHover: 'rgba(255, 255, 255, 0.1)', mobileUserPageName: '#fff', diff --git a/src/client/theme/light.json5 b/src/client/theme/light.json5 index 90d0d40187..acb2a6d682 100644 --- a/src/client/theme/light.json5 +++ b/src/client/theme/light.json5 @@ -175,6 +175,7 @@ mobileNavBackdrop: 'rgba(0, 0, 0, 0.2)', mobilePostFormDivider: 'rgba(0, 0, 0, 0.1)', mobilePostFormTextareaBg: '#fff', + mobilePostFormButton: '$text', mobileDriveNavBg: ':alpha<0.75<$secondary', mobileHomeTlItemHover: 'rgba(0, 0, 0, 0.05)', mobileUserPageName: '#757c82', |