Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

_side_toolbar_container.css 2.3KB

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