diff options
author | thlo <smarttv640@gmail.com> | 2013-09-17 19:40:19 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-17 19:40:19 +0200 |
commit | 535e69e2c7d4248da0e7df452aa84321cefec7dd (patch) | |
tree | db95063145452a54e885b5213fed9eeb015ad7ff /smarttv-client/Javascript/Display.js | |
parent | c10639b7ed6cc898fad009fbcd2ef17b01d15d3b (diff) | |
download | vdr-plugin-smarttvweb-535e69e2c7d4248da0e7df452aa84321cefec7dd.tar.gz vdr-plugin-smarttvweb-535e69e2c7d4248da0e7df452aa84321cefec7dd.tar.bz2 |
* Fixed that selected text is black (instead of white)
* Corrections in the ImageViewer module
* Code-Cleanup
Diffstat (limited to 'smarttv-client/Javascript/Display.js')
-rwxr-xr-x | smarttv-client/Javascript/Display.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smarttv-client/Javascript/Display.js b/smarttv-client/Javascript/Display.js index b1f7d37..3d629f7 100755 --- a/smarttv-client/Javascript/Display.js +++ b/smarttv-client/Javascript/Display.js @@ -61,11 +61,11 @@ Display.init = function() var elm = $("#video"+i);
$(elm).css({"width" : "100%", "text-align": "left", "padding-top": "4px", "padding-bottom": "5px" });
$(elm).append($("<div>").css({ "display": "inline-block", "width":"20%",
- "overflow": "hidden", "text-overflow":"ellipsis", "height": "14px"}));
+ "overflow": "hidden", "text-overflow":"ellipsis", "height": "14px", "color": "inherit"}));
$(elm).append($("<div>").css({ "display": "inline-block", "width":"70%",
- "overflow": "hidden", "text-overflow":"ellipsis", "white-space": "nowrap", "height": "14px"}));
+ "overflow": "hidden", "text-overflow":"ellipsis", "white-space": "nowrap", "height": "14px", "color": "inherit"}));
$(elm).append($("<div>").css({ "display": "inline-block", "width":"5%",
- "overflow": "hidden", "text-overflow":"ellipsis", "white-space": "nowrap", "height": "14px"}));
+ "overflow": "hidden", "text-overflow":"ellipsis", "white-space": "nowrap", "height": "14px", "color": "inherit"}));
}
/*
|