home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 119 / cdrom119.iso / internet / gsync / google-browsersync.xpi / chrome / chromeFiles / content / browser-overlay.css next >
Encoding:
Cascading Style Sheet File  |  2006-06-07  |  1.8 KB  |  92 lines

  1. /**
  2.  * The status icon. We don't use the one that comes with toolbarbutton
  3.  * because we don't want it to be part of the pushable button since it has it's
  4.  * own behavior -- showing the infobubble -- when it is is pushed.
  5.  */
  6. #clb-toolbarbutton .toolbarbutton-icon {
  7.   border:0px solid black!important;
  8.   margin-left:2px!important;
  9.   margin-right:4px!important;
  10.   display:block!important;
  11. }
  12.  
  13. /**
  14.  * The text on the toolbarbutton. It should be bold and always displayed. Also,
  15.  * it goes to the right of the icon.
  16.  */
  17. #clb-toolbarbutton .toolbarbutton-text { 
  18.   font-weight:bold!important;
  19.   margin-right:6px!important;
  20.   display:block!important;
  21. }
  22.  
  23. /**
  24.  * The little down-arrow next to the text that indicates that a submenu is 
  25.  * available.
  26.  */
  27. #clb-toolbarbutton .dropmarker-icon { 
  28.   margin-right:2px!important;
  29. }
  30.  
  31. .clb-infobubble { 
  32.   position: fixed; 
  33.   width: 300px;
  34.   z-index: 100; 
  35. }
  36.  
  37. .clb-infobubble-head,
  38. .clb-infobubble-tail { 
  39.   position: fixed;
  40.   z-index: 101;
  41. }
  42.  
  43. .clb-infobubble-bubble {
  44.   background: white; 
  45.   -moz-border-radius: 8px; 
  46.   border: 1px solid; 
  47.   padding: 8px;
  48.   width: 284px;
  49.   font-family: tahoma, arial, sans-serif;
  50. }
  51.  
  52. .clb-infobubble-desc { 
  53.   margin: 0.35em 0 1em; 
  54. }
  55.  
  56. .clb-infobubble-close { 
  57.   -moz-image-region: rect(0px 18px 18px 0px);
  58.   -moz-appearance: none;
  59.   list-style-image: url("chrome://browserstate/content/close-buttons.png");
  60.   background: none !important;
  61.   border: none !important;
  62.   padding: 0;
  63. }
  64.  
  65. .clb-infobubble-close:hover { 
  66.   -moz-image-region: rect(0px 36px 18px 18px);
  67. }
  68.  
  69. .clb-infobubble-buttons button { 
  70.   margin-left: 0px !important;
  71. }
  72.  
  73. .clb-restore-checkbox {
  74.   margin-top:1px;
  75.   margin-bottom:1px;
  76.   width:170px;
  77.   overflow-x:hidden;
  78. }
  79.  
  80. .clb-restore-title {
  81.   color:grey;
  82.   width:70px;
  83.   overflow-x:hidden;
  84. }
  85.  
  86. .clb-restore-rule {
  87.   background:silver;
  88.   height:1px; 
  89.   overflow:hidden; 
  90.   margin:0.5em 0;
  91. }
  92.