fixed color inconsistencies on responsive menu + fixed code snippets clipboard colors and cookies modal button colors (#4778)

Co-authored-by: gabriel <gfreites@vmware.com>
This commit is contained in:
Knative Prow Robot 2022-02-22 08:56:03 -08:00 committed by GitHub
parent d92d2eece2
commit 5ef053c69a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 1 deletions

View File

@ -5,7 +5,7 @@
}
.md-clipboard {
color: var(--md-primary-fg-color);
color: #024c93;
}
.highlight.no-copy .md-clipboard {
@ -317,12 +317,26 @@ a.md-header__button.md-logo img {
outline: 0;
}
.modal-dialog .md-button {
color: #024c93;
}
.modal-dialog .md-button--primary {
color: white;
background-color: #024c93;
}
/* Tame the footer and make the prev/next stand out */
.md-footer {
color: var(--md-typeset-a-color);
background-color: #024c93;
}
.md-footer .md-footer-copyright {
color: #1a7dc9;
font-weight: bold;
}
.md-footer-meta {
background-color: var(--md-footer-bg-color);
}
@ -357,3 +371,13 @@ a.md-header__button.md-logo img {
.feature-stable {
background: rgb(228, 255, 218);
}
.md-nav--primary .md-nav__title[for=__drawer] {
color: black;
}
@media screen and (max-width: 76.1875em) {
.md-nav--primary .md-nav__item--active>.md-nav__link {
color: var(--nav-item-color);
}
}