All Questions
Tagged with twitter-bootstrap less
829 questions
2
votes
1
answer
993
views
Mixing less and sass files in Angular application
I'm building an Angular application using the ng-zorro library for components. Usually, I also import the entire Bootstrap css file for some utilities like grid system and spacing classes which I have ...
0
votes
2
answers
468
views
Including Bootstrap-like styles with first Angular and LESS app
I know Bootstrap and some other frameworks related to Angular a bit but am going into first Angular 13 app.
I can see that using LESS is an option which is cool for all the variables and mix-ins and ...
1
vote
1
answer
315
views
Problem with webpack encore : error compilation less
I have a compilation problem with Bootstrap files (Webpack Encore) :
Error evaluating function percentage: argument must be a number
Error in /app/assets/less/variables.less (line 302, column 26)
...
1
vote
0
answers
289
views
Import Less-Files from Classpath (Bootstrap Webjars)
I want to generate my CSS-Files from Less-Files via LessCss-Gradle-Plugin (https://github.com/obecker/gradle-lesscss-plugin).
In my build.gradle I added the webjar-dependencies for bootstrap and so on....
0
votes
0
answers
320
views
How do you force the text to not push button down when it overflows 2nd line?
I have a text in bootstrap card and there's a button under it. Everytime I resize the page the balance between the one card with less text and the other one with more text is broken. Basically the ...
2
votes
1
answer
300
views
Negative top margin + overflow:hidden on Boostrap carousel
I have a generic bootstrap v3.7 carousel and I'm trying to pull it up over the content above it like this
This is done with a margin-top: -50px; on the teal div. However, the hidden overflow property ...
0
votes
0
answers
318
views
Mixing scss and less files in one project (bootstrap customization context)
P.S. I do not have much knowledge and experience with gulp and worklfows on front end.
So the questions is: is it a normal gulp workflow:
Load all bootstrap scss files from node_modules into project (...
0
votes
0
answers
26
views
Stacking Horizontally Bootstrap columns creates unnecessary space when textarea is used [duplicate]
I am having a problem with the following piece of html. The functionality is to dynamically create an infinite number of textarea and text boxes, but when I increase rows of textarea from the UI, the ...
3
votes
2
answers
2k
views
Override/Customize mixins in Boostrap 4
I am trying to customize the badge class in Bootstrap 4. What I am trying to achieve is to display all badges with an outline (similar to .btn-outline-*). Right now, I am (naively) trying to do this ...
0
votes
1
answer
80
views
Brunch + Less + Bootstrap
I'm using Less with Brunch and I can't get my boostrap/font-awesome plugins to work.
My goal is to use Bootstrap and Font-Awesome as a node module.
exports.config = {
// See http://brunch.io/#...
0
votes
1
answer
244
views
Unable to compile Bootstrap css using grunt
There are plenty of tutorials online for this, but after two days of struggle - I have to get some assistance.
I am trying to to add a namespace to Bootstrap so I can use it in Salesforce without ...
0
votes
2
answers
558
views
Auto stretch bootstrap column if neighboring div is empty
Tools:
I have available the following tools: Bootstrap, .less
Question:
Is there a way to auto stretch a column if there is nothing in the neighboring column. Here is the html i'm wondering about:
...
0
votes
1
answer
62
views
SASS and LESS different behavior on variables pointing
Given this snippet, imagine it can be LESS or SASS changing $ by @
$lol: 1px !default;
$lil: $lol;
$lol: 8px;
.gg{
border-radius: $lil;
}
In SASS it compiles to
.gg {
border-radius: 1px;
}
In ...
0
votes
1
answer
77
views
Make PNG Logo bigger Size
has anyone an Idea, how I can resize our Logo?
It has a height of 52px but it only shows a height of 39px when I inspect it.
http://www.loccoz.com/
0
votes
1
answer
360
views
Override bootstrap less style
I have a main.css:
@import '~bootstrap/less/bootstrap.less';
@import url('./base.css');
@import url('./components/navbar.css');
I want to override bootstrap's default body background-color, so I ...