-
Notifications
You must be signed in to change notification settings - Fork 438
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
fixing accesibility issues in the cookie setting #2715
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// :root { | ||
// --green1: #4de0b4; | ||
// } | ||
|
||
html { | ||
position: relative; | ||
min-height: 100%; | ||
|
@@ -42,6 +46,19 @@ ds-admin-sidebar { | |
z-index: 0; | ||
} | ||
|
||
.klaro | ||
.cookie-notice | ||
.cm-btn.cm-btn-success { | ||
color: #333333 !important; | ||
background-color: #4de0b4 !important; | ||
} | ||
|
||
.klaro | ||
.cookie-notice | ||
a{ | ||
color: #4de0b4 !important; | ||
} | ||
|
||
Comment on lines
+49
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In your code, the usage of !important is unnecessary. Instead, you can enhance the specificity of your selectors and leverage SCSS's features to avoid duplicating selectors. Here's an example of how your code can be refactored to eliminate the need for !important:
Additionally, it seems you've deviated from the approach of using new variables. The variable
|
||
.media-viewer | ||
.change-gallery | ||
.ngx-gallery | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this commented out code? It doesn't appear to have a purpose any longer.