Sha256: 292c67d6e77f9b4cdde258049751ea87a412ec72f0c6988f9c32b62490c5ff0d

Contents?: true

Size: 1.7 KB

Versions: 1

Compression:

Stored size: 1.7 KB

Contents

/* Table of Contents
==================================================
# Toolbar
# Colors
# Media Queries */

/* # Toolbar
================================================== */
.toolbar {
  background: $color-white;
  border-right: 1px solid $color-haze;
  box-sizing: border-box;
  height: 100%;
  min-width: 55px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  width: 55px;
}
.toolbar-alt {
  border-left: 1px solid $color-haze;
  border-right: 0;
}
.toolbar > a {
  background: transparent;
  box-sizing: border-box;
  color: $color-black-light;
  display: block;
  font-size: 21px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  width: 55px;
}
.toolbar > a:hover,
.toolbar > a.active,
.toolbar > a:active
.toolbar > a:focus {
  background: $color-primary;
  color: $color-white;
}

/* # Colors
================================================== */
.toolbar-dark,
.toolbar-dark.toolbar-alt {
  background: $color-black;
  border-color: $color-black-dark;
}
.toolbar-dark > a { color: $color-gray; }
.toolbar-light,
.toolbar-light.toolbar-alt {
  background: $color-haze-light;
  border-color: $color-haze-dark;
}

/* # Media Queries
================================================== */
@media only screen and (max-width: 767px) {
  .toolbar { display: none; }
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
  .toolbar { border-width: 0.5px; }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_frontend-9.1.1 vendor/assets/stylesheets/_toolbar.scss