Skip to content

Commit

Permalink
fixes changelist module div padding
Browse files Browse the repository at this point in the history
  • Loading branch information
abidibo committed Sep 4, 2020
1 parent 1c212ab commit 4ddb7d5
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 22 deletions.
4 changes: 2 additions & 2 deletions baton/static/baton/app/dist/baton.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion baton/static/baton/app/dist/baton.min.js.map

Large diffs are not rendered by default.

43 changes: 24 additions & 19 deletions baton/static/baton/app/src/styles/_changehistory.scss
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
// scss-lint:disable IdSelector PlaceholderInExtend NestingDepth QualifyingElement SelectorDepth ImportantRule
body.page-changehistory #content-main > .module {
@extend .p-3;
@extend .table-responsive;
background: $changehistory-bg;
border: 1px solid $changehistory-border-color;
body.page-changehistory #content-main {
@extend .container-fluid;

#change-history {
@extend .table;
@extend .table-bordered;
> .module {
@extend .p-3;
@extend .table-responsive;
background: $changehistory-bg;
border: 1px solid $changehistory-border-color;
margin-top: 15px;

thead > tr {
background: $rl-head-bg;
color: $rl-head-color;
}
#change-history {
@extend .table;
@extend .table-bordered;

tbody tr:nth-child(2n + 1) {
background: $rl-tr-odd-bg;
color: $rl-tr-odd-color;
}
thead > tr {
background: $rl-head-bg;
color: $rl-head-color;
}

tbody tr:nth-child(2n + 1) {
background: $rl-tr-odd-bg;
color: $rl-tr-odd-color;
}

td,
th {
padding: .3rem;
td,
th {
padding: .3rem;
}
}
}
}
Binary file modified testapp/app/db.sqlite3
Binary file not shown.

0 comments on commit 4ddb7d5

Please sign in to comment.