css
8 years ago
js
6 years ago
class.jetpack-videopress.php
6 years ago
class.videopress-ajax.php
6 years ago
class.videopress-cli.php
7 years ago
class.videopress-edit-attachment.php
6 years ago
class.videopress-gutenberg.php
6 years ago
class.videopress-options.php
7 years ago
class.videopress-player.php
6 years ago
class.videopress-scheduler.php
7 years ago
class.videopress-video.php
6 years ago
class.videopress-xmlrpc.php
7 years ago
editor-media-view.php
6 years ago
shortcode.php
6 years ago
utility-functions.php
6 years ago
videopress-admin-rtl.css
7 years ago
videopress-admin-rtl.min.css
7 years ago
videopress-admin.css
9 years ago
videopress-admin.min.css
7 years ago
videopress-admin.css
106 lines
| 1 | /** |
| 2 | * VideoPress admin media styles |
| 3 | */ |
| 4 | .videopress-modal-backdrop { |
| 5 | background: #000; |
| 6 | opacity: 0.7; |
| 7 | position: absolute; |
| 8 | top: 0; |
| 9 | width: 100%; |
| 10 | height: 100%; |
| 11 | overflow: hidden; |
| 12 | z-index: 100; |
| 13 | } |
| 14 | |
| 15 | .videopress-modal { |
| 16 | padding: 10px 20px; |
| 17 | background: white; |
| 18 | position: absolute; |
| 19 | top: 0; |
| 20 | width: 440px; |
| 21 | overflow: hidden; |
| 22 | left: 50%; |
| 23 | margin-left: -220px; |
| 24 | z-index: 101; |
| 25 | box-shadow: 2px 2px 5px 2px rgba( 0, 0, 0, 0.5 ); |
| 26 | -webkit-border-bottom-right-radius: 2px; |
| 27 | -webkit-border-bottom-left-radius: 2px; |
| 28 | border-bottom-right-radius: 2px; |
| 29 | border-bottom-left-radius: 2px; |
| 30 | } |
| 31 | |
| 32 | .videopress-modal .submit { |
| 33 | text-align: right; |
| 34 | padding: 10px 0 5px; |
| 35 | } |
| 36 | |
| 37 | .videopress-preview { |
| 38 | display: block; |
| 39 | float: right; |
| 40 | width: 65%; |
| 41 | margin-top: 18px; |
| 42 | background: black; |
| 43 | min-height: 97px; |
| 44 | text-decoration: none; |
| 45 | } |
| 46 | |
| 47 | .vp-preview span.videopress-preview-unavailable { |
| 48 | width: 65%; |
| 49 | float: right; |
| 50 | text-align: left; |
| 51 | margin-right: 0; |
| 52 | } |
| 53 | |
| 54 | .videopress-preview img { |
| 55 | float: left; |
| 56 | width: 100%; |
| 57 | } |
| 58 | |
| 59 | .videopress-preview span { |
| 60 | display: block; |
| 61 | padding-top: 40px; |
| 62 | color: white !important; |
| 63 | text-align: center; |
| 64 | } |
| 65 | |
| 66 | .vp-setting .help { |
| 67 | margin: 0 0 4px 35%; |
| 68 | } |
| 69 | |
| 70 | .media-sidebar .vp-setting input[type="checkbox"] { |
| 71 | float: left; |
| 72 | margin-top: 10px; |
| 73 | } |
| 74 | |
| 75 | .vp-setting label { |
| 76 | float: left; |
| 77 | margin: 8px 8px 0 5px; |
| 78 | max-width: 135px; |
| 79 | } |
| 80 | |
| 81 | .vp-setting input[type='radio'] { |
| 82 | float: left; |
| 83 | margin-top: 9px; |
| 84 | width: auto; |
| 85 | } |
| 86 | |
| 87 | .vp-preview span { |
| 88 | margin-top: 18px; |
| 89 | } |
| 90 | |
| 91 | .uploader-videopress { |
| 92 | margin: 16px; |
| 93 | } |
| 94 | |
| 95 | .uploader-videopress .videopress-errors div { |
| 96 | margin: 16px 0; |
| 97 | } |
| 98 | |
| 99 | .compat-field-video-rating input[type="radio"], |
| 100 | .compat-field-display_embed input[type="checkbox"]{ |
| 101 | margin-top: -1px !important; |
| 102 | margin-right: 5px !important; |
| 103 | margin-left: 5px !important; |
| 104 | vertical-align: middle; |
| 105 | } |
| 106 |