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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /**
  2. * Toolbar side panel main container element.
  3. */
  4. #sideToolbarContainer {
  5. background-color: rgba(0,0,0,0.8);
  6. height: 100%;
  7. left: $defaultToolbarSize;
  8. max-width: $sidebarWidth;
  9. overflow: hidden;
  10. position: absolute;
  11. top: 0;
  12. width: 0;
  13. z-index: $sideToolbarContainerZ;
  14. /**
  15. * Labels inside the side panel.
  16. */
  17. label {
  18. color: $baseLight;
  19. }
  20. /**
  21. * Form elements and blocks.
  22. */
  23. input, select, a,
  24. .sideToolbarBlock, .form-control, .button-control {
  25. display: block;
  26. margin-top: 15px;
  27. margin-left: 10%;
  28. width: 80%;
  29. }
  30. /**
  31. * Specify styling of elements inside a block.
  32. */
  33. .sideToolbarBlock {
  34. input, button, a, select {
  35. margin-left: 0;
  36. margin-top: 5px;
  37. width: 100%;
  38. }
  39. input[type='checkbox'] {
  40. display: inline;
  41. width: auto !important;
  42. > label {
  43. margin-top: 5px;
  44. width: 80%;
  45. }
  46. }
  47. }
  48. /**
  49. * Inner container, for example contact list, settings or profile.
  50. */
  51. .sideToolbarContainer__inner {
  52. display: none;
  53. height: 100%;
  54. width: $sidebarWidth;
  55. position: absolute;
  56. box-sizing: border-box;
  57. color: #FFF;
  58. .input-control {
  59. border: 0;
  60. }
  61. /**
  62. * Titles and subtitles of inner containers.
  63. */
  64. div.title, div.subTitle {
  65. margin: 24px 0 11px;
  66. }
  67. /**
  68. * Main title size.
  69. */
  70. div.title {
  71. color: $toolbarTitleColor;
  72. text-align: center;
  73. font-size: $toolbarTitleFontSize;
  74. }
  75. /**
  76. * Subtitle specific properties.
  77. */
  78. div.subTitle {
  79. color: $defaultSideBarFontColor !important;
  80. font-size: 11px;
  81. font-weight: 500;
  82. margin-left: 10%;
  83. text-align: left;
  84. }
  85. /**
  86. * First element after a title.
  87. */
  88. .first {
  89. margin-top: 0 !important;
  90. }
  91. /**
  92. * Buttons in the side toolbar container.
  93. */
  94. .button-control {
  95. margin: 9px 0;
  96. width: 100%;
  97. }
  98. }
  99. }
  100. #device_settings {
  101. width : auto !important;
  102. text-align: center;
  103. }
  104. #deviceOptionsWrapper {
  105. button {
  106. float: none;
  107. }
  108. }
  109. /**
  110. * Profile
  111. */
  112. .auth_container {
  113. ul {
  114. padding: 0;
  115. li {
  116. list-style-type: none;
  117. a.authButton {
  118. width: 160px;
  119. margin: 10px 20px;
  120. padding: 3px 29px;
  121. box-sizing: border-box;
  122. background-color: #06a5df;
  123. border-radius: 4px;
  124. cursor: pointer;
  125. color: $defaultColor;
  126. text-decoration: none;
  127. text-align: center;
  128. }
  129. }
  130. }
  131. }