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.

settings-admin.css 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #theming input {
  2. width: 230px;
  3. }
  4. #theming input:focus,
  5. #theming input:active {
  6. padding-right: 30px;
  7. }
  8. #theming .fileupload {
  9. display: none;
  10. }
  11. #theming div > label {
  12. position: relative;
  13. }
  14. #theming .theme-undo {
  15. position: absolute;
  16. top: -7px;
  17. right: 4px;
  18. cursor: pointer;
  19. opacity: 0.3;
  20. padding: 7px;
  21. vertical-align: top;
  22. display: inline-block;
  23. visibility: hidden;
  24. height: 32px;
  25. width: 32px;
  26. }
  27. #theming form.uploadButton {
  28. width: 411px;
  29. display: flex;
  30. align-items: center;
  31. }
  32. #theming form .theme-undo,
  33. #theming .theme-remove-bg {
  34. cursor: pointer;
  35. opacity: 0.3;
  36. padding: 7px;
  37. vertical-align: top;
  38. display: inline-block;
  39. float: right;
  40. position: relative;
  41. top: 4px;
  42. right: 0px;
  43. visibility: visible;
  44. height: 32px;
  45. width: 32px;
  46. margin-left: auto;
  47. }
  48. #theming form .theme-undo:not([style*="display:"]) ~ .theme-remove-bg {
  49. margin-left: 0;
  50. }
  51. #theming input[type=text]:hover + .theme-undo,
  52. #theming input[type=text] + .theme-undo:hover,
  53. #theming input[type=text]:focus + .theme-undo,
  54. #theming input[type=text]:active + .theme-undo,
  55. #theming input[type=url]:hover + .theme-undo,
  56. #theming input[type=url] + .theme-undo:hover,
  57. #theming input[type=url]:focus + .theme-undo,
  58. #theming input[type=url]:active + .theme-undo {
  59. visibility: visible;
  60. }
  61. #theming label span {
  62. display: inline-block;
  63. min-width: 175px;
  64. max-width: 175px;
  65. white-space: wrap;
  66. padding: 8px 0px;
  67. vertical-align: top;
  68. }
  69. #theming .icon-upload,
  70. #theming .uploadButton .icon-loading-small {
  71. padding: 8px 20px;
  72. width: 20px;
  73. margin: 2px 0px;
  74. min-height: 32px;
  75. display: inline-block;
  76. }
  77. #theming #theming_settings_status {
  78. height: 26px;
  79. margin: 10px;
  80. }
  81. #theming #theming_settings_loading {
  82. display: inline-block;
  83. vertical-align: middle;
  84. margin-right: 10px;
  85. }
  86. #theming #theming_settings_msg {
  87. vertical-align: middle;
  88. border-radius: 3px;
  89. }
  90. #theming #theming-preview {
  91. width: 230px;
  92. height: 140px;
  93. background-size: cover;
  94. background-position: center center;
  95. text-align: center;
  96. margin-left: 178px;
  97. margin-top: 10px;
  98. margin-bottom: 20px;
  99. cursor: pointer;
  100. background-color: var(--color-primary-default);
  101. background-image: var(--image-background-default, var(--image-background-plain, linear-gradient(40deg, #0082c9 0%, #30b6ff 100%)));
  102. }
  103. #theming #theming-preview #theming-preview-logo {
  104. cursor: pointer;
  105. width: 20%;
  106. height: 20%;
  107. margin-top: 20px;
  108. display: inline-block;
  109. background-position: center;
  110. background-repeat: no-repeat;
  111. background-size: contain;
  112. background-image: var(--image-logo, url("../../../core/img/logo/logo.svg"));
  113. }
  114. #theming .theming-hints {
  115. margin-top: 20px;
  116. }
  117. #theming .image-preview {
  118. display: inline-block;
  119. width: 80px;
  120. height: 36px;
  121. background-position: center;
  122. background-repeat: no-repeat;
  123. background-size: contain;
  124. }
  125. #theming #theming-preview-logoheader {
  126. background-image: var(--image-logoheader);
  127. }
  128. #theming #theming-preview-favicon {
  129. background-image: var(--image-favicon);
  130. }
  131. #theming #user-theming {
  132. margin-top: 44px;
  133. display: flex;
  134. }
  135. #theming #user-theming > div {
  136. max-width: 400px;
  137. margin-bottom: 44px;
  138. }
  139. /* transition effects for theming value changes */
  140. #header {
  141. transition: background-color 500ms linear;
  142. }
  143. #header svg, #header img {
  144. transition: 500ms filter linear;
  145. }
  146. /*# sourceMappingURL=settings-admin.css.map */