Skip to content

Commit 61ee9c3

Browse files
authored
Merge pull request jquense#411 from vdh/remove-tilde
Remove unnecessary tilde escape strings
2 parents db6cd67 + a0e6bc0 commit 61ee9c3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/less/core.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ ul.rw-list {
353353
.rw-combobox input.rw-input,
354354
.rw-datetimepicker input.rw-input,
355355
.rw-numberpicker input.rw-input {
356-
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075)");
356+
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
357357
}
358358

359359

src/less/icons.less

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
@font-face {
33
font-family: 'RwWidgets';
4-
src: ~"url('@{rw-font-path}/rw-widgets.eot?v=@{rw-version}')";
5-
src: ~"url('@{rw-font-path}/rw-widgets.eot?#iefix&v=@{rw-version}') format('embedded-opentype')",
6-
~"url('@{rw-font-path}/rw-widgets.woff?v=@{rw-version}') format('woff')",
7-
~"url('@{rw-font-path}/rw-widgets.ttf?v=@{rw-version}') format('truetype')",
8-
~"url('@{rw-font-path}/rw-widgets.svg?v=@{rw-version}#fontawesomeregular') format('svg')";
4+
src: url('@{rw-font-path}/rw-widgets.eot?v=@{rw-version}');
5+
src: url('@{rw-font-path}/rw-widgets.eot?#iefix&v=@{rw-version}') format('embedded-opentype'),
6+
url('@{rw-font-path}/rw-widgets.woff?v=@{rw-version}') format('woff'),
7+
url('@{rw-font-path}/rw-widgets.ttf?v=@{rw-version}') format('truetype'),
8+
url('@{rw-font-path}/rw-widgets.svg?v=@{rw-version}#fontawesomeregular') format('svg');
99
font-weight: normal;
1010
font-style: normal;
1111
}

0 commit comments

Comments
 (0)