2008/04/06

faviconize Google ノートブック

これ(Googleノートブックのステータスバーのラベルを消す)がStylishを使えばもっと簡単に出来ました。

ついでにポイントしている間だけラベルが表示されるように変更。

  1. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);  
  2.  
  3. #gnotes-statusbar > image {  
  4.  padding-right : 0px !important;  
  5. }  
  6. #gnotes-statusbar-lbl {  
  7.  display  : none !important;  
  8. }  
  9. #gnotes-statusbar:hover > #gnotes-statusbar-lbl {  
  10.  display  : block !important;  
  11. }  
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #gnotes-statusbar > image { padding-right : 0px !important; } #gnotes-statusbar-lbl { display : none !important; } #gnotes-statusbar:hover > #gnotes-statusbar-lbl { display : block !important; }