h-sphere_sql-seal/styles.css
2024-11-06 20:28:34 +00:00

45 lines
No EOL
782 B
CSS

.sqlseal-table-container {
overflow-y: scroll;
}
.sqlseal-table-container table {
width: 100%;
border-collapse: collapse;
}
.sqlseal-grid-wrapper {
height: auto;
position: relative;
}
.sqlseal-grid-error-message {
box-sizing: border-box;
width: 80%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background: #b80f0f;
font-size: 0.8em;
color: #FFF;
padding: 0.5em 2em;
}
.sqlseal-grid-error-message-overlay {
content: '';
position: absolute;
top: 0; left: 0;
right: 0; bottom: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 5;
}
.sqlseal-grid-error-message-overlay.hidden {
display: none;
}
.edit-block-button {
z-index: 1000;
}