diff options
author | Andreas Hubel | 2020-06-07 21:41:40 +0200 |
---|---|---|
committer | Andreas Hubel | 2020-06-07 21:41:40 +0200 |
commit | a66c79184091efdac09ee31a3778c6fc850dbbda (patch) | |
tree | d0c8f474548d8699411b7e33ee3fde62029c13da /assets/netcut/lib/videojs-markers/videojs.markers.css | |
parent | d0a9d8b2b0d28dbef209c7cbcbfd56eaeac24d9b (diff) |
add netcut assets to repo
submodules are propably to complicated for deployment.... :-)
Diffstat (limited to 'assets/netcut/lib/videojs-markers/videojs.markers.css')
m--------- | assets/netcut | 0 | ||||
-rw-r--r-- | assets/netcut/lib/videojs-markers/videojs.markers.css | 59 |
2 files changed, 59 insertions, 0 deletions
diff --git a/assets/netcut b/assets/netcut deleted file mode 160000 -Subproject 3dcf07d83e57191c79654d97310cbeb494ea52b 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; +} |