PHP Classes

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

Recommend this page to a friend!
  Classes of Aldo Tripiciano   Quanta CMS   engine/modules/contrib/foundation/source/scss/forms/_select.scss   Download  
File: engine/modules/contrib/foundation/source/scss/forms/_select.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: 5 years ago
Size: 1,897 bytes
 

Contents

Class file image Download
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group forms //// /// Background color for select menus. /// @type Color $select-background: $white !default; /// Color of the dropdown triangle inside select menus. Set to `transparent` to remove it entirely. /// @type Color $select-triangle-color: $dark-gray !default; /// Default radius for select menus. /// @type Color $select-radius: $global-radius !default; @mixin form-select { $height: ($input-font-size + ($form-spacing * 1.5) - rem-calc(1)); height: $height; margin: 0 0 $form-spacing; padding: ($form-spacing / 2); appearance: none; border: $input-border; border-radius: $select-radius; background-color: $select-background; font-family: $input-font-family; font-size: $input-font-size; line-height: normal; color: $input-color; @if $select-triangle-color != transparent { @include background-triangle($select-triangle-color); background-origin: content-box; background-position: $global-right (-$form-spacing) center; background-repeat: no-repeat; background-size: 9px 6px; padding-#{$global-right}: ($form-spacing * 1.5); } @if has-value($input-transition) { transition: $input-transition; } // Focus state &:focus { outline: none; border: $input-border-focus; background-color: $input-background-focus; box-shadow: $input-shadow-focus; @if has-value($input-transition) { transition: $input-transition; } } // Disabled state &:disabled { background-color: $input-background-disabled; cursor: $input-cursor-disabled; } // Hide the dropdown arrow shown in newer IE versions &::-ms-expand { display: none; } &[multiple] { height: auto; background-image: none; } } @mixin foundation-form-select { select { @include form-select; } }