Ticket #17 (new tip)

Opened 8 months ago

Last modified 7 months ago

Show the feed-button in the statusbar

Reported by: teramako Owned by: somebody
Priority: minor Component: Vimperator
Version: 1.2 Keywords:
Cc:

Description (last modified by kmaglione) (diff)

Show the feed-button, even if the address-bar is not displayed.
Add the following code to ~/.vimperatorrc:

javascript <<EOF
(function(){
    var feedPanel = document.createElement("statusbarpanel");
    feedPanel.setAttribute("id", "feed-panel-clone");
    feedPanel.appendChild(document.getElementById("feed-button"));
    feedPanel.firstChild.setAttribute("style", "padding: 0; max-height: 16px;");
    document.getElementById("status-bar")
            .insertBefore(feedPanel, document.getElementById("security-button"));
})();
EOF

Change History

comment:1 Changed 8 months ago by djk

  • description modified (diff)

comment:2 Changed 8 months ago by kmaglione

Awesome.

comment:3 Changed 8 months ago by kmaglione

I suggest the following:

sty -n feed-button chrome://* #feed-button { padding: 0 !important; max-height: 16px; }

I'd add it to the description, but I'm not sure how.

comment:4 Changed 8 months ago by kmaglione

  • description modified (diff)

comment:5 Changed 8 months ago by kmaglione

  • description modified (diff)

comment:6 Changed 7 months ago by tpavlic

  • priority changed from trivial to minor

Priority should be changed to "minor" so that it sorts into the other tips (why leave it at the bottom all the time?).

Note: See TracTickets for help on using tickets.