mysiskatten Posted January 29, 2011 Share Posted January 29, 2011 worked perfect thx I cant get my personas themes to work on bookmark toolbar. Default theme is ok but with persona its 100% transparent. Do you know how to fix that? or atleast not making it transparent with personas. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593643462 Share on other sites More sharing options...
foxxyn8 Posted January 29, 2011 Share Posted January 29, 2011 I cant get my personas themes to work on bookmark toolbar. Default theme is ok but with persona its 100% transparent. Do you know how to fix that? or atleast not making it transparent with personas. I'm not sure how to make it take on the persona background but you give it a background-color by setting the background property. You may also need to set the font color depending on the persona. Here's an example: #PersonalToolbar { position: fixed !important; top:61px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #personal-bookmarks { width: 100% !important; } #navigator-toolbox:hover > #PersonalToolbar { visibility: visible !important; opacity: 1; -moz-transition: visibility !important; } Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593644036 Share on other sites More sharing options...
mysiskatten Posted January 29, 2011 Share Posted January 29, 2011 I'm not sure how to make it take on the persona background but you give it a background-color by setting the background property. You may also need to set the font color depending on the persona. Here's an example: #PersonalToolbar { position: fixed !important; top:61px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #personal-bookmarks { width: 100% !important; } #navigator-toolbox:hover > #PersonalToolbar { visibility: visible !important; opacity: 1; -moz-transition: visibility !important; } thanks again worked Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593644632 Share on other sites More sharing options...
mNiosu Posted January 29, 2011 Share Posted January 29, 2011 How can I remove this ugly border line on the bookmarks toolbar I get when using the following transparency style ? @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #nav-bar, #PersonalToolbar {border: none !important; background: transparent !important; text-shadow: #fff 0px 0px 10px, #fff 1px 1px 10px, #fff 1px 1px 3px !important;} Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593645044 Share on other sites More sharing options...
Mr.Dude Posted January 30, 2011 Share Posted January 30, 2011 I'm not sure how to make it take on the persona background but you give it a background-color by setting the background property. You may also need to set the font color depending on the persona. Here's an example: #PersonalToolbar { position: fixed !important; top:61px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #personal-bookmarks { width: 100% !important; } #navigator-toolbox:hover > #PersonalToolbar { visibility: visible !important; opacity: 1; -moz-transition: visibility !important; } very nice :yes: Can the toolbar insert time delayed, for example in 3s? Also i search a solution to view the bookmarks toolbar and simultaneous place the bookmark button from the toolbar in my top window bar? Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593646608 Share on other sites More sharing options...
SkyDX Posted January 30, 2011 Share Posted January 30, 2011 Two questions to the Stylish pros here^^ Is there any way to covert a old Stylish.rdf database to the new Stylish.sqlite format used in Stylish 1.1? And is there any way to make the background of the new Status "What's happening?" bar transparent/gone? Thanks in advance!^^ Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593647236 Share on other sites More sharing options...
foxxyn8 Posted January 30, 2011 Share Posted January 30, 2011 very nice :yes: Can the toolbar insert time delayed, for example in 3s? Also i search a solution to view the bookmarks toolbar and simultaneous place the bookmark button from the toolbar in my top window bar? 1 - Yes like this: #PersonalToolbar { position: fixed !important; top:61px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #personal-bookmarks { width: 100% !important; } #navigator-toolbox:hover > #PersonalToolbar { visibility: visible !important; opacity: 1; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } 2 - Might be possible, but not with css. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593647844 Share on other sites More sharing options...
aznkid25 Posted January 30, 2011 Share Posted January 30, 2011 i remember seeing a nice stylish code that made changes to the add-on manager in one of the pages. Anyone know which one I'm talking about? Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593647920 Share on other sites More sharing options...
Ziz4rD Posted January 31, 2011 Share Posted January 31, 2011 I have a new code that fixes a bit of the status panel at the bottom of the browser, Minefield 4.0b11pre. http://userstyles.org/styles/43526 Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593648972 Share on other sites More sharing options...
Mr.Dude Posted January 31, 2011 Share Posted January 31, 2011 1 - Yes like this: #PersonalToolbar { position: fixed !important; top:61px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #personal-bookmarks { width: 100% !important; } #navigator-toolbox:hover > #PersonalToolbar { visibility: visible !important; opacity: 1; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } 2 - Might be possible, but not with css. does not work, the bookmark bar view immediately, if i move my mouse top Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593649234 Share on other sites More sharing options...
foxxyn8 Posted January 31, 2011 Share Posted January 31, 2011 does not work, the bookmark bar view immediately, if i move my mouse top WFM Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593649256 Share on other sites More sharing options...
foxxyn8 Posted January 31, 2011 Share Posted January 31, 2011 Also i search a solution to view the bookmarks toolbar and simultaneous place the bookmark button from the toolbar in my top window bar? Try disabling the bookmarks menu in the context menu when using that code. It should leave the bookmarks button wherever you placed it. The bookmark toolbar will still show, but without the bookmark button. At least that's what it does on my system. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593651604 Share on other sites More sharing options...
RoadFx Posted February 1, 2011 Share Posted February 1, 2011 I did this awhile ago when I was trying to turn the addons manager into this. Did the best I could with my little knowledge of CSS: http://userstyles.org/styles/42112 I'm still hoping someone can make an extension or whatever to achieve that desired goal. =P Thanks. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593652380 Share on other sites More sharing options...
mysiskatten Posted February 1, 2011 Share Posted February 1, 2011 I did this awhile ago when I was trying to turn the addons manager into this. Did the best I could with my little knowledge of CSS: http://userstyles.org/styles/42112 I'm still hoping someone can make an extension or whatever to achieve that desired goal. =P Thanks. nice one thx ..but Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593653764 Share on other sites More sharing options...
RoadFx Posted February 1, 2011 Share Posted February 1, 2011 I've been informed about ACR, which is why I created: http://userstyles.org/styles/43599 I didn't know about Mac or Linux, which is one of the reasons I posted here (to get feedback). Also, I still haven't figured out a way to make it work nicely for the Stylish and Greasemonkey parts. =\ Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593655846 Share on other sites More sharing options...
+Gary7 Subscriber² Posted February 2, 2011 Subscriber² Share Posted February 2, 2011 I've been informed about ACR, which is why I created: http://userstyles.org/styles/43599 I didn't know about Mac or Linux, which is one of the reasons I posted here (to get feedback). Also, I still haven't figured out a way to make it work nicely for the Stylish and Greasemonkey parts. =\ I cannot get this to work on Windows 7. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593658440 Share on other sites More sharing options...
mysiskatten Posted February 2, 2011 Share Posted February 2, 2011 does not work, the bookmark bar view immediately, if i move my mouse top toolbar delay works... . .. but bookmarklinks and icons show up with no delay. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593658458 Share on other sites More sharing options...
foxxyn8 Posted February 2, 2011 Share Posted February 2, 2011 toolbar delay works... . .. but bookmarklinks and icons show up with no delay. It doesn't do that on my setup. I tested it on a clean profile with only Stylish in both x86 and x64 versions of Minefield and on the official beta in Windows 7 x64. It works as it should. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593658510 Share on other sites More sharing options...
foxxyn8 Posted February 2, 2011 Share Posted February 2, 2011 toolbar delay works... . .. but bookmarklinks and icons show up with no delay. I'm flying blind here since I can't reproduce that, but try this: #PersonalToolbar { position: fixed !important; top:68px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; border-bottom: 1px solid !important; -moz-border-bottom-colors: threedshadow threedhighlight !important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #main-window[sizemode="normal"] #PersonalToolbar { top:83px !important; } #personal-bookmarks { visibility: collapse!important; -moz-transition: visibility 1s, opacity 1s ease !important; width: 100% !important; padding-left:5px !important; padding-right: 5px !important; } #navigator-toolbox:hover > #PersonalToolbar, #navigator-toolbox:hover > #PersonalToolbar > #personal-bookmarks { visibility: visible !important; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593658750 Share on other sites More sharing options...
mysiskatten Posted February 2, 2011 Share Posted February 2, 2011 I'm flying blind here since I can't reproduce that, but try this: #PersonalToolbar { position: fixed !important; top:68px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; border-bottom: 1px solid !important; -moz-border-bottom-colors: threedshadow threedhighlight !important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #main-window[sizemode="normal"] #PersonalToolbar { top:83px !important; } #personal-bookmarks { visibility: collapse!important; -moz-transition: visibility 1s, opacity 1s ease !important; width: 100% !important; padding-left:5px !important; padding-right: 5px !important; } #navigator-toolbox:hover > #PersonalToolbar, #navigator-toolbox:hover > #PersonalToolbar > #personal-bookmarks { visibility: visible !important; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } ok I tried it on my Mac and my old "server" running XP all running firefox 4 beta10 Only my Mac running daily builds from 2feb. ...same problem on all my computers.. toolbar is delayed 3 sec but text(links and bookmarks icons)show up instantly when mouseover locationbar I tried just put it in userChrome.css but with same result. Strange its working for you. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593659044 Share on other sites More sharing options...
Mr.Dude Posted February 2, 2011 Share Posted February 2, 2011 ...same problem on all my computers.. toolbar is delayed 3 sec but text(links and bookmarks icons)show up instantly when mouseover locationbar i can confirm this, did not worked correctly Mozilla/5.0 (Windows NT 6.1; rv:2.0b11pre) Gecko/20110202 Firefox/4.0b11pre Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593659284 Share on other sites More sharing options...
foxxyn8 Posted February 2, 2011 Share Posted February 2, 2011 ok I tried it on my Mac and my old "server" running XP all running firefox 4 beta10 Only my Mac running daily builds from 2feb. ...same problem on all my computers.. toolbar is delayed 3 sec but text(links and bookmarks icons)show up instantly when mouseover locationbar I tried just put it in userChrome.css but with same result. Strange its working for you. I don't understand how the child element can be displayed before the parent. Like I said, it's working fine for me. try this: #PersonalToolbar { position: fixed !important; top:68px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; border-bottom: 1px solid !important; -moz-border-bottom-colors: threedshadow threedhighlight !important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #main-window[sizemode="normal"] #PersonalToolbar { top:83px !important; } #PlacesToolbar { visibility: collapse!important; -moz-transition: visibility 1s, opacity 1s ease !important; } #navigator-toolbox:hover > #PersonalToolbar, #navigator-toolbox:hover #PlacesToolbar { visibility: visible !important; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593659428 Share on other sites More sharing options...
mysiskatten Posted February 2, 2011 Share Posted February 2, 2011 I don't understand how the child element can be displayed before the parent. Like I said, it's working fine for me. try this: #PersonalToolbar { position: fixed !important; top:68px !important; left: 0 !important; right: 0 !important; background-color: rgb(207, 219, 236)!important; border-bottom: 1px solid !important; -moz-border-bottom-colors: threedshadow threedhighlight !important; color: #000 !important; text-shadow: none !important; visibility: collapse !important; -moz-transition: visibility 1s, opacity 1s ease !important; } #main-window[sizemode="normal"] #PersonalToolbar { top:83px !important; } #PlacesToolbar { visibility: collapse!important; -moz-transition: visibility 1s, opacity 1s ease !important; } #navigator-toolbox:hover > #PersonalToolbar, #navigator-toolbox:hover #PlacesToolbar { visibility: visible !important; -moz-transition: visibility !important; -moz-transition-delay: 3s!important; } I have same problem withe this code .. strange Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593659768 Share on other sites More sharing options...
vasa1 Posted February 3, 2011 Share Posted February 3, 2011 Please recommend some elementary reading material where I can know more about things like "@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);". I have a little knowledge about userContent.css and userChrome.css but I understand that stuff is also hidden away in the "omni.jar" and will work only from there and not from the two style sheets in my profile directory. Meanwhile, I've installed the userstyle.org add on and I'm experimenting a bit with the codes many of you are putting up here. Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593660546 Share on other sites More sharing options...
Brandon H Supervisor Posted February 3, 2011 Supervisor Share Posted February 3, 2011 foxy, is it possible that the code isn't copied correctly, i've seen before in this thread where the code tag has messed up the script for whatever reason, try putting it in a quote or pasting it in a .txt file and uploading it worth a try i suppose Link to comment https://www.neowin.net/forum/topic/921416-share-your-custom-firefoxminefield-4-stylish-scripts/page/50/#findComment-593660564 Share on other sites More sharing options...
Recommended Posts