@@ -602,31 +610,30 @@ class Views extends TableView {
return (
-
- {name}
- {isPointerColumn && (
-
- )}
-
+
{name}
+
{columnType || 'String'}
+ {isPointerColumn && (
+
+ )}
this.handleResize(i, delta)} />
);
diff --git a/src/dashboard/Data/Views/Views.scss b/src/dashboard/Data/Views/Views.scss
index 83ec89cde1..15a4c9273e 100644
--- a/src/dashboard/Data/Views/Views.scss
+++ b/src/dashboard/Data/Views/Views.scss
@@ -5,33 +5,44 @@
}
.headerWrap {
+ @include MonospaceFont;
display: inline-block;
vertical-align: top;
background: #66637A;
color: white;
- line-height: 30px;
- padding: 0 16px;
+ font-size: 12px;
+ height: 30px;
+ padding: 4px 16px;
border-right: 1px solid #e3e3ea;
position: relative;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
+
+ &:has(.pointerIcon) {
+ padding-right: 46px;
+ }
}
-.headerText {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- min-width: 0; // Enable text truncation in flex containers
+.headerName {
+ color: white;
+ font-size: 12px;
+ height: 22px;
+ line-height: 22px;
+ margin-right: 8px;
+ float: left;
+ max-width: 100%;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
-.headerLabel {
+.headerType {
+ color: #A2A6B1;
+ font-size: 10px;
+ height: 22px;
+ line-height: 22px;
overflow: hidden;
text-overflow: ellipsis;
- white-space: nowrap;
- flex: 1;
- min-width: 0; // Enable text truncation
}
.pointerIcon {
@@ -41,31 +52,32 @@
font: inherit;
color: inherit;
background: rgba(255, 255, 255, 0.2);
-
+
// Custom styles
cursor: pointer;
opacity: 0.7;
transition: opacity 0.2s ease;
z-index: 10;
pointer-events: auto;
- display: inline-flex;
+ display: flex;
align-items: center;
justify-content: center;
height: 20px;
width: 20px;
border-radius: 50%;
- margin-left: 5px;
- flex-shrink: 0;
-
+ position: absolute;
+ right: 15px;
+ top: 5px;
+
& svg {
transform: rotate(316deg);
}
-
+
&:hover {
opacity: 1;
background: rgba(255, 255, 255, 0.3);
}
-
+
&:focus {
opacity: 1;
background: rgba(255, 255, 255, 0.4);
diff --git a/src/dashboard/TableView.react.js b/src/dashboard/TableView.react.js
index 95427ee7fb..1a7b49c2c7 100644
--- a/src/dashboard/TableView.react.js
+++ b/src/dashboard/TableView.react.js
@@ -38,6 +38,7 @@ export default class TableView extends DashboardView {
if (data.length === 0) {
content =
{this.renderEmpty()}
;
} else {
+ headers = this.renderHeaders();
content = (
@@ -46,7 +47,6 @@ export default class TableView extends DashboardView {
{footer}
);
- headers = this.renderHeaders();
}
}
}
@@ -55,10 +55,12 @@ export default class TableView extends DashboardView {
return (
- {content}
+
+
{headers}
+ {content}
+
{toolbar}
-
{headers}
{extras}
);
diff --git a/src/dashboard/TableView.scss b/src/dashboard/TableView.scss
index 6ed24afc12..5e85dc2361 100644
--- a/src/dashboard/TableView.scss
+++ b/src/dashboard/TableView.scss
@@ -8,24 +8,19 @@
@import 'stylesheets/globals.scss';
.headers {
- position: fixed;
+ position: sticky;
top: 96px;
- left: 300px;
+ left: 0;
right: 0;
background: #66637A;
height: 30px;
white-space: nowrap;
-}
-
-body:global(.expanded) {
- .headers {
- left: $sidebarCollapsedWidth;
- }
+ z-index: 10;
}
.content {
position: relative;
- padding-top: 126px;
+ padding-top: 96px;
min-height: 100vh;
}