mirror of https://github.com/OpenVidu/openvidu.git
ov-components: Enhance error handling UI in recording activity component with modern styling
parent
9b8348bc04
commit
5f6b404576
File diff suppressed because one or more lines are too long
|
@ -401,6 +401,46 @@
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.recording-error {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 12px;
|
||||||
|
background: rgba(244, 67, 54, 0.08);
|
||||||
|
border: 1px solid var(--ov-error-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 12px 16px;
|
||||||
|
margin: 16px 0;
|
||||||
|
color: var(--ov-error-color);
|
||||||
|
font-size: 15px;
|
||||||
|
box-shadow: 0 2px 8px 0 rgba(244,67,54,0.04);
|
||||||
|
|
||||||
|
.error-icon {
|
||||||
|
font-size: 28px;
|
||||||
|
color: var(--ov-error-color);
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin-top: 2px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 15px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-message {
|
||||||
|
font-size: 14px;
|
||||||
|
opacity: 0.85;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.disable-recording-btn {
|
.disable-recording-btn {
|
||||||
background-color: var(--ov-secondary-action-color) !important;
|
background-color: var(--ov-secondary-action-color) !important;
|
||||||
color: var(--ov-text-surface-color) !important;
|
color: var(--ov-text-surface-color) !important;
|
||||||
|
|
Loading…
Reference in New Issue