Advertisement
Guest User

userChrome.css

a guest
Jul 18th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. border-radius: 6px;
  2.  
  3. /* hide the Back button when there's nothing to go back to */
  4. #back-button[disabled="true"] {
  5.   display: none !important;
  6. }
  7. /* hide the Forward button when there's nothing to go forward to */
  8. #forward-button[disabled="true"] {
  9. display:none !important;
  10. }
  11.  
  12. #forward-button{
  13. padding-right:0px !important;
  14. }
  15. /*Change bookmark font*/
  16. #PersonalToolbar .toolbarbutton-text {
  17. font-size: 12.5px !important; }
  18.  
  19. /*Remove dropdown marker*/
  20. .toolbarbutton-menu-dropmarker
  21. {
  22.    display: none !important;
  23. }
  24.  
  25. /*Remove tabbar border*/
  26. .tabbrowser-tabs{
  27. border:none !important;
  28. padding-top: 10px !important;
  29. }
  30.  
  31. /*transparent url bar*/
  32. #urlbar{
  33. background-position: right !important;
  34. -moz-appearance: none !important;
  35. border: 0 !important;
  36. margin: 0 !important;
  37. padding-top: 5 !important;
  38. height: 22px !important;
  39. }
  40.  
  41.  
  42. #urlbar-icons > #star-button
  43. {
  44. display:   none !important;
  45. }
  46.  
  47. #urlbar-icons > #go-button
  48. {
  49.    display:   none !important;
  50. }
  51.  
  52. #feed-button
  53. {
  54. display: none !important
  55. }
  56.  
  57. .autocomplete-history-dropmarker { display: none !important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement