[Pkg-mozext-commits] [tabmixplus] 58/73: Fix Webstorm inspection errors - css errors
David Prévot
taffit at moszumanska.debian.org
Mon May 9 02:30:56 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository tabmixplus.
commit 23496c9bd3ad7f750601200e7318a3a10cd4e145
Author: onemen <tabmix.onemen at gmail.com>
Date: Fri Apr 22 14:39:42 2016 +0300
Fix Webstorm inspection errors - css errors
---
chrome/content/overlay/browsr.css | 4 ++--
chrome/content/preferences/appearance.xul | 6 +++---
chrome/content/preferences/events.xul | 2 +-
chrome/content/preferences/session.xul | 2 +-
chrome/skin/app_version/39.0/linux/browser.css | 1 +
chrome/skin/app_version/all/linux/browser.css | 3 +++
chrome/skin/app_version/before39.0/linux/browser.css | 1 +
chrome/skin/preferences.css | 8 ++++----
chrome/skin/shortcuts.css | 2 +-
9 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/chrome/content/overlay/browsr.css b/chrome/content/overlay/browsr.css
index f89b275..150953d 100644
--- a/chrome/content/overlay/browsr.css
+++ b/chrome/content/overlay/browsr.css
@@ -7,7 +7,7 @@
**/
vbox[shortcutsLabels="true"] {
- -moz-binding: url(chrome://tabmixplus/content/preferences/shortcutsLabels.xml#shortcut-labels) !important;
+ -moz-binding: url("chrome://tabmixplus/content/preferences/shortcutsLabels.xml#shortcut-labels") !important;
}
/* we don't use .tabbrowser-tab > .tab-close-button here
@@ -262,7 +262,7 @@ so display: none !important; does not hide the button */
}
/* :::: multi-row :::: */
-.tabbrowser-arrowscrollbox[flowing=multibar][orient=vertical] > scrollbox > .scrollbox-innerbox {
+.tabbrowser-arrowscrollbox[flowing=multibar][orient=vertical] > .arrowscrollbox-scrollbox > .scrollbox-innerbox {
display: block !important;
}
diff --git a/chrome/content/preferences/appearance.xul b/chrome/content/preferences/appearance.xul
index f5486fe..ebe888d 100644
--- a/chrome/content/preferences/appearance.xul
+++ b/chrome/content/preferences/appearance.xul
@@ -119,7 +119,7 @@
</menulist>
</hbox>
<separator/>
- <description class="header" style="text-decoration: underline;color: #CC0000; width: &toolbar.description.width;"
+ <description class="header" style="text-decoration: underline;color: #CC0000; width: &toolbar.description.width;;"
hidden="true" id="treeStyleTab.msg">
&verticalTabbar.description1;
</description>
@@ -222,7 +222,7 @@
</hbox>
<hbox id="tabxDependant" class="indent" align="center">
<menulist id="tabCloseButton" preference="pref_tabCloseButton"
- style="width: &showTabX.popup.width;" sizetopopup="none" observes="obs_showTabX">
+ style="width: &showTabX.popup.width;;" sizetopopup="none" observes="obs_showTabX">
<menupopup>
<menuitem value="1" label="&showTabX.always;"/>
<menuitem value="5" label="&showTabX.alwaysExeption;" id="alltabsItem"/>
@@ -263,7 +263,7 @@
<tabpanel>
<groupbox flex="1">
<hbox align="start">
- <description class="header" style="width: &toolbar.description.width;">&toolbar.description;</description>
+ <description class="header" style="width: &toolbar.description.width;;">&toolbar.description;</description>
<button label="&toolbar.button.label;…" oncommand="gAppearancePane.tabmixCustomizeToolbar();"/>
</hbox>
<spacer flex="1"/>
diff --git a/chrome/content/preferences/events.xul b/chrome/content/preferences/events.xul
index ee6da86..d19433d 100644
--- a/chrome/content/preferences/events.xul
+++ b/chrome/content/preferences/events.xul
@@ -243,7 +243,7 @@
<checkbox_tmp id="inverselinks" label="&selectTab.label;" preference="pref_inverselinks"/>
</vbox>
<checkbox_tmp id="inverseother" label="&selectTabBH.label;, &openUrl.label;, &openSearch.label;"
- style="width: 19em" align="start"
+ style="width: 19em;" align="start"
preference="pref_inverseother" observes="obs_midcurrent"/>
</hbox>
</groupbox>
diff --git a/chrome/content/preferences/session.xul b/chrome/content/preferences/session.xul
index 281b9bb..a10170f 100644
--- a/chrome/content/preferences/session.xul
+++ b/chrome/content/preferences/session.xul
@@ -147,7 +147,7 @@
<!-- Tabmix Session manager - start/exit -->
<tabpanel>
<hbox>
- <groupbox style="min-width: 14.6em">
+ <groupbox style="min-width: 14.6em;">
<caption label="&sm.start;"/>
<radiogroup id="onStart" align="start" preference="pref_onStart">
<radio value="0" id="onStart.restoresession" label="&sm.start.restore;"/>
diff --git a/chrome/skin/app_version/39.0/linux/browser.css b/chrome/skin/app_version/39.0/linux/browser.css
index e40d969..8556a02 100644
--- a/chrome/skin/app_version/39.0/linux/browser.css
+++ b/chrome/skin/app_version/39.0/linux/browser.css
@@ -13,5 +13,6 @@
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_unloadedStyle~="bg"] > .tabbrowser-tab:not([visuallyselected="true"])[tabmix_tabState="unloaded"]:not(:hover) .tab-close-button,
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_unreadStyle~="bg"] > .tabbrowser-tab:not([visuallyselected="true"])[tabmix_tabState="unread"]:not(:hover) .tab-close-button,
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_otherStyle~="bg"] > .tabbrowser-tab:not([visuallyselected="true"]):not([tabmix_tabState]):not(:hover) > .tab-close-button {
+ /*noinspection CssInvalidFunction*/
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 16, 16, 0);
}
diff --git a/chrome/skin/app_version/all/linux/browser.css b/chrome/skin/app_version/all/linux/browser.css
index 2d22d1b..ca68331 100644
--- a/chrome/skin/app_version/all/linux/browser.css
+++ b/chrome/skin/app_version/all/linux/browser.css
@@ -16,14 +16,17 @@
/*** Tabstrip close button Firefox 31+ ***/
.tabs-closebutton.tabmix:not(:hover) {
+ /*noinspection CssInvalidFunction*/
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 64, 16, 48);
}
.tabs-closebutton.tabmix:not(:hover):-moz-lwtheme-brighttext {
+ /*noinspection CssInvalidFunction*/
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 80, 16, 64);
}
.tabs-closebutton.tabmix:not(:hover):-moz-lwtheme-darktext {
+ /*noinspection CssInvalidFunction*/
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 96, 16, 80);
}
diff --git a/chrome/skin/app_version/before39.0/linux/browser.css b/chrome/skin/app_version/before39.0/linux/browser.css
index 0b379f5..aaf82c2 100644
--- a/chrome/skin/app_version/before39.0/linux/browser.css
+++ b/chrome/skin/app_version/before39.0/linux/browser.css
@@ -13,5 +13,6 @@
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_unloadedStyle~="bg"] > .tabbrowser-tab:not([selected="true"])[tabmix_tabState="unloaded"]:not(:hover) .tab-close-button,
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_unreadStyle~="bg"] > .tabbrowser-tab:not([selected="true"])[tabmix_tabState="unread"]:not(:hover) .tab-close-button,
#TabsToolbar[brighttext] > #tabbrowser-tabs[tabmix_otherStyle~="bg"] > .tabbrowser-tab:not([selected="true"]):not([tabmix_tabState]):not(:hover) > .tab-close-button {
+ /*noinspection CssInvalidFunction*/
background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 16, 16, 0);
}
diff --git a/chrome/skin/preferences.css b/chrome/skin/preferences.css
index 343a798..30b010f 100644
--- a/chrome/skin/preferences.css
+++ b/chrome/skin/preferences.css
@@ -17,16 +17,16 @@ radio[pane=paneLinks] {
-moz-image-region: rect(0px 24px 24px 0);
}
radio[pane=paneEvents] {
- -moz-image-region: rect(0px 48px 24px 24px)
+ -moz-image-region: rect(0px 48px 24px 24px);
}
radio[pane=paneAppearance] {
- -moz-image-region: rect(0px 72px 24px 48px)
+ -moz-image-region: rect(0px 72px 24px 48px);
}
radio[pane=paneMouse] {
- -moz-image-region: rect(0px 96px 24px 72px)
+ -moz-image-region: rect(0px 96px 24px 72px);
}
radio[pane=paneMenu] {
- -moz-image-region: rect(0px 120px 24px 96px)
+ -moz-image-region: rect(0px 120px 24px 96px);
}
radio[pane=paneSession] {
list-style-image: url(sessionmanager.png);
diff --git a/chrome/skin/shortcuts.css b/chrome/skin/shortcuts.css
index 1589888..d504160 100644
--- a/chrome/skin/shortcuts.css
+++ b/chrome/skin/shortcuts.css
@@ -1,5 +1,5 @@
shortcut {
- -moz-binding: url(chrome://tabmixplus/content/preferences/shortcuts.xml#shortcut);
+ -moz-binding: url("chrome://tabmixplus/content/preferences/shortcuts.xml#shortcut");
-moz-box-orient: vertical;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/tabmixplus.git
More information about the Pkg-mozext-commits
mailing list