Skip to content

Commit

Permalink
Drop less markers from *.css imports
Browse files Browse the repository at this point in the history
less ≥ 3.11 will try to look for a <filename>.less (e. g.
"page.css.less") which does not exist.
  • Loading branch information
martinpitt committed Feb 10, 2020
1 parent 342290a commit 65dfb4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkg/machines/machines.less
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@import (less) "../lib/page.css";
@import "../lib/page.css";
@import "../lib/cards.less";
@import (less) "../lib/table.css";
@import "../lib/table.css";

@import (less) "../../node_modules/c3/c3.css";
@import "../../node_modules/c3/c3.css";

.icon-2x-vms {
font-size: 2em;
Expand Down
4 changes: 2 additions & 2 deletions pkg/shell/shell.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

/* ---------------------------------------------------------------------------------------------------- */

@import (less) "../lib/page.css";
@import (less) "../lib/table.css";
@import "../lib/page.css";
@import "../lib/table.css";
@import "variables.less";
@import "switcher.less";
@import "active-pages.less";
Expand Down

0 comments on commit 65dfb4f

Please sign in to comment.