nightTab/css/form.css

582 lines
14 KiB
CSS
Raw Normal View History

2018-12-26 08:45:53 +01:00
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"] {
2019-04-01 17:11:39 +02:00
background-color: rgb(var(--gray-02));
padding: 0 1em;
2018-12-26 08:45:53 +01:00
margin: 0 0 1em 0;
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-input-text));
2018-12-26 08:45:53 +01:00
font-size: 1em;
font-family: var(--font-regular);
line-height: 2.5em;
height: 2.5em;
width: 100%;
2019-04-01 17:11:39 +02:00
border-width: 0;
/* border-top-width: var(--line-width); */
/* border-bottom-width: var(--line-width); */
2018-12-26 08:45:53 +01:00
border-style: solid;
border-color: transparent;
border-radius: var(--radius);
cursor: text;
transition: all var(--animation-speed-fast) ease-in-out;
2018-12-26 08:45:53 +01:00
-moz-appearance: textfield;
}
2019-04-01 17:11:39 +02:00
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover {
background-color: rgb(var(--gray-03));
/* border-bottom-color: rgb(var(--gray-08)); */
color: rgb(var(--form-input-text-hover));
outline: none;
box-shadow: 0 0 0 var(--line-width) rgb(var(--gray-06));
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus {
background-color: rgb(var(--gray-02));
/* border-bottom-color: rgb(var(--accent)); */
/* border-color: transparent; */
color: rgb(var(--form-input-text-focus));
outline: none;
z-index: 2;
box-shadow: 0 0 0 var(--line-width) rgb(var(--accent)), 0 0 0 calc(var(--line-width) * 2) rgba(var(--accent), 0.25);
}
input[type="email"][disabled],
2019-04-01 17:11:39 +02:00
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled] {
background-color: transparent;
padding: 0 calc(1em - var(--line-width));
color: rgb(var(--form-input-text-disabled));
border-width: var(--line-width);
border-color: rgb(var(--form-input-text-disabled));;
2019-04-01 17:11:39 +02:00
cursor: default;
box-shadow: none;
}
input[type="email"][disabled]:hover,
input[type="email"][disabled]:focus,
input[type="number"][disabled]:hover,
input[type="number"][disabled]:focus,
input[type="password"][disabled]:hover,
input[type="password"][disabled]:focus,
input[type="search"][disabled]:hover,
input[type="search"][disabled]:focus,
input[type="tel"][disabled]:hover,
input[type="tel"][disabled]:focus,
input[type="text"][disabled]:hover,
2019-04-01 17:11:39 +02:00
input[type="text"][disabled]:focus {
color: rgb(var(--form-input-text-disabled));
}
input[type="checkbox"][disabled]~.input-helper,
input[type="radio"][disabled]~.input-helper,
input[type="email"][disabled]~.input-helper,
input[type="number"][disabled]~.input-helper,
input[type="password"][disabled]~.input-helper,
input[type="search"][disabled]~.input-helper,
input[type="tel"][disabled]~.input-helper,
input[type="text"][disabled]~.input-helper {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-input-text-disabled-helper-text));
2018-12-26 08:45:53 +01:00
}
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-input-placeholder));
transition: all var(--animation-speed-fast) ease-in-out;
}
input[type="email"]:hover::placeholder,
input[type="number"]:hover::placeholder,
input[type="password"]:hover::placeholder,
input[type="search"]:hover::placeholder,
input[type="tel"]:hover::placeholder,
input[type="text"]:hover::placeholder {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-input-placeholder-hover-focus));
2018-12-26 08:45:53 +01:00
}
input[type="email"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="search"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="text"]:focus::placeholder {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-input-placeholder-hover-focus));
}
input[type="email"][disabled]::placeholder,
input[type="email"][disabled]:hover::placeholder,
input[type="email"][disabled]:focus::placeholder,
input[type="number"][disabled]::placeholder,
input[type="number"][disabled]:hover::placeholder,
input[type="number"][disabled]:focus::placeholder,
input[type="password"][disabled]::placeholder,
input[type="password"][disabled]:hover::placeholder,
input[type="password"][disabled]:focus::placeholder,
input[type="search"][disabled]::placeholder,
input[type="search"][disabled]:hover::placeholder,
input[type="search"][disabled]:focus::placeholder,
input[type="tel"][disabled]::placeholder,
input[type="tel"][disabled]:hover::placeholder,
input[type="tel"][disabled]:focus::placeholder,
input[type="text"][disabled]::placeholder,
input[type="text"][disabled]:hover::placeholder,
input[type="text"][disabled]:focus::placeholder {
color: rgb(var(--form-input-placeholder-disabled));
2018-12-26 08:45:53 +01:00
}
label {
padding: 0.5em 0;
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-label));
margin-bottom: 0;
2018-12-26 08:45:53 +01:00
font-size: 1em;
display: block;
}
label[disabled] {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-label-disabled));
2018-12-26 08:45:53 +01:00
}
input[type="color"] {
opacity: 0;
width: 2px;
height: 2px;
position: absolute;
top: 0;
left: 0;
2018-12-26 08:45:53 +01:00
display: block;
cursor: pointer;
-webkit-appearance: none;
}
input[type="color"]:focus {
outline: none;
2018-12-26 08:45:53 +01:00
}
input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
}
input[type="color"]::-webkit-color-swatch {
border: 0;
}
2019-01-06 08:06:33 +01:00
input[type="color"]+.input-label-button {
padding-right: 2.25em;
justify-content: center;
align-items: center;
}
2019-01-06 08:06:33 +01:00
input[type="color"]+.input-label-button:before {
background-color: rgb(var(--accent));
content: "";
border-radius: 50%;
position: absolute;
right: 0.5em;
width: 1em;
height: 1em;
z-index: 1;
box-shadow: 0 0 0.25em 0 rgba(var(--accent), 0.6), 0 0 0.5em 0 rgba(var(--accent), 0.4);
}
.input-wrap,
.checkbox-wrap,
.radio-wrap {
position: relative;
}
2019-01-05 21:57:21 +01:00
.form-indent-1,
.form-indent-1,
.form-indent-1 {
margin-left: 2.25em;
}
2019-01-05 21:57:21 +01:00
.form-indent-2,
.form-indent-2,
.form-indent-2 {
margin-left: 4.5em;
}
2019-01-05 21:57:21 +01:00
.form-indent-3,
.form-indent-3,
.form-indent-3 {
margin-left: 6.75em;
}
input[type="checkbox"],
input[type="radio"] {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
opacity: 0;
display: block;
font-size: 1em;
line-height: 1;
cursor: pointer;
2019-01-06 08:06:33 +01:00
pointer-events: none;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2019-04-01 17:11:39 +02:00
/* transition: all var(--animation-speed-fast) ease-in-out; */
}
input[type="checkbox"]+label,
input[type="radio"]+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-checkbox-radio-label));
font-size: 1em;
font-family: var(--font-regular);
min-height: 2.5em;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
/* transition: all var(--animation-speed-fast) ease-in-out; */
}
input[type="checkbox"]+label .label-icon,
input[type="radio"]+label .label-icon {
margin-right: 0.5em;
font-size: 1.5em;
line-height: 1;
display: block;
width: 1em;
height: 1em;
2019-01-05 21:57:21 +01:00
transform: scale(1);
transition: transform 0.05s ease-in-out;
}
input[type="checkbox"]:focus+label,
input[type="checkbox"]:hover+label,
input[type="radio"]:focus+label,
input[type="radio"]:hover+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--style-neutral-text));
}
input[type="checkbox"]:active+label,
input[type="radio"]:active+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--style-neutral-text));
}
input[type="checkbox"]:focus+label .label-icon,
input[type="checkbox"]:hover+label .label-icon,
input[type="radio"]:focus+label .label-icon,
input[type="radio"]:hover+label .label-icon {
2019-04-01 17:11:39 +02:00
color: rgb(var(--style-neutral-text));
}
input[type="checkbox"]:active+label .label-icon,
input[type="radio"]:active+label .label-icon {
color: rgb(var(--accent));
transform: scale(0.9);
}
input[type="checkbox"]:checked+label,
input[type="radio"]:checked+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-checkbox-radio-chcked-label));
}
input[type="checkbox"]:not([disabled]):hover:checked+label,
input[type="checkbox"]:not([disabled]):focus:checked+label,
input[type="radio"]:not([disabled]):hover:checked+label,
input[type="radio"]:not([disabled]):focus:checked+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--style-neutral-text));
}
input[type="checkbox"]:checked+label .label-icon,
input[type="radio"]:checked+label .label-icon {
color: rgb(var(--accent));
}
input[type="checkbox"]:checked:focus+label .label-icon,
input[type="radio"]:checked:focus+label .label-icon {
transform: scale(1.2);
}
2019-01-06 08:06:33 +01:00
input[type="color"]+.input-label-button,
input[type="checkbox"]+.input-label-button,
input[type="radio"]+.input-label-button {
justify-content: center;
align-items: center;
2019-04-01 17:11:39 +02:00
position: relative;
}
2019-01-06 08:06:33 +01:00
input[type="color"]:hover+.input-label-button,
input[type="color"]:focus+.input-label-button,
input[type="checkbox"]:hover+.input-label-button,
input[type="checkbox"]:focus+.input-label-button,
input[type="radio"]:hover+.input-label-button,
input[type="radio"]:focus+.input-label-button {
background-color: rgb(var(--gray-03));
2019-04-01 17:11:39 +02:00
border-bottom-color: rgb(var(--gray-08));
color: rgb(var(--style-neutral-text));
outline: none;
2019-01-06 08:06:33 +01:00
}
input[type="color"]:active+.input-label-button,
input[type="checkbox"]:active+.input-label-button,
input[type="radio"]:active+.input-label-button {
border-bottom-color: rgb(var(--accent));
}
2019-01-06 08:06:33 +01:00
input[type="color"]:checked+.input-label-button,
input[type="checkbox"]:checked+.input-label-button,
input[type="radio"]:checked+.input-label-button {
border-bottom-color: rgb(var(--accent));
}
input[type="color"][disabled]+.input-label-button,
input[type="checkbox"][disabled]+.input-label-button,
input[type="radio"][disabled]+.input-label-button {
background-color: rgb(var(--gray-02));
border-color: transparent;
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-checkbox-radio-disabled-label));
cursor: default;
}
input[type="checkbox"][disabled]+label,
input[type="radio"][disabled]+label {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-checkbox-radio-disabled-label));
cursor: default;
}
input[type="checkbox"][disabled]+label .label-icon,
input[type="radio"][disabled]+label .label-icon {
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-checkbox-radio-disabled-label));
cursor: default;
}
input[type="checkbox"][disabled]:active+label .label-icon,
input[type="radio"][disabled]:active+label .label-icon {
transform: none;
}
input[type="checkbox"]+label .label-icon:before,
input[type="radio"]+label .label-icon:before {
font-family: "Icons" !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
input[type="checkbox"]+label .label-icon:before {
content: "\e835";
}
input[type="checkbox"]:checked+label .label-icon:before {
content: "\e834";
}
input[type="radio"]+label .label-icon:before {
content: "\e836";
}
input[type="radio"]:checked+label .label-icon:before {
content: "\e837";
}
input[type="range"] {
/* background-color: rgb(var(--gray-08)); */
background-color: transparent;
padding: 0;
margin: 0 0 1em 0;
2019-04-01 17:11:39 +02:00
color: rgb(var(--style-neutral-text));
font-size: 1em;
font-family: var(--font-regular);
height: 2em;
width: 100%;
border: 0;
border-radius: var(--radius);
cursor: pointer;
position: relative;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-appearance: none;
}
input[type="range"]:before {
content: "";
position: absolute;
top: 50%;
left: 0;
background-color: rgb(var(--gray-08));
height: var(--line-width);
width: 100%;
border: 0;
border-radius: var(--radius);
transform: translate(0, -50%);
transition: all var(--animation-speed-fast) ease-in-out;
}
input[type="range"]:focus {
outline: none;
}
input[type="range"]:focus:before {
2019-04-01 17:11:39 +02:00
background-color: rgb(var(--style-neutral-text));
}
input[type="range"][disabled] {
cursor: default;
}
input[type="range"][disabled]:before {
background-color: rgb(var(--gray-04));
cursor: default;
}
input[type="range"]::-webkit-slider-runnable-track {
background-color: transparent;
margin: 0 -0.5em;
padding: 0;
border: 0;
-webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
background-color: rgb(var(--gray-01));
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-range-thumb));
margin: 0;
padding: 0;
border-width: var(--line-width);
border-style: solid;
border-color: rgb(var(--accent));
border-radius: 100%;
position: relative;
height: 1em;
width: 1em;
cursor: pointer;
box-sizing: border-box;
z-index: 2;
transform: scale(1);
transition: all var(--animation-speed-fast) ease-in-out;
-webkit-appearance: none;
}
input[type="range"]:active::-webkit-slider-thumb {
transform: scale(0.9);
}
input[type="range"]:focus::-webkit-slider-thumb {
transform: scale(1.2);
outline: none;
}
input[type="range"]::-webkit-slider-thumb:focus,
input[type="range"]::-webkit-slider-thumb:hover {
outline: none;
text-decoration: none;
}
input[type="range"]::-webkit-slider-thumb:active {
outline: none;
text-decoration: none;
}
input[type="range"][disabled]::-webkit-slider-thumb {
border-color: rgb(var(--gray-08));
cursor: default;
}
input[type="range"][disabled]:active::-webkit-slider-thumb,
input[type="range"][disabled]:focus::-webkit-slider-thumb {
transform: scale(1);
outline: none;
}
input[type="range"]::-moz-range-track {
background-color: rgb(var(--gray-08));
margin: 0 -0.5em;
padding: 0;
border: 0;
height: var(--line-width);
width: 100%;
border: 0;
border-radius: var(--radius);
transition: all var(--animation-speed-fast) ease-in-out;
-webkit-appearance: none;
}
input[type="range"]::-moz-range-thumb {
background-color: rgb(var(--gray-01));
2019-04-01 17:11:39 +02:00
color: rgb(var(--form-range-thumb));
margin: 0;
padding: 0;
border-width: var(--line-width);
border-style: solid;
border-color: rgb(var(--accent));
border-radius: 100%;
position: relative;
height: 1em;
width: 1em;
cursor: pointer;
box-sizing: border-box;
z-index: 2;
transform: scale(1);
transition: all var(--animation-speed-fast) ease-in-out;
-webkit-appearance: none;
}
input[type="range"]:active::-moz-range-thumb {
transform: scale(0.9);
}
input[type="range"]:focus::-moz-range-thumb {
transform: scale(1.2);
outline: none;
}
input[type="range"]::-moz-range-thumb:focus,
input[type="range"]::-moz-range-thumb:hover {
outline: none;
text-decoration: none;
}
input[type="range"]::-moz-range-thumb:active {
outline: none;
text-decoration: none;
}
input[type="range"]::-moz-range-progress {
background-color: rgb(var(--accent));
height: calc(var(--line-width) * 1.5);
border-radius: var(--radius);
}
input[type="range"][disabled]::-moz-range-track {
background-color: rgb(var(--gray-04));
}
input[type="range"][disabled]::-moz-range-thumb {
border-color: rgb(var(--gray-08));
cursor: default;
}
input[type="range"][disabled]:active::-moz-range-thumb,
input[type="range"][disabled]:focus::-moz-range-thumb {
transform: scale(1);
outline: none;
}
input[type="range"][disabled]::-moz-range-progress {
background-color: rgb(var(--gray-08));
}