From 676a3a7f8ca0647064aaad9129f103a02540eba8 Mon Sep 17 00:00:00 2001 From: Tom Price Date: Mon, 18 May 2015 17:10:46 +0100 Subject: [PATCH] Add missing overflow --- RIGS/static/css/screen.css | 3 +++ RIGS/static/scss/screen.scss | 1 + 2 files changed, 4 insertions(+) diff --git a/RIGS/static/css/screen.css b/RIGS/static/css/screen.css index 86133881..ebb9962b 100644 --- a/RIGS/static/css/screen.css +++ b/RIGS/static/css/screen.css @@ -9055,4 +9055,7 @@ textarea { /* line 56, ../scss/screen.scss */ .overflow-ellipsis { text-overflow: ellipsis; + display: inline-block; + max-width: 100%; + overflow: hidden; } diff --git a/RIGS/static/scss/screen.scss b/RIGS/static/scss/screen.scss index 0577abb5..5f727dd7 100644 --- a/RIGS/static/scss/screen.scss +++ b/RIGS/static/scss/screen.scss @@ -57,4 +57,5 @@ textarea { text-overflow: ellipsis; display: inline-block; max-width: 100%; + overflow: hidden; }