home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / temafire / Phoenity.jar / browser / extensions / inspector / inspector.css next >
Encoding:
Cascading Style Sheet File  |  2004-09-19  |  2.2 KB  |  67 lines

  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2. /*Inspector buttons solution*/
  3.  
  4. /*Inspector Window*/
  5. #imgURLBarIcon {
  6. list-style-image: url("chrome://global/skin/icons/bookmark_item.png") !important;
  7. -moz-image-region: rect(0 48px 16px 32px) !important;
  8. margin: 2px !important;
  9. width: 16px !important;
  10. height: 16px !important;
  11. }
  12.  
  13. #btnSelecting {
  14. list-style-image: url("chrome://browser/skin/extensions/inspector/inspector.png") !important;
  15. -moz-image-region: rect(0 16px 16px 0) !important;
  16. }
  17. #btnSelecting:not([disabled="true"]):hover,
  18. #btnSelecting[checked="true"]:not([disabled="true"]) {
  19. -moz-image-region: rect(16px 16px 32px 0) !important;
  20. }
  21. #btnSelecting[disabled="true"] {
  22. -moz-image-region: rect(32px 16px 48px 0) !important;
  23. }
  24.  
  25. #tbInspectorPrimary #btnFind {
  26. list-style-image: url("chrome://browser/skin/extensions/inspector/inspector.png") !important;
  27. -moz-image-region: rect(0 32px 16px 16px) !important;
  28. }
  29. #tbInspectorPrimary #btnFind:not([disabled="true"]):hover {
  30. -moz-image-region: rect(16px 32px 32px 16px) !important;
  31. }
  32. #tbInspectorPrimary #btnFind[disabled="true"] {
  33. -moz-image-region: rect(32px 32px 48px 16px) !important;
  34. }
  35. /*
  36. #tbInspectorPrimary has to be added, because this #btnFind
  37. (toolbarbutton) conflicts with the other #btnFind (button)
  38. of the 'Find in This Page' dialog. This is bad!
  39. */
  40.  
  41. /*Panel Set*/
  42. .viewer-list .toolbarbutton-icon {
  43. list-style-image: url("chrome://browser/skin/extensions/inspector/inspector.png") !important;
  44. -moz-image-region: rect(0 48px 16px 32px) !important;
  45. }
  46. .viewer-list:not([disabled="true"]):hover .toolbarbutton-icon {
  47. -moz-image-region: rect(16px 48px 32px 32px) !important;
  48. }
  49. .viewer-list[disabled="true"] .toolbarbutton-icon {
  50. -moz-image-region: rect(32px 48px 48px 32px) !important;
  51. }
  52.  
  53. .viewer-menu .toolbarbutton-icon {
  54. list-style-image: url("chrome://browser/skin/extensions/inspector/inspector.png") !important;
  55. -moz-image-region: rect(0 64px 16px 48px) !important;
  56. }
  57. .viewer-menu:not([disabled="true"]):hover .toolbarbutton-icon {
  58. -moz-image-region: rect(16px 64px 32px 48px) !important;
  59. }
  60. .viewer-menu[disabled="true"] .toolbarbutton-icon {
  61. -moz-image-region: rect(32px 64px 48px 48px) !important;
  62. }
  63.  
  64. /*I have no idea why I put this*/
  65. .viewer-pane-header{
  66. -moz-box-align: center;
  67. }