Skip to content

Commit

Permalink
fix: make literal expression variables table styles explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
jarekdanielak authored Oct 18, 2024
1 parent 3c08efa commit 3f271ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,16 @@
color: var(--literal-expression-properties-color);
}

.dmn-literal-expression-container .literal-expression-properties table {
.dmn-literal-expression-container .literal-expression-properties .variables-table {
border-spacing: 8px;
border-collapse: separate;
}

.dmn-literal-expression-container .literal-expression-properties table tr td:first-child {
.dmn-literal-expression-container .literal-expression-properties .variables-table tr td:first-child {
font-weight: bold;
}

.dmn-literal-expression-container .literal-expression-properties table tr td:last-child {
.dmn-literal-expression-container .literal-expression-properties .variables-table tr td:last-child {
min-width: 100px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default class LiteralExpressionPropertiesComponent extends Component {

return (
<div className="literal-expression-properties">
<table>
<table className="variables-table">
<tr>
<td>{ this._translate('Variable name:') }</td>
<td>
Expand Down

0 comments on commit 3f271ec

Please sign in to comment.