Stylish for Firefox 1.1b4
Available here
Above of 1.1b4: Stylish icon will be added to add-ons bar at first run (if you remove it, it won't come back), added some localization updates.
I don't expect to do any more updates other than localization, so if you see something wrong, let me know.
Above of 1.1b4: Stylish icon will be added to add-ons bar at first run (if you remove it, it won't come back), added some localization updates.
I don't expect to do any more updates other than localization, so if you see something wrong, let me know.
Comments
Jason, today's build reduced add-on bar height to 18px... Your icon extremely increases the size of add-on bar!
What can I do?
I had a style that used bg for the image, had to change it to list-style-image. I think you should be able to drag it from the toolbar to the addons(status) bar ... that is if you can find it ;-)
Try my code below and see if you can find it:
#stylish-toolbar-button { -moz-appearance: none !important; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAADnUlEQVR42rVV2SttYRTf/wAevFCiFMKbIUKhPMhUnszzPA8nQ8rlmMckHijjTSLejWkbn9wMD07qXKIbUlIkPK27fqv2jvbpPtDd9Tvn23utb/2+b31r/T6ltbVV+Z+Qn5aWFoHZbFba29u/hba2Nj3eJwIYmpublbq6OqW+vv5LwFzE0Eh0AqwchtDQUFNISIjK/19GcHDwj6amJiHRCbA1k8mkhIeHH6WlpVFycrKOpKQkSk1NpdzcXEFOTo4+TklJEbvmm56eTmFhYbdlZWVKZ2fnZ4La2lolPj5era6upvLycgE7Uk1NjSAqKoo8PT3Jw8OD/Pz8KDY2VuwVFRW6P8fAd0tpaamRgAMrvFK1r6+POjo6BF1dXdTT00NeXl6kKAq5urrK2MHBQd5BMDAwoPtjzLuyFBcXGwkqKysVNqjz8/M0NTVFk5OTtLS0JFtHsPz8fHmHfWJigjilNDQ0RLOzs+KLOQsLC8QxLIWFhUYC5I0rQd3d3aXV1VXB3t4eBQQEkJ2dHW1ubtLOzg6trKzQxsaGjNfX1+Ud0PwbGhosvBgjQUlJCf7Vi4sLOj4+FlxfX1NiYqLsgKuMHh4eyGq10tHRke7zEZeXl0irhQvBSFBUVKTwltXX11e6ubkRPD09yaqwA5Cggs7PzwnP/f297qfh7e2NRkZGLFlZWUaCgoICZWxsTMVkOAIgw3NwcEC+vr5C4uTkRMPDw6Q98NH88fBZWDIzM20TjI+PC8H7+7sObeLLywtxQ5K9vb0QIXXPz8/00f+fBFqKEPD29taAx8dHCXB4eEjcsULC5yaBNR/MHR0dtZ0iHDLXsoqDOj09pZOTE5u4u7uj/f19cnR0JBcXF/l2dnYmc66urqi7u9v2IaNMucRUHOra2poApYey3d7eltLEt62tLSlRNzc3OQ/4oIRhA3FjY6MlLy/PdqPxLlQ0y/T0NM3MzAg4n5L7ubk5aSQ0GweQFEVHR9Py8rL4A4uLi0ib7UbTpKK/v5/YKDKB1kcqEMzZ2Zl8fHwkLXiHZHA6qLe3V/yBwcFBCKNtqYDYJSQkqBAsCBhQVVUlO2CVJW9vb3J3d5f/mJgYkYqPvgC+xcXF2RY7yHVkZOQvrgCRXQDSjebiLROXsUAbZ2RkiF3zBbKzsykiIuKPQa61CycoKMjs7+9vZf35EgIDA3+zpP/EYrkijVcmVwAU9VvgtBqvTO2SRqr4cL8FpMZw6f9P/AX53Zjepo0HfwAAAABJRU5ErkJggg==) !important; }
BTW, Stylish-Custom has an option to show/hide the statusbar icon ... if you use it, maybe you have 'hide' checked?
Source File: jar:file:///path/to/my/profile/extensions/%7B46551EC9-40F0-4e47-8E18-8E5CF550CFB8%7D.xpi!/components/stylishStartup.js
Line: 116
I get this every time I restart Fx (4.0 nightly) with Stylish 1.1b3 (not going to install 1.1b4).
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("facebook.com")
{
body:not(.mceContentBody){
background-color:#000000 !important;
background-image: url("http://i43.tinypic.com/2jb0c3d.jpg") !important;
background-repeat:no-repeat !important;
background-position:center !important;
background-attachment:fixed !important;
}
}
still has the same issue... but if you comment out the background-attachment it works, but without the fixed background obviously.
background: #000000 url("http://i43.tinypic.com/2jb0c3d.jpg") center no-repeat fixed !important;
And i don't think this is a right place - Style development seems to be more appropriate.
I use an addon for Facebook the allows you to mark posts as read, and reduces their opacity to "gray them out" once they've been read. Unfortunately, it's not working right. Now pieces of the page are being picked up and displayed under the posts. If you try this simple CSS on a Facebook page, you can see what it is doing:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("facebook.com")
{
.UIStory
{
background:transparent !important; opacity:0.25 !important
}
body
{
background-image: url("http://i43.tinypic.com/2jb0c3d.jpg") !important;
background-repeat:no-repeat !important;
background-position:center !important;
background-attachment:fixed !important;
}
}
I'm not sure if it Stylish or Firefox causing the problem; though I suspect it is the Firefox beta 9 as beta 8 did not display this behavior. If you could just take a quick glance and give me your thoughts, it would be helpful so I know whether to report a bug in the Firefox beta or not, and what I would report in the bug.
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("facebook.com") { /* .UIStory { background:transparent !important; opacity:0.25 !important }*/ body { background: url("http://i43.tinypic.com/2jb0c3d.jpg") top no-repeat fixed !important; } .WelcomePage_Container, .loggedout_menubar_container, .WelcomePage_MainSell { background: none !important; } }
I commented the first line 'cause i don't know what it does but it doesn't sound good. It's never a good idea to have low opacity for a bg - it will make everything that is on top of that bg just as opaque. I wouldn't use it (unless it some bar or something like that).
In any case, this has nothing to do with Stylish version and you should start a thread. BTW, there gazillions of styles for fb, why not just search and then plaster your own image where appropriate. Seems to work for others.
Good Luck!