Skip to content

Commit

Permalink
Merge branch 'v4-dev' into v4-dev-xmr
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Oct 5, 2020
2 parents 5c54a40 + 91d0a65 commit 2ecb08c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions scss/_custom-forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
display: block;
min-height: $font-size-base * $line-height-base;
padding-left: $custom-control-gutter + $custom-control-indicator-size;
color-adjust: exact; // Keep themed appearance for print
}

.custom-control-inline {
Expand Down
10 changes: 7 additions & 3 deletions scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,14 @@ caption {
caption-side: bottom;
}

// 1. Removes font-weight bold by inheriting
// 2. Matches default `<td>` alignment by inheriting `text-align`.
// 3. Fix alignment for Safari

th {
// Matches default `<td>` alignment by inheriting from the `<body>`, or the
// closest parent with a set `text-align`.
text-align: inherit;
font-weight: $table-th-font-weight; // 1
text-align: inherit; // 2
text-align: -webkit-match-parent; // 3
}


Expand Down
1 change: 1 addition & 0 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ $table-border-color: $border-color !default;

$table-head-bg: $gray-200 !default;
$table-head-color: $gray-700 !default;
$table-th-font-weight: null !default;

$table-dark-color: $white !default;
$table-dark-bg: $gray-800 !default;
Expand Down
4 changes: 2 additions & 2 deletions scss/utilities/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
.text-decoration-none { text-decoration: none !important; }

.text-break {
word-break: break-word !important; // IE & < Edge 18
overflow-wrap: break-word !important;
word-break: break-word !important; // Deprecated, but avoids issues with flex containers
word-wrap: break-word !important; // Used instead of `overflow-wrap` for IE & Edge Legacy
}

// Reset
Expand Down
5 changes: 3 additions & 2 deletions site/docs/versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
---

<div class="row">
{% for release in site.data.docs-versions %}
<div class="col-md">
{% assign releases = site.data.docs-versions | reverse %}
{% for release in releases %}
<div class="col-md-6 col-lg-4 col-xl mb-4">
<h2>{{ release.group }}</h2>
<p>{{ release.description }}</p>
{% assign versions = release.versions | reverse %}
Expand Down

0 comments on commit 2ecb08c

Please sign in to comment.