From a66c79184091efdac09ee31a3778c6fc850dbbda Mon Sep 17 00:00:00 2001 From: Andreas Hubel Date: Sun, 7 Jun 2020 21:41:40 +0200 Subject: add netcut assets to repo submodules are propably to complicated for deployment.... :-) --- assets/netcut | 1 - .../netcut/lib/videojs-markers/videojs.markers.css | 59 ++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) delete mode 160000 assets/netcut create mode 100644 assets/netcut/lib/videojs-markers/videojs.markers.css (limited to 'assets/netcut/lib/videojs-markers/videojs.markers.css') diff --git a/assets/netcut b/assets/netcut deleted file mode 160000 index 3dcf07d..0000000 --- a/assets/netcut +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3dcf07d83e57191c79654d97310cbeb494ea52bf diff --git a/assets/netcut/lib/videojs-markers/videojs.markers.css b/assets/netcut/lib/videojs-markers/videojs.markers.css new file mode 100644 index 0000000..7655a64 --- /dev/null +++ b/assets/netcut/lib/videojs-markers/videojs.markers.css @@ -0,0 +1,59 @@ +.vjs-marker { + position: absolute; + left: 0; + bottom: 0em; + opacity: 1; + height: 100%; + transition: opacity .2s ease; + -webkit-transition: opacity .2s ease; + -moz-transition: opacity .2s ease; + z-index: 100; +} +.vjs-marker:hover { + cursor: pointer; + -webkit-transform: scale(1.3, 1.3); + -moz-transform: scale(1.3, 1.3); + -o-transform: scale(1.3, 1.3); + -ms-transform: scale(1.3, 1.3); + transform: scale(1.3, 1.3); +} +.vjs-tip { + visibility: hidden; + display: block; + opacity: 0.8; + padding: 5px; + font-size: 10px; + position: absolute; + bottom: 14px; + z-index: 100000; +} +.vjs-tip .vjs-tip-arrow { + background: url(data:image/gif;base64,R0lGODlhCQAJAIABAAAAAAAAACH5BAEAAAEALAAAAAAJAAkAAAIRjAOnwIrcDJxvwkplPtchVQAAOw==) no-repeat top left; + bottom: 0; + left: 50%; + margin-left: -4px; + background-position: bottom left; + position: absolute; + width: 9px; + height: 5px; +} +.vjs-tip .vjs-tip-inner { + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + padding: 5px 8px 4px 8px; + background-color: black; + color: white; + max-width: 200px; + text-align: center; +} +.vjs-break-overlay { + visibility: hidden; + position: absolute; + z-index: 100000; + top: 0; +} +.vjs-break-overlay .vjs-break-overlay-text { + padding: 9px; + text-align: center; +} -- cgit v1.2.3