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.

_audio-preview.scss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .audio-preview {
  2. display: inline-block;
  3. &-content {
  4. background: $menuBG;
  5. border-radius: 3px;
  6. font-size: 14px;
  7. line-height: 24px;
  8. max-height: 456px;
  9. overflow: auto;
  10. width: 300px;
  11. }
  12. &-header {
  13. color: #fff;
  14. align-items: center;
  15. display: flex;
  16. margin-top: 8px;
  17. padding: 8px 16px;
  18. &-icon {
  19. display: inline-block;
  20. svg {
  21. fill: #fff;
  22. }
  23. }
  24. &--bordered {
  25. border-bottom: 1px solid #4C4D50;
  26. }
  27. &-text {
  28. margin-left: 12px;
  29. }
  30. }
  31. &-entry {
  32. align-items: center;
  33. color: #fff;
  34. cursor: pointer;
  35. display: flex;
  36. padding: 8px 0;
  37. margin-left: 48px;
  38. &--selected {
  39. background: #131519;
  40. cursor: initial;
  41. margin-left: 0;
  42. padding-left: 18px;
  43. }
  44. &-text {
  45. color: #fff;
  46. display: inline-block;
  47. line-height: 24px;
  48. text-overflow: ellipsis;
  49. max-width: 213px;
  50. overflow: hidden;
  51. white-space: nowrap;
  52. }
  53. }
  54. &-speaker {
  55. position: relative;
  56. &:hover {
  57. .audio-preview-entry {
  58. background: #36383C;
  59. margin-left: 0;
  60. padding-left: 48px;
  61. &--selected {
  62. padding-left: 18px;
  63. background: $newToolbarBackgroundColor;
  64. }
  65. }
  66. .audio-preview-test-button {
  67. display: inline-block;
  68. }
  69. .audio-preview-entry-text {
  70. max-width: 196px;
  71. }
  72. }
  73. &:last-child {
  74. padding-bottom: 8px;
  75. }
  76. .audio-preview-entry-text {
  77. max-width: 256px;
  78. }
  79. }
  80. &-microphone {
  81. position: relative;
  82. &:hover {
  83. .audio-preview-entry {
  84. background: #36383C;
  85. margin-left: 0;
  86. padding-left: 48px;
  87. &--selected {
  88. background: $newToolbarBackgroundColor;
  89. padding-left: 18px;
  90. }
  91. }
  92. }
  93. .audio-preview-entry-text {
  94. max-width: 178px;
  95. }
  96. }
  97. &-icon {
  98. border-radius: 50%;
  99. display: inline-block;
  100. width: 14px;
  101. & svg {
  102. fill: #1C2025;
  103. }
  104. &--check {
  105. background: #31B76A;
  106. margin-right: 16px;
  107. }
  108. &--exclamation {
  109. margin-left: 6px;
  110. & svg {
  111. fill: #E54B4B;
  112. }
  113. }
  114. }
  115. &-hr {
  116. border-top: 1px solid #4C4D50;
  117. border-bottom: 0;
  118. }
  119. &-test-button {
  120. display: none;
  121. background: #FFF;
  122. border: 1px solid #D1DBE8;
  123. border-radius: 3px;
  124. color: #1C2025;
  125. cursor: pointer;
  126. font-weight: 600;
  127. line-height: 24px;
  128. padding: 2px 16px;
  129. position: absolute;
  130. right: 16px;
  131. top: 5px;
  132. }
  133. &-meter-mic {
  134. position: absolute;
  135. right: 16px;
  136. top: 14px;
  137. }
  138. }