TracksEditor.scss
62 lines
| 1 | .block-library-video-tracks-editor { |
| 2 | &__track-list-track { |
| 3 | display: flex; |
| 4 | justify-content: space-between; |
| 5 | align-items: center; |
| 6 | } |
| 7 | |
| 8 | &__single-track-editor-buttons-container { |
| 9 | display: flex; |
| 10 | gap: 8px; |
| 11 | } |
| 12 | |
| 13 | &__transcription-container { |
| 14 | .components-menu-group__label { |
| 15 | padding: 0; |
| 16 | } |
| 17 | |
| 18 | .presto-player__transcription-languages .components-base-control__help { |
| 19 | margin-top: 8px; |
| 20 | margin-bottom: 0; |
| 21 | color: #757575; |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | .presto-player__modal-confirm { |
| 27 | max-width: 400px; |
| 28 | } |
| 29 | |
| 30 | .presto-player__modal-transcribe { |
| 31 | max-width: 450px; |
| 32 | } |
| 33 | |
| 34 | .presto-player__modal-confirm-overlay, |
| 35 | .presto-player__modal-transcribe-overlay { |
| 36 | z-index: 1000001 !important; |
| 37 | |
| 38 | .components-modal__frame { |
| 39 | z-index: 1000002 !important; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | .presto-player__modal-actions { |
| 44 | display: flex; |
| 45 | justify-content: flex-end; |
| 46 | gap: 8px; |
| 47 | margin-top: 16px; |
| 48 | } |
| 49 | |
| 50 | .presto-player__modal-note { |
| 51 | margin-top: 8px; |
| 52 | } |
| 53 | |
| 54 | .presto-player__transcribe-pricing-link { |
| 55 | color: var(--wp-admin-theme-color, #007cba); |
| 56 | text-decoration: underline; |
| 57 | |
| 58 | &:hover { |
| 59 | color: var(--wp-admin-theme-color-darker-10, #006ba1); |
| 60 | } |
| 61 | } |
| 62 |