選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_device-selection.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .device-selection {
  2. color: $feedbackInputTextColor;
  3. .device-selectors {
  4. font-size: 14px;
  5. > div {
  6. margin-bottom: 10px;
  7. }
  8. > div:last-child {
  9. margin-bottom: 5px;
  10. }
  11. }
  12. .device-selection-column-selectors,
  13. .device-selection-column-video {
  14. padding: 10px;
  15. display: inline-block;
  16. vertical-align: top;
  17. }
  18. .device-selection-column-selectors {
  19. width: 46%;
  20. }
  21. .device-selection-column-video {
  22. width: 49%;
  23. padding: 10px 0;
  24. }
  25. .device-selection-video-container {
  26. background: black;
  27. height: 156px;
  28. margin: 15px 0 5px;
  29. .video-input-preview {
  30. position: relative;
  31. .video-input-preview-muted {
  32. color: $participantNameColor;
  33. display: none;
  34. left: 0;
  35. position: absolute;
  36. right: 0;
  37. text-align: center;
  38. top: 50%;
  39. }
  40. &.video-muted .video-input-preview-muted {
  41. display: block;
  42. }
  43. .video-input-preview-display {
  44. height: 100%;
  45. overflow: hidden;
  46. width: 100%;
  47. }
  48. }
  49. }
  50. .audio-output-preview {
  51. text-align: right;
  52. a {
  53. cursor: pointer;
  54. text-decoration: none;
  55. }
  56. }
  57. .audio-input-preview {
  58. background: #f4f5f7;
  59. border-radius: 5px;
  60. height: 6px;
  61. .audio-input-preview-level {
  62. background: #0052cc;
  63. border-radius: 5px;
  64. height: 100%;
  65. -webkit-transition: width .1s ease-in-out;
  66. -moz-transition: width .1s ease-in-out;
  67. -o-transition: width .1s ease-in-out;
  68. transition: width .1s ease-in-out;
  69. }
  70. }
  71. }