- Use "select-mode-symbolic" in the "Clicking"
view switcher
- Ditch the border radius from the scroll test
image
- Make click-status-emblem indicator indicator
to show a more prominent green color when the
test passes
- Don't use @borders for the click-status-emblems
background color because this named color isn't
meant for backgrounds
- Make non-green click-status-emblems dimmed
Reference: 6d5e1813ca
20 lines
386 B
CSS
20 lines
386 B
CSS
.mouse-test-viewport {
|
|
background: #26a269;
|
|
}
|
|
|
|
.mouse-test-arrow {
|
|
color: white;
|
|
-gtk-icon-shadow: 0 1px black;
|
|
}
|
|
|
|
.click-status-emblem {
|
|
border-radius: 9999px;
|
|
background-color: alpha(currentColor, .2);
|
|
color: alpha(currentColor, .5);
|
|
padding: 10px;
|
|
}
|
|
|
|
.click-status-emblem.success {
|
|
background-color: @success_bg_color;
|
|
color: @success_fg_color;
|
|
}
|