65 lines
1.0 KiB
SCSS
65 lines
1.0 KiB
SCSS
.save-panel {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
min-width: 200px;
|
|
|
|
.save-title {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: white;
|
|
margin-bottom: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.save-buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
|
|
button {
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
border: none;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
background: #2196F3;
|
|
color: white;
|
|
|
|
&:hover {
|
|
background: #1976D2;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
&.danger {
|
|
background: #F44336;
|
|
color: white;
|
|
|
|
&:hover {
|
|
background: #D32F2F;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.save-status {
|
|
margin-top: 12px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
|
|
.save-status-ok {
|
|
color: #4CAF50;
|
|
}
|
|
|
|
.save-status-none {
|
|
color: #F44336;
|
|
}
|
|
}
|
|
} |