mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
57 lines
No EOL
943 B
CSS
57 lines
No EOL
943 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-error {
|
|
padding: 1em;
|
|
background: #b80f0f;
|
|
color: #FFF;
|
|
}
|
|
|
|
.sqlseal-notice {
|
|
padding: 1em;
|
|
background: #1f3f98;
|
|
color: #FFF;
|
|
}
|
|
|
|
.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;
|
|
} |