diff --git a/src/_mixins.scss b/src/_mixins.scss index e99fe26f..b96d2318 100644 --- a/src/_mixins.scss +++ b/src/_mixins.scss @@ -16,3 +16,15 @@ @content; } } + +@mixin focused-style-with($selectors...) { + @include focused-style { + @content; + } + + @each $selector in $selectors { + #{$selector} { + @content; + } + } +} diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 86c1f907..9b32aa18 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -88,6 +88,9 @@ > {{ $t('post_status.preview') }} @@ -346,6 +349,7 @@