Skip to content

Commit cff8cd3

Browse files
committed
Merge pull request #714 from urban/master
Fixed argument error in selectize.less
2 parents 9a51c7d + e5bf246 commit cff8cd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/less/selectize.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@
265265
position: absolute;
266266
top: 50%;
267267
right: @selectize-arrow-offset;
268-
margin-top: round(-1 * @selectize-arrow-size / 2);
268+
margin-top: round((-1 * @selectize-arrow-size / 2));
269269
width: 0;
270270
height: 0;
271271
border-style: solid;

src/less/selectize.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@
260260
position: absolute;
261261
top: 50%;
262262
right: @selectize-arrow-offset;
263-
margin-top: round(-1 * @selectize-arrow-size / 2);
263+
margin-top: round((-1 * @selectize-arrow-size / 2));
264264
width: 0;
265265
height: 0;
266266
border-style: solid;

0 commit comments

Comments
 (0)