Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: flat buttons #122

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ td.poster-names a {
}

//buttons ----------------------------
.btn,
.btn:not(.btn-flat),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other icon-only buttons don't have the btn class, but the bookmark button does, so it's affected by this selector.

Screenshot 2024-04-18 at 22 36 28

The fix is to exclude the btn-flat class from the selector as buttons with this class are less bright and don't have a border (which are what the btn class wants to change).

.select-kit.dropdown-select-box .dropdown-select-box-header {
position: relative;
color: $primary $i;
Expand Down
Loading