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.4KB

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