mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 05:18:52 +08:00
fbd03d6725
* Wrap live routes in live_session * Update Phoenix LV * Migrate to live_component component call * render_block -> render_slot * phx-disconnected -> phx-loading * phx-capture-click -> phx-click-away * Add hook dealing with current user * Bump LV * Bump LV
24 lines
351 B
CSS
24 lines
351 B
CSS
/* Hide Phoenix live reload frame */
|
|
iframe[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
/* LiveView specific classes */
|
|
|
|
.phx-no-feedback.invalid-feedback,
|
|
.phx-no-feedback .invalid-feedback {
|
|
display: none;
|
|
}
|
|
|
|
.phx-click-loading {
|
|
opacity: 0.5;
|
|
transition: opacity 1s ease-out;
|
|
}
|
|
|
|
.phx-loading {
|
|
cursor: wait;
|
|
}
|
|
|
|
.phx-loading * {
|
|
pointer-events: none;
|
|
}
|