| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* Reboot */
-
- b,
- strong {
- font-weight: $font-weight-bold;
- }
-
- caption {
- text-align: start;
- }
-
- dd {
- margin-inline-start: 0;
- }
-
- // TODO: checkinbs6 - a new variable has been created because the $link-color scss variable was being used,and changing the color did not reflect the update. this new variable ensures that future color changes are applied correctly.
- a {
- color: var(--#{$prefix}custom-link-color);
- &:hover {
- color: color-mix(in sRGB, var(--#{$prefix}custom-link-color) 80%, var(--#{$prefix}base-color));
- }
- &:not([href]) {
- &,
- &:hover {
- color: inherit;
- text-decoration: none;
- }
- }
- }
-
- /* Autofill input bg and text color issue on different OS and browsers */
- input:-webkit-autofill,
- input:-webkit-autofill:hover,
- input:-webkit-autofill:focus,
- textarea:-webkit-autofill,
- textarea:-webkit-autofill:hover,
- textarea:-webkit-autofill:focus,
- select:-webkit-autofill,
- select:-webkit-autofill:hover,
- select:-webkit-autofill:focus,
- input:-internal-autofill-selected {
- background-clip: text !important;
- }
-
- h1 {
- line-height: $h1-line-height;
- }
-
- h2 {
- line-height: $h2-line-height;
- }
-
- h3 {
- line-height: $h3-line-height;
- }
-
- h4 {
- line-height: $h4-line-height;
- }
-
- h5 {
- line-height: $h5-line-height;
- }
-
- h6 {
- line-height: $h6-line-height;
- }
-
- img[data-app-light-img][data-app-dark-img] {
- visibility: visible;
- }
|