From 6f165eab154c059d62479cd83842e538b7d3cec7 Mon Sep 17 00:00:00 2001 From: MrTimscampi Date: Mon, 30 Dec 2019 14:44:22 +0100 Subject: [PATCH] Add some other small fixes --- src/components/themes/wmc/theme.css | 2 +- src/css/videoosd.css | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/themes/wmc/theme.css b/src/components/themes/wmc/theme.css index ae2e40708..464056f1c 100644 --- a/src/components/themes/wmc/theme.css +++ b/src/components/themes/wmc/theme.css @@ -86,7 +86,7 @@ html { background: #00a4dc; color: #fff } -border-radius: 2px; + .button-submit:focus { background: #0cb0e8; color: #fff diff --git a/src/css/videoosd.css b/src/css/videoosd.css index fd716e88a..9be46da4e 100644 --- a/src/css/videoosd.css +++ b/src/css/videoosd.css @@ -1,5 +1,6 @@ .chapterThumbTextContainer, .videoOsdBottom { + user-select: none; } .osdPoster img, @@ -173,7 +174,7 @@ @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } } -@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } } +@keyframes spin { 100% { transform:rotate(360deg); } } .osdMediaStatus .animate { animation:spin 4s linear infinite; }