暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_common.scss 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Common
  2. ******************************************************************************* */
  3. @import "../_bootstrap-extended/include";
  4. /* Line Clamp with ellipsis
  5. ******************************************************************************* */
  6. $clamp-numbers: (
  7. "1": 1,
  8. "2": 2,
  9. "3": 3
  10. ) !default;
  11. @each $clamp-class, $clamp-value in $clamp-numbers {
  12. .line-clamp-#{$clamp-class} {
  13. display: -webkit-box;
  14. overflow: hidden;
  15. -webkit-box-orient: vertical;
  16. -webkit-line-clamp: $clamp-value;
  17. }
  18. }
  19. /* Background
  20. ******************************************************************************* */
  21. .ui-bg-cover {
  22. background-color: rgb(0 0 0 / 0%);
  23. background-position: center center;
  24. background-size: cover;
  25. }
  26. .ui-bg-overlay-container,
  27. .ui-bg-video-container {
  28. position: relative;
  29. > * {
  30. position: relative;
  31. }
  32. }
  33. .ui-bg-overlay-container .ui-bg-overlay {
  34. position: absolute;
  35. display: block;
  36. background-color: var(--#{$prefix}gray-900);
  37. inset: 0;
  38. }
  39. @if $enable-dark-mode {
  40. @include color-mode(dark) {
  41. .ui-bg-overlay-container .ui-bg-overlay {
  42. background-color: #575882;
  43. }
  44. }
  45. }