mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-24 03:40:10 +00:00
Move all deprecated vendor prefix mixins to less/mixins/vendor-prefixes.less Create mixins directory and move partials to that directory. FIXES #12994
9 lines
162 B
Plaintext
9 lines
162 B
Plaintext
// Text overflow
|
|
// Requires inline-block or block for proper styling
|
|
|
|
.text-overflow() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|