Add cursor-default utility

This commit is contained in:
Adam Wathan 2017-11-09 09:58:30 -05:00
parent 6bc3b0a9dd
commit 8eda042543
2 changed files with 21 additions and 0 deletions

View File

@ -3533,6 +3533,10 @@ button,
cursor: auto;
}
.cursor-default {
cursor: default;
}
.cursor-pointer {
cursor: pointer;
}
@ -6493,6 +6497,10 @@ button,
cursor: auto;
}
.sm\:cursor-default {
cursor: default;
}
.sm\:cursor-pointer {
cursor: pointer;
}
@ -9454,6 +9462,10 @@ button,
cursor: auto;
}
.md\:cursor-default {
cursor: default;
}
.md\:cursor-pointer {
cursor: pointer;
}
@ -12415,6 +12427,10 @@ button,
cursor: auto;
}
.lg\:cursor-default {
cursor: default;
}
.lg\:cursor-pointer {
cursor: pointer;
}
@ -15376,6 +15392,10 @@ button,
cursor: auto;
}
.xl\:cursor-default {
cursor: default;
}
.xl\:cursor-pointer {
cursor: pointer;
}

View File

@ -3,6 +3,7 @@ import defineClasses from '../util/defineClasses'
export default function() {
return defineClasses({
'cursor-auto': { cursor: 'auto' },
'cursor-default': { cursor: 'default' },
'cursor-pointer': { cursor: 'pointer' },
'cursor-not-allowed': { cursor: 'not-allowed' },
})