Post your userFiles!

Discuss application theming and theme development.
Locked
ghingy
Posts: 218
Joined: March 5th, 2005, 4:40 pm

Post by ghingy »

Hi guys,

Earlier I was messing around with the userchrome, trying to change the way the browser looks but I later noticed that I no longer have the live-bookmark RSS icon in the status bar. When i bring my mouse across the statusbar, I can see the Live bookmark tooltip but not the icon.

Can someone please tell me how I can get this icon back. lol...i feel like a knob asking such a silly question:) Thanks anyway!
The website said IE5 or better. So I installed Firefox.
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Code: Select all

#livemark-button { display: none !important; }

Perhaps you added this code at some point. I don't know if changing it to 'true' or just deleting it will bring it back since I don't use RSS.
Old Greg S
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Greg S »

bozz wrote:

Code: Select all

#livemark-button { display: none !important; }

Perhaps you added this code at some point. I don't know if changing it to 'true' or just deleting it will bring it back since I don't use RSS.


This makes it appear for me if it helps any

Code: Select all

#livemark-button {
   display: -moz-box !important; }
Old Greg S
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Greg S »

Now I have question that is unrelated but maybe someone("bozz")lol can answer me. I was playing aronund with DomI and noticed that in a bookmarks properties window in DomI that there are two tabs Schedule and Notify that don't show up when using bookmarks properties without DomI. Anyone with any info as to why?
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

maybe someone("bozz")lol can answer me

rlmao....could be residues/leftovers from the suite that haven't been cleaned out yet. :?:
Old Greg S
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Greg S »

bozz wrote:
maybe someone("bozz")lol can answer me

rlmao....could be residues/leftovers from the suite that haven't been cleaned out yet. :?:

Did you open it up in DomI and see what I'm talking about? Look like some nice options in there!
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Did you open it up in DomI and see what I'm talking about? Look like some nice options in there!

I'll check it out. I'm tied up right now(pm's) helping someone to change backgrounds in Thunderbird.
User avatar
ShareBird
Posts: 2740
Joined: December 8th, 2004, 7:09 am
Location: Berlin | Made in Brasil
Contact:

Post by ShareBird »

Greg S wrote:Now I have question that is unrelated but maybe someone("bozz")lol can answer me. I was playing aronund with DomI and noticed that in a bookmarks properties window in DomI that there are two tabs Schedule and Notify that don't show up when using bookmarks properties without DomI. Anyone with any info as to why?


Wow!!! Really nice options. They are at browser.jar in browser/content/browser/bookmarks/bookmarksProperties.xul and bookmarksProperties.js.

Maybe is there a hidden pref to enable those options??

.
Old Greg S
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Greg S »

ShareBird wrote:
Greg S wrote:Now I have question that is unrelated but maybe someone("bozz")lol can answer me. I was playing aronund with DomI and noticed that in a bookmarks properties window in DomI that there are two tabs Schedule and Notify that don't show up when using bookmarks properties without DomI. Anyone with any info as to why?


Wow!!! Really nice options. They are at browser.jar in browser/content/browser/bookmarks/bookmarksProperties.xul and bookmarksProperties.js.

Maybe is there a hidden pref to enable those options??

.

I briefly looked in there but didn't see any reference that stood out. I also briefly looked at preferential site to see if there was something there but got side-tracked with some other options.
User avatar
ShareBird
Posts: 2740
Joined: December 8th, 2004, 7:09 am
Location: Berlin | Made in Brasil
Contact:

Post by ShareBird »

Greg S wrote:I briefly looked in there but didn't see any reference that stood out. I also briefly looked at preferential site to see if there was something there but got side-tracked with some other options.


Hehehe... Easy to happen...

I can imagine an extension could easily point to these options...

.
ghingy
Posts: 218
Joined: March 5th, 2005, 4:40 pm

Post by ghingy »

Greg S wrote:
bozz wrote:

Code: Select all

#livemark-button { display: none !important; }

Perhaps you added this code at some point. I don't know if changing it to 'true' or just deleting it will bring it back since I don't use RSS.


This makes it appear for me if it helps any

Code: Select all

#livemark-button {
   display: -moz-box !important; }


I managed to get the icon back. This is what I did:

#livemark-button {
list-style-image:
url("file:///C:/page-livemarks.png");/*none;*/
-moz-image-region: rect(16px 16px 32px 0px);
padding-left :2px;
width: 19px;
/*display: none;*/
}

#livemark-button[livemarks] {
-moz-image-region: rect(0px 16px 16px 0px);
display: -moz-box;
}
The website said IE5 or better. So I installed Firefox.
User avatar
Demon-Machine
Posts: 12
Joined: May 2nd, 2005, 2:15 pm
Location: Canada

Post by Demon-Machine »

Code: Select all

/* Extension Background Image */
#extensionsView[state="extensions"] {
   -moz-appearance: none !important;
   background-image: url("extensionbg.png") !important; }


I got that from Greg S and I could not manage to get it working. On the other hand, I did manage to change the theme background image using the following:

Code: Select all

/* Theme Background Image */
#extensionsView[state="themes"] {
   -moz-appearance: none !important;
   background-image: url("themebg.png") !important; }


By the way, thanks for posting all this info. I was able to completely change my Firefox appearance just by using some of the examples posted here, and modifying them to my needs. The only thing that won't work is that background for the extensions. If you guys have any advice I would appreciate it. Thanks.
Old Greg S
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Greg S »

ShareBird wrote:
Wow!!! Really nice options. They are at browser.jar in browser/content/browser/bookmarks/bookmarksProperties.xul and bookmarksProperties.js.

Maybe is there a hidden pref to enable those options??

.

I'm sure you know you can un-hide them in the .js you mention above. I did and they appeared. It's says they were disabled for some bug in 1.0. I reckon one could make a test profile and play with it and see if it works or not.
User avatar
laszlo
Posts: 5225
Joined: November 4th, 2002, 6:13 pm
Location: .de
Contact:

Post by laszlo »

It doesn't, because the underlying bugs in the bookmarks system haven't been fixed since then, and nobody's working on them, since there's a consensus that this functionality is best left to an extension. A few days ago, the left over "Info" tab has thus also been removed in the nightlies.
"I'll be dead after I die. I was dead before I was born. Life is a break from death." - Hlynur, 101 Reykjavík
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Demon-Machine wrote:

Code: Select all

/* Extension Background Image */
#extensionsView[state="extensions"] {
   -moz-appearance: none !important;
   background-image: url("extensionbg.png") !important; }


I got that from Greg S and I could not manage to get it working.

The code works for me, however it is very light as compared to other areas that I use the same background image.

This code works but loses the background for a 'selected' extension.

Code: Select all

#extensionsView vbox {
  -moz-appearance: none !important;
   background-image: url("file:///C:/_Mozilla/Firefox/Backgrds/green3.jpg") !important; }


Just thought of something. I'm using the EMbuttons extension. Are you guys using this?
Locked