Added placeholder color
authorMarcel Werk <burntime@woltlab.com>
Thu, 7 Jan 2016 19:30:03 +0000 (20:30 +0100)
committerMarcel Werk <burntime@woltlab.com>
Thu, 7 Jan 2016 19:30:03 +0000 (20:30 +0100)
wcfsetup/install/files/style/layout/form.scss
wcfsetup/setup/db/install.sql

index 195e417695ef620d406b293cd13ccfd45ac8de3a..755a1e9c7ba4a429ee82d346141ba3a67da3456d 100644 (file)
@@ -33,6 +33,26 @@ textarea {
        }
 }
 
+/* set placeholder color */
+input[type="date"],
+input[type="datetime"],
+input[type="email"],
+input[type="number"],
+input[type="password"],
+input[type="search"],
+input[type="text"],
+input[type="url"] {
+       &::-webkit-input-placeholder { /* WebKit browsers */
+               color: $wcfInputPlaceholderText;
+       }
+       &::-moz-placeholder { /* Mozilla Firefox 19+ */
+               color: $wcfInputPlaceholderText;
+       }
+       &:-ms-input-placeholder { /* Internet Explorer 10+ */
+               color: $wcfInputPlaceholderText;
+       }
+}
+
 textarea[readonly] {
        background-color: $wcfInputDisabledBackground !important;
        border-color: $wcfInputDisabledBorder !important;
index 4ecf5da30c7f645c9ff72db91ebe56a054c7a893..024e7ac4e07f379833be373606fc391b1c5b6b23 100644 (file)
@@ -2046,6 +2046,7 @@ INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDi
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDisabledText', 'rgba(125, 130, 100, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputText', 'rgba(44, 62, 80, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputTextActive', 'rgba(44, 62, 80, 1)');
+INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputPlaceholderText', 'rgba(169, 169, 169, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfLayoutFixedWidth', '1200px');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfLayoutMaxWidth', '1400px');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfLayoutMinWidth', '980px');