Skip to content

Commit da75d8b

Browse files
authored
Add cursor-col-resize and cursor-row-resize (#1050)
* Add cursor-col-resize and cursor-row-resize * bump version
1 parent e8abda7 commit da75d8b

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.10.0
4+
5+
- [add] Add `cursor-col-resize` and `cursor-row-resize`
6+
37
## 1.9.2
48

59
- [add] Add `ml-auto` and `mr-auto`

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mapbox/assembly",
3-
"version": "1.9.2",
3+
"version": "1.10.0",
44
"description": "A CSS framework",
55
"main": "index.js",
66
"files": [

src/theming.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@
196196
* <div class='cursor-notallowed'>cursor-notallowed</div>
197197
* <div class='cursor-grab'>cursor-grab</div>
198198
* <div class='cursor-grabbing'>cursor-grabbing</div>
199+
* <div class='cursor-col-resize'>cursor-col-resize</div>
200+
* <div class='cursor-row-resize'>cursor-row-resize</div>
199201
*/
200202
.cursor-default { cursor: default !important; }
201203
.cursor-pointer { cursor: pointer !important; }
@@ -204,6 +206,8 @@
204206
.cursor-notallowed { cursor: not-allowed !important; }
205207
.cursor-grab { cursor: grab !important; }
206208
.cursor-grabbing { cursor: grabbing !important; }
209+
.cursor-col-resize { cursor: col-resize !important; }
210+
.cursor-row-resize { cursor: row-resize !important; }
207211

208212
/** @endgroup */
209213

0 commit comments

Comments
 (0)