
| Current Path : /var/www/html/rocksensor1/web/core/modules/ckeditor5/css/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/ckeditor5/css/language.css |
/**
* @file
* Language: add styling for elements that have a language attribute.
*/
/**
* Show the user that a 'lang' tag has been applied by adding a thin dotted
* border. We also append the value of the tag between brackets, for example:
* '(en)'. Since the html element has a 'lang' attribute too we only target
* elements within the html scope.
*/
.ck-content [lang] {
outline: 1px dotted gray;
}
.ck-content [lang]::after {
content: " (" attr(lang) ")";
color: #666;
font-size: 10px;
}