Sha256: 19b4c6c4d7c1a870e59a998c9c31403e226b323c4dd869ec5dc7bec4c3a3cf43

Contents?: true

Size: 1.88 KB

Versions: 4

Compression:

Stored size: 1.88 KB

Contents

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

/* # Toolbar
================================================== */
.toolbar {
  background: $color-white;
  border-right: 1px solid;
  border-color: $color-haze;
  box-sizing: border-box;
  height: 100%;
  min-width: 55px;
  position: fixed;
  width: 55px;
}
.toolbar-alt {
  border-left: 1px solid;
  border-color: inherit;
  border-right: 0;
}
.toolbar > a {
  background: $color-transparent;
  border: 0;
  border-bottom: 1px solid;
  border-color: inherit;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  font-size: 21px;
  height: 55px;
  line-height: 60px;
  padding: 0;
  text-align: center;
  width: 55px;
}
.toolbar > a.btn { line-height: 55px; }
.toolbar > a:hover,
.toolbar > a.active,
.toolbar > a:active
.toolbar > a:focus {
  background: $color-primary;
  color: $color-white;
}
.toolbar > a[disabled] {
  background: $color-transparent;
  color: $color-gray;
  cursor: not-allowed;
  pointer-events: none;
}
.toolbar > .tooltip {
  min-width: 80px;
  width: 80px;
}

/* # Colors
================================================== */
.toolbar-dark {
  background: $color-black;
  border-color: $color-dark-black;
  color: $color-white;
}
.toolbar-light {
  background: $color-light-haze;
  border-color: $color-dark-haze;
}

/* # 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,
  .toolbar-alt,
  .toolbar > a { border-width: 0.5px; }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_frontend-12.0.3 vendor/assets/stylesheets/_toolbar.scss
active_frontend-12.0.2 vendor/assets/stylesheets/_toolbar.scss
active_frontend-12.0.1 vendor/assets/stylesheets/_toolbar.scss
active_frontend-12.0.0 vendor/assets/stylesheets/_toolbar.scss