Bon Echo のアイコンを濃くしてみた その3

くでんさんのご指摘を元に書き換えてみました。先ほどのもの だとカスタマイズ設定でアイコンのサイズを変えると不都合があったので今度はアイコンのサイズを変えてもいいように Toolbar.png と Toolbar-small.png の両方を作り変えました。

@namespace url([]http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul[]);
toolbar[iconsize="small"] #back-button,
toolbar[iconsize="small"] #forward-button,
toolbar[iconsize="small"] #reload-button,
toolbar[iconsize="small"] #stop-button,
toolbar[iconsize="small"] #home-button,
toolbar[iconsize="small"] #downloads-button,
toolbar[iconsize="small"] #history-button,
toolbar[iconsize="small"] #bookmarks-button,
toolbar[iconsize="small"] #print-button,
toolbar[iconsize="small"] #new-tab-button,
toolbar[iconsize="small"] #new-window-button,
toolbar[iconsize="small"] #cut-button,
toolbar[iconsize="small"] #copy-button,
toolbar[iconsize="small"] #paste-button
{
  list-style-image:url(data:image/png;base64,iVBORw0KGgoAAAA 中略 ) !important;
}

toolbar[iconsize="large"] #back-button,
toolbar[iconsize="large"] #forward-button,
toolbar[iconsize="large"] #reload-button,
toolbar[iconsize="large"] #stop-button,
toolbar[iconsize="large"] #home-button,
toolbar[iconsize="large"] #downloads-button,
toolbar[iconsize="large"] #history-button,
toolbar[iconsize="large"] #bookmarks-button,
toolbar[iconsize="large"] #print-button,
toolbar[iconsize="large"] #new-tab-button,
toolbar[iconsize="large"] #new-window-button,
toolbar[iconsize="large"] #cut-button,
toolbar[iconsize="large"] #copy-button,
toolbar[iconsize="large"] #paste-button
{
  list-style-image:url(data:image/png;base64,iVBORw0KGg 中略 ) !important;
}