// 该文档用于定义简单的混入方法，用于替代公用的class

// 清除浏览器默认样式
s-reset()
  outline 0
  user-select none
  background-image none
  touch-action manipulation

// 文体超出部分省略号
s-ellipsis()
  overflow hidden
  white-space nowrap
  text-overflow ellipsis

// 设置颜色（主色，背景色，边框）
uif-btn-set($color, $background, $border)
  color $color
  background-color $background
  border-color $border
