view core/modules/config_translation/css/config_translation.admin.css @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 4c8ae668cc8c
children af1871eacc83
line wrap: on
line source
/**
 * @file
 * Styles for Configuration Translation.
 */

/**
 * Hide the label, in an accessible way, for responsive screens which show the
 * form in one column.
 */
.translation-set__translated label {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media screen and (min-width: 38em) {
  .translation-set__translated label {
    height: auto;
    position: inherit;
    width: auto;
  }
}