mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
Lower the chance of a conflict with the CSS class "loading"
This commit is contained in:
parent
7145aac457
commit
4e2182138d
@ -1,5 +1,5 @@
|
||||
body.loading,
|
||||
body.loading * {
|
||||
body.oc-loading,
|
||||
body.oc-loading * {
|
||||
cursor: wait !important;
|
||||
}
|
||||
.stripe-loading-indicator {
|
||||
|
@ -43,7 +43,7 @@
|
||||
return
|
||||
|
||||
this.indicator.removeClass('loaded')
|
||||
$(document.body).addClass('loading')
|
||||
$(document.body).addClass('oc-loading')
|
||||
}
|
||||
|
||||
StripeLoadIndicator.prototype.hide = function(force) {
|
||||
@ -53,7 +53,7 @@
|
||||
|
||||
if (this.counter <= 0) {
|
||||
this.indicator.addClass('loaded')
|
||||
$(document.body).removeClass('loading')
|
||||
$(document.body).removeClass('oc-loading')
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Stripe loading indicator
|
||||
// --------------------------------------------------
|
||||
|
||||
body.loading, body.loading * {
|
||||
body.oc-loading, body.oc-loading * {
|
||||
cursor: wait !important;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user