diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-15 17:56:41 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-15 17:56:41 -0500 |
commit | 83778a8e16fc42f12b732b940643199bf78f7601 (patch) | |
tree | fa40ba6e2251ad8fdbd22d9e45a50865f11a7922 /common/skin | |
parent | 45636c6f2e85c073c52392327541dead08b9f704 (diff) | |
download | pentadactyl-83778a8e16fc42f12b732b940643199bf78f7601.tar.gz |
Fix some moz-anno: security errors in the Error Console.
Diffstat (limited to 'common/skin')
-rw-r--r-- | common/skin/dactyl.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/common/skin/dactyl.css b/common/skin/dactyl.css index 94296b70..6e611313 100644 --- a/common/skin/dactyl.css +++ b/common/skin/dactyl.css @@ -28,6 +28,7 @@ /* Applied only to completion buffer and MOW */ @-moz-document + url-prefix(dactyl:), url-prefix(resource://dactyl) { *:-moz-loading, *:-moz-broken { display: none !important; } @@ -75,6 +76,7 @@ } @-moz-document + url-prefix(dactyl:), url-prefix(resource://dactyl) { *:-moz-any-link:hover { @@ -84,8 +86,9 @@ /* Applied to completion buffer, MOW, browser window */ @-moz-document - url-prefix(chrome://), - url-prefix(resource://) { + url-prefix(chrome:), + url-prefix(dactyl:), + url-prefix(resource:) { #TabsToolbar .tab-icon-image, .tab-throbber { -moz-box-ordinal-group: 10; } [dactyl|highlight~=tab-number] { -moz-box-ordinal-group: 20; } |