Catpow SCSS

background image

usr

カーソル、ユーザー操作・選択の受付などに関するプロパティを設定します。

Params

c
cursor

Keyword
  • a
    auto
  • p
    pointer
  • w
    wait
  • n
    none
  • na
    not-allowed
  • nd
    no-drop
  • c
    cell
  • ch
    crosshair
  • t
    text
  • vt
    vertical-text
  • g
    grab
  • h
    help
  • zi
    zoom-in
  • zo
    zoom-out
  • cr
    col-resize
  • rr
    row-resize
  • mv
    move
  • cp
    copy

e
pointer-events

Keyword
  • a
    auto
  • n
    none

s
user-select

Keyword
  • n
    none
  • a
    all
  • t
    text
  • c
    contain
scss
@import 'catpow';

@include usr((c:p));
css
cursor: pointer;
scss
@import 'catpow';

@include usr((e:n));
css
pointer-events: none;