2021-08-17 05:59:19 +09:00
|
|
|
input {
|
2021-08-06 06:47:03 +09:00
|
|
|
all: unset;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2022-01-03 04:31:20 +09:00
|
|
|
input[type=checkbox] {
|
2022-01-13 01:07:28 +09:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2022-01-03 04:45:40 +09:00
|
|
|
width: 1em !important;
|
|
|
|
height: 1em !important;
|
2021-11-15 23:44:24 +09:00
|
|
|
background: var(--accent) !important;
|
2021-10-06 03:04:30 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2022-01-03 04:31:20 +09:00
|
|
|
input[type=checkbox]:not(:hover, :focus) {
|
2021-11-15 23:44:24 +09:00
|
|
|
background: var(--foreground) !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2022-01-03 04:31:20 +09:00
|
|
|
input[type=checkbox] {
|
2021-11-15 23:44:24 +09:00
|
|
|
border: unset !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:44:24 +09:00
|
|
|
input[type=radio] {
|
2022-01-03 04:31:20 +09:00
|
|
|
display: inline-block;
|
|
|
|
width: var(--s) !important;
|
|
|
|
height: var(--s) !important;
|
|
|
|
padding-right: 4px !important;
|
|
|
|
background: var(--foreground);
|
|
|
|
box-shadow: inset 0 0 0 2px var(--foreground) !important;
|
|
|
|
border-radius: 50%;
|
2021-10-06 03:04:30 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2022-01-03 04:31:20 +09:00
|
|
|
input[type=radio]:checked {
|
|
|
|
background: var(--background-hard);
|
2021-08-05 22:46:17 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-08-06 06:47:03 +09:00
|
|
|
input[type=file] {
|
|
|
|
all: unset;
|
2021-09-06 21:08:27 +09:00
|
|
|
display: block;
|
2022-01-13 01:07:28 +09:00
|
|
|
font-family: 'Open Sans', sans-serif !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
font-weight: normal !important;
|
|
|
|
padding: unset !important;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-11-15 23:07:05 +09:00
|
|
|
background: var(--gradient) !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:07:05 +09:00
|
|
|
input[type=checkbox] {
|
2022-01-03 04:45:40 +09:00
|
|
|
background-size: contain !important;
|
|
|
|
margin-right: 4px !important;
|
2021-12-08 22:44:06 +09:00
|
|
|
-webkit-mask-image: url("../../icons/check-off.svg") !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
-o-mask-image: url("../../icons/check-off.svg") !important;
|
|
|
|
-moz-mask-image: url("../../icons/check-off.svg") !important;
|
|
|
|
mask-image: url("../../icons/check-off.svg") !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:07:05 +09:00
|
|
|
input[type=checkbox]:checked {
|
2021-12-08 22:44:06 +09:00
|
|
|
-webkit-mask-image: url("../../icons/check-on.svg") !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
-o-mask-image: url("../../icons/check-on.svg") !important;
|
|
|
|
-moz-mask-image: url("../../icons/check-on.svg") !important;
|
|
|
|
mask-image: url("../../icons/check-on.svg") !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:07:05 +09:00
|
|
|
input[type=color] {
|
2021-11-30 03:11:07 +09:00
|
|
|
appearance: none;
|
2021-12-24 06:29:46 +09:00
|
|
|
width: var(--xxl);
|
|
|
|
height: var(--xxl);
|
2021-11-30 03:11:07 +09:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
2021-10-06 06:44:22 +09:00
|
|
|
cursor: pointer;
|
2021-11-30 03:11:07 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
input[type=color]::-webkit-color-swatch {
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-11-30 03:11:07 +09:00
|
|
|
border: none;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
input[type=color]::-moz-color-swatch {
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-11-30 03:11:07 +09:00
|
|
|
border: none;
|
2021-08-06 06:47:03 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-10-06 06:44:22 +09:00
|
|
|
::file-selector-button {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: unset;
|
|
|
|
border: unset;
|
2022-01-13 01:07:28 +09:00
|
|
|
font-family: 'Open Sans', sans-serif !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
font-weight: bold !important;
|
|
|
|
color: var(--foreground);
|
|
|
|
fill: var(--foreground);
|
2021-10-06 06:44:22 +09:00
|
|
|
margin: 3px;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:07:05 +09:00
|
|
|
*|*::-moz-button-content {
|
|
|
|
all: unset !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-15 23:07:05 +09:00
|
|
|
button {
|
2021-11-28 05:26:44 +09:00
|
|
|
display: block !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
cursor: pointer !important;
|
2021-11-28 05:26:44 +09:00
|
|
|
margin-left: auto !important;
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-top: var(--s);
|
2021-11-15 23:07:05 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
button,
|
|
|
|
label {
|
2022-01-13 01:07:28 +09:00
|
|
|
font-family: 'Poppins', sans-serif;
|
2021-10-06 06:44:22 +09:00
|
|
|
font-weight: bold !important;
|
|
|
|
color: currentColor;
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-24 08:07:42 +09:00
|
|
|
select::-ms-expand {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
button,
|
|
|
|
input,
|
|
|
|
select,
|
|
|
|
textarea {
|
2022-01-13 01:07:28 +09:00
|
|
|
display: inline-block;
|
2021-09-26 05:02:11 +09:00
|
|
|
overflow: hidden;
|
2021-11-24 08:07:42 +09:00
|
|
|
font-size: inherit;
|
2021-12-24 06:29:46 +09:00
|
|
|
line-height: initial !important;
|
2021-11-28 03:10:26 +09:00
|
|
|
padding: 6px 8px !important;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-11-15 22:55:23 +09:00
|
|
|
border: 2px solid var(--border) !important;
|
2021-12-26 02:31:16 +09:00
|
|
|
width: auto;
|
2021-11-15 23:44:24 +09:00
|
|
|
max-width: border-box !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
button,
|
|
|
|
select,
|
|
|
|
textarea {
|
2021-11-15 23:44:24 +09:00
|
|
|
background: var(--gradient) !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
button,
|
|
|
|
input:not([type=checkbox], [type=radio]) {
|
2021-11-15 23:44:24 +09:00
|
|
|
background: var(--gradient) !important;
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-09-25 23:59:16 +09:00
|
|
|
select {
|
2021-10-06 03:04:30 +09:00
|
|
|
cursor: pointer;
|
2021-09-25 23:59:16 +09:00
|
|
|
background-repeat: no-repeat;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-10-30 02:14:39 +09:00
|
|
|
max-width: 100% !important;
|
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 02:50:30 +09:00
|
|
|
select[multiple] {
|
|
|
|
overflow-y: scroll;
|
|
|
|
height: 20rem;
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2022-01-13 01:07:28 +09:00
|
|
|
|
2021-11-30 03:11:07 +09:00
|
|
|
button:focus,
|
|
|
|
button:hover,
|
|
|
|
input:focus,
|
|
|
|
input:hover,
|
|
|
|
select:focus,
|
|
|
|
select:hover,
|
|
|
|
textarea:focus,
|
|
|
|
textarea:hover {
|
2021-10-30 06:01:28 +09:00
|
|
|
box-shadow: var(--shadow-inset-accent) !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
}
|