Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_reboot.scss 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Reboot */
  2. b,
  3. strong {
  4. font-weight: $font-weight-bold;
  5. }
  6. caption {
  7. text-align: start;
  8. }
  9. dd {
  10. margin-inline-start: 0;
  11. }
  12. // 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.
  13. a {
  14. color: var(--#{$prefix}custom-link-color);
  15. &:hover {
  16. color: color-mix(in sRGB, var(--#{$prefix}custom-link-color) 80%, var(--#{$prefix}base-color));
  17. }
  18. &:not([href]) {
  19. &,
  20. &:hover {
  21. color: inherit;
  22. text-decoration: none;
  23. }
  24. }
  25. }
  26. /* Autofill input bg and text color issue on different OS and browsers */
  27. input:-webkit-autofill,
  28. input:-webkit-autofill:hover,
  29. input:-webkit-autofill:focus,
  30. textarea:-webkit-autofill,
  31. textarea:-webkit-autofill:hover,
  32. textarea:-webkit-autofill:focus,
  33. select:-webkit-autofill,
  34. select:-webkit-autofill:hover,
  35. select:-webkit-autofill:focus,
  36. input:-internal-autofill-selected {
  37. background-clip: text !important;
  38. }
  39. h1 {
  40. line-height: $h1-line-height;
  41. }
  42. h2 {
  43. line-height: $h2-line-height;
  44. }
  45. h3 {
  46. line-height: $h3-line-height;
  47. }
  48. h4 {
  49. line-height: $h4-line-height;
  50. }
  51. h5 {
  52. line-height: $h5-line-height;
  53. }
  54. h6 {
  55. line-height: $h6-line-height;
  56. }
  57. img[data-app-light-img][data-app-dark-img] {
  58. visibility: visible;
  59. }