Skip to content

Commit

Permalink
Get the stats table style back
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault committed Nov 26, 2024
1 parent fe3b693 commit 2853050
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions envergo/static/sass/project_haie.scss
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,64 @@ dialog#hedge-data-dialog {
}
}

div#statistics {
background-color: #f6f6f6;
padding: 16px;

table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1rem;

th,
td {
font-weight: normal;
padding: 0.5rem 0;
}

thead tr th {
text-align: right;
}

tbody tr th {
text-align: left;
}

tbody tr td {
text-align: right;
}

tbody tr {
border-top: 1px solid #ddd;
}

tbody tr:last-child {
border-bottom: 1px solid #ddd;
}
}

div#compensation {
border-left: 2px solid var(--border-plain-info);
padding-left: 0.5rem;

p {
margin-bottom: 0;
}

p.info {
color: var(--text-default-info);
}

&.success {
border-left-color: var(--border-plain-success);

p.info {
color: var(--text-default-success);
}
}
}
}

div#form-group-haies {
label {
display: block;
Expand Down

0 comments on commit 2853050

Please sign in to comment.