Skip to content

Commit

Permalink
Merge pull request #3484 from neos/bugfix/3480-info-layout-broken
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaeslich authored May 5, 2023
2 parents f3fb1b3 + b2785cb commit aed1a4a
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions packages/neos-ui-views/src/NodeInfoView/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
margin: 0;
padding: 0;
list-style: none;
}

&__item {
background-color: var(--colors-ContrastDarkest);
padding: 8px 12px;
margin-bottom: 1px;
line-height: 20px;
min-height: 20px;

&:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.nodeInfoView__item {
background-color: var(--colors-ContrastDarkest);
padding: 8px 12px;
margin-bottom: 1px;
line-height: 20px;
min-height: 20px;

&:last-child {
border-bottom: none;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
&:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}

&__title {
font-weight: bold;
&:last-child {
border-bottom: none;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
}

&__content {
font-size: 13px;
color: var(--colors-ContrastBright);
}
.nodeInfoView__title {
font-weight: bold;
}

.nodeInfoView__content {
font-size: 13px;
color: var(--colors-ContrastBright);
}

0 comments on commit aed1a4a

Please sign in to comment.