diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-13 16:04:32 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-13 16:04:32 -0500 |
commit | 6fcd00e8ca2d56bfa5583d70ba2e8cdfee4801ad (patch) | |
tree | 46a3a2fd8cd2d44a8b97783114c6f944a637a7e9 /common/skin | |
parent | 203730ae6252d37dfe6fc6eb80af8775e861daf3 (diff) | |
download | pentadactyl-6fcd00e8ca2d56bfa5583d70ba2e8cdfee4801ad.tar.gz |
Ditch the bloody chrome registry.
Diffstat (limited to 'common/skin')
-rw-r--r-- | common/skin/dactyl.css | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/common/skin/dactyl.css b/common/skin/dactyl.css index a914a7ad..94296b70 100644 --- a/common/skin/dactyl.css +++ b/common/skin/dactyl.css @@ -4,11 +4,11 @@ /* Applied to all content */ [dactyl|activeframe] { - -moz-binding: url(chrome://dactyl/content/bindings.xml#frame) !important; + -moz-binding: url(resource://dactyl-content/bindings.xml#frame) !important; } [dactyl|highlight~=hints] { - -moz-binding: url(chrome://dactyl/content/bindings.xml#hints) !important; + -moz-binding: url(resource://dactyl-content/bindings.xml#hints) !important; } [dactyl|highlight~=HintImage], @@ -21,14 +21,14 @@ url-prefix(dactyl:) { [dactyl|highlight~=HelpDefault] { - -moz-binding: url(chrome://dactyl/content/bindings.xml#compitem-td); + -moz-binding: url(resource://dactyl-content/bindings.xml#compitem-td); } } /* Applied only to completion buffer and MOW */ @-moz-document - url-prefix(chrome://dactyl/) { + url-prefix(resource://dactyl) { *:-moz-loading, *:-moz-broken { display: none !important; } @@ -45,7 +45,7 @@ } [dactyl|highlight~=CompItem] > *, [dactyl|highlight~=CompTitle] > * { - -moz-binding: url(chrome://dactyl/content/bindings.xml#compitem-td); + -moz-binding: url(resource://dactyl-content/bindings.xml#compitem-td); display: table-cell; vertical-align: middle; } @@ -75,7 +75,7 @@ } @-moz-document - url-prefix(chrome://dactyl/) { + url-prefix(resource://dactyl) { *:-moz-any-link:hover { text-decoration: underline; @@ -84,7 +84,8 @@ /* Applied to completion buffer, MOW, browser window */ @-moz-document - url-prefix(chrome://) { + url-prefix(chrome://), + url-prefix(resource://) { #TabsToolbar .tab-icon-image, .tab-throbber { -moz-box-ordinal-group: 10; } [dactyl|highlight~=tab-number] { -moz-box-ordinal-group: 20; } |