heinrichloewen

I have a suggestion for the less […]

heinrichloewen PURCHASED
7 years ago
Hi,
I have a suggestion for the less folder. Why don't you change the structure to...
├── base.less
├── mixins.less
├── responsive.less
├── default
│   ├── styles.less
│   └── theme-default.less
├── theme-10
│   ├── styles.less
│   └── theme-default.less
├── theme-2
│   ├── styles.less
│   └── theme-default.less
├── theme-3
│   ├── styles.less
│   └── theme-default.less
├── theme-4
│   ├── styles.less
│   └── theme-default.less
├── theme-5
│   ├── styles.less
│   └── theme-default.less
├── theme-6
│   ├── styles.less
│   └── theme-default.less
├── theme-7
│   ├── styles.less
│   └── theme-default.less
├── theme-8
│   ├── styles.less
│   └── theme-default.less
└── theme-9
├── styles.less
└── theme-default.less

Every styles.less file would then be the same, which is...
@import "../mixins.less";
@import "theme-default.less";
@import "../base.less";
@import "../responsive.less";

This would make if more easy to adjust the style, because the base.less file would only have to be adjusted once and all css files for the particular theme could be compiled from it.

Best.