// Vendor Prefixes

// These aim to ensure that Flarum remains compatible with most modern devices.
// The vendor presets below are to try to remain compatible with iOS 9+ and other
// major browsers (Chrome/Firefox/new Edge/Safari desktop).

// Placeholder text
.placeholder(@color) {
  // Safari
  &::-webkit-input-placeholder,
  &::placeholder {
    color: @color;
  }
}

// User select
// For selecting text on the page
.user-select(@select) {
  // Safari + MS Edge
  -webkit-user-select: @select;
  user-select: @select;
}
