annotate core/modules/system/css/components/reset-appearance.module.css @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
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@18 7 margin: 0;
Chris@18 8 padding: 0;
Chris@18 9 border: 0 none;
Chris@18 10 background: transparent;
Chris@18 11 line-height: inherit;
Chris@0 12 -webkit-appearance: none;
Chris@0 13 -moz-appearance: none;
Chris@0 14 appearance: none;
Chris@0 15 }