Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_side_toolbar_container.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. background-color: rgba(0,0,0,0.8);
  11. height: 100%;
  12. max-width: $sidebarWidth;
  13. z-index: 800;
  14. overflow: hidden;
  15. /**
  16. * Labels inside the side panel.
  17. */
  18. label {
  19. color: $defaultColor;
  20. }
  21. /**
  22. * Form elements and blocks.
  23. */
  24. input, label, select, a,
  25. .sideToolbarBlock, .input-control, .button-control {
  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: $inputColor;
  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. height: 100%;
  61. width: $sidebarWidth;
  62. position: absolute;
  63. box-sizing: border-box;
  64. color: #FFF;
  65. /**
  66. * Titles and subtitles of inner containers.
  67. */
  68. > div.title,
  69. div.subTitle {
  70. text-align: left;
  71. margin: 10px 0px 10px 0px;
  72. }
  73. /**
  74. * Main title size.
  75. */
  76. > div.title {
  77. color: $defaultColor !important;
  78. text-align: center;
  79. font-size: 16px;
  80. }
  81. /**
  82. * Subtitle specific properties.
  83. */
  84. > div.subTitle {
  85. font-size: 11px;
  86. font-weight: 500;
  87. color: $defaultSideBarFontColor !important;
  88. margin-left: 10%;
  89. }
  90. /**
  91. * First element after a title.
  92. */
  93. .first {
  94. margin-top: 0px !important;
  95. }
  96. /**
  97. * Buttons in the side toolbar container.
  98. */
  99. .button-control {
  100. margin: 9px 0;
  101. width: 100%;
  102. }
  103. }
  104. }
  105. #device_settings {
  106. width : auto !important;
  107. text-align: center;
  108. }
  109. #startAudioMuted,
  110. #startVideoMuted,
  111. #followMeCheckBox {
  112. width: 13px !important;
  113. }