Skip to content

Commit 04145fb

Browse files
committed
Merge branch 'main' of github.com:jgthms/bulma
2 parents b4fa908 + 6f49647 commit 04145fb

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 1.0.4
44

5+
### New Features
6+
7+
- #3937: Add .has-text-weight-extrabold as a typography class.
8+
59
### Bug Fixes
610

711
- #3963: Improve colour loading versions of outlined buttons

docs/assets/css/website.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30890,6 +30890,10 @@ has-background-moon.is-hoverable:active {
3089030890
font-weight: 700 !important;
3089130891
}
3089230892

30893+
.has-text-weight-extrabold {
30894+
font-weight: 800 !important;
30895+
}
30896+
3089330897
.is-family-primary {
3089430898
font-family: "Inter", "SF Pro", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
3089530899
}
@@ -36981,11 +36985,16 @@ svg {
3698136985

3698236986
.skeleton-toggler {
3698336987
position: fixed;
36984-
right: 1rem;
36988+
right: 13.5rem;
3698536989
bottom: 1rem;
36986-
z-index: 1;
36990+
z-index: 2;
3698736991
}
3698836992

36993+
@media screen and (max-width: 768px) {
36994+
.skeleton-toggler {
36995+
right: 1rem;
36996+
}
36997+
}
3698936998
.js-resizable {
3699036999
position: relative;
3699137000
}

docs/documentation/helpers/typography-helpers.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,13 +327,21 @@
327327
<td><code>has-text-weight-semibold</code></td>
328328
<td>
329329
Transforms text weight to
330-
<span class="has-text-weight-semibold">semi-bold</span>
330+
<span class="has-text-weight-semibold">semibold</span>
331331
</td>
332332
</tr>
333333
<tr>
334334
<td><code>has-text-weight-bold</code></td>
335335
<td>
336-
Transforms text weight to <span class="has-text-weight-bold">bold</span>
336+
Transforms text weight to
337+
<span class="has-text-weight-bold">bold</span>
338+
</td>
339+
</tr>
340+
<tr>
341+
<td><code>has-text-weight-extrabold</code></td>
342+
<td>
343+
Transforms text weight to
344+
<span class="has-text-weight-extrabold">extrabold</span>
337345
</td>
338346
</tr>
339347
</tbody>

sass/helpers/typography.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ $alignments: (
149149
font-weight: iv.$weight-bold !important;
150150
}
151151

152+
.#{iv.$class-prefix}#{iv.$helpers-has-prefix}text-weight-extrabold {
153+
font-weight: iv.$weight-extrabold !important;
154+
}
155+
152156
.#{iv.$class-prefix}#{iv.$helpers-prefix}family-primary {
153157
font-family: dv.$family-primary !important;
154158
}

0 commit comments

Comments
 (0)