diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-12 14:54:16 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-12 14:54:16 +0100 |
| commit | 410dbc573bbb873a447710e122faefd11075b6df (patch) | |
| tree | cc4af9e6f213579ad92a27aeaef52d8d2e0158b6 /searx/static/less/bootstrap/mixins/text-overflow.less | |
| parent | 12425618caacec90ac90332f580fb628ef32e213 (diff) | |
[enh] static content generalization
Diffstat (limited to 'searx/static/less/bootstrap/mixins/text-overflow.less')
| -rw-r--r-- | searx/static/less/bootstrap/mixins/text-overflow.less | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/searx/static/less/bootstrap/mixins/text-overflow.less b/searx/static/less/bootstrap/mixins/text-overflow.less new file mode 100644 index 000000000..c11ad2fb7 --- /dev/null +++ b/searx/static/less/bootstrap/mixins/text-overflow.less @@ -0,0 +1,8 @@ +// Text overflow +// Requires inline-block or block for proper styling + +.text-overflow() { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} |