css
1 month ago
js
1 month ago
class-videopress-attachment-metadata.php
1 month ago
class.jetpack-videopress.php
7 months ago
class.videopress-cli.php
1 month ago
class.videopress-edit-attachment.php
1 month ago
class.videopress-gutenberg.php
7 months ago
class.videopress-options.php
7 months ago
class.videopress-player.php
3 days ago
class.videopress-scheduler.php
7 months ago
class.videopress-video.php
7 months ago
class.videopress-xmlrpc.php
7 months ago
editor-media-view.php
4 months ago
shortcode.php
1 month ago
videopress-admin-rtl.css
7 months ago
videopress-admin-rtl.min.css
7 months ago
videopress-admin.css
7 months ago
videopress-admin.min.css
7 months ago
videopress-admin.css
105 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: #fff; |
| 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 | border-bottom-right-radius: 2px; |
| 27 | border-bottom-left-radius: 2px; |
| 28 | } |
| 29 | |
| 30 | .videopress-modal .submit { |
| 31 | text-align: right; |
| 32 | padding: 10px 0 5px; |
| 33 | } |
| 34 | |
| 35 | .videopress-preview { |
| 36 | display: block; |
| 37 | float: right; |
| 38 | width: 65%; |
| 39 | margin-top: 18px; |
| 40 | background: #000; |
| 41 | min-height: 97px; |
| 42 | text-decoration: none; |
| 43 | } |
| 44 | |
| 45 | .vp-preview span.videopress-preview-unavailable { |
| 46 | width: 65%; |
| 47 | float: right; |
| 48 | text-align: left; |
| 49 | margin-right: 0; |
| 50 | } |
| 51 | |
| 52 | .videopress-preview img { |
| 53 | float: left; |
| 54 | width: 100%; |
| 55 | } |
| 56 | |
| 57 | .videopress-preview span { |
| 58 | display: block; |
| 59 | padding-top: 40px; |
| 60 | color: #fff !important; |
| 61 | text-align: center; |
| 62 | } |
| 63 | |
| 64 | .vp-setting .help { |
| 65 | margin: 0 0 4px 35%; |
| 66 | } |
| 67 | |
| 68 | .media-sidebar .vp-setting input[type="checkbox"] { |
| 69 | float: left; |
| 70 | margin-top: 10px; |
| 71 | } |
| 72 | |
| 73 | .vp-setting label { |
| 74 | float: left; |
| 75 | margin: 8px 8px 0 5px; |
| 76 | max-width: 135px; |
| 77 | } |
| 78 | |
| 79 | .vp-setting input[type="radio"] { |
| 80 | float: left; |
| 81 | margin-top: 9px; |
| 82 | width: auto; |
| 83 | } |
| 84 | |
| 85 | .vp-preview span { |
| 86 | margin-top: 18px; |
| 87 | } |
| 88 | |
| 89 | .uploader-videopress { |
| 90 | margin: 16px; |
| 91 | } |
| 92 | |
| 93 | .uploader-videopress .videopress-errors div { |
| 94 | margin: 16px 0; |
| 95 | } |
| 96 | |
| 97 | .compat-field-video-rating input[type="radio"], |
| 98 | .compat-field-display_embed input[type="checkbox"], |
| 99 | .compat-field-allow_download input[type="checkbox"] { |
| 100 | margin-top: -1px !important; |
| 101 | margin-right: 5px !important; |
| 102 | margin-left: 5px !important; |
| 103 | vertical-align: middle; |
| 104 | } |
| 105 |