Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

_device-selection.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .device-selection {
  2. color: $feedbackInputTextColor;
  3. .device-selectors {
  4. font-size: 14px;
  5. /* ensure all child components do not exceed parent width */
  6. button,
  7. div {
  8. max-width: 100%;
  9. }
  10. > div {
  11. display: block;
  12. margin-bottom: 10px;
  13. }
  14. > div:last-child {
  15. margin-bottom: 5px;
  16. }
  17. .device-selector-icon {
  18. color: inherit;
  19. font-size: 20px;
  20. }
  21. }
  22. .device-selection-column {
  23. box-sizing: border-box;
  24. display: inline-block;
  25. vertical-align: top;
  26. &.column-selectors {
  27. margin-left: 15px;
  28. width: 45%;
  29. }
  30. &.column-video {
  31. width: 50%;
  32. }
  33. }
  34. .device-selection-video-container {
  35. border-radius: 3px;
  36. margin-bottom: 5px;
  37. .video-input-preview {
  38. margin-top: 2px;
  39. position: relative;
  40. > video {
  41. border-radius: 3px;
  42. }
  43. .video-input-preview-muted {
  44. color: $participantNameColor;
  45. display: none;
  46. left: 0;
  47. position: absolute;
  48. right: 0;
  49. text-align: center;
  50. top: 50%;
  51. }
  52. &.video-muted {
  53. /* TOFIX: to be removed when we move out from muted preview */
  54. background: black;
  55. /* TOFIX-END */
  56. .video-input-preview-muted {
  57. display: block;
  58. }
  59. }
  60. .video-input-preview-display {
  61. height: auto;
  62. overflow: hidden;
  63. width: 100%;
  64. }
  65. }
  66. }
  67. .audio-output-preview {
  68. font-size: 14px;
  69. margin-top: 10px;
  70. a {
  71. cursor: pointer;
  72. text-decoration: none;
  73. }
  74. }
  75. .audio-input-preview {
  76. background: #f4f5f7;
  77. border-radius: 5px;
  78. height: 6px;
  79. .audio-input-preview-level {
  80. background: #0052cc;
  81. border-radius: 5px;
  82. height: 100%;
  83. -webkit-transition: width .1s ease-in-out;
  84. -moz-transition: width .1s ease-in-out;
  85. -o-transition: width .1s ease-in-out;
  86. transition: width .1s ease-in-out;
  87. }
  88. }
  89. }