Updates #684 Squashed commit of the following: commit 2c5ac44d3edb55d0d3be169fb0bbfb336920964d Merge: 0fce61dfa733d6c1fcAuthor: Ildar Kamalov <ik@adguard.com> Date: Mon Oct 16 10:08:58 2023 +0300 Merge branch 'master' into ADG-7200 commit 0fce61dfad31951c3d5a484a14383c58964b47f0 Author: Ildar Kamalov <ik@adguard.com> Date: Fri Oct 13 16:38:13 2023 +0300 fix dashboard clients table block/unblock button commit ef5d72fd7cac81b70503c8813cf6e96952ec3b65 Merge: f49281b88506d71310Author: Ildar Kamalov <ik@adguard.com> Date: Fri Oct 13 16:16:21 2023 +0300 Merge branch 'master' into ADG-7200 commit f49281b8818728ab298d769b8164919ea415d6c9 Author: Ildar Kamalov <ik@adguard.com> Date: Thu Oct 12 11:25:05 2023 +0300 fix disabled commit 0031861174108214e9741852f6e00c5873c3b20f Author: Ildar Kamalov <ik@adguard.com> Date: Thu Oct 12 11:20:50 2023 +0300 fix icon color commit 2916937b0d6a0d126bd48e59f41a6fcbc4622ea1 Author: Ildar Kamalov <ik@adguard.com> Date: Thu Oct 12 11:15:55 2023 +0300 changelog commit 34493c974fb9304267e9149360c802d9364dd7de Merge: d3267bbe9d3fabdda4Author: Ildar Kamalov <ik@adguard.com> Date: Thu Oct 12 11:13:43 2023 +0300 Merge branch 'master' into ADG-7200 commit d3267bbe9477d6db0783534cb4ab4f7afc4d63b0 Merge: 58a6c766f6a3661562Author: Ildar Kamalov <ik@adguard.com> Date: Wed Oct 11 16:46:39 2023 +0300 Merge branch 'master' into ADG-7200 commit 58a6c766f3b783f0e2fdc36d40889042f3c74f2f Author: Ildar Kamalov <ik@adguard.com> Date: Wed Oct 11 16:46:13 2023 +0300 ADG-7200 move block/unblock button to the tooltip menu
143 lines
2.7 KiB
CSS
143 lines
2.7 KiB
CSS
.tooltip-custom__container {
|
|
min-width: 150px;
|
|
padding: 1rem 1.5rem 1.25rem 1.5rem;
|
|
font-size: 16px !important;
|
|
box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
|
|
border-radius: 4px !important;
|
|
pointer-events: auto !important;
|
|
background-color: var(--ctrl-bgcolor);
|
|
color: var(--mcolor);
|
|
z-index: 102;
|
|
overflow-y: auto;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.white-space--nowrap {
|
|
white-space: nowrap !important;
|
|
}
|
|
|
|
.overflow-break {
|
|
white-space: normal !important;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.overflow-break-mobile {
|
|
white-space: normal !important;
|
|
overflow-wrap: break-word;
|
|
}
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, min-content);
|
|
grid-row-gap: 0.5rem;
|
|
grid-column-gap: 1rem;
|
|
}
|
|
|
|
.grid--limited {
|
|
grid-template-columns: repeat(2, minmax(0, min-content));
|
|
}
|
|
|
|
.grid--gap-bg {
|
|
grid-column-gap: 1.5rem;
|
|
}
|
|
|
|
.grid--title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.grid--title:not(:first-child) {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.grid .title--border {
|
|
margin-bottom: 4px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.grid .key-colon {
|
|
margin-right: 4px;
|
|
color: var(--gray-8);
|
|
}
|
|
|
|
.grid__row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 2px;
|
|
font-size: 14px;
|
|
word-break: break-all;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.grid__row .filteringRules__filter,
|
|
.grid__row .filteringRules {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.grid {
|
|
grid-template-columns: 35% 55%;
|
|
}
|
|
|
|
.grid * {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.grid > :nth-child(even) {
|
|
margin: -0.5rem 0 0;
|
|
}
|
|
|
|
.grid > .key__time_table_header, .grid > .key__data, .grid > .key__encryption_status, .grid > .key__elapsed {
|
|
grid-column: 1 / span 1;
|
|
}
|
|
|
|
.grid > .value__time_table_header, .grid > .value__data, .grid > .value__encryption_status, .grid > .value__elapsed {
|
|
grid-column: 2 / span 1;
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
.grid .key-colon:nth-child(odd)::after {
|
|
content: ":";
|
|
}
|
|
|
|
.grid__one-row {
|
|
grid-template-columns: 15rem;
|
|
}
|
|
|
|
.grid__flow-column {
|
|
grid-auto-flow: column;
|
|
}
|
|
|
|
.grid-content > * {
|
|
justify-content: space-between !important;
|
|
width: 100% !important;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.title--border {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.title--border:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
border-top: 0.5px solid var(--gray-d8) !important;
|
|
width: 100%;
|
|
margin-top: -0.5rem;
|
|
}
|
|
|
|
.icon-cross {
|
|
position: absolute;
|
|
right: 0.5rem;
|
|
top: 0.5rem;
|
|
}
|