PHP Classes

File: engine/modules/contrib/foundation/source/scss/forms/_meter.scss

Recommend this page to a friend!
  Classes of Aldo Tripiciano   Quanta CMS   engine/modules/contrib/foundation/source/scss/forms/_meter.scss   Download  
File: engine/modules/contrib/foundation/source/scss/forms/_meter.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Quanta CMS
Manage content that works without a database
Author: By
Last change:
Date: 6 years ago
Size: 2,465 bytes
 

Contents

Class file image Download
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group meter //// /// Height of a `<meter>` element. /// @type Length $meter-height: 1rem !default; /// Border radius of a `<meter>` element. /// @type Length $meter-radius: $global-radius !default; /// Background color of a `<meter>` element. /// @type Color $meter-background: $medium-gray !default; /// Meter fill for an optimal value in a `<meter>` element. /// @type Color $meter-fill-good: $success-color !default; /// Meter fill for an average value in a `<meter>` element. /// @type Color $meter-fill-medium: $warning-color !default; /// Meter fill for a suboptimal value in a `<meter>` element. /// @type Color $meter-fill-bad: $alert-color !default; @mixin foundation-meter-element { meter { display: block; width: 100%; height: $meter-height; margin-bottom: 1rem; appearance: none; @if has-value($meter-radius) { border-radius: $meter-radius; } // For Firefox border: 0; background: $meter-background; // Chrome/Safari/Edge &::-webkit-meter-bar { border: 0; @if has-value($meter-radius) { border-radius: $meter-radius; } background: $meter-background; } &::-webkit-meter-inner-element { @if has-value($meter-radius) { border-radius: $meter-radius; } } &::-webkit-meter-optimum-value { background: $meter-fill-good; @if has-value($meter-radius) { border-radius: $meter-radius; } } &::-webkit-meter-suboptimum-value { background: $meter-fill-medium; @if has-value($meter-radius) { border-radius: $meter-radius; } } &::-webkit-meter-even-less-good-value { background: $meter-fill-bad; @if has-value($meter-radius) { border-radius: $meter-radius; } } &::-moz-meter-bar { background: $primary-color; @if has-value($meter-radius) { border-radius: $meter-radius; } } &:-moz-meter-optimum::-moz-meter-bar { // sass-lint:disable-line force-pseudo-nesting background: $meter-fill-good; } &:-moz-meter-sub-optimum::-moz-meter-bar { // sass-lint:disable-line force-pseudo-nesting background: $meter-fill-medium; } &:-moz-meter-sub-sub-optimum::-moz-meter-bar { // sass-lint:disable-line force-pseudo-nesting background: $meter-fill-bad; } } }