annotate core/modules/config_translation/css/config_translation.admin.css @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
rev   line source
Chris@0 1 /**
Chris@0 2 * @file
Chris@0 3 * Styles for Configuration Translation.
Chris@0 4 */
Chris@0 5
Chris@0 6 /**
Chris@0 7 * Hide the label, in an accessible way, for responsive screens which show the
Chris@0 8 * form in one column.
Chris@0 9 */
Chris@0 10 .translation-set__translated label {
Chris@5 11 position: absolute;
Chris@5 12 overflow: hidden;
Chris@0 13 clip: rect(1px, 1px, 1px, 1px);
Chris@5 14 width: 1px;
Chris@0 15 height: 1px;
Chris@0 16 }
Chris@0 17
Chris@0 18 @media screen and (min-width: 38em) {
Chris@0 19 .translation-set__translated label {
Chris@0 20 position: inherit;
Chris@0 21 width: auto;
Chris@5 22 height: auto;
Chris@0 23 }
Chris@0 24 }