Firefox-UI-Fix/userContent.css
2021-04-30 12:31:54 +09:00

20 lines
956 B
CSS

@media (-moz-proton) {
@-moz-document url("about:home"), url("about:newtab") {
/* Activity Stream - Search Focus Border: like URL */
/* At DarkMode, Color */
body[style*="--newtab-background-color:rgba(28, 27, 34, 1);"] {
/* outer */
--newtab-focus-outline: rgba(0, 221, 255, 0.5) !important; /* #00DDFF * opacity 0.5, Original: rgba(80, 145, 241, 0.5) */
/* inner */
--newtab-focus-border: color-mix(in srgb, var(--newtab-background-color) 50%, transparent) !important; /* Original: #B5D3FF, Better color-mix(in srgb, #B5D3FF 70%, transparent) */
--newtab-focus-border-selected: color-mix(in srgb, var(--newtab-background-color) 50%, transparent) !important; /* Original: #B5D3FF */
}
/* Activity Stream - Web Site Icon: full size */
.top-site-outer .tile .icon-wrapper {
width: 100% !important; /* Original: 48px */
height: 100% !important; /* Original: 48px */
}
}
}