Skip to content

Commit 11ef464

Browse files
author
Daniil
committed
Fix/divide (jgthms#3362)
* Use custom divide function * Add docs spacing table styles * Update changelog
1 parent e6b809e commit 11ef464

File tree

22 files changed

+219
-311
lines changed

22 files changed

+219
-311
lines changed

CHANGELOG.md

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

33
## 0.9.3
44

5+
### Bugfix
6+
7+
- #3362 Fix slash divide
8+
59
### New features
610

711
- New `is-underlined` class for underlined text and links

css/bulma-rtl.css

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma-rtl.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma-rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.css

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_includes/components/spacing-table.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<tr>
44
<th>Property</th>
55
<th>Shortcut</th>
6-
<th colspan="7">Classes ↓</th>
6+
<th colspan="8">Classes ↓</th>
77
</tr>
88
</thead>
99
<tfoot>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
.bd-spacing-table {
2+
&:hover {
3+
color: $border;
4+
code {
5+
background: none;
6+
color: $border;
7+
}
8+
}
9+
.bd-current-row {
10+
background-color: $background;
11+
&:first-child {
12+
background-color: $danger-light;
13+
color: $text-strong;
14+
code {
15+
background-color: $danger;
16+
color: $danger-invert;
17+
}
18+
}
19+
&.bd-current-column {
20+
background-color: $primary-light;
21+
color: $text-strong;
22+
code {
23+
background-color: $primary;
24+
color: $primary-invert;
25+
}
26+
}
27+
}
28+
.bd-current-column {
29+
background-color: $background;
30+
}
31+
.bd-current-value {
32+
background-color: $danger-light;
33+
code {
34+
background-color: $danger;
35+
color: $danger-invert;
36+
}
37+
}
38+
}

docs/_sass/old/focus.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ $focus-delay: 1s
3636
animation-timing-function: $cubic-less-dramatic
3737
transform-origin: center center
3838

39-
$delay-subtitle: $delay / 2
39+
$delay-subtitle: $delay * 0.5
4040

4141
// Intro
4242
.intro-title

0 commit comments

Comments
 (0)