Updated styling of input/textarea
authorAlexander Ebert <ebert@woltlab.com>
Sat, 24 Oct 2015 12:49:45 +0000 (14:49 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 24 Oct 2015 12:49:45 +0000 (14:49 +0200)
wcfsetup/install/files/style/layout/form.scss
wcfsetup/install/files/style/ui/textarea.scss [deleted file]
wcfsetup/setup/db/install.sql

index 9f0335e268f608ef8243b25ca5feaac997eea8be..007d6f09449acb5f4a7327ab04bc4edb0720188a 100644 (file)
@@ -30,6 +30,12 @@ textarea {
        }
 }
 
+textarea[readonly] {
+       background-color: $wcfInputDisabledBackground !important;
+       border-color: $wcfInputDisabledBorder !important;
+       color: $wcfInputDisabledText !important;
+}
+
 textarea {
        border-width: 1px;
        width: 100%;
diff --git a/wcfsetup/install/files/style/ui/textarea.scss b/wcfsetup/install/files/style/ui/textarea.scss
deleted file mode 100644 (file)
index 566e502..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-textarea {
-       background-color: $wcfInputBackground;
-       border: 1px solid $wcfInputBorder;
-       border-radius: 3px;
-       box-sizing: border-box;
-       color: $wcfInputText;
-       padding: 5px;
-       transition: background-color .2s linear, border-color .2s linear;
-       width: 100%;
-       
-       @extend .wcfFontDefault;
-       
-       &:hover {
-               background-color: $wcfInputBackgroundActive;
-               border-color: $wcfInputBorderActive;
-               color: $wcfInputTextActive;
-       }
-}
\ No newline at end of file
index f0856e45e532e881f1b5e95c3cbc177f5015bb53..487edf1556ea89a4344f781055d5b0e69ec1d746 100644 (file)
@@ -1875,7 +1875,7 @@ INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputBa
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputBackgroundActive', 'rgba(240, 248, 255, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputBorder', 'rgba(52, 152, 219, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputBorderActive', 'rgba(41, 128, 185, 1)');
-INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDisabledBackground', 'rgba(240, 248, 255, 1)');
+INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDisabledBackground', 'rgba(245, 250, 250, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDisabledBorder', 'rgba(204, 204, 204, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputDisabledText', 'rgba(153, 153, 153, 1)');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputText', 'rgba(54, 54, 54, 1)');