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 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .device-selection {
  2. color: $feedbackInputTextColor;
  3. .device-selectors {
  4. font-size: 14px;
  5. > div {
  6. display: block;
  7. margin-bottom: 10px;
  8. }
  9. > div:last-child {
  10. margin-bottom: 5px;
  11. }
  12. .device-selector-icon {
  13. align-self: center;
  14. color: inherit;
  15. font-size: 20px;
  16. margin-left: 3px;
  17. }
  18. /* device-selector-trigger stylings attempt to mimic AtlasKit button */
  19. .device-selector-trigger {
  20. background-color: rgba(9, 30, 66, 0.04);
  21. border-radius: 3px;
  22. color: #505f79;
  23. display: flex;
  24. height: 2.3em;
  25. justify-content: space-between;
  26. line-height: 2.3em;
  27. overflow: hidden;
  28. padding: 0 8px;
  29. &:hover {
  30. background-color: rgba(9,30,66,.08);
  31. }
  32. }
  33. .device-selector-trigger-text {
  34. overflow: hidden;
  35. margin-left: 8px;
  36. text-overflow: ellipsis;
  37. white-space: nowrap;
  38. width: 100%;
  39. }
  40. }
  41. .device-selection-column {
  42. box-sizing: border-box;
  43. display: inline-block;
  44. vertical-align: top;
  45. &.column-selectors {
  46. margin-left: 15px;
  47. width: 45%;
  48. }
  49. &.column-video {
  50. width: 50%;
  51. }
  52. }
  53. .device-selection-video-container {
  54. border-radius: 3px;
  55. margin-bottom: 5px;
  56. .video-input-preview {
  57. margin-top: 2px;
  58. position: relative;
  59. > video {
  60. border-radius: 3px;
  61. }
  62. .video-input-preview-muted {
  63. color: $participantNameColor;
  64. display: none;
  65. left: 0;
  66. position: absolute;
  67. right: 0;
  68. text-align: center;
  69. top: 50%;
  70. }
  71. &.video-muted {
  72. /* TOFIX: to be removed when we move out from muted preview */
  73. background: black;
  74. /* TOFIX-END */
  75. .video-input-preview-muted {
  76. display: block;
  77. }
  78. }
  79. .video-input-preview-display {
  80. height: auto;
  81. overflow: hidden;
  82. width: 100%;
  83. }
  84. }
  85. }
  86. .audio-output-preview {
  87. font-size: 14px;
  88. margin-top: 10px;
  89. a {
  90. cursor: pointer;
  91. text-decoration: none;
  92. }
  93. }
  94. .audio-input-preview {
  95. background: #f4f5f7;
  96. border-radius: 5px;
  97. height: 6px;
  98. .audio-input-preview-level {
  99. background: #0052cc;
  100. border-radius: 5px;
  101. height: 100%;
  102. -webkit-transition: width .1s ease-in-out;
  103. -moz-transition: width .1s ease-in-out;
  104. -o-transition: width .1s ease-in-out;
  105. transition: width .1s ease-in-out;
  106. }
  107. }
  108. }