diff options
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"}));
}
/*
|