summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorDarby <darbsies@gmail.com>2015-06-16 14:44:13 -0700
committerDarby <darbsies@gmail.com>2015-06-16 14:44:13 -0700
commitc39c823421e9dfd3add4cb49a82fa32831797aa0 (patch)
tree227b0b23dbd5770312af9777986da4d752bfca49 /app/assets
parent5fa0248966316d672429eabc46407e1429ef2283 (diff)
downloadgitlab-ce-c39c823421e9dfd3add4cb49a82fa32831797aa0.tar.gz
Changed the placeholder text and modified the css class to make it visibleplaceholder_text
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/generic/zen.scss27
1 files changed, 4 insertions, 23 deletions
diff --git a/app/assets/stylesheets/generic/zen.scss b/app/assets/stylesheets/generic/zen.scss
index 7ab01187a02..7e86a0fe4b9 100644
--- a/app/assets/stylesheets/generic/zen.scss
+++ b/app/assets/stylesheets/generic/zen.scss
@@ -63,43 +63,24 @@
}
}
- // Make the placeholder text in the standard textarea the same color as the
- // background, effectively hiding it
-
- .zen-backdrop textarea::-webkit-input-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea:-moz-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea::-moz-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea:-ms-input-placeholder {
- color: white;
- }
-
// Make the color of the placeholder text in the Zenned-out textarea darker,
// so it becomes visible
input:checked ~ .zen-backdrop textarea::-webkit-input-placeholder {
- color: #999;
+ color: #A8A8A8;
}
input:checked ~ .zen-backdrop textarea:-moz-placeholder {
- color: #999;
+ color: #A8A8A8;
opacity: 1;
}
input:checked ~ .zen-backdrop textarea::-moz-placeholder {
- color: #999;
+ color: #A8A8A8;
opacity: 1;
}
input:checked ~ .zen-backdrop textarea:-ms-input-placeholder {
- color: #999;
+ color: #A8A8A8;
}
}