Fix dark mode for channel configuration buttons.

This commit is contained in:
John Livingston 2023-09-26 14:12:30 +02:00
parent 8419a8429f
commit 8506b38adf
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 26 additions and 0 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 8.0.1 (Note Released Yet)
### Minor changes and fixes
* Fix dark mode for channel configuration buttons.
## 8.0.0
### New features

View File

@ -93,6 +93,26 @@ $small-view: 800px;
background-color: var(--inputBorderColor);
}
}
input[type="reset"] {
// Peertube grey-button mixin
background-color: var(--greyBackgroundColor);
color: var(--greyForegroundColor);
&:hover,
&:active,
&:focus,
&[disabled],
&.disabled {
color: var(--greyForegroundColor);
background-color: var(--greySecondaryBackgroundColor);
}
&[disabled],
&.disabled {
cursor: default;
}
}
}
/* Channel selection page */