﻿/* 初期値。状況に応じて変わる */
.cursor-auto {
    cursor: auto;
}

/* 普通の矢印 */
.cursor-default {
    cursor: default;
}

/* 指差しの手に。主にリンクで使われる */
.cursor-pointer {
    cursor: pointer;
}

/* 十字の矢印 */
.cursor-move {
    cursor: move;
}

/* Iビーム。主にテキスト用 */
.cursor-text {
    cursor: text;
}

/* 十字 */
.cursor-crosshair {
    cursor: crosshair;
}

/* Excelのセル選択風 */
.cursor-cell {
    cursor: cell;
}

/* クエスチョンマーク */
.cursor-help {
    cursor: help;
}

/* 基本的にgrabbingとセットで使う */
.cursor-grab {
    cursor: -moz-grab;
    cursor: -webkit-grab;
    cursor: grab;
}

/* grabとセットで使う */
.cursor-grabbing {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
