File "_hacks.scss"

Full Path: /home/isoftco/public_html/hrm/public/front_assets/css/plugins/hover-effect/scss/_hacks.scss
File size: 721 bytes
MIME-type: text/plain
Charset: utf-8

// As is often the case, some devices/browsers need additional code to get CSS to work
// in the most desired way. These mixins are used to quickly drop in hacks for each element
// Find out more here: https://github.com/IanLunn/Hover/wiki/Hacks-Explained

@mixin hideTapHighlightColor() {
	//Prevent highlight colour when element is tapped
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

@mixin hardwareAccel() {
	//Improve performance on mobile/tablet devices
	transform: translateZ(0);
}

@mixin improveAntiAlias() {
	//Improve aliasing on mobile/tablet devices
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

@mixin hacks() {
  @include hideTapHighlightColor();
  @include hardwareAccel();
  @include improveAntiAlias();
}