mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
clip entry name
This commit is contained in:
@@ -79,18 +79,35 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#feed-accordion .entry-heading {
|
#feed-accordion .entry-heading {
|
||||||
|
height: 20px;
|
||||||
padding: 6px 0px;
|
padding: 6px 0px;
|
||||||
display: block;
|
display: block;
|
||||||
color: black;
|
color: black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
padding: 6px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#feed-accordion .entry-heading .feed-name {
|
#feed-accordion .entry-heading .feed-name {
|
||||||
color: #555;
|
color: #555;
|
||||||
width: 150px;
|
display: block;
|
||||||
display: inline-block;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
#feed-accordion .entry-heading .entry-name {
|
||||||
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 150px;
|
||||||
|
margin-right: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#feed-accordion .entry-heading .entry-date {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#feed-accordion a.entry-heading:hover {
|
#feed-accordion a.entry-heading:hover {
|
||||||
|
|||||||
@@ -9,8 +9,9 @@
|
|||||||
<a scroll-to="isOpen && current == entry" href="{{entry.url}}" target="_blank" class="entry-heading" ng-click="entryClicked(entry, $event)"
|
<a scroll-to="isOpen && current == entry" href="{{entry.url}}" target="_blank" class="entry-heading" ng-click="entryClicked(entry, $event)"
|
||||||
ng-class="{open: current == entry, closed: current != entry}">
|
ng-class="{open: current == entry, closed: current != entry}">
|
||||||
<span ui-if="selectedType == 'category'" class="feed-name">{{entry.feedName}}</span>
|
<span ui-if="selectedType == 'category'" class="feed-name">{{entry.feedName}}</span>
|
||||||
|
<span class="entry-date">{{entry.date}}</span>
|
||||||
<span class="entry-name" ng-class="{unread: entry.read == false}" ng-bind-html-unsafe="entry.title"></span>
|
<span class="entry-name" ng-class="{unread: entry.read == false}" ng-bind-html-unsafe="entry.title"></span>
|
||||||
<span class="pull-right">{{entry.date}}</span>
|
|
||||||
</a>
|
</a>
|
||||||
<div class="entry-body" ui-if="isOpen && current == entry">
|
<div class="entry-body" ui-if="isOpen && current == entry">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user