Skip to content

Commit

Permalink
CPS-378: Fix case status labels
Browse files Browse the repository at this point in the history
  • Loading branch information
deb1990 committed Mar 30, 2021
1 parent 790a3a0 commit d615ce0
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 4 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions scss/civicrm/administer/contribute/_contribute.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
#alpha-filter {
border-bottom: 1px solid $crm-grayblue-dark;
}

.dataTable {
td {
background: $crm-white !important;
}
}
}

&#{civi-page('admin-contribute')} {
Expand All @@ -29,6 +35,12 @@
.dataTables_wrapper {
box-shadow: none;
}

.dataTable {
td {
background: $crm-white !important;
}
}
}

.crm-actions-ribbon {
Expand Down
10 changes: 7 additions & 3 deletions scss/civicrm/administer/customize-data/_customize-data.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,13 @@
box-shadow: none !important;
}

.dataTable > tbody > tr > td.crm-custom_option-links {
padding-right: 20px;
text-align: right;
.dataTable > tbody > tr > td {
background: $crm-white !important;

.crm-custom_option-links {
padding-right: 20px;
text-align: right;
}
}

.ui-dialog-content #field_page {
Expand Down
6 changes: 6 additions & 0 deletions scss/civicrm/administer/system-status/_configtask.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
background: $gray-lighter !important;
}
}

tr:not(.columnheader) {
td {
background: $crm-white !important;
}
}
}

td.tasklist a {
Expand Down
6 changes: 6 additions & 0 deletions scss/civicrm/cases/_dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@
.spacer {
height: 20px;
}

.dataTable {
td {
background: $crm-white !important;
}
}
}

div[class*='crm-case-filter-'] {
Expand Down
2 changes: 1 addition & 1 deletion scss/civicrm/common/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ table {
}

td {
background: $crm-white !important;
background: $crm-white;

&.label {
vertical-align: middle !important;
Expand Down
1 change: 1 addition & 0 deletions scss/civicrm/contact/pages/_events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@

tbody tr {
td {
background: $crm-white !important;
line-height: normal;
padding: 10px;

Expand Down
1 change: 1 addition & 0 deletions scss/civicrm/contact/pages/_reports.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ body[class*='page-civicrm-report-'] {

table.report-layout {
td {
background: $crm-white !important;
border-bottom: 1px solid $gray-light;

&.report-contents-right {
Expand Down

0 comments on commit d615ce0

Please sign in to comment.