From 170212a2740daedc08e539dc18d2c13507d3701f Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sun, 18 Sep 2011 02:30:01 +0000 Subject: [PATCH] better text shadow for icon items --- source/Ox.UI/themes/classic/css/classic.css | 5 ++++- source/Ox.UI/themes/modern/css/modern.css | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/themes/classic/css/classic.css b/source/Ox.UI/themes/classic/css/classic.css index 259388e4..3935fb30 100644 --- a/source/Ox.UI/themes/classic/css/classic.css +++ b/source/Ox.UI/themes/classic/css/classic.css @@ -333,7 +333,10 @@ Lists -webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1); } .OxThemeClassic .OxIconList .OxItem > .OxText > div { - text-shadow: rgb(255, 255, 255) 1px 1px 0; + text-shadow: rgb(255, 255, 255) -1px -1px 0, + rgb(255, 255, 255) -1px 1px 0, + rgb(255, 255, 255) 1px -1px 0, + rgb(255, 255, 255) 1px 1px 0; } .OxThemeClassic .OxIconList .OxItem.OxSelected > .OxText > div { border-color: rgb(160, 160, 160); diff --git a/source/Ox.UI/themes/modern/css/modern.css b/source/Ox.UI/themes/modern/css/modern.css index e395523f..973f43dc 100644 --- a/source/Ox.UI/themes/modern/css/modern.css +++ b/source/Ox.UI/themes/modern/css/modern.css @@ -317,7 +317,10 @@ Lists -webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1); } .OxThemeModern .OxIconList .OxItem > .OxText > div { - text-shadow: rgb(0, 0, 0) 1px 1px 0; + text-shadow: rgb(0, 0, 0) -1px -1px 0, + rgb(0, 0, 0) -1px 1px 0, + rgb(0, 0, 0) 1px -1px 0, + rgb(0, 0, 0) 1px 1px 0; } .OxThemeModern .OxIconList .OxItem.OxSelected > .OxText > div { border-color: rgb(96, 96, 96);