Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

Spletno mesto bo delovalo z omejenimi zmožnostmi, medtem ko na njem izvajamo vzdrževalna dela za vas. Če članki ne rešijo vaše težave in želite zastaviti vprašanje, naša skupnost za podporo čaka na vas na @FirefoxSupport na Twitterju in na /r/firefox na Redditu.

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

How to remove the green plus in the search.

more options

the green plus in the screen shown below or this link: https://www.dropbox.com/s/e5sybw8axi9vdky/Knipsel.PNG?dl=0&s=sl. browser.search.showOneOffButtons; false is set to false

the green plus in the screen shown below or this link: https://www.dropbox.com/s/e5sybw8axi9vdky/Knipsel.PNG?dl=0&s=sl. browser.search.showOneOffButtons; false is set to false

Izbrana rešitev

You can use a custom style rule to override the special icon and show the standard one. You can apply custom style rules to Firefox's interface using either the Stylish extension or a userChrome.css file. For example (tested on Windows 7):

.searchbar-search-button[addengines="true"] {
  list-style-image: url("chrome://browser/skin/search-indicator.png");
  -moz-image-region: rect(0, 20px, 20px, 0);
  margin-top: 1px;
  margin-bottom: 1px;
  -moz-margin-start: 4px;
  width: 20px;
}
.searchbar-search-button:hover {
  -moz-image-region: rect(0, 40px, 20px, 20px);
}
.searchbar-search-button:hover:active {
  -moz-image-region: rect(0, 60px, 20px, 40px);
}
@media (min-resolution: 1.1dppx) {
  .searchbar-search-button[addengines="true"] {
    list-style-image: url("chrome://browser/skin/search-indicator@2x.png");
    -moz-image-region: rect(0, 40px, 40px, 0);
  }
  .searchbar-search-button:hover {
    -moz-image-region: rect(0, 80px, 40px, 40px);
  }
  .searchbar-search-button:hover:active {
    -moz-image-region: rect(0, 120px, 40px, 80px);
  }
}

I just incorporated that into my custom style rule here, if you're interested in a list with names rather than only icons:

https://userstyles.org/styles/122214/firefox-search-bar-show-engine-names-firefox-43

Preberite ta odgovor v kontekstu 👍 1

Vsi odgovori (2)

more options

The green plus means that the website offers a search engine as you can see if you click the search engine icon.

The browser.search.showOneOffbuttons pref is no longer supported in Firefox 43+, so modifying this pref won't have effect. You can reset the pref via the right-click context menu to the default value.

You can look at the Classic Theme Restorer to restore the previously used search bar. You will find this feature in the CTR Options/Preferences.

more options

Izbrana rešitev

You can use a custom style rule to override the special icon and show the standard one. You can apply custom style rules to Firefox's interface using either the Stylish extension or a userChrome.css file. For example (tested on Windows 7):

.searchbar-search-button[addengines="true"] {
  list-style-image: url("chrome://browser/skin/search-indicator.png");
  -moz-image-region: rect(0, 20px, 20px, 0);
  margin-top: 1px;
  margin-bottom: 1px;
  -moz-margin-start: 4px;
  width: 20px;
}
.searchbar-search-button:hover {
  -moz-image-region: rect(0, 40px, 20px, 20px);
}
.searchbar-search-button:hover:active {
  -moz-image-region: rect(0, 60px, 20px, 40px);
}
@media (min-resolution: 1.1dppx) {
  .searchbar-search-button[addengines="true"] {
    list-style-image: url("chrome://browser/skin/search-indicator@2x.png");
    -moz-image-region: rect(0, 40px, 40px, 0);
  }
  .searchbar-search-button:hover {
    -moz-image-region: rect(0, 80px, 40px, 40px);
  }
  .searchbar-search-button:hover:active {
    -moz-image-region: rect(0, 120px, 40px, 80px);
  }
}

I just incorporated that into my custom style rule here, if you're interested in a list with names rather than only icons:

https://userstyles.org/styles/122214/firefox-search-bar-show-engine-names-firefox-43