Files
page-editor/styles.css
2026-06-06 08:28:22 +05:30

50 lines
961 B
CSS

/* No visual styling - edited elements look normal */
[contenteditable="true"] {
cursor: text;
}
.editable-text {
position: relative;
}
/* Auto-save indicator */
.page-editor-indicator {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #4285f4;
color: white;
padding: 12px 20px;
border-radius: 4px;
font-size: 14px;
z-index: 999999;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 0.3s ease;
}
/* Save notification */
.page-editor-notification {
position: fixed;
top: 20px;
right: 20px;
background-color: #4caf50;
color: white;
padding: 12px 20px;
border-radius: 4px;
font-size: 14px;
z-index: 999999;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
opacity: 0;
display: none;
transition: opacity 0.3s ease;
}
/* Hide edit elements in print */
@media print {
[contenteditable="true"] {
outline: none !important;
background-color: transparent !important;
}
}