mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
348b7de7f7
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;
|
|
}
|