better text shadow for icon items

This commit is contained in:
rlx 2011-09-18 02:30:01 +00:00
parent da1d9d650d
commit 170212a274
2 changed files with 8 additions and 2 deletions

View file

@ -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);

View file

@ -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);