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. position: absolute;
  11. overflow: hidden;
  12. clip: rect(1px, 1px, 1px, 1px);
  13. width: 1px;
  14. height: 1px;
  15. }
  16. @media screen and (min-width: 38em) {
  17. .translation-set__translated label {
  18. position: inherit;
  19. width: auto;
  20. height: auto;
  21. }
  22. }