config_translation.admin.css 455 B

123456789101112131415161718192021222324
  1. /**
  2. * @file
  3. * Styles for Configuration Translation.
  4. */
  5. /**
  6. * Hide the label, in an accessible way, for responsive screens which show the
  7. * form in one column.
  8. */
  9. .translation-set__translated label {
  10. clip: rect(1px, 1px, 1px, 1px);
  11. height: 1px;
  12. overflow: hidden;
  13. position: absolute;
  14. width: 1px;
  15. }
  16. @media screen and (min-width: 38em) {
  17. .translation-set__translated label {
  18. height: auto;
  19. position: inherit;
  20. width: auto;
  21. }
  22. }