Skip to content

Commit

Permalink
Merge pull request #916 from tomyam1/v3
Browse files Browse the repository at this point in the history
fix remote font imports for less 3 again
  • Loading branch information
thomaspark committed Jun 22, 2019
2 parents a3168ae + fa207fb commit c41a8f0
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cosmo/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion cyborg/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion darkly/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion flatly/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion journal/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion lumen/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion paper/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion readable/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Raleway:400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion sandstone/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,500,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion simplex/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion spacelab/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion superhero/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion united/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Ubuntu:400,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down
2 changes: 1 addition & 1 deletion yeti/bootswatch.less
Expand Up @@ -5,7 +5,7 @@
@web-font-path: "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700";

.web-font(@path) {
@import url("@{path}");
@import (css) url("@{path}");
}
.web-font(@web-font-path);

Expand Down

0 comments on commit c41a8f0

Please sign in to comment.