main
css 18 lines 855 Bytes
Raw
1 /* avoid meaningless graphical effects that may cause changes in the screenshots */
2 *:focus { outline: none !important; box-shadow: none !important; }
3 main *:hover { background: none !important; }
4 * { animation: none !important; transition: none !important; }
5 /* Disable typographic features that differ across rendering engines and cause screenshot noise. */
6 *:not(svg):not(svg *) {
7 font-kerning: none !important;
8 font-variant-ligatures: none !important;
9 text-shadow: none !important;
10 }
11
12 .hideInTests, /* use for elements with variable size, where masking would produce changes anyway */
13 .list-wrapper:not([uri="/"]) .entry-ts { display: none } /* ignore changing timestamps inside folders */
14
15 .MuiTooltip-tooltip { /* tooltips are subjected to small displacements */
16 visibility: hidden !important;
17 pointer-events: none !important;
18 }