Files
2020-03-11 12:42:46 -04:00

96 lines
1.5 KiB
SCSS

@import "../../themes/ionic.globals";
// Label
// --------------------------------------------------
:host-context(.item) {
/**
* @prop --color: Color of the label
*/
--color: initial;
display: block;
color: var(--color);
font-family: $font-family-base;
font-size: inherit;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}
:host(.ion-color) {
color: current-color(base);
}
:host(.ion-text-wrap),
:host([text-wrap]) {
white-space: normal;
}
:host-context(.item-interactive-disabled:not(.item-multiple-inputs)) {
cursor: default;
opacity: .3;
pointer-events: none;
}
:host-context(.item-input) {
flex: initial;
max-width: 200px;
pointer-events: none;
}
:host-context(.item-textarea) {
align-self: baseline;
}
// Fixed Inputs
// --------------------------------------------------
:host(.label-fixed) {
flex: 0 0 100px;
width: 100px;
min-width: 100px;
max-width: 200px;
}
// Stacked & Floating Inputs
// --------------------------------------------------
:host(.label-stacked),
:host(.label-floating) {
@include margin(null, null, 0, null);
align-self: stretch;
width: auto;
max-width: 100%;
}
:host(.label-no-animate.label-floating) {
transition: none;
}
// Headings
// --------------------------------------------------
::slotted(*) h1,
::slotted(*) h2,
::slotted(*) h3,
::slotted(*) h4,
::slotted(*) h5,
::slotted(*) h6 {
text-overflow: inherit;
overflow: inherit;
}