Sha256: 42e549b3db2197cd34fb7330726d5a9e0c1d73ec78080fcb3a08d68670c31111

Contents?: true

Size: 1.69 KB

Versions: 2

Compression:

Stored size: 1.69 KB

Contents

.tabs {
  display: flex;
  margin: 1em 0;
  border-bottom: 1px solid $color-border;
  white-space: nowrap;

  &,
  ul {
    padding-left: 0;
    list-style: none;
  }

  a {
    padding: 1em;
  }

  @media print { display: none }
}

.tabs > li:not(.in-dropdown) {
  flex-grow: 0;
  flex-shrink: 0;

  // Move down one pixel to sit on top of the ul's border-bottom
  position: relative;
  top: 2px;

  > a {
    color: $color-navbar-submenu;
    display: block;
    border: 1px solid $color-border;
    border-radius: 4px 4px 0 0;
    line-height: 1;
  }

  &:not(:first-child) > a {
    border-left: none;
  }

  &:not(.active) > a {
    background: $color-tbl-thead;
  }

  &.active > a,
  &.active:hover {
    background: white;
    border-bottom-color: white;
    color: $color-navbar-active;
    font-weight: $font-weight-bold;
  }

  &:not(.active):hover > a {
    color: $color-navbar-active;
  }
}

.tabs-overflowed.tabs > li:not(.tabs-dropdown) {
  flex-grow: 1;
  flex-shrink: 1;
}

.tabs-dropdown {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;

  .tabs:not(.tabs-overflowed) & {
    visibility: hidden;
  }

  > a {
    position: relative;
    background: white;
    z-index: 1;

    &:before {
      content: "\f107";
      font-family: FontAwesome;
      -webkit-font-smoothing: antialiased;
    }
  }

  &:hover > a {
    background: white;
  }

  &:not(:hover) ul {
    display: none;
  }

  ul {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    z-index: 1;
  }
}

.tabs li.in-dropdown {
  a {
    display: block;
    border: 1px solid $color-border;
    background: white;
  }

  &:not(:first-child) a {
    border-top: none;
  }

  &:last-child a {
    border-radius: 0 0 3px 3px;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solidus_backend-2.9.0 app/assets/stylesheets/spree/backend/components/_tabs.scss
solidus_backend-2.9.0.rc.1 app/assets/stylesheets/spree/backend/components/_tabs.scss