Updates #3972.
Squashed commit of the following:
commit 9dc0efe2453cb6c738d97d39b02c86eccb18a42c
Merge: 239550f8 8a935d4f
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Thu Oct 27 14:42:38 2022 +0300
Merge branch 'master' into 3972-hostlists-services
commit 239550f84228e7c7a6f4ae6b1cadcc47e01f54d5
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Thu Oct 27 14:41:42 2022 +0300
filtering: upd service list
commit b8bf3a6a4b1333059b886be95a1419612aebac39
Author: Ildar Kamalov <ik@adguard.com>
Date: Thu Oct 27 13:41:09 2022 +0300
client: remove todo
commit caa504b482befb804db2a1ca0b6d4834aa4da49a
Author: Ildar Kamalov <ik@adguard.com>
Date: Thu Oct 27 12:54:45 2022 +0300
fix build
commit 511797c305d9eef84a20553dab795414e00da51a
Author: Ildar Kamalov <ik@adguard.com>
Date: Thu Oct 27 12:40:33 2022 +0300
client: add titles with service names to the clients table
commit 79ed3157a85b489a0b13381cff867a8c73ba60e9
Author: Ildar Kamalov <ik@adguard.com>
Date: Thu Oct 27 12:36:59 2022 +0300
client: fix empty icons
commit ab69b95784de87665d5a1a3683f28e3b3df1c210
Author: Ildar Kamalov <ik@adguard.com>
Date: Thu Oct 27 11:55:48 2022 +0300
client: use all blocked services
commit 9a4a87665c8463224d8e93f1e162988107f6c7ca
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Oct 25 19:25:20 2022 +0300
all: fix json response
commit 86eb4493ce305cd5991176bd4cd8f7f5afdea330
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Oct 25 19:09:44 2022 +0300
all: use hostslists registry for blocked svcs
86 lines
1.6 KiB
CSS
86 lines
1.6 KiB
CSS
.service {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
padding: 10px 15px;
|
|
border: 1px solid #eee;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.service__text {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.services {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
.service {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
flex-basis: calc(99.9% * 4/12 - (30px - 30px * 4/12));
|
|
max-width: calc(99.9% * 4/12 - (30px - 30px * 4/12));
|
|
width: calc(99.9% * 4/12 - (30px - 30px * 4/12));
|
|
}
|
|
|
|
.service--global {
|
|
flex-basis: 1;
|
|
max-width: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.service:nth-child(1n) {
|
|
margin-right: 30px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.service:nth-child(3n) {
|
|
margin-right: 0;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.service__icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
flex-shrink: 0;
|
|
margin-right: 10px;
|
|
color: #495057;
|
|
}
|
|
|
|
.service--global .service__icon {
|
|
display: none;
|
|
}
|
|
|
|
.service__icon--table {
|
|
margin-bottom: 3px;
|
|
color: #9aa0ac;
|
|
}
|
|
|
|
.service__switch {
|
|
margin-left: auto;
|
|
border: 1px solid rgba(150, 150, 150, 0.12);
|
|
}
|
|
|
|
.custom-switch-input:checked ~ .service__switch {
|
|
background-color: #cd201f;
|
|
}
|
|
|
|
.custom-switch-input:focus ~ .service__switch {
|
|
box-shadow: 0 0 0 2px #cd201f3b;
|
|
border-color: #ec4241;
|
|
}
|
|
|
|
.custom-switch-input:disabled ~ .service__switch,
|
|
.custom-switch-input:disabled ~ .service__text,
|
|
.custom-switch-input:disabled ~ .service__icon {
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
}
|