Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_side_toolbar_container.scss 3.0KB

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