Skip to content

Commit

Permalink
fix(tables): fix #1000 (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
hryb authored and lexzhukov committed Apr 20, 2017
1 parent e033edf commit 4b98e0e
Showing 1 changed file with 31 additions and 6 deletions.
37 changes: 31 additions & 6 deletions src/app/pages/tables/components/smartTables/smartTables.scss
Original file line number Diff line number Diff line change
@@ -1,19 +1,37 @@
@import "../../../../theme/sass/conf/conf";

.ng2-smart-table-container table.ng2-smart-table {
.widgets {
ba-card {
width: 100%;
}
}

ng2-smart-table {
th, td {
border: 1px solid $border-light !important;
line-height: 35px;
vertical-align: middle;
}

table tr td {
padding: 0 8px!important;
}

color: $default-text;

input {
line-height: 1.5 !important;
}

ng2-smart-table-cell {
color: $default-text;
line-height: 35px;
}

tbody {
tr {
color: $default-text;
}
tr:hover {
background: rgba(0, 0, 0, 0.03);
}
Expand Down Expand Up @@ -41,7 +59,11 @@
}
}

a.ng2-smart-action {
.ng2-smart-actions-title-add {
text-align: center;
}

a.ng2-smart-action, .ng2-smart-title {
font-size: 14px !important;
color: $default-text;
padding: 0 5px;
Expand All @@ -51,9 +73,12 @@
font-size: 25px !important;
}
}
}

nav.ng2-smart-pagination-nav {
display: flex;
justify-content: center;
nav.ng2-smart-pagination-nav {
display: flex;
justify-content: center;
}
}



0 comments on commit 4b98e0e

Please sign in to comment.