livebook/assets/css/live_view.css

25 lines
361 B
CSS
Raw Normal View History

/* Hide Phoenix live reload frame */
iframe[hidden] {
display: none;
}
/* LiveView specific classes */
2021-01-08 05:13:17 +08:00
2021-01-08 04:16:54 +08:00
.phx-no-feedback.invalid-feedback,
.phx-no-feedback .invalid-feedback {
display: none;
}
.phx-click-loading {
opacity: 0.5;
transition: opacity 1s ease-out;
}
2021-01-08 05:13:17 +08:00
.phx-disconnected {
2021-01-08 04:16:54 +08:00
cursor: wait;
}
2021-01-08 05:13:17 +08:00
.phx-disconnected * {
2021-01-08 04:16:54 +08:00
pointer-events: none;
}