Skip to content

Commit

Permalink
Merge pull request jquense#411 from vdh/remove-tilde
Browse files Browse the repository at this point in the history
Remove unnecessary tilde escape strings
  • Loading branch information
jquense authored Jul 12, 2016
2 parents db6cd67 + a0e6bc0 commit 61ee9c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/less/core.less
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ ul.rw-list {
.rw-combobox input.rw-input,
.rw-datetimepicker input.rw-input,
.rw-numberpicker input.rw-input {
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075)");
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
}


Expand Down
10 changes: 5 additions & 5 deletions src/less/icons.less
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

@font-face {
font-family: 'RwWidgets';
src: ~"url('@{rw-font-path}/rw-widgets.eot?v=@{rw-version}')";
src: ~"url('@{rw-font-path}/rw-widgets.eot?#iefix&v=@{rw-version}') format('embedded-opentype')",
~"url('@{rw-font-path}/rw-widgets.woff?v=@{rw-version}') format('woff')",
~"url('@{rw-font-path}/rw-widgets.ttf?v=@{rw-version}') format('truetype')",
~"url('@{rw-font-path}/rw-widgets.svg?v=@{rw-version}#fontawesomeregular') format('svg')";
src: url('@{rw-font-path}/rw-widgets.eot?v=@{rw-version}');
src: url('@{rw-font-path}/rw-widgets.eot?#iefix&v=@{rw-version}') format('embedded-opentype'),
url('@{rw-font-path}/rw-widgets.woff?v=@{rw-version}') format('woff'),
url('@{rw-font-path}/rw-widgets.ttf?v=@{rw-version}') format('truetype'),
url('@{rw-font-path}/rw-widgets.svg?v=@{rw-version}#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down

0 comments on commit 61ee9c3

Please sign in to comment.