experimental rtl support (#209)

This commit is contained in:
Athou
2013-05-31 08:17:58 +02:00
parent 7dcfe4314b
commit 9568ccfeac
5 changed files with 32 additions and 2 deletions

View File

@@ -2,6 +2,10 @@
cursor: pointer;
}
.rtl {
direction: rtl;
}
.bs-fb ul {
margin-bottom: 0px;
}

View File

@@ -27,10 +27,11 @@
{{entry.feedName}}
</span>
<span class="entry-date visible-desktop">{{entry.date | entryDate}}</span>
<span class="entry-name" ng-class="{unread: entry.read == false, shrink: true}" ng-bind-html-unsafe="entry.title"></span>
<span class="entry-name" ng-class="{unread: entry.read == false, shrink: true, rtl: entry.rtl}" ng-bind-html-unsafe="entry.title"></span>
</a>
<div class="entry-body" ui-if="settingsService.settings.viewMode == 'expanded' || (isOpen && current == entry)" ng-mouseup="bodyClicked(entry, $event)">
<div class="entry-body" ui-if="settingsService.settings.viewMode == 'expanded' || (isOpen && current == entry)" ng-mouseup="bodyClicked(entry, $event)"
ng-class="{rtl: entry.rtl}">
<div class="entry-header">
<h4 class="entry-title">
<a href="{{entry.url}}" target="_blank" ng-bind-html-unsafe="entry.title"></a>