Files
ionic-framework/src/components/picker/picker.md.scss

170 lines
4.3 KiB
SCSS

@import "../../themes/ionic.globals.md";
// Material Design Picker
// --------------------------------------------------
/// @prop - Height of the picker wrapper
$picker-md-height: 260px !default;
/// @prop - Border color of the picker wrapper
$picker-md-border-color: $list-md-border-color !default;
/// @prop - Background of the picker wrapper
$picker-md-background-color: $list-md-background-color !default;
/// @prop - Height of the picker toolbar
$picker-md-toolbar-height: 44px !default;
/// @prop - Background of the picker toolbar
$picker-md-toolbar-background-color: $picker-md-background-color !default;
/// @prop - Height of the picker button
$picker-md-button-height: $picker-md-toolbar-height !default;
/// @prop - Text color of the picker button
$picker-md-button-text-color: color($colors-md, primary) !default;
/// @prop - Background of the picker button
$picker-md-button-background-color: transparent !default;
/// @prop - Padding of the picker column
$picker-md-column-padding: 0 8px !default;
/// @prop - Padding of the picker option
$picker-md-option-padding: 0 !default;
/// @prop - Text color of the picker option
$picker-md-option-text-color: $list-md-text-color !default;
/// @prop - Font size of the picker option
$picker-md-option-font-size: 22px !default;
/// @prop - Height of the picker option
$picker-md-option-height: 42px !default;
/// @prop - Offset y of the picker option
$picker-md-option-offset-y: (($picker-md-height - $picker-md-toolbar-height) / 2) - ($picker-md-option-height / 2) - 10 !default;
/// @prop - Text color of the selected picker option
$picker-md-option-selected-color: color($colors-md, primary) !default;
.picker-md .picker-wrapper {
height: $picker-md-height;
border-top: $hairlines-width solid $picker-md-border-color;
background: $picker-md-background-color;
}
.picker-md .picker-toolbar {
display: flex;
justify-content: flex-end;
height: $picker-md-toolbar-height;
background: $picker-md-toolbar-background-color;
}
.picker-md .picker-button,
.picker-md .picker-button.activated {
margin: 0;
height: $picker-md-button-height;
color: $picker-md-button-text-color;
background: $picker-md-button-background-color;
box-shadow: none;
}
.picker-md .picker-columns {
height: $picker-md-height - $picker-md-toolbar-height;
perspective: 1800px;
}
.picker-md .picker-col {
padding: $picker-md-column-padding;
transform-style: preserve-3d;
}
.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opts {
top: $picker-md-option-offset-y;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
color: $picker-md-option-text-color;
transform-style: preserve-3d;
pointer-events: none;
}
.picker-md .picker-opt {
margin: 0;
padding: $picker-md-option-padding;
height: 4.3rem;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
color: $picker-md-option-text-color;
background: transparent;
transition-timing-function: ease-out;
backface-visibility: hidden;
pointer-events: auto;
}
.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opt.picker-opt-selected {
color: $picker-md-option-selected-color;
}
.picker-md .picker-above-highlight {
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: $picker-md-option-offset-y + 4px;
border-bottom: 1px solid $picker-md-border-color;
background: linear-gradient(to bottom,
rgba($picker-md-background-color, 1) 20%,
rgba($picker-md-background-color, .7) 100%);
transform: translate3d(0, 0, 90px);
}
.picker-md .picker-below-highlight {
position: absolute;
top: $picker-md-option-offset-y + $picker-md-option-height - 4;
left: 0;
z-index: 11;
width: 100%;
height: $picker-md-option-offset-y + $picker-md-option-height;
border-top: 1px solid $picker-md-border-color;
background: linear-gradient(to top,
rgba($picker-md-background-color, 1) 30%,
rgba($picker-md-background-color, .7) 100%);
transform: translate3d(0, 0, 90px);
}