Skip to content

Commit 90ca6ff

Browse files
committed
Release 1.8.1
1 parent c514de3 commit 90ca6ff

25 files changed

+313
-223
lines changed

Diff for: .github/icons.png

864 Bytes
Loading

Diff for: .github/icons.svg

+221-212
Loading

Diff for: .github/tabler-icons-1.8.1.png

2.38 KB
Loading

Diff for: .github/tabler-icons-1.8.1.svg

+13
Loading

Diff for: iconfont-unicode.json

+1-1
Large diffs are not rendered by default.

Diff for: iconfont/fonts/tabler-icons.eot

1.23 KB
Binary file not shown.

Diff for: iconfont/fonts/tabler-icons.ttf

1.23 KB
Binary file not shown.

Diff for: iconfont/fonts/tabler-icons.woff

416 Bytes
Binary file not shown.

Diff for: iconfont/fonts/tabler-icons.woff2

344 Bytes
Binary file not shown.

Diff for: iconfont/tabler-icons.css

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@charset "UTF-8";
22
/*!
3-
* Tabler Icons 1.8.0 by tabler - https://tabler.io
3+
* Tabler Icons 1.8.1 by tabler - https://tabler.io
44
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
55
*/
66
@font-face {
@@ -1304,6 +1304,10 @@
13041304
content: "";
13051305
}
13061306

1307+
.ti-layout-cards:before {
1308+
content: "";
1309+
}
1310+
13071311
.ti-layout-columns:before {
13081312
content: "";
13091313
}
@@ -1316,6 +1320,10 @@
13161320
content: "";
13171321
}
13181322

1323+
.ti-layout-list:before {
1324+
content: "";
1325+
}
1326+
13191327
.ti-layout-navbar:before {
13201328
content: "";
13211329
}
@@ -1708,6 +1716,10 @@
17081716
content: "";
17091717
}
17101718

1719+
.ti-rotate-rectangle:before {
1720+
content: "";
1721+
}
1722+
17111723
.ti-route:before {
17121724
content: "";
17131725
}

Diff for: iconfont/tabler-icons.html

+29-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport"
66
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8-
<title>Tabler Icons - version 1.8.0</title>
8+
<title>Tabler Icons - version 1.8.1</title>
99

1010
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600" rel="stylesheet">
1111
<link rel="stylesheet" href="./tabler-icons.css">
@@ -109,7 +109,7 @@
109109
<h1>
110110
Tabler Icons
111111
</h1>
112-
<p class="text-muted">version 1.8.0</p>
112+
<p class="text-muted">version 1.8.1</p>
113113
</header>
114114

115115
<div class="search-bar">
@@ -2999,6 +2999,15 @@ <h1>
29992999
</div>
30003000
</div>
30013001

3002+
<div class="tabler-icon">
3003+
<i class="ti ti-layout-cards"></i>
3004+
<strong>layout-cards</strong>
3005+
<div class="tabler-icon-codes">
3006+
<code>ti ti-layout-cards</code><br>
3007+
<code>\ec13</code>
3008+
</div>
3009+
</div>
3010+
30023011
<div class="tabler-icon">
30033012
<i class="ti ti-layout-columns"></i>
30043013
<strong>layout-columns</strong>
@@ -3026,6 +3035,15 @@ <h1>
30263035
</div>
30273036
</div>
30283037

3038+
<div class="tabler-icon">
3039+
<i class="ti ti-layout-list"></i>
3040+
<strong>layout-list</strong>
3041+
<div class="tabler-icon-codes">
3042+
<code>ti ti-layout-list</code><br>
3043+
<code>\ec14</code>
3044+
</div>
3045+
</div>
3046+
30293047
<div class="tabler-icon">
30303048
<i class="ti ti-layout-navbar"></i>
30313049
<strong>layout-navbar</strong>
@@ -3908,6 +3926,15 @@ <h1>
39083926
</div>
39093927
</div>
39103928

3929+
<div class="tabler-icon">
3930+
<i class="ti ti-rotate-rectangle"></i>
3931+
<strong>rotate-rectangle</strong>
3932+
<div class="tabler-icon-codes">
3933+
<code>ti ti-rotate-rectangle</code><br>
3934+
<code>\ec15</code>
3935+
</div>
3936+
</div>
3937+
39113938
<div class="tabler-icon">
39123939
<i class="ti ti-route"></i>
39133940
<strong>route</strong>

Diff for: iconfont/tabler-icons.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: iconfont/tabler-icons.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Tabler Icons 1.8.0 by tabler - https://tabler.io
2+
* Tabler Icons 1.8.1 by tabler - https://tabler.io
33
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
44
*/
55
$ti-font-family: 'tabler-icons' !default;
@@ -354,9 +354,11 @@ $ti-icon-layout-align-middle: '\ead0';
354354
$ti-icon-layout-align-right: '\ead1';
355355
$ti-icon-layout-align-top: '\ead2';
356356
$ti-icon-layout-bottombar: '\ead3';
357+
$ti-icon-layout-cards: '\ec13';
357358
$ti-icon-layout-columns: '\ead4';
358359
$ti-icon-layout-distribute-horizontal: '\ead5';
359360
$ti-icon-layout-distribute-vertical: '\ead6';
361+
$ti-icon-layout-list: '\ec14';
360362
$ti-icon-layout-navbar: '\ead7';
361363
$ti-icon-layout-rows: '\ead8';
362364
$ti-icon-layout-sidebar: '\eada';
@@ -455,6 +457,7 @@ $ti-icon-rotate: '\eb16';
455457
$ti-icon-rotate-2: '\ebb4';
456458
$ti-icon-rotate-clockwise: '\eb15';
457459
$ti-icon-rotate-clockwise-2: '\ebb5';
460+
$ti-icon-rotate-rectangle: '\ec15';
458461
$ti-icon-route: '\eb17';
459462
$ti-icon-router: '\eb18';
460463
$ti-icon-rss: '\eb19';
@@ -886,9 +889,11 @@ $ti-icon-zoom-out: '\eb57';
886889
.#{$ti-icon-prefix}-layout-align-right:before { content: $ti-icon-layout-align-right; }
887890
.#{$ti-icon-prefix}-layout-align-top:before { content: $ti-icon-layout-align-top; }
888891
.#{$ti-icon-prefix}-layout-bottombar:before { content: $ti-icon-layout-bottombar; }
892+
.#{$ti-icon-prefix}-layout-cards:before { content: $ti-icon-layout-cards; }
889893
.#{$ti-icon-prefix}-layout-columns:before { content: $ti-icon-layout-columns; }
890894
.#{$ti-icon-prefix}-layout-distribute-horizontal:before { content: $ti-icon-layout-distribute-horizontal; }
891895
.#{$ti-icon-prefix}-layout-distribute-vertical:before { content: $ti-icon-layout-distribute-vertical; }
896+
.#{$ti-icon-prefix}-layout-list:before { content: $ti-icon-layout-list; }
892897
.#{$ti-icon-prefix}-layout-navbar:before { content: $ti-icon-layout-navbar; }
893898
.#{$ti-icon-prefix}-layout-rows:before { content: $ti-icon-layout-rows; }
894899
.#{$ti-icon-prefix}-layout-sidebar:before { content: $ti-icon-layout-sidebar; }
@@ -987,6 +992,7 @@ $ti-icon-zoom-out: '\eb57';
987992
.#{$ti-icon-prefix}-rotate-2:before { content: $ti-icon-rotate-2; }
988993
.#{$ti-icon-prefix}-rotate-clockwise:before { content: $ti-icon-rotate-clockwise; }
989994
.#{$ti-icon-prefix}-rotate-clockwise-2:before { content: $ti-icon-rotate-clockwise-2; }
995+
.#{$ti-icon-prefix}-rotate-rectangle:before { content: $ti-icon-rotate-rectangle; }
990996
.#{$ti-icon-prefix}-route:before { content: $ti-icon-route; }
991997
.#{$ti-icon-prefix}-router:before { content: $ti-icon-router; }
992998
.#{$ti-icon-prefix}-rss:before { content: $ti-icon-rss; }

Diff for: icons-png/language.png

327 Bytes
Loading

Diff for: icons-png/layout-cards.png

2.4 KB
Loading

Diff for: icons-png/layout-list.png

2.78 KB
Loading

Diff for: icons-png/rotate-rectangle.png

2.94 KB
Loading

Diff for: icons/language.svg

+1-1
Loading

Diff for: icons/layout-cards.svg

+7
Loading

Diff for: icons/layout-list.svg

+7
Loading

Diff for: icons/rotate-rectangle.svg

+6
Loading

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tabler-icons",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/tabler/tabler-icons.git"

Diff for: tabler-sprite-nostroke.svg

+1-1
Loading

Diff for: tabler-sprite.svg

+1-1
Loading

Diff for: tags.json

+3
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,11 @@
318318
"layout-align-right": ["layout", "align", "right", "position", "element", "design"],
319319
"layout-align-top": ["layout", "align", "top", "position", "element", "design"],
320320
"layout-bottombar": ["layout", "bottombar", "position", "element", "design", "grid", "footer"],
321+
"layout-cards": ["layout", "cards"],
321322
"layout-columns": ["layout", "columns", "grid", "column", "rows"],
322323
"layout-distribute-horizontal": ["layout", "distribute", "horizontal", "position", "element", "design", "around"],
323324
"layout-distribute-vertical": ["layout", "distribute", "vertical", "position", "element", "design", "around"],
325+
"layout-list": ["layout", "list"],
324326
"layout-navbar": ["layout", "navbar", "grid", "row", "header"],
325327
"layout-rows": ["layout", "rows", "grid", "masonry", "collage"],
326328
"layout-sidebar-right": ["layout", "sidebar", "right", "grid", "aside", "column", "columns"],
@@ -419,6 +421,7 @@
419421
"rotate-2": ["rotate", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
420422
"rotate-clockwise-2": ["rotate", "clockwise", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
421423
"rotate-clockwise": ["rotate", "clockwise", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
424+
"rotate-rectangle": ["rotate", "rectangle"],
422425
"rotate": ["rotate", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
423426
"route": ["route", "path", "navigation", "map"],
424427
"router": ["router", "wifi", "device", "wireless", "signal", "station", "cast"],

0 commit comments

Comments
 (0)