Fix light mode, top nav external links, etc:

- Top nav external links now open in a new tab as intended (not specific
  to light mode)
- Consistently adjust opacity (not placement) of background images in
  mobile; lighter in light mode for legibility.
- Add a subtle white "shadow" to eyebrow text in light mode to improve
  legibility
- Fix focus styles for buttons & multicode tabs in light mode
- Make all buttons sized the same as primary buttons by default
- Fix typo that caused the "Reset" button on get-started to be unstyled
- Refactor theme switcher JS for simplicity.
- Fix issue with theme select icon not being visible in some cases.
- Update color of  icons in interactive tutorial breadcrumbs
This commit is contained in:
mDuo13
2021-07-14 15:52:27 -07:00
parent f9f608d469
commit be80405f10
11 changed files with 124 additions and 120 deletions

View File

@@ -5,6 +5,8 @@
cursor: pointer;
text-decoration: none;
transition: 0.2s;
padding: 0.5rem 1rem;
line-height: 16px;
}
.content a.button {
@@ -19,33 +21,6 @@ button.disabled,
button[disabled="disabled"] {
cursor: not-allowed;
}
//
// // .btn-outline-secondary,
// .content a.button,
// .navbar-dark .navbar-nav .nav-link.btn-outline-secondary {
// color: $white;
// border-color: $white;
// border-width: 2px;
// border-style: solid;
//
// &:not(:disabled):not(.disabled):hover, &:not(:disabled):not(.disabled):active {
// color: $primary;
// border-color: $primary;
// background-color: transparent;
// }
// }
//
// .navbar-dark .navbar-nav .nav-link:hover {
// color: $white;
// }
//
// p + .readmore {
// margin-top: 12px;
// }
//
// .card-header a i {
// margin: 0 0.2em 0 0.8em;
// }
.btn-primary code,
.btn-secondary code {
@@ -58,9 +33,6 @@ button[disabled="disabled"] {
color: $white;
border: none;
border-color: transparent;
border-radius: 4px;
padding: 0.5rem 1rem;
line-height: 16px;
&:hover {
background: $blue-purple-600;
}