diff --git a/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.css b/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.css
index 6d2862d4f5e..c7e48d882a4 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.css
+++ b/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.css
@@ -56,7 +56,8 @@ mat-tab-group {
}
/deep/ .mat-tab-body-wrapper {
- height: calc(100% - 49px);
+ height: 100%;
+ /* height: calc(100% - 49px); */
/* 100% - header */
}
diff --git a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/directive-forest/directive-forest.component.css b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/directive-forest/directive-forest.component.css
index b608945192c..ce5f7674bb3 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/directive-forest/directive-forest.component.css
+++ b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/directive-forest/directive-forest.component.css
@@ -127,4 +127,5 @@
padding-left: 5px;
padding-right: 5px;
line-height: 20px;
+ width: auto;
}
diff --git a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.css b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.css
index 850875582bd..0ca72dc5263 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.css
+++ b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.css
@@ -1,6 +1,7 @@
.explorer-panel header {
background-color: #eee;
- padding: 0 5px;
+ padding-left: 9px;
+ border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
color: hsla(0, 0%, 32%, 1);
white-space: nowrap;
@@ -8,7 +9,16 @@
overflow: hidden;
line-height: 25px;
font-size: 12px;
+ font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
}
+
+/deep/ .mat-button,
+.mat-icon-button {
+ height: 18px;
+ width: 18px;
+ line-height: 15px;
+ margin-right: 7px;
+}
diff --git a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.html b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.html
index e46a054f2da..deada11e07b 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.html
+++ b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-body/property-tab-body.component.html
@@ -8,8 +8,6 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
- width="1em"
- height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 8 8"
>
diff --git a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.css b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.css
index 4fdc26a718b..abc13d8538a 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.css
+++ b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.css
@@ -2,15 +2,25 @@
display: flex;
justify-content: space-between;
align-items: center;
- min-height: 40px;
+ font-size: 12px;
}
.element-header .component-name {
- margin-left: 8px;
- font-weight: 400;
+ margin-left: 10px;
+ font-weight: 700;
+ line-height: 25px;
}
.element-header .element-name {
- margin-left: 8px;
- font-weight: 300;
+ margin-left: 10px;
+ line-height: 25px;
+ font-weight: 700;
+}
+
+/deep/ .mat-button,
+.mat-icon-button {
+ height: 25px;
+ width: 25px;
+ line-height: 25px;
+ margin-right: 5px;
}
diff --git a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.html b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.html
index 16cc4db94c2..cf41b7165ef 100644
--- a/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.html
+++ b/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-tab-header/property-tab-header.component.html
@@ -3,21 +3,9 @@