diff --git a/src/Squidex/app/theme/_mixins.scss b/src/Squidex/app/theme/_mixins.scss index bc740d5e5..5032119a1 100644 --- a/src/Squidex/app/theme/_mixins.scss +++ b/src/Squidex/app/theme/_mixins.scss @@ -24,11 +24,16 @@ color: $color; } - &:disabled { + &:disabled + &.disabled { @include opacity(.4); - } - + } + &:focus, + &.focus { + @include box-shadow-raw(0 0 0 $btn-focus-width rgba($color, .5)); + } + &:active, &:hover { color: darken($color, 8%); diff --git a/src/Squidex/wwwroot/theme.html b/src/Squidex/wwwroot/theme.html index edb802685..068f9a5c8 100644 --- a/src/Squidex/wwwroot/theme.html +++ b/src/Squidex/wwwroot/theme.html @@ -134,6 +134,7 @@ + Link
@@ -1295,7 +1296,7 @@