From d1862114533c17daebf285b77f7c165d57f9b847 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Tue, 8 Nov 2011 11:25:44 +0000 Subject: [PATCH] remove on mouseover/select opacity change in icon lists (would cause video items to briefly go black) --- source/Ox.UI/css/Ox.UI.css | 4 ++-- source/Ox.UI/js/Video/Ox.VideoPlayer.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox.UI/css/Ox.UI.css b/source/Ox.UI/css/Ox.UI.css index fd153219..06e4c7b4 100644 --- a/source/Ox.UI/css/Ox.UI.css +++ b/source/Ox.UI/css/Ox.UI.css @@ -1048,11 +1048,11 @@ Lists .OxIconList .OxItem { float: left; margin: 2px; - opacity: 0.9; + //opacity: 0.9; } .OxIconList .OxItem.OxHover, .OxIconList .OxItem.OxSelected { - opacity: 1; + //opacity: 1; } .OxIconList .OxItem > div, diff --git a/source/Ox.UI/js/Video/Ox.VideoPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPlayer.js index 921b528d..961733a5 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPlayer.js @@ -1700,10 +1700,10 @@ Ox.VideoPlayer = function(options, self) { } function seeked() { - Ox.Log('Video', 'XX seeked') + Ox.Log('Video', 'seeked') clearTimeout(self.seekTimeout); self.seekTimeout = 0; - Ox.Log('Video', 'XX hide') + Ox.Log('Video', 'hide loading icon') hideLoadingIcon(); self.$playIcon && self.$playIcon.show(); }