A
A
Anton2016-10-12 10:17:47
Less
Anton, 2016-10-12 10:17:47

How to connect less in bootstrap to display a button?

Good day!
Maybe I don’t understand something, but I’m trying to tweak the main.less buttons from bootstrap in the file

@import "../lib/bootstrap/less/mixins/buttons.less";

and accordingly output as a mixin, but in gulp it says that there is an error and cannot read the variables.
.btn-dark {
    .button-variant(@color: @white, @background: @black, @border: 0;)
}

Answer the question

In order to leave comments, you need to log in

5 answer(s)
G
Grigory S., 2016-10-12
@Ooos

@import (reference) '../lib/bootstrap/less/bootstrap.less';
@import "../lib/bootstrap/less/mixins/buttons.less";

.btn-dark {
   .button-variant(#fff, #e36d00, #737373);
}

Сергей delphinpro, 2016-11-10
@heIIfire

getElementsByTagName возвращает массив элементов.
пилите цикл, это вам не jquery

Алексей, 2016-11-10
@alsopub

Может быть потому что getElementsByTagName это массив.

R
RoverWhite, 2016-11-10
@RoverWhite

getElementsByTagName('p') возвращает множество объектов,
чтобы повесить onclick надо пройтись по полученному массиву.

D
DonPablo, 2016-11-10
@DonPablo

document.getElementsByTagName('p')[0].onclick = function (){alert("Done!");};
Так будет работать. Обращайся к первому элементу в коллекции в данном случае, т.е по индексу [0]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question