diff options
author | V.Krishn <vkrishn4@gmail.com> | 2019-12-30 21:34:11 +0530 |
---|---|---|
committer | V.Krishn <vkrishn4@gmail.com> | 2019-12-30 21:34:11 +0530 |
commit | fe966233c6f358d511dfef94ce2712ecf8bf480a (patch) | |
tree | 0db31bf3275031cd2b0d54d3003da66e827729c8 | |
parent | eec1f55fae61eb708febfe01320c9cba23db507f (diff) | |
download | nbreader-fe966233c6f358d511dfef94ce2712ecf8bf480a.tar.bz2 |
add overflow ellipsis
-rw-r--r-- | public/theme/default/css/default.css | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/public/theme/default/css/default.css b/public/theme/default/css/default.css index f16e9b5..4891106 100644 --- a/public/theme/default/css/default.css +++ b/public/theme/default/css/default.css @@ -77,7 +77,10 @@ code { #rsslist div .glyphicon { padding-right: 4px; } #collapseOne .list-group-item { padding: 5px 5px; border: 0px; } -#collapseOne .list-group-item .text { display: inline-block; overflow: hidden; white-space: nowrap; } +#collapseOne .list-group-item .text { + display: inline-block; overflow: hidden; + white-space: nowrap; text-overflow:ellipsis; +} #collapseOne .l1 .list-group-item .text { width: 71%; } #collapseOne .l2 .list-group-item .text { width: 66%; } #collapseOne .l3 .list-group-item .text { width: 61%; } @@ -107,9 +110,8 @@ code { #rssactive .pubdate { float: right; padding: 0px 0px 0px 5px; } #rssactive .author { font-weight: bold; display: block; float: right; } #rssactive .title { - vertical-align: top; - display: inline-block; width: 65%; - white-space: nowrap; overflow: hidden; + display: inline-block; width: 65%; vertical-align: top; + white-space: nowrap; overflow: hidden; text-overflow:ellipsis; } #rssactive .unread { background-color: #fff; } #rssactive .unread .author { color: blue; } @@ -131,9 +133,8 @@ code { font-size: 90%; } #rssview .title { - display: inline-block; width: 75%; - white-space: nowrap; overflow: hidden; - vertical-align: top; + display: inline-block; width: 75%; vertical-align: top; + white-space: nowrap; overflow: hidden; text-overflow:ellipsis; } #rssview .readtog { float: right; } #rssview .author, |