Merge branch 'main' of github.com:jgthms/bulma

This commit is contained in:
Jeremy Thomas
2025-04-19 15:23:29 +02:00
4 changed files with 29 additions and 4 deletions

View File

@@ -2,6 +2,10 @@
## 1.0.4 ## 1.0.4
### New Features
- #3937: Add .has-text-weight-extrabold as a typography class.
### Bug Fixes ### Bug Fixes
- #3963: Improve colour loading versions of outlined buttons - #3963: Improve colour loading versions of outlined buttons

View File

@@ -30890,6 +30890,10 @@ has-background-moon.is-hoverable:active {
font-weight: 700 !important; font-weight: 700 !important;
} }
.has-text-weight-extrabold {
font-weight: 800 !important;
}
.is-family-primary { .is-family-primary {
font-family: "Inter", "SF Pro", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; font-family: "Inter", "SF Pro", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
} }
@@ -36981,11 +36985,16 @@ svg {
.skeleton-toggler { .skeleton-toggler {
position: fixed; position: fixed;
right: 1rem; right: 13.5rem;
bottom: 1rem; bottom: 1rem;
z-index: 1; z-index: 2;
} }
@media screen and (max-width: 768px) {
.skeleton-toggler {
right: 1rem;
}
}
.js-resizable { .js-resizable {
position: relative; position: relative;
} }

View File

@@ -327,13 +327,21 @@ breadcrumb:
<td><code>has-text-weight-semibold</code></td> <td><code>has-text-weight-semibold</code></td>
<td> <td>
Transforms text weight to Transforms text weight to
<span class="has-text-weight-semibold">semi-bold</span> <span class="has-text-weight-semibold">semibold</span>
</td> </td>
</tr> </tr>
<tr> <tr>
<td><code>has-text-weight-bold</code></td> <td><code>has-text-weight-bold</code></td>
<td> <td>
Transforms text weight to <span class="has-text-weight-bold">bold</span> Transforms text weight to
<span class="has-text-weight-bold">bold</span>
</td>
</tr>
<tr>
<td><code>has-text-weight-extrabold</code></td>
<td>
Transforms text weight to
<span class="has-text-weight-extrabold">extrabold</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -149,6 +149,10 @@ $alignments: (
font-weight: iv.$weight-bold !important; font-weight: iv.$weight-bold !important;
} }
.#{iv.$class-prefix}#{iv.$helpers-has-prefix}text-weight-extrabold {
font-weight: iv.$weight-extrabold !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}family-primary { .#{iv.$class-prefix}#{iv.$helpers-prefix}family-primary {
font-family: dv.$family-primary !important; font-family: dv.$family-primary !important;
} }