lbry-desktop/ui/scss/component/_header.scss

208 lines
3.7 KiB
SCSS
Raw Normal View History

2018-03-26 14:32:43 -07:00
.header {
2020-04-30 11:01:11 -04:00
z-index: 3; // Main content uses z-index: 1, other content uses z-index: 2, this ensures it always scrolls under the header
position: fixed;
2019-06-11 14:10:58 -04:00
top: 0;
2018-06-25 02:07:45 -04:00
width: 100%;
2019-11-22 16:13:00 -05:00
background-color: var(--color-header-background);
2020-01-22 09:26:39 -05:00
box-shadow: var(--card-box-shadow);
2019-07-21 17:31:22 -04:00
font-size: var(--font-body);
2019-10-09 12:34:18 -04:00
-webkit-user-select: none;
-webkit-app-region: drag;
2019-06-28 03:33:07 -04:00
& > * {
user-select: none;
}
2018-06-25 02:07:45 -04:00
}
2019-08-27 10:43:42 -04:00
.header--minimal {
box-shadow: none;
2021-04-26 15:19:17 -04:00
background-color: var(--color-background);
2019-08-27 10:43:42 -04:00
border-bottom: none;
}
2019-10-09 12:34:18 -04:00
.header--mac {
padding-top: var(--mac-titlebar-height);
}
2019-06-11 14:10:58 -04:00
.header__contents {
2020-08-10 16:47:39 -04:00
height: calc(var(--header-height));
2019-06-11 14:10:58 -04:00
display: flex;
2019-12-18 00:27:08 -05:00
align-items: center;
2020-08-10 16:47:39 -04:00
padding: 0 var(--spacing-m);
2019-12-18 00:27:08 -05:00
@media (max-width: $breakpoint-small) {
2020-08-18 10:17:45 -04:00
padding: var(--spacing-xs);
2019-12-18 00:27:08 -05:00
}
2019-06-11 14:10:58 -04:00
}
.header__navigation {
2019-08-21 16:54:44 -04:00
flex: 1;
2018-06-25 02:07:45 -04:00
display: flex;
2019-11-22 16:13:00 -05:00
align-items: center;
2018-06-25 02:07:45 -04:00
}
2019-08-21 16:54:44 -04:00
.header__menu {
margin-left: auto;
display: flex;
justify-content: space-between;
align-items: center;
2019-12-18 00:27:08 -05:00
}
2020-08-10 16:47:39 -04:00
.header__buttons {
display: flex;
2019-03-31 19:04:01 -04:00
}
.header__navigation-item {
2019-11-22 16:13:00 -05:00
height: var(--height-button);
2019-03-29 10:23:32 -04:00
display: flex;
justify-content: center;
align-items: center;
2019-11-22 16:13:00 -05:00
border-radius: var(--border-radius);
color: var(--color-text);
2020-07-23 10:22:57 -04:00
position: relative;
2020-08-10 16:47:39 -04:00
font-weight: var(--font-weight-bold);
2018-06-25 02:07:45 -04:00
2019-11-22 16:13:00 -05:00
svg {
stroke: var(--color-text);
2018-06-25 02:07:45 -04:00
}
2019-03-28 12:53:13 -04:00
}
2019-03-29 10:23:32 -04:00
.header__navigation-item--back,
2019-11-22 16:13:00 -05:00
.header__navigation-item--forward,
.header__navigation-item--icon {
2020-01-02 11:30:27 -05:00
width: var(--height-button);
background-color: var(--color-header-button);
border-radius: 1.5rem;
2020-08-10 16:47:39 -04:00
margin-right: var(--spacing-s);
2020-01-02 11:30:27 -05:00
&:hover {
2021-04-30 11:42:18 -04:00
background-color: var(--color-header-button-hover);
2020-01-02 11:30:27 -05:00
}
2020-01-02 15:36:03 -05:00
2020-05-11 10:21:00 -04:00
@media (min-width: $breakpoint-small) {
&:focus {
@include focus;
}
2020-01-02 15:36:03 -05:00
}
2020-01-30 15:55:45 -05:00
span {
display: flex;
justify-content: center;
align-items: center;
}
}
2020-10-05 14:04:31 -04:00
.header__navigation-item--profile-pic {
margin-left: var(--spacing-m);
2020-10-05 14:04:31 -04:00
.channel-thumbnail {
height: var(--height-button);
width: var(--height-button);
margin-right: 0;
}
&:hover {
opacity: 0.7;
}
}
2020-08-26 16:28:33 -04:00
.header__navigation-item--balance {
@extend .button--file-action;
margin: 0 var(--spacing-s);
color: var(--color-text);
&:hover {
color: var(--color-text);
}
2020-08-26 16:28:33 -04:00
}
2020-08-20 01:34:07 -04:00
.header__navigation-item--forward {
margin-right: 0;
}
2020-08-10 16:47:39 -04:00
.header__navigation-item--icon {
@media (max-width: $breakpoint-small) {
2020-08-11 16:32:03 -04:00
margin: 0;
2020-08-10 16:47:39 -04:00
}
}
2019-03-29 10:23:32 -04:00
.header__navigation-item--lbry {
2021-04-26 15:19:17 -04:00
height: 4rem;
display: flex;
align-items: center;
margin-left: var(--spacing-m);
margin-right: var(--spacing-m);
2021-04-26 22:43:06 -04:00
// move to lbry theme?
.lbry-icon {
height: var(--height-button);
width: var(--height-button);
}
2021-04-26 15:19:17 -04:00
@media (max-width: $breakpoint-small) {
margin-right: var(--spacing-m);
height: 5rem;
.button__label {
display: none;
}
}
}
.header--minimal {
.header__navigation-item--lbry {
height: 3rem;
}
2020-01-02 11:30:27 -05:00
}
2020-02-12 19:48:28 -06:00
.header__navigation-dropdown {
@extend .menu__list--header;
padding: 0;
position: absolute;
list-style-type: none;
background-color: var(--color-header-background);
2020-02-12 19:48:28 -06:00
}
2020-02-12 19:48:28 -06:00
.header__navigation-button {
margin: 0;
2020-06-01 13:03:19 -04:00
padding: var(--spacing-xxs) var(--spacing-m);
2020-02-12 19:48:28 -06:00
display: flex;
align-items: center;
2020-02-12 19:48:28 -06:00
&:hover {
cursor: pointer;
background-color: var(--color-menu-background--active);
}
}
2020-02-12 19:48:28 -06:00
.header__navigation-button-help {
@extend .help;
margin-top: 0;
2020-06-01 13:03:19 -04:00
margin-left: var(--spacing-s);
2020-02-12 19:48:28 -06:00
}
.header__auth-buttons {
display: flex;
align-items: center;
font-weight: var(--font-weight-bold);
2020-12-11 17:00:32 -05:00
margin-left: var(--spacing-s);
& > *:not(:last-child) {
2020-06-01 13:03:19 -04:00
margin: 0 var(--spacing-m);
}
}
2020-08-10 16:47:39 -04:00
.header__center {
display: flex;
2020-12-11 13:33:27 -05:00
justify-content: flex-end;
2020-08-10 16:47:39 -04:00
width: 100%;
2020-12-11 13:33:27 -05:00
@media (min-width: $breakpoint-small) {
justify-content: center;
}
2020-08-10 16:47:39 -04:00
}
2020-09-03 16:05:38 -04:00
.header__auth-title {
@media (min-width: $breakpoint-small) {
font-size: var(--font-large);
}
}