Sha256: 47013ac12608146f5127bfa52ee4795ed04db4d6c2dc27dcd50003cd1b2a60e2

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

.btn-flat {
	background-color: transparent;
	box-shadow: none;
	&:active,
	&:focus,
	&:hover {
		background-color: $black-bg;
		box-shadow: none;
	}
	&[disabled],
	fieldset[disabled] & {
		color: $black-text;
	}
}

// colour
	@each $color in $palette-list {
		$i: index($palette-list, $color);

		.btn-flat.btn-#{$color} {
			color: nth($palette-color, $i);
			&:active,
			&:focus,
			&:hover {
				background-color: nth($palette-color-light, $i);
			}
			&[disabled],
			fieldset[disabled] & {
				color: nth($palette-color, $i);
			}
		}
	}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
material-sass-0.0.4 app/assets/stylesheets/material/element/_button-flat.scss