Jump to content
  • 0

Примеси в less


shol
 Share

Question

Здравствуйте.

Как правильно использовать примесь в less, если эти примеси описаны в одном файле, а используються в другом?

 

Например:

.icon-youtube { // этот клас в другом файле  background-image: url(../img/icons-spritesheet.png);  background-position: -20px 0px;  width: 24px;  height: 26px;}.block {  .icon-youtube;}

В этом примере класс .icon-youtube генерируется grunt`ом и записан в отдельном файле. В файле стилей нужно использовать этот клас как примесь. Если в файл стилей подключить сгенерированный файл через @import - компилятор less выдает ошибку, что .icon-youtube не определен.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Внимательно посмотрите, как у Вас организованы файлы LESS. Что Вы компилируете? Вам же необходимо в результате компиляции из множества файлов LESS получить один файл CSS. Создайте один общий файл (к примеру var-style.less), который объединяет все остальные примерно с таким содержимым (перечислить Ваши LESS файлы):

@import url("base.less");
@import url("variables.less");
@import url("layout.less");
@import url("blocks/header.less");
@import url("blocks/btn.less");
@import url("blocks/slider.less");
@import url("blocks/about.less");
@import url("blocks/news.less");
@import url("blocks/gallery.less");
@import url("blocks/footer.less");

 

И компилировать Grunt нужно именно этот один файл. Тогда все примеси и переменные будут работать без проблем.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy