diff --git a/themes/hello/css/app.css b/themes/hello/css/app.css index a97636a..3784d42 100755 --- a/themes/hello/css/app.css +++ b/themes/hello/css/app.css @@ -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; } diff --git a/themes/hello/scss/_items.scss b/themes/hello/scss/_items.scss index 8e53a1e..e76d4f0 100755 --- a/themes/hello/scss/_items.scss +++ b/themes/hello/scss/_items.scss @@ -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";