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.

_video-preview.scss 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .video-preview {
  2. background: none;
  3. display: inline-block;
  4. max-height: 344px;
  5. &-container {
  6. background: $menuBG;
  7. overflow: auto;
  8. padding: 8px;
  9. }
  10. &-entry {
  11. cursor: pointer;
  12. height: 168px;
  13. margin-bottom: 8px;
  14. position: relative;
  15. width: 284px;
  16. &:last-child {
  17. margin-bottom: 0;
  18. }
  19. &--selected {
  20. border: 3px solid #31B76A;
  21. border-radius: 3px;
  22. cursor: default;
  23. height: 162px;
  24. width: 278px;
  25. }
  26. }
  27. &-video {
  28. border-radius: 3px;
  29. height: 100%;
  30. object-fit: cover;
  31. width: 100%;
  32. }
  33. &-overlay {
  34. background: rgba(42, 58, 75, 0.6);
  35. height: 100%;
  36. position: absolute;
  37. width: 100%;
  38. z-index: 1;
  39. }
  40. &-error {
  41. align-items: center;
  42. display: flex;
  43. height: 100%;
  44. justify-content: center;
  45. position: absolute;
  46. width: 100%;
  47. }
  48. &-label {
  49. bottom: 8px;
  50. color: #fff;
  51. position: absolute;
  52. width: 100%;
  53. z-index: 2;
  54. &-container {
  55. margin: 0 16px;
  56. }
  57. &-text {
  58. background-color: #131519;
  59. border-radius: 3px;
  60. padding: 2px 8px;
  61. font-size: 13px;
  62. line-height: 20px;
  63. margin: 0 auto;
  64. max-width: calc(100% - 16px);
  65. overflow: hidden;
  66. text-overflow: ellipsis;
  67. width: fit-content;
  68. white-space: nowrap;
  69. }
  70. }
  71. }