Skip to content

Commit 6f98ce6

Browse files
committed
Change size
1 parent eb99902 commit 6f98ce6

3 files changed

Lines changed: 24 additions & 28 deletions

File tree

scss/_base.table.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ th {
2121

2222
th, td {
2323
text-align: left;
24-
padding: $spacing-square-md;
24+
padding: $spacing-square-sm;
2525
vertical-align: middle;
2626
}
2727

@@ -32,18 +32,18 @@ th {
3232
}
3333
}
3434

35-
.table.table--small {
35+
.table.table--sm {
3636
th, td {
3737
text-align: left;
38-
padding: $spacing-square-sm;
38+
padding: $spacing-square-xs;
3939
vertical-align: middle;
4040
}
4141
}
4242

43-
.table.table--large {
43+
.table.table--lg {
4444
th, td {
4545
text-align: left;
46-
padding: $spacing-square-lg;
46+
padding: $spacing-square-md;
4747
vertical-align: middle;
4848
}
4949
}
@@ -65,7 +65,7 @@ th {
6565
.table.table--hover {
6666
tbody tr:hover,
6767
> tr:hover {
68-
background-color: tint-color($grey-light, 1);
68+
background-color: darken($grey-light, 2.5%);
6969
}
7070
}
7171

scss/_components.list.scss

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ $list-padding-sm: $spacing-squish-xs !default;
66
$list-padding-md: $spacing-squish-sm !default;
77
$list-padding-lg: $spacing-squish-lg !default;
88
$list-border-width: $component-border-width !default;
9-
$list-border-radius-sm: $component-border-radius-sm !default;
10-
$list-border-radius-md: $component-border-radius-md !default;
11-
$list-border-radius-lg: $component-border-radius-lg !default;
9+
$list-border-radius: $component-border-radius-md !default;
1210
$list-border-color: $grey-weak !default;
1311
$list-hover-color: $grey-light !default;
1412

@@ -60,14 +58,14 @@ $list-hover-color: $grey-light !default;
6058
margin-bottom: (0 - $list-border-width);
6159

6260
&:first-child {
63-
border-top-left-radius: $list-border-radius-md;
64-
border-top-right-radius: $list-border-radius-md;
61+
border-top-left-radius: $list-border-radius;
62+
border-top-right-radius: $list-border-radius;
6563
}
6664

6765
&:last-child {
6866
margin-bottom: 0;
69-
border-bottom-left-radius: $list-border-radius-md;
70-
border-bottom-right-radius: $list-border-radius-md;
67+
border-bottom-left-radius: $list-border-radius;
68+
border-bottom-right-radius: $list-border-radius;
7169
}
7270
}
7371
}
@@ -87,14 +85,14 @@ $list-hover-color: $grey-light !default;
8785
padding-right: nth($list-padding-sm, 2);
8886

8987
&:first-child {
90-
border-top-left-radius: $list-border-radius-sm;
91-
border-top-right-radius: $list-border-radius-sm;
88+
border-top-left-radius: $list-border-radius;
89+
border-top-right-radius: $list-border-radius;
9290
}
9391

9492
&:last-child {
9593
margin-bottom: 0;
96-
border-bottom-left-radius: $list-border-radius-sm;
97-
border-bottom-right-radius: $list-border-radius-sm;
94+
border-bottom-left-radius: $list-border-radius;
95+
border-bottom-right-radius: $list-border-radius;
9896
}
9997
}
10098
}
@@ -115,14 +113,14 @@ $list-hover-color: $grey-light !default;
115113
padding-right: nth($list-padding-lg, 2);
116114

117115
&:first-child {
118-
border-top-left-radius: $list-border-radius-lg;
119-
border-top-right-radius: $list-border-radius-lg;
116+
border-top-left-radius: $list-border-radius;
117+
border-top-right-radius: $list-border-radius;
120118
}
121119

122120
&:last-child {
123121
margin-bottom: 0;
124-
border-bottom-left-radius: $list-border-radius-lg;
125-
border-bottom-right-radius: $list-border-radius-lg;
122+
border-bottom-left-radius: $list-border-radius;
123+
border-bottom-right-radius: $list-border-radius;
126124
}
127125
}
128126
}

scss/_components.pagination.scss

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
$pagination-border-width: 1px !default;
44
$pagination-border-color: $grey-thin !default;
55
$pagination-bg: $component-bg !default;
6-
$pagination-border-radius-sm: $component-border-radius-sm !default;
7-
$pagination-border-radius-md: $component-border-radius-md !default;
8-
$pagination-border-radius-lg: $component-border-radius-lg !default;
6+
$pagination-border-radius: $component-border-radius-md !default;
97
$pagination-font-size-sm: $text-size-sm !default;
108
$pagination-font-size-md: $text-size-md !default;
119
$pagination-font-size-lg: $text-size-lg !default;
@@ -28,7 +26,7 @@ $pagination-height-computed: $pagination-font-size-md * $line-height-normal + 2
2826
font-size: $pagination-font-size-md;
2927
line-height: $line-height-normal;
3028
padding: $pagination-padding-md;
31-
border-radius: $pagination-border-radius-md;
29+
border-radius: $pagination-border-radius;
3230
border: $pagination-border-width solid transparent;
3331
white-space: nowrap;
3432
text-overflow: ellipsis;
@@ -62,7 +60,7 @@ $pagination-height-computed: $pagination-font-size-md * $line-height-normal + 2
6260
min-width: $pagination-height-computed;
6361
font-size: $pagination-font-size-sm;
6462
padding: $pagination-padding-sm;
65-
border-radius: $pagination-border-radius-sm;
63+
border-radius: $pagination-border-radius;
6664
}
6765
}
6866

@@ -74,7 +72,7 @@ $pagination-height-computed: $pagination-font-size-md * $line-height-normal + 2
7472
min-width: $pagination-height-computed;
7573
font-size: $pagination-font-size-lg;
7674
padding: $pagination-padding-lg;
77-
border-radius: $pagination-border-radius-lg;
75+
border-radius: $pagination-border-radius;
7876
}
7977
}
8078

@@ -104,7 +102,7 @@ $pagination-height-computed: $pagination-font-size-md * $line-height-normal + 2
104102

105103
&.is-active {
106104
color: $white;
107-
border-color: shade-color($color-primary, 1);
105+
border-color: darken($color-primary, 5%);
108106
background-color: $color-primary;
109107
}
110108

0 commit comments

Comments
 (0)