From: Marcel Werk Date: Sun, 30 Oct 2016 13:07:08 +0000 (+0100) Subject: Added missing input field for label color X-Git-Tag: 3.0.0_Beta_5~87 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=47e49962ea527034574535a189836bf38dde5fed;p=GitHub%2FWoltLab%2FWCF.git Added missing input field for label color --- diff --git a/wcfsetup/install/files/acp/templates/styleAdd.tpl b/wcfsetup/install/files/acp/templates/styleAdd.tpl index cb32ec9a60..a10e672242 100644 --- a/wcfsetup/install/files/acp/templates/styleAdd.tpl +++ b/wcfsetup/install/files/acp/templates/styleAdd.tpl @@ -562,11 +562,11 @@
Input
-
+
-
+
@@ -766,6 +766,7 @@ 'wcfTabularBoxHeadline': '#spTable { border-color: VALUE; } __COMBO_RULE__ #spTable th, #spTable th a { color: VALUE; }', 'wcfTabularBoxBackgroundActive': '#spTable tr:hover > td { background-color: VALUE; }', 'wcfTabularBoxHeadlineActive': '#spTable th a:hover { color: VALUE; }', + 'wcfInputLabel': '.spInputLabel { color: VALUE; }', 'wcfInputBackground': '#spInput { background-color: VALUE; }', 'wcfInputBorder': '#spInput { border-color: VALUE; }', 'wcfInputText': '#spInput { color: VALUE; }', diff --git a/wcfsetup/install/files/lib/acp/form/StyleAddForm.class.php b/wcfsetup/install/files/lib/acp/form/StyleAddForm.class.php index 3c5e75c81c..969cc9a4f3 100644 --- a/wcfsetup/install/files/lib/acp/form/StyleAddForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/StyleAddForm.class.php @@ -449,7 +449,7 @@ class StyleAddForm extends AbstractForm { 'wcfContentDimmed' => ['text', 'link', 'linkActive'], 'wcfContentHeadline' => ['border', 'text', 'link', 'linkActive'], 'wcfTabularBox' => ['borderInner', 'headline', 'backgroundActive', 'headlineActive'], - 'wcfInput' => ['background', 'border', 'text', 'placeholder', 'backgroundActive', 'borderActive', 'textActive'], + 'wcfInput' => ['label', 'background', 'border', 'text', 'placeholder', 'backgroundActive', 'borderActive', 'textActive'], 'wcfInputDisabled' => ['background', 'border', 'text'], 'wcfButton' => ['background', 'text', 'backgroundActive', 'textActive'], 'wcfButtonPrimary' => ['background', 'text', 'backgroundActive', 'textActive'],