diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-03 13:47:55 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-03 13:48:00 +0900 |
| commit | 87d17517f3e79e09e30a89dad3f94817dda424d3 (patch) | |
| tree | 412adf8a6a51191914bf1793c1472d7122f68289 /src/web/app/common | |
| parent | Update drive.vue (diff) | |
| download | misskey-87d17517f3e79e09e30a89dad3f94817dda424d3.tar.gz misskey-87d17517f3e79e09e30a89dad3f94817dda424d3.tar.bz2 misskey-87d17517f3e79e09e30a89dad3f94817dda424d3.zip | |
:v:
Diffstat (limited to 'src/web/app/common')
14 files changed, 51 insertions, 23 deletions
diff --git a/src/web/app/common/views/components/autocomplete.vue b/src/web/app/common/views/components/autocomplete.vue index 2ad951b1f8..6d7d5cd1b1 100644 --- a/src/web/app/common/views/components/autocomplete.vue +++ b/src/web/app/common/views/components/autocomplete.vue @@ -223,6 +223,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-autocomplete position fixed z-index 65535 diff --git a/src/web/app/common/views/components/connect-failed.vue b/src/web/app/common/views/components/connect-failed.vue index b48f7cecb9..185250dbd8 100644 --- a/src/web/app/common/views/components/connect-failed.vue +++ b/src/web/app/common/views/components/connect-failed.vue @@ -39,6 +39,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-connect-failed width 100% padding 32px 18px diff --git a/src/web/app/common/views/components/forkit.vue b/src/web/app/common/views/components/forkit.vue index 54fc011d16..6f334b965a 100644 --- a/src/web/app/common/views/components/forkit.vue +++ b/src/web/app/common/views/components/forkit.vue @@ -9,32 +9,34 @@ </template> <style lang="stylus" scoped> - .a - display block - position absolute - top 0 - right 0 +@import '~const.styl' + +.a + display block + position absolute + top 0 + right 0 - > svg - display block - //fill #151513 - //color #fff - fill $theme-color - color $theme-color-foreground + > svg + display block + //fill #151513 + //color #fff + fill $theme-color + color $theme-color-foreground - .octo-arm - transform-origin 130px 106px + .octo-arm + transform-origin 130px 106px - &:hover - .octo-arm - animation octocat-wave 560ms ease-in-out + &:hover + .octo-arm + animation octocat-wave 560ms ease-in-out - @keyframes octocat-wave - 0%, 100% - transform rotate(0) - 20%, 60% - transform rotate(-25deg) - 40%, 80% - transform rotate(10deg) + @keyframes octocat-wave + 0%, 100% + transform rotate(0) + 20%, 60% + transform rotate(-25deg) + 40%, 80% + transform rotate(10deg) </style> diff --git a/src/web/app/common/views/components/messaging-room.form.vue b/src/web/app/common/views/components/messaging-room.form.vue index edcda069a3..01886b19c8 100644 --- a/src/web/app/common/views/components/messaging-room.form.vue +++ b/src/web/app/common/views/components/messaging-room.form.vue @@ -195,6 +195,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-messaging-form > textarea cursor auto diff --git a/src/web/app/common/views/components/messaging-room.vue b/src/web/app/common/views/components/messaging-room.vue index f7f31c557c..0a675ba03e 100644 --- a/src/web/app/common/views/components/messaging-room.vue +++ b/src/web/app/common/views/components/messaging-room.vue @@ -228,6 +228,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-messaging-room display flex flex 1 diff --git a/src/web/app/common/views/components/messaging.vue b/src/web/app/common/views/components/messaging.vue index ea75c90812..fcc2dbe316 100644 --- a/src/web/app/common/views/components/messaging.vue +++ b/src/web/app/common/views/components/messaging.vue @@ -165,6 +165,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-messaging &[data-compact] diff --git a/src/web/app/common/views/components/poll-editor.vue b/src/web/app/common/views/components/poll-editor.vue index 20a334d3c5..47d901d7b1 100644 --- a/src/web/app/common/views/components/poll-editor.vue +++ b/src/web/app/common/views/components/poll-editor.vue @@ -67,6 +67,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-poll-editor padding 8px diff --git a/src/web/app/common/views/components/poll.vue b/src/web/app/common/views/components/poll.vue index 556d8ebf6c..8156c8bc58 100644 --- a/src/web/app/common/views/components/poll.vue +++ b/src/web/app/common/views/components/poll.vue @@ -66,6 +66,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-poll > ul diff --git a/src/web/app/common/views/components/reaction-picker.vue b/src/web/app/common/views/components/reaction-picker.vue index f3731cd632..0ba15ba731 100644 --- a/src/web/app/common/views/components/reaction-picker.vue +++ b/src/web/app/common/views/components/reaction-picker.vue @@ -106,6 +106,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + $border-color = rgba(27, 31, 35, 0.15) .mk-reaction-picker diff --git a/src/web/app/common/views/components/signin.vue b/src/web/app/common/views/components/signin.vue index 31243e99a1..1738d0df7d 100644 --- a/src/web/app/common/views/components/signin.vue +++ b/src/web/app/common/views/components/signin.vue @@ -53,6 +53,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-signin &.signing &, * diff --git a/src/web/app/common/views/components/signup.vue b/src/web/app/common/views/components/signup.vue index 1fdc49a181..2ca1687be1 100644 --- a/src/web/app/common/views/components/signup.vue +++ b/src/web/app/common/views/components/signup.vue @@ -153,6 +153,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-signup min-width 302px diff --git a/src/web/app/common/views/components/switch.vue b/src/web/app/common/views/components/switch.vue index e6cdfa152c..2ac57be6fc 100644 --- a/src/web/app/common/views/components/switch.vue +++ b/src/web/app/common/views/components/switch.vue @@ -84,6 +84,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-switch display flex margin 8px 0 diff --git a/src/web/app/common/views/components/uploader.vue b/src/web/app/common/views/components/uploader.vue index 6367b69973..6465ad35e9 100644 --- a/src/web/app/common/views/components/uploader.vue +++ b/src/web/app/common/views/components/uploader.vue @@ -81,6 +81,8 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mk-uploader overflow auto diff --git a/src/web/app/common/views/widgets/calendar.vue b/src/web/app/common/views/widgets/calendar.vue index 2bcdb07f9e..03f69a7597 100644 --- a/src/web/app/common/views/widgets/calendar.vue +++ b/src/web/app/common/views/widgets/calendar.vue @@ -107,6 +107,8 @@ export default define({ </script> <style lang="stylus" scoped> +@import '~const.styl' + .mkw-calendar padding 16px 0 color #777 |