|
@@ -1,14 +1,21 @@
|
|
|
-.btn.btn-outline-info.btn-like,
|
|
|
|
|
-.btn.btn-outline-warning.btn-bookmark {
|
|
|
|
|
- color: $secondary;
|
|
|
|
|
-
|
|
|
|
|
- &.active,
|
|
|
|
|
- &:hover {
|
|
|
|
|
- // header buttons are always white for active
|
|
|
|
|
- color: white !important;
|
|
|
|
|
|
|
+.btn.btn-like {
|
|
|
|
|
+ @include button-outline-variant($secondary, lighten($info, 15%), rgba(lighten($info, 10%), 0.5), rgba(lighten($info, 10%), 0.5));
|
|
|
|
|
+ &:not(:disabled):not(.disabled):active,
|
|
|
|
|
+ &:not(:disabled):not(.disabled).active {
|
|
|
|
|
+ color: lighten($info, 15%);
|
|
|
|
|
+ }
|
|
|
|
|
+ &:not(:disabled):not(.disabled):not(:hover) {
|
|
|
|
|
+ background-color: transparent;
|
|
|
}
|
|
}
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
- &:not(:hover):not(.active) {
|
|
|
|
|
|
|
+.btn.btn-bookmark {
|
|
|
|
|
+ @include button-outline-variant($secondary, $warning, rgba(lighten($warning, 20%), 0.5), rgba(lighten($warning, 20%), 0.5));
|
|
|
|
|
+ &:not(:disabled):not(.disabled):active,
|
|
|
|
|
+ &:not(:disabled):not(.disabled).active {
|
|
|
|
|
+ color: $warning;
|
|
|
|
|
+ }
|
|
|
|
|
+ &:not(:disabled):not(.disabled):not(:hover) {
|
|
|
background-color: transparent;
|
|
background-color: transparent;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|