edge-frfox/chrome/userContent/NewTab.css
2021-03-21 23:07:39 +08:00

58 lines
No EOL
2 KiB
CSS

@-moz-document url("about:newtab"), url(about:home) {
.icon.icon-settings {
background-image: url(../icons/settings.svg) !important;
background-size: 20px !important;
}
.search-wrapper .search-button {
background-image: url(../icons/search.svg) !important;
background-size: 20px !important;
}
.search-wrapper input {
border: 0 !important;
box-shadow: none !important;
fill: var(--newtab-search-icon-color);
border-radius: 4px !important;
outline: none !important;
}
.search-inner-wrapper input {
transition: box-shadow .2s ease-in-out !important;
box-shadow: 0px 1.6px 3.6px rgb(0 0 0 / 13%), 0px 0px 2.9px rgb(0 0 0 / 11%) !important;
}
.search-inner-wrapper:hover input {
box-shadow: 0px 3.2px 7.2px rgb(0 0 0 / 13%), 0px 0px 3.8px rgb(0 0 0 / 11%) !important;
}
.search-wrapper :is(input, button) {
height: 44px !important;
}
#searchSubmit {
width: 68px !important;
background-color: var(--search-button-bg) !important;
}
#searchSubmit:hover {
background-color: var(--search-button-bg-hover) !important;
}
.top-site-outer .tile, .screenshot, .top-site-icon {
border-radius: 8px !important;
}
body:not([lwt-newtab], [style*="color"]) {
--newtab-background-color: #f5f5f5 !important;
--newtab-text-primary-color: #000 !important;
--newtab-textbox-background-color: #fff !important;
--newtab-topsites-background-color: #fff !important;
--search-button-bg: #0078D4;
--search-button-bg-hover: #006CBE;
--newtab-search-icon-color: #fff !important;
}
body[style*="--newtab-background-color:rgba(42, 42, 46, 1); --newtab-text-primary-color:rgba(249, 249, 250, 1);"] {
--newtab-background-color: #242424 !important;
--newtab-text-primary-color: #fff !important;
--newtab-textbox-background-color: #424242 !important;
--newtab-topsites-background-color: #424242 !important;
--search-button-bg: #006CBE;
--search-button-bg-hover: #0078D4;
--newtab-search-icon-color: #fff !important;
}
}