// Table of Contents // ================================================== // Reset // Inputs // Selects // Choicepickers // Checkboxes & Radios // Notes // Tags // Labels // Addons // scss-lint:disable ImportantRule // scss-lint:disable NestingDepth // scss-lint:disable SelectorDepth // Reset // ================================================== ::-webkit-file-upload-button { @include appearance(button); } ::placeholder { color: color(gray); font-weight: text-weight(semilight); line-height: 1; vertical-align: middle; } fieldset, legend { border: 0; } legend { border-bottom: 1px solid color(haze); box-sizing: border-box; display: table; max-width: 100%; margin: 0 0 10px; padding: 0 0 10px; white-space: normal; } button, input { overflow: visible; } optgroup { font-weight: text-weight(semibold); } input, select, textarea, .form-tags { @include appearance(none); @include transition(all 0.3s ease-in-out); background: color(white); border: 1px solid color(haze); border-radius: border-radius(b); box-sizing: border-box; display: block; line-height: 1; margin-bottom: 10px; padding: 11px 15px 12px; width: 100%; vertical-align: middle; } input:not([type='submit']), select, textarea, .form-tags { &[disabled] { @include text-fill-color(color(gray)); background: color(light-haze); color: color(gray); font-weight: text-weight(semilight) !important; } &:focus, &.focus { border-color: color(blue); box-shadow: inset 0 0 4px color(blue); &:invalid, &.invalid { border-color: color(red); box-shadow: inset 0 0 4px color(red); } &.without-border { border-color: color(transparent); box-shadow: none; } } &.dark { background: color(light-slate); color: color(white); &[disabled] { background: color(slate); } } &.light { &[disabled] { background: color(light-haze); } } &.without-border { background: color(transparent); border-color: color(transparent); } } input[type='submit'] { margin: 0; width: initial; } input[type='number']::-webkit-inner-spin-button, input[type='number']::-webkit-outer-spin-button { height: auto; } input[type='search'] { @include appearance(textfield); outline-offset: -2px; } input[type='search']::-webkit-search-cancel-button, input[type='search']::-webkit-search-decoration { @include appearance(none); } label { display: inline-block; font-weight: text-weight(normal); line-height: 1; margin-bottom: 5px; vertical-align: middle; } input { &::placeholder { line-height: 20px; } } select { padding: 13px 15px; [multiple], [size] { height: auto; } &[disabled] { font-weight: text-weight(semilight); } } textarea { height: 152px; overflow: auto; } // Inputs // ================================================== .form-input { border-color: color(haze); vertical-align: middle; &.form-size-l { input, textarea, .form-tags { font-size: text-size(l); padding: 18px 20px; } input { &::placeholder { line-height: 24px; } } textarea { height: 197px; } &.form-height-m { textarea { height: 266px; } } &.form-height-s { textarea { height: 128px; } } } &.form-size-m { input, textarea, .form-tags { font-size: text-size(m); padding: 14px 20px; } input { &::placeholder { line-height: 22px; } } textarea { height: 173px; } &.form-height-m { textarea { height: 234px; } } &.form-height-s { textarea { height: 112px; } } } &.form-size-s { input, textarea, .form-tags { font-size: text-size(s); margin-bottom: 5px; padding: 7px 10px; } input { &::placeholder { line-height: 18px; } } textarea { height: 109px; } &.form-height-m { textarea { height: 145px; } } &.form-height-s { textarea { height: 73px; } } } &.form-height-m { textarea { height: 202px; } } &.form-height-s { textarea { height: 102px; } } &.form-width-l { input, textarea { width: 175px; } } &.form-width-m { input, textarea { width: 125px; } } &.form-width-b { input, textarea { width: 100px; } } &.form-width-s { input, textarea { width: 75px; } } &.form-style-inline { display: inline-block; width: auto; input, textarea { display: inherit; width: inherit; } } &.dark, &.light, &.white { background: color(transparent); } } // Selects // ================================================== .form-select { &.form-size-l { select { font-size: text-size(l); padding: 20px; } } &.form-size-m { select { font-size: text-size(m); padding: 15px 20px 17px; } } &.form-size-s { select { font-size: text-size(s); margin-bottom: 5px; padding: 9px 10px 8px; } } &.form-width-l { select { width: 175px; } } &.form-width-m { select { width: 125px; } } &.form-width-b { select { width: 100px; } } &.form-width-s { select { width: 75px; } } &.form-style-inline { display: inline-block; width: auto; select { display: inherit; width: inherit; } &::after { display: none !important; } } &.with-multiple { &::after { display: none !important; } } } // Choicepickers // ================================================== .form-select, .with-choicepicker { display: block; position: relative; vertical-align: middle; width: 100%; &::after { content: '\e929'; font-family: 'Active Icons'; font-size: text-size(m); font-style: normal; font-variant: normal; font-weight: text-weight(normal); line-height: 1; margin-top: -8px; pointer-events: none; position: absolute; right: 15px; speak: none; text-transform: none; top: 50%; } &.form-size-l { &::after { font-size: text-size(l); margin-top: -9px; right: 20px; } } &.form-size-m { &::after { font-size: text-size(m); margin-top: -9px; right: 20px; } } &.form-size-s { &::after { font-size: text-size(s); margin-top: -7px; right: 10px; } } &.dark, &.light, &.white { background: color(transparent); } } // Checkboxes & Radios // ================================================== .form-checkbox, .form-radio { background: color(white); border: 1px solid; border-color: color(haze); border-radius: border-radius(b); display: inline-block; height: 18px; line-height: 18px; position: relative; width: 18px; label { @include transition(all 0.3s ease-in-out); border: 1px solid; border-color: inherit; border-radius: inherit; color: color(transparent); cursor: pointer; height: 100%; line-height: inherit; margin: -1px 0 0 -1px; position: absolute; text-align: center; width: 100%; @if ($pseudo-elements) { &:hover { background: color(haze); } } } input[type='checkbox'], input[type='radio'] { left: -9999px; margin: 0; padding: 0; position: absolute; visibility: hidden; top: -9999px; &[disabled] + label { background: lightish-color(haze); cursor: not-allowed; } &:checked + label { background: color(green); border-color: color(green); color: color(white); } &[disabled]:checked + label { background: lightish-color(green) !important; color: transparentize(color(white), 0.35); } + label { vertical-align: baseline; } } &.form-size-l { height: 26px; line-height: 26px; width: 26px; } &.form-size-m { height: 22px; line-height: 22px; width: 22px; } &.form-size-s { height: 14px; line-height: 14px; width: 14px; } &.form-align-vertical { vertical-align: middle; } &.dark { label { background: color(light-slate); @if ($pseudo-elements) { &:hover { background: color(dark-slate); } } } input[type='checkbox'], input[type='radio'] { &[disabled] + label { background: lightish-color(dark-slate); } } } &.light { label { background: color(light-haze); @if ($pseudo-elements) { &:hover { background: color(dark-haze); } } } input[type='checkbox'], input[type='radio'] { &[disabled] + label { background: lightish-color(dark-haze); } } } } .form-radio { border-radius: border-radius(xl); } // Notes // ================================================== .form-note { color: color(gray); display: block; font-size: text-size(xs); margin: -10px 0 10px; } // Tags // ================================================== .form-tags { white-space: normal; input, input:focus { background: color(transparent); border: 0; box-shadow: none; display: inline-block; outline: none; margin: 0; padding: 0 !important; min-width: auto; vertical-align: top; width: auto; } } // Labels // ================================================== .form-input, .form-select, .form-checkbox, .form-radio { &.form-size-l, &.form-size-m { > label { font-size: text-size(m); } } &.form-size-s { > label { font-size: text-size(s); } } } .with-floating-label { position: relative; vertical-align: top; > label, > .form-tags + label { @include transition(all 0.3s ease-in-out); background: color(haze); border-radius: border-radius(b); font-size: text-size(xxs); font-weight: text-weight(normal); left: 16px; line-height: 1; margin: -7px 0 0; opacity: 0; padding: 3px 6px; position: absolute; top: 20px; } &.form-size-l, &.form-size-m { > label, > .form-tags + label { font-size: text-size(xs); left: 21px; margin-top: -9px; padding: 4px 8px; } } &.form-size-s { > label, > .form-tags + label { font-size: text-size(xxs); left: 12px; margin-top: -6px; padding: 2px 3px 1px; } } &.dark { > label, > .form-tags + label { background: color(light-slate); } } &.light { > label, > .form-tags + label { background: color(dark-haze); } } input, textarea, select { &.active + label, &.active + .dropmenu + label, &.active + .dropdown + label, &.active + .dropup + label, &:focus + label, &:focus + .dropmenu + label, &:focus + .dropdown + label, &:focus + .dropup + label { opacity: 1; top: 0; } } > .form-tags { &.focus + label { opacity: 1; top: 0; } > .tag + input { &::-webkit-input-placeholder { color: color(transparent); } &::-moz-placeholder { color: color(transparent); } &:-ms-input-placeholder { color: color(transparent); } } } } // Addons // ================================================== .with-form-addons { border-collapse: separate; border-spacing: 0; display: table; position: relative; width: 100%; button, input, select, .btn, .form-addon { border-radius: 0; box-sizing: border-box; display: table-cell; margin: 0; vertical-align: middle; + .form-addon { border-left: 0; } } .form-addon { border-style: solid; border-width: 1px; line-height: 1; min-width: 44px; padding: 0 10px; text-align: center; white-space: nowrap; width: 1%; &:not(:last-child) { border-right: 0; } i { display: inline-block; margin-top: -2px; } &.dark { border-color: color(dark-slate); } &.with-addon-btn { border: 0; min-width: auto; padding: 0 !important; .btn { border-left-width: inherit; border-radius: 0; } } .form-checkbox, .form-radio { border: 0; } .form-checkbox { border-radius: border-radius(b); label, label::after { border-radius: border-radius(b); } } .form-radio { border-radius: border-radius(xl); label, label::after { border-radius: border-radius(xl); } } } *:first-child { border-bottom-left-radius: border-radius(b); border-top-left-radius: border-radius(b); .btn { border-bottom-left-radius: border-radius(b) !important; border-top-left-radius: border-radius(b) !important; } } *:last-child { border-bottom-right-radius: border-radius(b); border-top-right-radius: border-radius(b); .btn { border-bottom-right-radius: border-radius(b) !important; border-top-right-radius: border-radius(b) !important; } } &.form-size-l { .form-addon { font-size: text-size(l); min-width: 60px; } } &.form-size-m { .form-addon { font-size: text-size(m); min-width: 52px; } } &.form-size-s { .form-addon { font-size: text-size(s); min-width: 30px; padding: 0 9px; .color-picker { .dropmenu { margin-left: -7px; } .swatch.active { height: 19px; width: 19px; } } } i { font-size: text-size(s); } button, input, select { margin-bottom: 0; } } }