Updates #613. Squashed commit of the following: commit 9a3ba15bdb8476dde045631362d76572a68a4e5c Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Thu Jan 19 12:46:48 2023 +0700 client: review dark theme colors commit c456cdcb6ffec044917b0396ad3cfa8b5c3bce10 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 23:46:32 2023 +0700 client: review dark theme colors commit 4b042ba4f433c89488b18ec38f5864d5ffaf8657 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 23:34:37 2023 +0700 client: review dark theme colors commit 1ff34f751b4d9342495070af85f3dae86c285aee Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 18:59:46 2023 +0700 client: default language commit ca9abc11a8c155c78f73903906ed452e95764e99 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 12:23:50 2023 +0700 client: default language commit 01a057a40e879d1bc2013989d6eb56a296ba16a3 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 11:53:58 2023 +0700 client: review dark theme colors commit aa3658f35c49f8ae19077b333075207082383a17 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Jan 18 11:14:08 2023 +0700 client: review dark theme colors commit 8df726382155fcc3b2e6e632d53f42d0be638c77 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Tue Jan 17 13:41:21 2023 +0700 client: dark theme colors commit bd84ae46272743874d2350291b22b90b7fbedf0e Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Tue Jan 17 13:05:46 2023 +0700 client: dark theme colors commit 136ea5608a1a22b6a54a362741b2fdd708f345e2 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Tue Jan 17 10:51:22 2023 +0700 all: docs commit 784be8741b730a12d665d7e2a29c140c0746e927 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 17:59:26 2023 +0700 client: imp code commit a83de0948fe034e7be35c04a607b1171915c0263 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 14:13:54 2023 +0700 client: dark theme login commit 6c4ef19da01efc6a1e4ea76085b7b7382c331eca Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 13:27:35 2023 +0700 client: dark theme css commit 5cf564ea1203e9472d200975ee98d93b6b868210 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 13:18:00 2023 +0700 client: imp code commit 1bbbd20972345c08e944b7c4bb0330c0d30d827a Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 12:49:03 2023 +0700 client: imp code commit cb07680d3cd7acdbdb7bdc9d9abaa388a9df8e4c Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Mon Jan 16 12:24:14 2023 +0700 client: auto theme handling commit d34910d4dd5edb694b6da55a2260b4fea784e7e0 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Fri Jan 13 23:31:24 2023 +0700 home: imp docs commit 8abe4f6f7182dc3dbcbbe73652294ee6584a4f2f Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Thu Jan 12 18:35:48 2023 +0700 client: theme dropdown
112 lines
2.3 KiB
CSS
112 lines
2.3 KiB
CSS
.checkbox {
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
|
|
.checkbox--single {
|
|
display: block;
|
|
margin: 2px auto 6px;
|
|
}
|
|
|
|
.checkbox--single .checkbox__label:before {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.checkbox--settings .checkbox__label:before {
|
|
top: 2px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.checkbox--settings .checkbox__label-title {
|
|
margin-bottom: 2px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.checkbox--form .checkbox__label:before {
|
|
top: 1px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.checkbox__label {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkbox__label:before {
|
|
content: "";
|
|
position: relative;
|
|
top: 1px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 20px;
|
|
height: 20px;
|
|
min-width: 20px;
|
|
margin-right: 10px;
|
|
background-color: #e2e2e2;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: 12px 10px;
|
|
border-radius: 3px;
|
|
transition: 0.3s ease-in-out box-shadow, 0.3s ease-in-out opacity;
|
|
}
|
|
|
|
.checkbox__label .checkbox__label-text {
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.checkbox__label .checkbox__label-text .md__paragraph {
|
|
display: inline-block;
|
|
vertical-align: baseline;
|
|
margin: 0;
|
|
text-align: left;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.checkbox__input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
}
|
|
|
|
.checkbox__input:checked + .checkbox__label:before {
|
|
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMi4zIDkuMiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjxwYXRoIGQ9Ik0xMS44IDAuNUw1LjMgOC41IDAuNSA0LjIiLz48L3N2Zz4=);
|
|
}
|
|
|
|
.checkbox__input:focus + .checkbox__label:before {
|
|
box-shadow: 0 0 1px 1px rgba(74, 74, 74, 0.32);
|
|
}
|
|
|
|
.checkbox__input:disabled + .checkbox__label {
|
|
cursor: default;
|
|
color: var(--gray);
|
|
}
|
|
|
|
.checkbox__input:disabled + .checkbox__label:before {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.checkbox__label-text {
|
|
max-width: 515px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.checkbox__label-text--long {
|
|
max-width: initial;
|
|
}
|
|
|
|
.checkbox__label-title {
|
|
display: block;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.checkbox__label-subtitle {
|
|
display: block;
|
|
line-height: 1.5;
|
|
color: var(--scolor);
|
|
}
|