選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

header.scss 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /**
  2. * @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
  3. * @copyright Copyright (c) 2016, Julius Haertl <jus@bitgrid.net>
  4. * @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
  5. * @copyright Copyright (c) 2016, Jos Poortvliet <jos@opensuse.org>
  6. * @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org>
  7. * @copyright Copyright (c) 2016, jowi <sjw@gmx.ch>
  8. * @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
  9. * @copyright Copyright (c) 2015, Volker E <volker.e@temporaer.net>
  10. * @copyright Copyright (c) 2014-2017, Jan-Christoph Borchardt <hey@jancborchardt.net>
  11. *
  12. * @license GNU AGPL version 3 or any later version
  13. *
  14. */
  15. @use 'variables';
  16. /* prevent ugly selection effect on accidental selection */
  17. #header,
  18. #expanddiv {
  19. -webkit-user-select: none;
  20. -moz-user-select: none;
  21. -ms-user-select: none;
  22. a:not(.button):focus-visible, button:not(.button-vue):focus-visible, div[role="button"]:focus-visible {
  23. outline: none;
  24. }
  25. a:not(.button):focus-visible::after, .button-vue:focus-visible::after, div[role=button]:focus-visible::after {
  26. content: " ";
  27. position: absolute;
  28. transform: translateX(-50%);
  29. width: 12px;
  30. height: 2px;
  31. border-radius: 3px;
  32. background-color: var(--color-primary-element-text);
  33. left: 50%;
  34. opacity: 1;
  35. }
  36. a:not(.button):focus-visible::after, .button-vue:focus-visible::after {
  37. bottom: 2px;
  38. }
  39. .header-right {
  40. a:not(.button):focus-visible::after, div[role=button]:focus-visible::after {
  41. bottom: 4px;
  42. }
  43. #expand.menutoggle:focus-visible::after {
  44. left: 40%;
  45. }
  46. }
  47. }
  48. /* HEADERS ------------------------------------------------------------------ */
  49. #body-user #header,
  50. #body-settings #header,
  51. #body-public #header {
  52. display: inline-flex;
  53. position: absolute;
  54. top: 0;
  55. width: 100%;
  56. z-index: 2000;
  57. height: variables.$header-height;
  58. box-sizing: border-box;
  59. justify-content: space-between;
  60. }
  61. /* LOGO and APP NAME -------------------------------------------------------- */
  62. #nextcloud {
  63. padding: 5px 0;
  64. padding-left: 86px; // logo width + 2* pa
  65. position: relative;
  66. height: calc(100% - 4px);
  67. box-sizing: border-box;
  68. opacity: 1;
  69. align-items: center;
  70. display: flex;
  71. flex-wrap: wrap;
  72. overflow: hidden;
  73. margin: 2px;
  74. &:hover, &:active {
  75. opacity: 1;
  76. }
  77. }
  78. @mixin header-menu-height() {
  79. min-height: calc(44px * 1.5); // show at least 1.5 entries
  80. max-height: calc(100vh - #{variables.$header-height} - 8px);
  81. }
  82. #header {
  83. /* Header menu */
  84. $header-menu-entry-height: 44px;
  85. .header-right > div > .menu {
  86. background-color: var(--color-main-background);
  87. filter: drop-shadow(0 1px 5px var(--color-box-shadow));
  88. border-radius: var(--border-radius-large);
  89. box-sizing: border-box;
  90. z-index: 2000;
  91. position: absolute;
  92. max-width: 350px;
  93. @include header-menu-height();
  94. right: 8px; // relative to parent
  95. top: variables.$header-height;
  96. margin: 0;
  97. overflow-y: auto;
  98. &:not(.popovermenu) {
  99. display: none;
  100. }
  101. /* Dropdown arrow */
  102. &:after {
  103. border: 10px solid transparent;
  104. border-bottom-color: var(--color-main-background);
  105. bottom: 100%;
  106. content: ' ';
  107. height: 0;
  108. width: 0;
  109. position: absolute;
  110. pointer-events: none;
  111. right: 10px;
  112. }
  113. & > div,
  114. & > ul {
  115. -webkit-overflow-scrolling: touch;
  116. @include header-menu-height();
  117. }
  118. }
  119. .logo {
  120. display: inline-flex;
  121. background-image: var(--image-logoheader, var(--image-logo, url('../img/logo/logo.svg')));
  122. background-repeat: no-repeat;
  123. background-size: contain;
  124. background-position: center;
  125. width: 62px;
  126. position: absolute;
  127. left: 12px;
  128. top: 1px;
  129. bottom: 1px;
  130. // Invert if not customized and background is bright
  131. filter: var(--image-logoheader-custom, var(--background-image-invert-if-bright));
  132. }
  133. .header-appname-container {
  134. display: none;
  135. padding-right: 10px;
  136. flex-shrink: 0;
  137. }
  138. #header-left, .header-left,
  139. #header-right, .header-right {
  140. display: inline-flex;
  141. align-items: center;
  142. }
  143. #header-left, .header-left {
  144. flex: 1 0;
  145. white-space: nowrap;
  146. min-width: 0;
  147. }
  148. #header-right, .header-right {
  149. justify-content: flex-end;
  150. flex-shrink: 1;
  151. }
  152. /* Right header standard */
  153. .header-right {
  154. > div,
  155. > form {
  156. height: 100%;
  157. position: relative;
  158. > .menutoggle {
  159. display: flex;
  160. justify-content: center;
  161. align-items: center;
  162. width: variables.$header-height;
  163. height: 44px;
  164. cursor: pointer;
  165. opacity: 0.85;
  166. padding: 0;
  167. margin: 2px 0;
  168. &:focus {
  169. opacity: 1;
  170. }
  171. &:focus-visible {
  172. outline: none;
  173. }
  174. }
  175. }
  176. }
  177. }
  178. /* hover effect for app switcher label */
  179. .header-appname-container .header-appname {
  180. opacity: .75;
  181. }
  182. /* TODO: move into minimal css file for public shared template */
  183. /* only used for public share pages now as we have the app icons when logged in */
  184. .header-appname {
  185. color: var(--color-primary-element-text);
  186. font-size: 16px;
  187. font-weight: bold;
  188. margin: 0;
  189. padding: 0;
  190. padding-right: 5px;
  191. overflow: hidden;
  192. text-overflow: ellipsis;
  193. // Take full width to push the header-shared-by bellow (if any)
  194. flex: 1 1 100%;
  195. }
  196. .header-shared-by {
  197. color: var(--color-primary-element-text);
  198. position: relative;
  199. font-weight: 300;
  200. font-size: 11px;
  201. line-height: 11px;
  202. overflow: hidden;
  203. text-overflow: ellipsis;
  204. }
  205. /* Skip navigation links – show only on keyboard focus */
  206. #skip-actions {
  207. position: absolute;
  208. overflow: hidden;
  209. z-index: 9999;
  210. top: -999px;
  211. left: 3px;
  212. padding: 11px;
  213. display: flex;
  214. flex-wrap: wrap;
  215. gap: 11px;
  216. &:focus-within {
  217. top: variables.$header-height;
  218. }
  219. }
  220. /* Empty content messages in the header e.g. notifications, contacts menu, … */
  221. header #emptycontent,
  222. header .emptycontent {
  223. h2 {
  224. font-weight: normal;
  225. font-size: 16px;
  226. }
  227. [class^='icon-'],
  228. [class*='icon-'] {
  229. background-size: 48px;
  230. height: 48px;
  231. width: 48px;
  232. }
  233. }