Subscribe topic button style fixes

This commit is contained in:
Alexey Khaov 2023-01-25 01:00:10 +03:00
parent 5de1441895
commit a2f80f90fd
3 changed files with 16 additions and 3 deletions

View File

@ -305,5 +305,5 @@
} }
.isSubscribing { .isSubscribing {
color: transparent; opacity: 0.5;
} }

View File

@ -118,9 +118,10 @@
} }
.isSubscribing { .isSubscribing {
color: transparent; opacity: 0.5;
} }
.isSubscribed { .isSubscribed {
background: #000; background: #000;
color: #fff;
} }

View File

@ -187,6 +187,11 @@ button {
cursor: pointer; cursor: pointer;
font-family: inherit; font-family: inherit;
padding: 0; padding: 0;
&[disabled] {
cursor: default;
opacity: 0.5 !important;
}
} }
.button { .button {
@ -253,6 +258,11 @@ button {
color: #fff; color: #fff;
opacity: 1; opacity: 1;
} }
&[disabled]:hover {
background: #fff;
color: #000;
}
} }
.button--content-index { .button--content-index {
@ -710,7 +720,9 @@ astro-island {
.mode-switcher { .mode-switcher {
@include font-size(1.5rem); @include font-size(1.5rem);
@include media-breakpoint-up(md) {
text-align: right; text-align: right;
}
} }
.mode-switcher__control { .mode-switcher__control {