padding: 0;
}
+body {
+ background-color: #000000
+}
+
/* SCROLLBOX */
#newtab-scrollbox:not([page-disabled]) {
color: #FF9F00;
background-color: rgba(255,159,0,.2);
border: 1px solid;
border-color: #9C9CFF;
- border-radius: 1px;
+ border-radius: 10px;
}
.newtab-cell:empty {
padding: 0 8px;
background-color: rgba(255,159,0,.8);
color: #000000;
+ border: none;
line-height: 24px;
bottom: 0 !important;
}
position: absolute;
width: 10px;
margin-left: 8px;
- margin-top: 6px;
+ margin-top: 0;
}
.newtab-site[pinned] .newtab-title:-moz-locale-dir(rtl)::before {
.newtab-control-block:hover:active {
background-image: -moz-image-rect(url("chrome://browser/skin/newtab/controls.svg"), 0, 256, 32, 224);
}
+
+/* SEARCH */
+#newtab-search-text {
+ border: 1px solid #9C9CFF;
+ background-color: #000000;
+ color: #E7ADE7;
+}
+#newtab-search-text::-moz-placeholder {
+ color: #8050B0;
+}
+#newtab-search-text:focus {
+ border: 1px solid #008484;
+ box-shadow: 0 0 0 1px #008484 inset;
+}
+
+#newtab-search-submit {
+ background: url("chrome://browser/skin/search-arrow-go.svg#search-arrow-go") no-repeat scroll center center;
+ background-color: #C09070;
+ border-radius: 0 300px 300px 0;
+ border: none;
+ -moz-margin-start: 3px;
+}
+#newtab-search-text:focus + #newtab-search-submit,
+#newtab-search-text[autofocus] + #newtab-search-submit {
+ background: url("chrome://browser/skin/search-arrow-go.svg#search-arrow-go") no-repeat scroll center center;
+ background-color: #008484;
+ box-shadow: none;
+}
+#newtab-search-text + #newtab-search-submit:hover {
+ background: url("chrome://browser/skin/search-arrow-go.svg#search-arrow-go") no-repeat scroll center center;
+ background-color: #FFCF00;
+ box-shadow: none;
+}
--- /dev/null
+<?xml version="1.0"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16">
+ <style>
+ use:not(:target) {
+ display: none;
+ }
+ use {
+ fill: #000000;
+ }
+ use[id$="-inverted"] {
+ fill: #FFCF00;
+ }
+ </style>
+ <defs>
+ <path id="search-arrow-go-glyph" d="M1,7v2.2C1,9.8,1.4,10,2,10h7.5l-3,3.1c-0.4,0.3-0.4,1,0,1.4l0.8,0.8 c0.4,0.4,1,0.4,1.4,0l6.6-6.6c0.4-0.4,0.4-1,0-1.4L8.7,0.7c-0.4-0.4-1-0.4-1.4,0L6.5,1.6C6.1,2,6.1,2.6,6.5,3l3,3H2C1.4,6,1,6.4,1,7z"/>
+ </defs>
+ <use id="search-arrow-go" xlink:href="#search-arrow-go-glyph"/>
+ <use id="search-arrow-go-inverted" xlink:href="#search-arrow-go-glyph"/>
+</svg>