summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorKevin Beaulieu <kevinmbeaulieu@gmail.com>2014-06-02 18:28:43 -0700
committerKevin Beaulieu <kevinmbeaulieu@gmail.com>2014-06-02 18:28:43 -0700
commitd4012716abbd10b7fddaab7e09dd25fbd2407cb1 (patch)
tree13e312a2e8a6da87fb00f95add6e8da01891d378 /data
parenta6cd5afdd864e92198e233651b1c65eff80f89d0 (diff)
Change insensitive text to translucent white in CSS
Distinguish between sensitive and insensitive text in CSS by changing insensitive text to translucent white.
Diffstat (limited to 'data')
-rw-r--r--data/css/endless-widgets.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/data/css/endless-widgets.css b/data/css/endless-widgets.css
index fe1a6fd..f9bbfbb 100644
--- a/data/css/endless-widgets.css
+++ b/data/css/endless-widgets.css
@@ -73,3 +73,9 @@ EosWindow {
color-stop(0.95, rgb(71, 71, 71)),
color-stop(0, rgb(67, 67, 67)));
}
+
+/* Insensitive Text */
+
+*:insensitive {
+ color: rgba(255, 255, 255, 0.5);
+}