diff --git a/src/components/themes/wmc/theme.css b/src/components/themes/wmc/theme.css index ae2e40708e..464056f1ca 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 fd716e88ab..9be46da4ea 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; }