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