Added .cursor-wait

This commit is contained in:
Tobias Kündig 2017-12-24 13:47:13 +01:00
parent 95c59b4743
commit 6837c8f46d
No known key found for this signature in database
GPG Key ID: 000AE0F7486CBFBE
2 changed files with 21 additions and 0 deletions

View File

@ -2183,6 +2183,10 @@ button,
cursor: not-allowed;
}
.cursor-wait {
cursor: wait;
}
.block {
display: block;
}
@ -6066,6 +6070,10 @@ button,
cursor: not-allowed;
}
.sm\:cursor-wait {
cursor: wait;
}
.sm\:block {
display: block;
}
@ -9942,6 +9950,10 @@ button,
cursor: not-allowed;
}
.md\:cursor-wait {
cursor: wait;
}
.md\:block {
display: block;
}
@ -13818,6 +13830,10 @@ button,
cursor: not-allowed;
}
.lg\:cursor-wait {
cursor: wait;
}
.lg\:block {
display: block;
}
@ -17694,6 +17710,10 @@ button,
cursor: not-allowed;
}
.xl\:cursor-wait {
cursor: wait;
}
.xl\:block {
display: block;
}

View File

@ -6,5 +6,6 @@ export default function() {
'cursor-default': { cursor: 'default' },
'cursor-pointer': { cursor: 'pointer' },
'cursor-not-allowed': { cursor: 'not-allowed' },
'cursor-wait': { cursor: 'wait' },
})
}