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.

_side_toolbar_container.scss 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /**
  2. * Toolbar side panel main container element.
  3. */
  4. #sideToolbarContainer {
  5. display: inline-block;
  6. position:absolute;
  7. top: 0px;
  8. left: $defaultToolbarSize;
  9. width: 0%;
  10. height: 100%;
  11. max-width: 200px;
  12. background-color: rgba(0,0,0,0.8);
  13. z-index: 800;
  14. overflow: hidden;
  15. letter-spacing: 1px;
  16. /**
  17. * Labels inside the side panel.
  18. */
  19. label {
  20. color: $defaultColor;
  21. }
  22. /**
  23. * Form elements and blocks.
  24. */
  25. input, label, select, button, a, .sideToolbarBlock {
  26. display: inline-block;
  27. margin-top: 15px;
  28. margin-left: 10%;
  29. width: 80%;
  30. }
  31. /**
  32. * Specify colors for edit elements.
  33. */
  34. select, input[type="button"], input[type="text"],
  35. input[type="reset"], input[type="submit"] {
  36. color: $defaultColor;
  37. background: $inputBackground;
  38. border: none;
  39. }
  40. /**
  41. * Specify styling of elements inside a block.
  42. */
  43. .sideToolbarBlock {
  44. input, label, button, a, select {
  45. margin-top: 5px;
  46. margin-left: 0;
  47. width: 100%;
  48. }
  49. .startMutedLabel,
  50. .followMeLabel {
  51. display: inline;
  52. margin-top: 0;
  53. }
  54. }
  55. /**
  56. * Inner container, for example contact list, settings or profile.
  57. */
  58. .sideToolbarContainer__inner {
  59. display: none;
  60. width: 200px;
  61. color: #FFF;
  62. /**
  63. * Titles and subtitles of inner containers.
  64. */
  65. > div.title,
  66. div.subTitle {
  67. text-align: left;
  68. margin: 10px 0px 10px 0px;
  69. }
  70. /**
  71. * Main title size.
  72. */
  73. > div.title {
  74. color: $defaultColor !important;
  75. text-align: center;
  76. font-size: 16px;
  77. }
  78. /**
  79. * Subtitle specific properties.
  80. */
  81. > div.subTitle {
  82. font-size: 11px;
  83. font-weight: 500;
  84. color: $defaultSideBarFontColor !important;
  85. margin-left: 10%;
  86. }
  87. /**
  88. * First element after a title.
  89. */
  90. .first {
  91. margin-top: 0px !important;
  92. }
  93. }
  94. }
  95. #device_settings {
  96. width : auto !important;
  97. text-align: center;
  98. }
  99. #startAudioMuted,
  100. #startVideoMuted,
  101. #followMeCheckBox {
  102. width: 13px !important;
  103. }