Hello Theme: do not depend on language specific labels

This commit is contained in:
Mathias Kresin 2014-10-22 19:49:24 +02:00
parent b0ca5e8aa0
commit 5a6cc4708a
2 changed files with 28 additions and 16 deletions

View File

@ -297,6 +297,10 @@ section.page {
padding: 10px 20px; }
.items article[data-item-status="read"][data-item-page="feed-items"] {
background-color: rgba(153, 153, 153, 0.7); }
.items article[data-item-bookmark="1"] .item-menu a[id*="bookmark-"]:before {
content: "\f088"; }
.items article[data-item-bookmark="0"] .item-menu a[id*="bookmark-"]:before {
content: "\f087"; }
.items article h2 {
display: block;
margin-bottom: 5px; }
@ -338,10 +342,6 @@ section.page {
content: "\f044"; }
.items .item-menu li a[href*="action=refresh-feed"]:before {
content: "\f021"; }
.items .item-menu li a[id*="bookmark-"]:before {
content: "\f088"; }
.items .item-menu li a[id*="bookmark-"][data-reverse-label*="remove"]:before {
content: "\f087"; }
.items .item-menu li a[href*="action=mark-item-removed"]:before {
content: "\f014";
margin-right: 2px; }

View File

@ -12,6 +12,30 @@
}
}
&[data-item-bookmark="1"] {
.item-menu {
a {
&[id*="bookmark-"] {
&:before {
content: "\f088";
}
}
}
}
}
&[data-item-bookmark="0"] {
.item-menu {
a {
&[id*="bookmark-"] {
&:before {
content: "\f087";
}
}
}
}
}
h2 {
display: block;
margin-bottom: 5px;
@ -86,18 +110,6 @@
}
}
&[id*="bookmark-"] {
&:before {
content: "\f088";
}
&[data-reverse-label*="remove"] {
&:before {
content: "\f087";
}
}
}
&[href*="action=mark-item-removed"] {
&:before {
content: "\f014";