summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-08 08:42:43 -0500
committerChristopher Speller <crspeller@gmail.com>2016-03-08 08:42:43 -0500
commit8dd3711bd8e8a76329e04bff142113516af11948 (patch)
treecd21951d0ede76feb0642652aab7367e32c7999a /web/sass-files/sass
parent3c141551488b9e956b4e1de0267f35768a25faed (diff)
parentc6fce25c7c7c67cf325367a8ed4dacc738582a26 (diff)
downloadchat-8dd3711bd8e8a76329e04bff142113516af11948.tar.gz
chat-8dd3711bd8e8a76329e04bff142113516af11948.tar.bz2
chat-8dd3711bd8e8a76329e04bff142113516af11948.zip
Merge pull request #2347 from hmhealey/morechannels
Fixed positioning of elements in MoreChannels modal
Diffstat (limited to 'web/sass-files/sass')
-rw-r--r--web/sass-files/sass/partials/_modal.scss20
1 files changed, 16 insertions, 4 deletions
diff --git a/web/sass-files/sass/partials/_modal.scss b/web/sass-files/sass/partials/_modal.scss
index ca83c77da..12cd065da 100644
--- a/web/sass-files/sass/partials/_modal.scss
+++ b/web/sass-files/sass/partials/_modal.scss
@@ -23,17 +23,29 @@
border-radius: 50px;
margin-right: 8px;
}
+ .more-row {
+ display: flex;
+
+ .more-details {
+ flex-grow: 1;
+ flex-shrink: 1;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+ .more-actions {
+ flex-grow: 0;
+ flex-shrink: 0;
+ }
+ }
.more-name {
font-weight: 600;
font-size: 0.95em;
- overflow: hidden;
- text-overflow: ellipsis;
+ white-space: nowrap;
}
.more-description {
@include opacity(0.7);
display: block;
- overflow: hidden;
- text-overflow: ellipsis;
+ white-space: nowrap;
}
tbody {
> tr {