Initial commit
This commit is contained in:
commit
57a2089dd9
1541 changed files with 595392 additions and 0 deletions
168
wp-includes/blocks/video/editor-rtl.css
Normal file
168
wp-includes/blocks/video/editor-rtl.css
Normal file
|
@ -0,0 +1,168 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* SCSS Variables.
|
||||
*
|
||||
* Please use variables from this sheet to ensure consistency across the UI.
|
||||
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
||||
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
||||
*/
|
||||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Fonts & basic variables.
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Dimensions.
|
||||
*/
|
||||
/**
|
||||
* Shadows.
|
||||
*/
|
||||
/**
|
||||
* Editor widths.
|
||||
*/
|
||||
/**
|
||||
* Block & Editor UI.
|
||||
*/
|
||||
/**
|
||||
* Block paddings.
|
||||
*/
|
||||
/**
|
||||
* React Native specific.
|
||||
* These variables do not appear to be used anywhere else.
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Focus styles.
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
/**
|
||||
* Allows users to opt-out of animations via OS-level preferences.
|
||||
*/
|
||||
/**
|
||||
* Reset default styles for JavaScript UI based pages.
|
||||
* This is a WP-admin agnostic reset
|
||||
*/
|
||||
/**
|
||||
* Reset the WP Admin page styles for Gutenberg-like pages.
|
||||
*/
|
||||
.wp-block[data-align=center] > .wp-block-video {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wp-block-video {
|
||||
position: relative;
|
||||
}
|
||||
.wp-block-video.is-transient video {
|
||||
opacity: 0.3;
|
||||
}
|
||||
.wp-block-video .components-spinner {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 50%;
|
||||
margin-top: -9px;
|
||||
margin-right: -9px;
|
||||
}
|
||||
|
||||
.editor-video-poster-control .components-base-control__label {
|
||||
display: block;
|
||||
}
|
||||
.editor-video-poster-control .components-button {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor {
|
||||
z-index: 159990;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor > .components-popover__content {
|
||||
width: 360px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__track-list-track {
|
||||
display: flex;
|
||||
place-content: space-between;
|
||||
align-items: baseline;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language {
|
||||
display: flex;
|
||||
margin-top: 12px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control {
|
||||
width: 50%;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control:first-child {
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-kind-select {
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-buttons-container {
|
||||
display: flex;
|
||||
place-content: space-between;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-edit-track-label {
|
||||
margin-top: 4px;
|
||||
margin-bottom: 12px;
|
||||
color: #757575;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor > .components-popover__content > div {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__track-list .components-menu-group__label,
|
||||
.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor,
|
||||
.block-library-video-tracks-editor__track-list,
|
||||
.block-library-video-tracks-editor__add-tracks-container {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input {
|
||||
margin-right: 0;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label {
|
||||
margin-bottom: 4px;
|
||||
}
|
1
wp-includes/blocks/video/editor-rtl.min.css
vendored
Normal file
1
wp-includes/blocks/video/editor-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block[data-align=center]>.wp-block-video{text-align:center}.wp-block-video{position:relative}.wp-block-video.is-transient video{opacity:.3}.wp-block-video .components-spinner{position:absolute;top:50%;right:50%;margin-top:-9px;margin-right:-9px}.editor-video-poster-control .components-base-control__label{display:block}.editor-video-poster-control .components-button{margin-left:8px}.block-library-video-tracks-editor{z-index:159990}.block-library-video-tracks-editor>.components-popover__content{width:360px}.block-library-video-tracks-editor__track-list-track{display:flex;place-content:space-between;align-items:baseline;padding-right:12px}.block-library-video-tracks-editor__single-track-editor-label-language{display:flex;margin-top:12px}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control{width:50%}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control:first-child{margin-left:16px}.block-library-video-tracks-editor__single-track-editor-kind-select{max-width:240px}.block-library-video-tracks-editor__single-track-editor-buttons-container{display:flex;place-content:space-between;margin-top:32px}.block-library-video-tracks-editor__single-track-editor-edit-track-label{margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;display:block}.block-library-video-tracks-editor>.components-popover__content>div,.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label,.block-library-video-tracks-editor__track-list .components-menu-group__label{padding:0}.block-library-video-tracks-editor__add-tracks-container,.block-library-video-tracks-editor__single-track-editor,.block-library-video-tracks-editor__track-list{padding:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label{margin-bottom:4px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field{margin-bottom:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input{margin-right:0}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label{margin-bottom:4px}
|
168
wp-includes/blocks/video/editor.css
Normal file
168
wp-includes/blocks/video/editor.css
Normal file
|
@ -0,0 +1,168 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* SCSS Variables.
|
||||
*
|
||||
* Please use variables from this sheet to ensure consistency across the UI.
|
||||
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
||||
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
||||
*/
|
||||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Fonts & basic variables.
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Dimensions.
|
||||
*/
|
||||
/**
|
||||
* Shadows.
|
||||
*/
|
||||
/**
|
||||
* Editor widths.
|
||||
*/
|
||||
/**
|
||||
* Block & Editor UI.
|
||||
*/
|
||||
/**
|
||||
* Block paddings.
|
||||
*/
|
||||
/**
|
||||
* React Native specific.
|
||||
* These variables do not appear to be used anywhere else.
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Focus styles.
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
/**
|
||||
* Allows users to opt-out of animations via OS-level preferences.
|
||||
*/
|
||||
/**
|
||||
* Reset default styles for JavaScript UI based pages.
|
||||
* This is a WP-admin agnostic reset
|
||||
*/
|
||||
/**
|
||||
* Reset the WP Admin page styles for Gutenberg-like pages.
|
||||
*/
|
||||
.wp-block[data-align=center] > .wp-block-video {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wp-block-video {
|
||||
position: relative;
|
||||
}
|
||||
.wp-block-video.is-transient video {
|
||||
opacity: 0.3;
|
||||
}
|
||||
.wp-block-video .components-spinner {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-top: -9px;
|
||||
margin-left: -9px;
|
||||
}
|
||||
|
||||
.editor-video-poster-control .components-base-control__label {
|
||||
display: block;
|
||||
}
|
||||
.editor-video-poster-control .components-button {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor {
|
||||
z-index: 159990;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor > .components-popover__content {
|
||||
width: 360px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__track-list-track {
|
||||
display: flex;
|
||||
place-content: space-between;
|
||||
align-items: baseline;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language {
|
||||
display: flex;
|
||||
margin-top: 12px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control {
|
||||
width: 50%;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor-label-language > .components-base-control:first-child {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-kind-select {
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-buttons-container {
|
||||
display: flex;
|
||||
place-content: space-between;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor-edit-track-label {
|
||||
margin-top: 4px;
|
||||
margin-bottom: 12px;
|
||||
color: #757575;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor > .components-popover__content > div {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__track-list .components-menu-group__label,
|
||||
.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor,
|
||||
.block-library-video-tracks-editor__track-list,
|
||||
.block-library-video-tracks-editor__add-tracks-container {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input {
|
||||
margin-left: 0;
|
||||
}
|
||||
.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label {
|
||||
margin-bottom: 4px;
|
||||
}
|
1
wp-includes/blocks/video/editor.min.css
vendored
Normal file
1
wp-includes/blocks/video/editor.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block[data-align=center]>.wp-block-video{text-align:center}.wp-block-video{position:relative}.wp-block-video.is-transient video{opacity:.3}.wp-block-video .components-spinner{position:absolute;top:50%;left:50%;margin-top:-9px;margin-left:-9px}.editor-video-poster-control .components-base-control__label{display:block}.editor-video-poster-control .components-button{margin-right:8px}.block-library-video-tracks-editor{z-index:159990}.block-library-video-tracks-editor>.components-popover__content{width:360px}.block-library-video-tracks-editor__track-list-track{display:flex;place-content:space-between;align-items:baseline;padding-left:12px}.block-library-video-tracks-editor__single-track-editor-label-language{display:flex;margin-top:12px}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control{width:50%}.block-library-video-tracks-editor__single-track-editor-label-language>.components-base-control:first-child{margin-right:16px}.block-library-video-tracks-editor__single-track-editor-kind-select{max-width:240px}.block-library-video-tracks-editor__single-track-editor-buttons-container{display:flex;place-content:space-between;margin-top:32px}.block-library-video-tracks-editor__single-track-editor-edit-track-label{margin-top:4px;margin-bottom:12px;color:#757575;text-transform:uppercase;font-size:11px;font-weight:500;display:block}.block-library-video-tracks-editor>.components-popover__content>div,.block-library-video-tracks-editor__add-tracks-container .components-menu-group__label,.block-library-video-tracks-editor__track-list .components-menu-group__label{padding:0}.block-library-video-tracks-editor__add-tracks-container,.block-library-video-tracks-editor__single-track-editor,.block-library-video-tracks-editor__track-list{padding:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__label{margin-bottom:4px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-base-control__field{margin-bottom:12px}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-text-control__input{margin-left:0}.block-library-video-tracks-editor__single-track-editor .components-base-control .components-input-control__label{margin-bottom:4px}
|
89
wp-includes/blocks/video/style-rtl.css
Normal file
89
wp-includes/blocks/video/style-rtl.css
Normal file
|
@ -0,0 +1,89 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* SCSS Variables.
|
||||
*
|
||||
* Please use variables from this sheet to ensure consistency across the UI.
|
||||
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
||||
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
||||
*/
|
||||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Fonts & basic variables.
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Dimensions.
|
||||
*/
|
||||
/**
|
||||
* Shadows.
|
||||
*/
|
||||
/**
|
||||
* Editor widths.
|
||||
*/
|
||||
/**
|
||||
* Block & Editor UI.
|
||||
*/
|
||||
/**
|
||||
* Block paddings.
|
||||
*/
|
||||
/**
|
||||
* React Native specific.
|
||||
* These variables do not appear to be used anywhere else.
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Focus styles.
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
/**
|
||||
* Allows users to opt-out of animations via OS-level preferences.
|
||||
*/
|
||||
/**
|
||||
* Reset default styles for JavaScript UI based pages.
|
||||
* This is a WP-admin agnostic reset
|
||||
*/
|
||||
/**
|
||||
* Reset the WP Admin page styles for Gutenberg-like pages.
|
||||
*/
|
||||
.wp-block-video {
|
||||
margin: 0 0 1em 0;
|
||||
}
|
||||
.wp-block-video video {
|
||||
width: 100%;
|
||||
}
|
||||
@supports (position: sticky) {
|
||||
.wp-block-video [poster] {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.wp-block-video.aligncenter {
|
||||
text-align: center;
|
||||
}
|
||||
.wp-block-video figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
}
|
1
wp-includes/blocks/video/style-rtl.min.css
vendored
Normal file
1
wp-includes/blocks/video/style-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block-video{margin:0 0 1em}.wp-block-video video{width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}
|
89
wp-includes/blocks/video/style.css
Normal file
89
wp-includes/blocks/video/style.css
Normal file
|
@ -0,0 +1,89 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* SCSS Variables.
|
||||
*
|
||||
* Please use variables from this sheet to ensure consistency across the UI.
|
||||
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
||||
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
||||
*/
|
||||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Fonts & basic variables.
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Dimensions.
|
||||
*/
|
||||
/**
|
||||
* Shadows.
|
||||
*/
|
||||
/**
|
||||
* Editor widths.
|
||||
*/
|
||||
/**
|
||||
* Block & Editor UI.
|
||||
*/
|
||||
/**
|
||||
* Block paddings.
|
||||
*/
|
||||
/**
|
||||
* React Native specific.
|
||||
* These variables do not appear to be used anywhere else.
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Focus styles.
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
/**
|
||||
* Allows users to opt-out of animations via OS-level preferences.
|
||||
*/
|
||||
/**
|
||||
* Reset default styles for JavaScript UI based pages.
|
||||
* This is a WP-admin agnostic reset
|
||||
*/
|
||||
/**
|
||||
* Reset the WP Admin page styles for Gutenberg-like pages.
|
||||
*/
|
||||
.wp-block-video {
|
||||
margin: 0 0 1em 0;
|
||||
}
|
||||
.wp-block-video video {
|
||||
width: 100%;
|
||||
}
|
||||
@supports (position: sticky) {
|
||||
.wp-block-video [poster] {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.wp-block-video.aligncenter {
|
||||
text-align: center;
|
||||
}
|
||||
.wp-block-video figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
}
|
1
wp-includes/blocks/video/style.min.css
vendored
Normal file
1
wp-includes/blocks/video/style.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block-video{margin:0 0 1em}.wp-block-video video{width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}
|
Loading…
Add table
Add a link
Reference in a new issue