diff options
author | nod_ <nod_@598310.no-reply.drupal.org> | 2024-06-16 15:59:13 +0200 |
---|---|---|
committer | nod_ <nod_@598310.no-reply.drupal.org> | 2024-06-16 15:59:13 +0200 |
commit | 8e56f38400ebf76a6ea13d69bb1821a5e2d5caca (patch) | |
tree | 45c5e07e7fea040440f10f899d0594aa525a822e /core/modules/ckeditor5/css | |
parent | a220b008bf68b11c70b86761fc0479ce8b71e8fd (diff) | |
download | drupal-8e56f38400ebf76a6ea13d69bb1821a5e2d5caca.tar.gz drupal-8e56f38400ebf76a6ea13d69bb1821a5e2d5caca.zip |
Issue #3313616 by mark_fullmer, Sandeep_k, nessthehero, bnjmnm, smustgrave, Wim Leers, itmaybejj, alexpott, Charles Belov, simohell, AaronMcHale: [drupalMedia] Ability to mark image media as "decorative"
Diffstat (limited to 'core/modules/ckeditor5/css')
-rw-r--r-- | core/modules/ckeditor5/css/drupalmedia.css | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/core/modules/ckeditor5/css/drupalmedia.css b/core/modules/ckeditor5/css/drupalmedia.css index e69e9c7ed6f..07ce32c8fed 100644 --- a/core/modules/ckeditor5/css/drupalmedia.css +++ b/core/modules/ckeditor5/css/drupalmedia.css @@ -83,15 +83,18 @@ max-width: 600px; padding: 0; } + .ck.ck-media-alternative-text-form .ck-labeled-field-view, .ck.ck-media-alternative-text-form .ck-media-alternative-text-form__default-alt-text { margin: var(--ck-spacing-large) var(--ck-spacing-large) var(--ck-spacing-small); } + .ck.ck-media-alternative-text-form .ck-labeled-field-view .ck-input-text { width: 100%; } -.ck.ck-media-alternative-text-form .ck-button { +.ck.ck-media-alternative-text-form .ck-button-save, +.ck.ck-media-alternative-text-form .ck-button-cancel { width: 50%; margin: var(--ck-spacing-large) 0 0 0; padding: var(--ck-spacing-standard); @@ -99,11 +102,3 @@ border-top: 1px solid var(--ck-color-base-border); border-radius: 0; } - -.ck.ck .ck-media-alternative-text-form__default-alt-text-label { - font-weight: bold; -} -.ck.ck .ck-media-alternative-text-form__default-alt-text-label, -.ck.ck .ck-media-alternative-text-form__default-alt-text-value { - white-space: normal; -} |