// Extra resets that aren't covered by _normalize.scss


html {
  -webkit-tap-highlight-color: rgba(0,0,0,0); // Remove tap highlight
  -webkit-font-smoothing: subpixel-antialiased; // Ensure text is aliased correctly, see UI-289
}


// Form Inputs
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
button,
select,
textarea {
  border-radius: 0; // Override iOS inputs
}

// Reset fonts for relevant elements
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

// Input placeholders
input,
textarea {
  // scss-lint:disable VendorPrefix
  &::-moz-placeholder { opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
}

// Table Headings
th {
  text-align: left;
}

// Images
img {
  vertical-align: middle;
}
