Page 1 of 1

Feed button setup

Posted: 2018-01-14, 18:14
by Goodydino
How do you get the feed button to appear? I ported a Firefox theme into Pale Moon, and its configuration should have made the feed button appear in the address bar, but it does not do that. The setup looked to me to be the same as for other themes, but it does nothing. What is the proper syntax for configuring the feed button?

Re: Feed button setup

Posted: 2018-01-14, 23:55
by Lootyhoof
The selector for this is #ub-feed-button. For example, to make it appear using only icons present in an existing theme you could add the following to browser.css:

Code: Select all

#ub-feed-button,
#ub-feed-button > .button-box,
#ub-feed-button:hover:active > .button-box {
  padding: 0px;
  margin: 0px;
  border: 0px; 
  background-color: transparent !important;
}

#ub-feed-button {
  -moz-appearance: none; 
  min-width: 0px; 
  list-style-image: url("chrome://browser/skin/feeds/feedIcon16.png");
}

Re: Feed button setup

Posted: 2018-01-16, 20:37
by Goodydino
That works. Thanks a bunch.