From 1572e152a0af1d54e8ca1dd16e1dfafa4d945d7e Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 10 Feb 2013 18:01:17 +0530 Subject: [PATCH] fix SelectableElement CSS --- source/Ox.UI/css/theme.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/css/theme.css b/source/Ox.UI/css/theme.css index 780e4d83..90908815 100644 --- a/source/Ox.UI/css/theme.css +++ b/source/Ox.UI/css/theme.css @@ -1101,17 +1101,21 @@ Miscellaneous background-image: -webkit-linear-gradient(top, $listItemGradient); } .$themeClass .OxSelectableElement.OxSelected { - color: $listItemSelectedColor; background-image: -moz-linear-gradient(top, $listItemSelectedGradient); background-image: -o-linear-gradient(top, $listItemSelectedGradient); background-image: -webkit-linear-gradient(top, $listItemSelectedGradient); } +.$themeClass .OxSelectableElement.OxSelected > div { + color: $listItemSelectedColor; +} .$themeClass .OxSelectableElement.OxSelected.OxFocus { - color: $listItemFocusSelectedColor; background-image: -moz-linear-gradient(top, $listItemFocusSelectedGradient); background-image: -o-linear-gradient(top, $listItemFocusSelectedGradient); background-image: -webkit-linear-gradient(top, $listItemFocusSelectedGradient); } +.$themeClass .OxSelectableElement.OxSelected.OxFocus > div { + color: $listItemFocusSelectedColor; +} .$themeClass .OxScreen { background-color: $screenBackground;