Improve Chromium CSS performance

parallel-fetching
gravel 2 years ago
parent 32b7196ca8
commit 43469da7a8
Signed by: gravel
GPG Key ID: C0538F3C906B308F

@ -90,8 +90,12 @@ a, .anchorstyle {
cursor: pointer; cursor: pointer;
} }
*, *::after, *::before { /* Enumerate elements with transitions to improve performance on Chromium. */
transition: color 3s, background-color 2s; #theming-root, th, tr, .protocol-indicator, .copy_button,
.td_description::after,
#details-modal, #details-modal :is(#details-modal-copy-button, #details-modal-copy-staff-id),
a, .anchorstyle {
transition: color 2.5s linear, background-color 2s linear;
} }
html.js .noscript, .hidden { html.js .noscript, .hidden {

Loading…
Cancel
Save