kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
				
				
				
			
		
			
				
	
	
		
			357 wiersze
		
	
	
		
			6.1 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			357 wiersze
		
	
	
		
			6.1 KiB
		
	
	
	
		
			SCSS
		
	
	
.tabs-bar {
 | 
						|
  display: flex;
 | 
						|
  box-sizing: border-box;
 | 
						|
  background: var(--brand-color);
 | 
						|
  flex: 0 0 auto;
 | 
						|
  height: 50px;
 | 
						|
  width: 100%;
 | 
						|
  position: sticky;
 | 
						|
  top: 0;
 | 
						|
  z-index: 1100;
 | 
						|
  transition: transform 0.2s ease;
 | 
						|
 | 
						|
  &--collapsed {
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      margin-top: -50px;
 | 
						|
      transform: translateY(-50px);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__container {
 | 
						|
    display: flex;
 | 
						|
    box-sizing: border-box;
 | 
						|
    width: 100%;
 | 
						|
    max-width: 1200px;
 | 
						|
    margin: 0 auto;
 | 
						|
    padding-left: 15px;
 | 
						|
    padding-left: max(15px, env(safe-area-inset-left));
 | 
						|
    padding-right: 15px;
 | 
						|
    padding-right: max(15px, env(safe-area-inset-right));
 | 
						|
 | 
						|
    // NOTE - might need to adjust this based on column sizing
 | 
						|
    @media screen and (max-width: $nav-breakpoint-4) { padding: 0 10px; }
 | 
						|
  }
 | 
						|
 | 
						|
  &__split {
 | 
						|
    display: flex;
 | 
						|
    width: auto;
 | 
						|
 | 
						|
    &--left {
 | 
						|
      margin-right: auto;
 | 
						|
    }
 | 
						|
 | 
						|
    &--right {
 | 
						|
      margin-left: auto;
 | 
						|
      align-items: center;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  @media screen and (max-width: 450px) {
 | 
						|
    // Move Profile menu to the left on mobile
 | 
						|
    &__split--right {
 | 
						|
      margin: 0;
 | 
						|
      order: -1;
 | 
						|
      width: 100%;
 | 
						|
    }
 | 
						|
 | 
						|
    &__profile {
 | 
						|
      margin-left: 0 !important;
 | 
						|
    }
 | 
						|
 | 
						|
    &__unauthenticated {
 | 
						|
      display: flex;
 | 
						|
      justify-content: space-between;
 | 
						|
      width: 100%;
 | 
						|
 | 
						|
      .tabs-bar__button {
 | 
						|
        margin: 0;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__search-container {
 | 
						|
    display: block;
 | 
						|
    width: 351px;
 | 
						|
    align-self: center;
 | 
						|
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      display: none;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__profile {
 | 
						|
    position: relative;
 | 
						|
    overflow: hidden;
 | 
						|
    margin: 0 0 0 10px;
 | 
						|
    height: 34px;
 | 
						|
    width: 34px;
 | 
						|
 | 
						|
    .account__avatar {
 | 
						|
      width: 34px;
 | 
						|
      height: 34px;
 | 
						|
      background-size: cover;
 | 
						|
    }
 | 
						|
 | 
						|
    .compose__action-bar {
 | 
						|
      display: block;
 | 
						|
      position: absolute;
 | 
						|
      top: 0;
 | 
						|
      right: 0;
 | 
						|
      left: -5px;
 | 
						|
      bottom: 0;
 | 
						|
 | 
						|
      i {
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
 | 
						|
      @media screen and (max-width: 1190px) {
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__sidebar-btn {
 | 
						|
    display: block;
 | 
						|
    position: absolute;
 | 
						|
    top: 0;
 | 
						|
    right: 0;
 | 
						|
    left: 0;
 | 
						|
    bottom: 0;
 | 
						|
    width: 30px;
 | 
						|
    opacity: 0;
 | 
						|
 | 
						|
    @media (min-width: 1191px) {
 | 
						|
      display: none;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__page-name {
 | 
						|
    display: block;
 | 
						|
    margin-left: 18px;
 | 
						|
    line-height: 30px;
 | 
						|
    font-weight: 600;
 | 
						|
    font-size: 18px;
 | 
						|
    color: #fff;
 | 
						|
 | 
						|
    @media (min-width: 896px) {
 | 
						|
      display: none;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__button-compose {
 | 
						|
    display: block;
 | 
						|
    @media screen and (max-width: $nav-breakpoint-3) { display: none; }
 | 
						|
    height: 34px;
 | 
						|
    margin-left: 20px;
 | 
						|
    border-radius: 6px;
 | 
						|
    background-color: var(--accent-color);
 | 
						|
    font-weight: bold;
 | 
						|
    font-size: 16px;
 | 
						|
    transition: 0.2s;
 | 
						|
 | 
						|
    > span {
 | 
						|
      text-shadow: 0 0 3px hsla(0, 0%, 0%, 0.15);
 | 
						|
    }
 | 
						|
 | 
						|
    &:hover {
 | 
						|
      background-color: var(--accent-color--bright);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &__button {
 | 
						|
    margin-left: 12px;
 | 
						|
    height: 34px;
 | 
						|
  }
 | 
						|
 | 
						|
  .theme-toggle {
 | 
						|
    margin-left: 20px;
 | 
						|
 | 
						|
    @media screen and (max-width: $nav-breakpoint-3) {
 | 
						|
      display: none;
 | 
						|
    }
 | 
						|
 | 
						|
    .setting-toggle {
 | 
						|
      .react-toggle-track {
 | 
						|
        background-color: var(--foreground-color);
 | 
						|
      }
 | 
						|
 | 
						|
      .react-toggle--checked {
 | 
						|
        .react-toggle-track {
 | 
						|
          background-color: var(--accent-color);
 | 
						|
        }
 | 
						|
 | 
						|
        &:hover:not(.react-toggle--disabled) .react-toggle-track,
 | 
						|
        &.react-toggle--focus .react-toggle-track {
 | 
						|
          background-color: var(--accent-color--bright);
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.tabs-bar__link {
 | 
						|
  display: flex;
 | 
						|
  flex: 1 1 auto;
 | 
						|
  color: #fff;
 | 
						|
  text-decoration: none;
 | 
						|
  position: relative;
 | 
						|
  align-items: center;
 | 
						|
  font-weight: bold;
 | 
						|
  transition: 0.1s;
 | 
						|
  outline: none;
 | 
						|
  text-shadow: 0 0 3px hsla(0, 0%, 0%, 0.15);
 | 
						|
 | 
						|
  @media screen and (max-width: 895px) {
 | 
						|
    width: 36px;
 | 
						|
    margin: 4px 4px 0 0;
 | 
						|
    justify-content: center;
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
 | 
						|
  > span {
 | 
						|
    font-size: 15px;
 | 
						|
    line-height: 50px;
 | 
						|
    margin-left: 4px;
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
 | 
						|
  & + & {
 | 
						|
    margin-left: 20px;
 | 
						|
  }
 | 
						|
 | 
						|
  &--search {
 | 
						|
    @media (min-width: 896px) {
 | 
						|
      display: none;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .svg-icon {
 | 
						|
    width: 22px;
 | 
						|
    height: 22px;
 | 
						|
 | 
						|
    svg.icon-tabler {
 | 
						|
      stroke-width: 1.5px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &.optional {
 | 
						|
    display: none;
 | 
						|
    @media screen and (max-width: $nav-breakpoint-2) {
 | 
						|
      display: flex;
 | 
						|
      background-position: -992px 11px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &::before {
 | 
						|
    content: "";
 | 
						|
    display: block;
 | 
						|
    background: var(--accent-color);
 | 
						|
    position: absolute;
 | 
						|
    transition: 0.2s;
 | 
						|
    left: 0;
 | 
						|
    bottom: auto;
 | 
						|
    opacity: 0;
 | 
						|
    height: 15px;
 | 
						|
    border-radius: 999px;
 | 
						|
    z-index: -1;
 | 
						|
    width: calc(100% + 12px);
 | 
						|
    margin-left: -6px;
 | 
						|
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      height: 0;
 | 
						|
      border-radius: 3px 3px 0 0;
 | 
						|
      bottom: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &.active::before,
 | 
						|
  &:hover::before,
 | 
						|
  &:focus::before {
 | 
						|
    height: 30px;
 | 
						|
    opacity: 1;
 | 
						|
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      height: 7px;
 | 
						|
      width: 36px;
 | 
						|
      margin: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &--logo {
 | 
						|
    display: block;
 | 
						|
    margin-right: 30px;
 | 
						|
    border: 0;
 | 
						|
    height: 40px;
 | 
						|
    width: max-content;
 | 
						|
    overflow: hidden;
 | 
						|
    padding: 13px 0 0;
 | 
						|
    box-sizing: border-box;
 | 
						|
    filter: brightness(0%) grayscale(100%) invert(100%);
 | 
						|
 | 
						|
    & span {
 | 
						|
      display: none !important;
 | 
						|
    }
 | 
						|
 | 
						|
    img {
 | 
						|
      height: 100%;
 | 
						|
    }
 | 
						|
 | 
						|
    .svg-icon {
 | 
						|
      width: 26px;
 | 
						|
      height: 26px;
 | 
						|
      margin: 0 auto;
 | 
						|
 | 
						|
      svg {
 | 
						|
        fill: currentColor;
 | 
						|
        stroke-width: 1px;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    &:hover {
 | 
						|
      border: 0 !important;
 | 
						|
    }
 | 
						|
 | 
						|
    /* Move logo to center on mobile */
 | 
						|
    @media screen and (max-width: 450px) {
 | 
						|
      margin: 0 auto;
 | 
						|
      position: absolute;
 | 
						|
      left: 0;
 | 
						|
      right: 0;
 | 
						|
      text-align: center;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &--no-highlight,
 | 
						|
  &--no-highlight:hover,
 | 
						|
  &--no-highlight.active,
 | 
						|
  &--no-highlight:active,
 | 
						|
  &--no-highlight:focus {
 | 
						|
    background: transparent !important;
 | 
						|
    border-bottom-color: transparent !important;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.tabs-bar__split--left:hover .tabs-bar__link {
 | 
						|
  &::before {
 | 
						|
    height: 15px;
 | 
						|
    opacity: 0;
 | 
						|
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      height: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &:hover::before {
 | 
						|
    height: 30px;
 | 
						|
    opacity: 1;
 | 
						|
 | 
						|
    @media screen and (max-width: 895px) {
 | 
						|
      height: 7px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.tabs-bar__link + .tabs-bar__profile {
 | 
						|
  margin-left: 20px;
 | 
						|
}
 |