From 365238ba456bbc1444918f80ed522b044fa95ea3 Mon Sep 17 00:00:00 2001 From: Gregor Kralik Date: Wed, 27 Jan 2016 13:42:55 +0100 Subject: [PATCH] disable the text-transform CSS property for the resolution menu the default skin has text-transform: lowercase. so if one uses "HD" and "SD" as resolution labels, it will render as "hd" and "sd" by default. override the property so no transformation occurs and the labels show as the user wants them to show. --- lib/videojs-resolution-switcher.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/videojs-resolution-switcher.css b/lib/videojs-resolution-switcher.css index a2224ce..d1a4232 100644 --- a/lib/videojs-resolution-switcher.css +++ b/lib/videojs-resolution-switcher.css @@ -28,3 +28,7 @@ .vjs-resolution-button .vjs-menu { left: 0; } + +.vjs-resolution-button .vjs-menu li { + text-transform: none; +}