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.

_device-selection.scss 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. /* TOFIX: to be removed when we move out from muted preview */
  36. background: black;
  37. border-radius: 3px;
  38. /* TOFIX-END */
  39. height: 160px;
  40. margin-bottom: 5px;
  41. .video-input-preview {
  42. margin-top: 2px;
  43. position: relative;
  44. > video {
  45. border-radius: 3px;
  46. }
  47. .video-input-preview-muted {
  48. color: $participantNameColor;
  49. display: none;
  50. left: 0;
  51. position: absolute;
  52. right: 0;
  53. text-align: center;
  54. top: 50%;
  55. }
  56. &.video-muted .video-input-preview-muted {
  57. display: block;
  58. }
  59. .video-input-preview-display {
  60. height: 100%;
  61. overflow: hidden;
  62. width: 100%;
  63. }
  64. }
  65. }
  66. .audio-output-preview {
  67. font-size: 14px;
  68. margin-top: 10px;
  69. a {
  70. cursor: pointer;
  71. text-decoration: none;
  72. }
  73. }
  74. .audio-input-preview {
  75. background: #f4f5f7;
  76. border-radius: 5px;
  77. height: 6px;
  78. .audio-input-preview-level {
  79. background: #0052cc;
  80. border-radius: 5px;
  81. height: 100%;
  82. -webkit-transition: width .1s ease-in-out;
  83. -moz-transition: width .1s ease-in-out;
  84. -o-transition: width .1s ease-in-out;
  85. transition: width .1s ease-in-out;
  86. }
  87. }
  88. }