annotate core/themes/stable/css/system/components/reset-appearance.module.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 * Utility class to remove browser styles, especially for button.
Chris@0 4 */
Chris@0 5
Chris@0 6 .reset-appearance {
Chris@5 7 margin: 0;
Chris@5 8 padding: 0;
Chris@5 9 border: 0 none;
Chris@5 10 background: transparent;
Chris@5 11 line-height: inherit;
Chris@0 12 -webkit-appearance: none;
Chris@0 13 -moz-appearance: none;
Chris@0 14 appearance: none;
Chris@0 15 }