mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 09:08:28 -05:00
108 lines
No EOL
1.8 KiB
SCSS
108 lines
No EOL
1.8 KiB
SCSS
fieldset {
|
|
background-color: lighten($base-border-color, 10%);
|
|
border: $base-border;
|
|
margin: 0 0 $small-spacing;
|
|
padding: $base-spacing;
|
|
}
|
|
|
|
input,
|
|
label,
|
|
select {
|
|
display: block;
|
|
font-family: $base-font-family;
|
|
font-size: $base-font-size;
|
|
}
|
|
|
|
label {
|
|
font-weight: 600;
|
|
margin-bottom: $small-spacing / 2;
|
|
|
|
&.required::after {
|
|
content: "*";
|
|
}
|
|
|
|
abbr {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#{$all-text-inputs},
|
|
select[multiple=multiple],
|
|
textarea {
|
|
background-color: $base-background-color;
|
|
border: $base-border;
|
|
border-radius: $base-border-radius;
|
|
box-shadow: $form-box-shadow;
|
|
box-sizing: border-box;
|
|
font-family: $base-font-family;
|
|
font-size: $base-font-size;
|
|
margin-bottom: $base-spacing / 2;
|
|
padding: $base-spacing / 3;
|
|
transition: border-color;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
border-color: darken($base-border-color, 10%);
|
|
}
|
|
|
|
&:focus {
|
|
border-color: $action-color;
|
|
box-shadow: $form-box-shadow-focus;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
input[type="search"] {
|
|
@include appearance(none);
|
|
}
|
|
|
|
input[type="checkbox"],
|
|
input[type="radio"] {
|
|
display: inline;
|
|
margin-right: $small-spacing / 2;
|
|
}
|
|
|
|
input[type="file"] {
|
|
padding-bottom: $small-spacing;
|
|
width: 100%;
|
|
}
|
|
|
|
select {
|
|
margin-bottom: $base-spacing;
|
|
max-width: 100%;
|
|
width: auto;
|
|
}
|
|
|
|
.input-plus-button {
|
|
overflow: hidden;
|
|
|
|
input, input:focus, input:hover, button {
|
|
@include reset-box;
|
|
display: block;
|
|
float: left;
|
|
border-radius: $base-border-radius;
|
|
padding: $vertical-base;
|
|
@include placeholder{
|
|
@include reset-box;
|
|
}
|
|
}
|
|
|
|
input, input:focus, input:hover {
|
|
width: 75%;
|
|
text-align: center;
|
|
@include border-right-radius(0);
|
|
border: 1px solid $light-gray;
|
|
border-right: 0px;
|
|
}
|
|
|
|
button {
|
|
width: 25%;
|
|
@include border-left-radius(0);
|
|
border: 1px solid $blue;
|
|
}
|
|
|
|
} |