mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-22 01:15:25 +03:00
fix(a11y): allow pinch to zoom (#1515)
This commit is contained in:
parent
9c3a3de41d
commit
80a4ec502e
1 changed files with 3 additions and 8 deletions
|
@ -185,11 +185,6 @@ html {
|
||||||
--at-apply: bg-base text-base;
|
--at-apply: bg-base text-base;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
|
||||||
/* Prevent arbitrary zooming on mobile devices */
|
|
||||||
touch-action: pan-x pan-y;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sparkline--fill {
|
.sparkline--fill {
|
||||||
fill: var(--c-primary-active);
|
fill: var(--c-primary-active);
|
||||||
opacity: 0.2;
|
opacity: 0.2;
|
||||||
|
@ -214,8 +209,8 @@ footer {
|
||||||
clip-path: url(#avatar-mask);
|
clip-path: url(#avatar-mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Grayscale mode
|
Grayscale mode
|
||||||
Setting each element filter to a different var
|
Setting each element filter to a different var
|
||||||
allows controlling them individually
|
allows controlling them individually
|
||||||
*/
|
*/
|
||||||
|
@ -230,7 +225,7 @@ allows controlling them individually
|
||||||
[data-mode="grayscale"] .poll-wrapper {
|
[data-mode="grayscale"] .poll-wrapper {
|
||||||
filter: grayscale(var(--poll-grayscale, 1));
|
filter: grayscale(var(--poll-grayscale, 1));
|
||||||
}
|
}
|
||||||
[data-mode="grayscale"] .status-actions,
|
[data-mode="grayscale"] .status-actions,
|
||||||
[data-mode="grayscale"] .status-boosted {
|
[data-mode="grayscale"] .status-boosted {
|
||||||
filter: grayscale(var(--status-grayscale, 1));
|
filter: grayscale(var(--status-grayscale, 1));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue