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.

_labels.scss 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .large-video-labels {
  2. display: flex;
  3. position: absolute;
  4. top: 30px;
  5. right: 30px;
  6. transition: right 0.5s;
  7. z-index: $zindex3;
  8. .circular-label {
  9. align-items: center;
  10. color: white;
  11. display: flex;
  12. font-weight: bold;
  13. justify-content: center;
  14. margin-left: 8px;
  15. opacity: 0.8;
  16. }
  17. .circular-label {
  18. background: #B8C7E0;
  19. }
  20. .circular-label.e2ee {
  21. align-items: center;
  22. background: #76CF9C;
  23. display: flex;
  24. justify-content: center;
  25. }
  26. .circular-label.file {
  27. background: #FF5630;
  28. }
  29. .circular-label.local-rec {
  30. background: #FF5630;
  31. }
  32. .circular-label.stream {
  33. background: #0065FF;
  34. }
  35. .circular-label.insecure {
  36. background: $defaultWarningColor;
  37. }
  38. .recording-label.center-message {
  39. background: $videoStateIndicatorBackground;
  40. bottom: 50%;
  41. display: block;
  42. left: 50%;
  43. padding: 10px;
  44. position: fixed;
  45. transform: translate(-50%, -50%);
  46. z-index: $centeredVideoLabelZ;
  47. }
  48. }
  49. .circular-label {
  50. background: $videoStateIndicatorBackground;
  51. border-radius: 50%;
  52. box-sizing: border-box;
  53. cursor: default;
  54. font-size: 13px;
  55. height: $videoStateIndicatorSize;
  56. line-height: $videoStateIndicatorSize;
  57. text-align: center;
  58. min-width: $videoStateIndicatorSize;
  59. }