ckeditor.language.css

Same filename in this branch
  1. 8.9.x core/modules/ckeditor/css/plugins/language/ckeditor.language.css
Same filename in other branches
  1. 9 core/themes/stable9/css/ckeditor/plugins/language/ckeditor.language.css
  2. 9 core/themes/stable/css/ckeditor/plugins/language/ckeditor.language.css
  3. 9 core/modules/ckeditor/css/plugins/language/ckeditor.language.css

Language: add styling for elements that have a language attribute.

File

core/themes/stable/css/ckeditor/plugins/language/ckeditor.language.css

View source
  1. /**
  2. * @file
  3. * Language: add styling for elements that have a language attribute.
  4. */
  5. /**
  6. * Show the user that a 'lang' tag has been applied by adding a thin dotted
  7. * border. We also append the value of the tag between brackets, for example:
  8. * '(en)'. Since the html element has a 'lang' attribute too we only target
  9. * elements within the html scope.
  10. */
  11. html [lang] {
  12. outline: 1px dotted gray;
  13. }
  14. html [lang]:after {
  15. content: " ("attr(lang)")";
  16. color: #666;
  17. font-size: 10px;
  18. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.