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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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-disabled {
  34. .device-selector-trigger {
  35. color: #a5adba;
  36. cursor: default;
  37. }
  38. }
  39. .device-selector-trigger-text {
  40. overflow: hidden;
  41. margin-left: 8px;
  42. text-overflow: ellipsis;
  43. white-space: nowrap;
  44. width: 100%;
  45. }
  46. }
  47. .device-selection-column {
  48. box-sizing: border-box;
  49. display: inline-block;
  50. vertical-align: top;
  51. &.column-selectors {
  52. margin-left: 15px;
  53. width: 45%;
  54. }
  55. &.column-video {
  56. width: 50%;
  57. }
  58. }
  59. .device-selection-video-container {
  60. border-radius: 3px;
  61. margin-bottom: 5px;
  62. .video-input-preview {
  63. margin-top: 2px;
  64. position: relative;
  65. > video {
  66. border-radius: 3px;
  67. }
  68. .video-input-preview-error {
  69. color: $participantNameColor;
  70. display: none;
  71. left: 0;
  72. position: absolute;
  73. right: 0;
  74. text-align: center;
  75. top: 50%;
  76. }
  77. &.video-preview-has-error {
  78. background: black;
  79. .video-input-preview-error {
  80. display: block;
  81. }
  82. }
  83. .video-input-preview-display {
  84. height: auto;
  85. overflow: hidden;
  86. width: 100%;
  87. }
  88. }
  89. }
  90. .audio-output-preview {
  91. font-size: 14px;
  92. margin-top: 10px;
  93. a {
  94. cursor: pointer;
  95. text-decoration: none;
  96. }
  97. }
  98. .audio-input-preview {
  99. background: #f4f5f7;
  100. border-radius: 5px;
  101. height: 6px;
  102. .audio-input-preview-level {
  103. background: #0052cc;
  104. border-radius: 5px;
  105. height: 100%;
  106. -webkit-transition: width .1s ease-in-out;
  107. -moz-transition: width .1s ease-in-out;
  108. -o-transition: width .1s ease-in-out;
  109. transition: width .1s ease-in-out;
  110. }
  111. }
  112. }