Backup of db before drupal security update
[yaffs-website] / web / core / modules / config_translation / css / config_translation.admin.css
1 /**
2  * @file
3  * Styles for Configuration Translation.
4  */
5
6 /**
7  * Hide the label, in an accessible way, for responsive screens which show the
8  * form in one column.
9  */
10 .translation-set__translated label {
11   clip: rect(1px, 1px, 1px, 1px);
12   height: 1px;
13   overflow: hidden;
14   position: absolute;
15   width: 1px;
16 }
17
18 @media screen and (min-width: 38em) {
19   .translation-set__translated label {
20     height: auto;
21     position: inherit;
22     width: auto;
23   }
24 }