feat: initialize backend database service architecture and implement frontend schema explorer components

This commit is contained in:
Ümit Tunç
2026-04-24 07:31:24 +03:00
parent ce67df1067
commit bf3d05ea97
13 changed files with 366 additions and 71 deletions
+63 -4
View File
@@ -4,15 +4,24 @@
--primary-color: #0061ff;
--secondary-color: #ff8c00;
--bg-light: #f8f9fa;
--bg-dark: #0f172a;
--bg-dark: #0a0f1d;
--glass-bg: rgba(255, 255, 255, 0.7);
--glass-bg-dark: rgba(15, 23, 42, 0.8);
--glass-bg-dark: rgba(16, 24, 48, 0.85);
--glass-border: rgba(255, 255, 255, 0.2);
--glass-border-dark: rgba(255, 255, 255, 0.1);
--text-light: #1e293b;
--text-dark: #f1f5f9;
}
/* Suppress DevExtreme License Watermark */
dx-license, [class*="dx-license"] {
display: none !important;
visibility: hidden !important;
height: 0 !important;
opacity: 0 !important;
pointer-events: none !important;
}
* {
margin: 0;
padding: 0;
@@ -46,22 +55,71 @@ body.dark {
border: 1px solid var(--glass-border-dark);
}
/* DevExtreme Custom Styling */
/* DevExtreme Custom Styling - Modern Dark Theme Integration */
.dx-datagrid {
background-color: transparent !important;
border-radius: 12px !important;
overflow: hidden !important;
border: none !important;
font-family: inherit !important;
}
.dark .dx-datagrid {
color: var(--text-dark) !important;
}
.dx-datagrid-headers {
background-color: transparent !important;
background-color: rgba(255, 255, 255, 0.05) !important;
border-bottom: 1px solid var(--glass-border) !important;
color: inherit !important;
}
.dark .dx-datagrid-headers {
background-color: rgba(0, 0, 0, 0.2) !important;
border-bottom: 1px solid var(--glass-border-dark) !important;
}
.dx-datagrid-rowsview .dx-row {
background-color: transparent !important;
color: inherit !important;
}
.dark .dx-datagrid-rowsview .dx-row {
border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.dx-datagrid-content .dx-datagrid-table .dx-row > td {
padding: 12px 16px !important;
}
/* Fix for Search and Group Panels in Dark Mode */
.dark .dx-datagrid-search-panel,
.dark .dx-datagrid-group-panel,
.dark .dx-datagrid-filter-row {
background-color: rgba(0, 0, 0, 0.2) !important;
color: var(--text-dark) !important;
}
.dark .dx-textbox-input {
color: var(--text-dark) !important;
background-color: rgba(255, 255, 255, 0.05) !important;
}
/* Column Header text */
.dark .dx-datagrid-text-content {
color: rgba(255, 255, 255, 0.7) !important;
font-weight: 600 !important;
}
/* Selection and Hover */
.dark .dx-data-row.dx-state-hover:not(.dx-selection):not(.dx-row-inserted):not(.dx-row-removed):not(.dx-edit-row) > td {
background-color: rgba(255, 255, 255, 0.05) !important;
}
.dark .dx-selection.dx-row > td {
background-color: rgba(0, 97, 255, 0.2) !important;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 8px;
@@ -88,3 +146,4 @@ body.dark {
.dark ::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}