mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Compact and comfortable feed titles. New unread indicators.
This commit is contained in:
parent
a880a24b55
commit
49361fa634
11 changed files with 127 additions and 72 deletions
|
@ -52,13 +52,13 @@ body {
|
|||
opacity: .2;
|
||||
}
|
||||
.NB-story.NB-score-positive .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 0 0;
|
||||
}
|
||||
.NB-story.NB-score-neutral .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 0 0;
|
||||
}
|
||||
.NB-story.NB-score-negative .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat 0 0;
|
||||
}
|
||||
.NB-story .NB-story-title {
|
||||
clear: left;
|
||||
|
@ -287,11 +287,11 @@ body {
|
|||
top: 17px;
|
||||
}
|
||||
#NB-page-story.NB-score-positive .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 0 0;
|
||||
}
|
||||
#NB-page-story.NB-score-neutral .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 0 0;
|
||||
}
|
||||
#NB-page-story.NB-score-negative .NB-icon-score {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat 0 0;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat 0 0;
|
||||
}
|
||||
|
|
|
@ -571,7 +571,7 @@ hr {
|
|||
}
|
||||
|
||||
.NB-feedlist .folder_title {
|
||||
padding: 4px 6px 4px 36px;
|
||||
padding: 6px 6px 6px 36px;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
font-weight: bold;
|
||||
|
@ -589,16 +589,16 @@ hr {
|
|||
background-size: 16px;
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 2px;
|
||||
top: 4px;
|
||||
}
|
||||
.NB-theme-feed-size-m .NB-feedlist li.folder .NB-folder-icon {
|
||||
top: 3px;
|
||||
top: 5px;
|
||||
}
|
||||
.NB-theme-feed-size-l .NB-feedlist li.folder .NB-folder-icon {
|
||||
top: 3px;
|
||||
top: 5px;
|
||||
}
|
||||
.NB-theme-feed-size-xl .NB-feedlist li.folder .NB-folder-icon {
|
||||
top: 4px;
|
||||
top: 6px;
|
||||
}
|
||||
.NB-feedlist li.folder.NB-folder-collapsed .NB-folder-icon{
|
||||
background: transparent url('/media/embed/icons/nouns/folder-closed.svg') no-repeat 0 0;
|
||||
|
@ -737,16 +737,16 @@ img.feed_favicon {
|
|||
top: 4px;
|
||||
}
|
||||
.NB-theme-feed-size-l .NB-feedlist img.feed_favicon {
|
||||
top: 4px;
|
||||
top: 7px;
|
||||
}
|
||||
.NB-density-compact.NB-theme-feed-size-l .NB-feedlist img.feed_favicon {
|
||||
top: 2px;
|
||||
}
|
||||
.NB-theme-feed-size-xl .NB-feedlist img.feed_favicon {
|
||||
top: 5px;
|
||||
}
|
||||
.NB-theme-feed-size-xl .NB-feedlist img.feed_favicon {
|
||||
top: 8px;
|
||||
}
|
||||
.NB-density-compact.NB-theme-feed-size-xl .NB-feedlist img.feed_favicon {
|
||||
top: 3px;
|
||||
top: 6px;
|
||||
}
|
||||
.NB-feedlist .feed_title {
|
||||
display: block;
|
||||
|
@ -756,7 +756,7 @@ img.feed_favicon {
|
|||
line-height: 18px;
|
||||
overflow: hidden;
|
||||
text-shadow: 0 1px 0 rgba(250, 250, 250, .4);
|
||||
|
||||
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
|
@ -769,6 +769,22 @@ img.feed_favicon {
|
|||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.NB-theme-feed-size-xs .NB-feedlist .feed_title {
|
||||
line-height: 16px;
|
||||
}
|
||||
.NB-theme-feed-size-s .NB-feedlist .feed_title {
|
||||
line-height: 18px;
|
||||
}
|
||||
.NB-theme-feed-size-m .NB-feedlist .feed_title {
|
||||
line-height: 20px;
|
||||
}
|
||||
.NB-theme-feed-size-l .NB-feedlist .feed_title {
|
||||
line-height: 22px;
|
||||
}
|
||||
.NB-theme-feed-size-xl .NB-feedlist .feed_title {
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.NB-feedlist .feed .NB-feedlist-manage-icon,
|
||||
.NB-feedlist .folder_title .NB-feedlist-manage-icon {
|
||||
opacity: 0;
|
||||
|
@ -1002,7 +1018,7 @@ img.feed_favicon {
|
|||
font-weight: bold;
|
||||
color: #FFF;
|
||||
padding: 2px 1px 2px;
|
||||
margin: 1px 1px 0;
|
||||
margin: 2px 1px 0;
|
||||
background-color: #8eb6e8;
|
||||
display: none;
|
||||
line-height: 14px;
|
||||
|
@ -1011,15 +1027,15 @@ img.feed_favicon {
|
|||
/* border-bottom: 1px solid rgba(0, 0, 0, .1); */
|
||||
}
|
||||
.NB-theme-feed-size-xs .NB-feedlist .unread_count {
|
||||
margin-top: 2px;
|
||||
margin-top: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.NB-theme-feed-size-s .NB-feedlist .unread_count {
|
||||
|
||||
margin-top: 1px;
|
||||
}
|
||||
.NB-theme-feed-size-l .NB-feedlist .unread_count {
|
||||
margin-top: 3px;
|
||||
margin-top: 2px;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
@ -1388,7 +1404,7 @@ img.feed_favicon {
|
|||
.NB-feedbar .folder_title_text {
|
||||
/* float: left;*/
|
||||
display: block;
|
||||
margin-left: 26px;
|
||||
margin-left: 35px;
|
||||
color: #40413E;
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
|
||||
height: 24px;
|
||||
|
@ -1559,6 +1575,7 @@ img.feed_favicon {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.NB-feedbar:hover .NB-no-hover .feed_favicon,
|
||||
.NB-feedbar:hover .NB-no-hover .NB-folder-icon {
|
||||
display: block;
|
||||
}
|
||||
|
@ -1888,23 +1905,23 @@ img.feed_favicon {
|
|||
}
|
||||
|
||||
.NB-story-title.NB-story-positive .NB-storytitles-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 13px 6px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 13px 4px;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-story-title.NB-story-neutral .NB-storytitles-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 13px 6px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 13px 4px;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-story-title.NB-story-negative .NB-storytitles-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat 13px 6px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat 13px 4px;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-story-title.NB-story-starred .NB-storytitles-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_starred.png') no-repeat 13px 6px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_starred.png') no-repeat 13px 4px;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-story-title .NB-storytitles-story-image {
|
||||
|
@ -3416,8 +3433,8 @@ body {
|
|||
}
|
||||
.NB-feed-story .NB-feed-story-sentiment {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: -19px;
|
||||
top: 6px;
|
||||
left: -22px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
@ -3426,23 +3443,23 @@ body {
|
|||
}
|
||||
|
||||
.NB-feed-story.NB-story-starred .NB-feed-story-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_starred.png') no-repeat 4px 4px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_starred.png') no-repeat 0 0;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-feed-story.NB-story-positive .NB-feed-story-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 4px 4px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 0 0;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-feed-story.NB-story-neutral .NB-feed-story-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 4px 4px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 0 0;
|
||||
background-size: 10px;
|
||||
}
|
||||
|
||||
.NB-feed-story.NB-story-negative .NB-feed-story-sentiment {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat 4px 4px;
|
||||
background-size: 8px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat 0 0;
|
||||
background-size: 10px;
|
||||
}
|
||||
.NB-feed-story.read .NB-feed-story-sentiment {
|
||||
opacity: .06;
|
||||
|
@ -4948,15 +4965,15 @@ body {
|
|||
color: #B0B0B0;
|
||||
}
|
||||
.NB-feeds-header-dashboard .NB-feeds-header-negative {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat 6px 2px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat 6px 2px;
|
||||
display: none;
|
||||
}
|
||||
.NB-feeds-header-dashboard .NB-feeds-header-neutral {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 6px 2px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 6px 2px;
|
||||
background-size: 8px;
|
||||
}
|
||||
.NB-feeds-header-dashboard .NB-feeds-header-positive {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 6px 2px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 6px 2px;
|
||||
background-size: 8px;
|
||||
}
|
||||
.NB-feeds-header-dashboard .NB-feeds-header-starred {
|
||||
|
@ -5023,7 +5040,7 @@ body {
|
|||
|
||||
.NB-feeds-header .NB-feeds-header-icon {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
top: 9px;
|
||||
left: 10px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
@ -5031,7 +5048,7 @@ body {
|
|||
|
||||
.NB-feeds-header .NB-feeds-header-title {
|
||||
display: block;
|
||||
padding: 4px 4px 4px 36px;
|
||||
padding: 6px 6px 6px 36px;
|
||||
text-decoration: none;
|
||||
color: #545454;
|
||||
overflow: hidden;
|
||||
|
@ -5367,21 +5384,21 @@ background: transparent;
|
|||
margin-top: 5px;
|
||||
}
|
||||
.NB-taskbar .NB-task-story-next-positive .NB-task-image {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat center center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat center center;
|
||||
background-size: 8px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.NB-taskbar .NB-task-story-next-neutral .NB-task-image {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat center center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat center center;
|
||||
background-size: 8px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.NB-taskbar .NB-task-story-next-negative .NB-task-image {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_hidden.png') no-repeat center center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-hidden.svg') no-repeat center center;
|
||||
background-size: 8px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
|
@ -6331,19 +6348,19 @@ form.opml_import_form input {
|
|||
|
||||
.NB-taskbar-intelligence .NB-taskbar-intelligence-negative {
|
||||
right: 94px;
|
||||
background: transparent url(/media/embed/icons/circular/g_icn_hidden.png) no-repeat 0 0;
|
||||
background: transparent url(/media/embed/icons/nouns/indicator-hidden.svg) no-repeat 0 0;
|
||||
background-size: 8px;
|
||||
}
|
||||
|
||||
.NB-taskbar-intelligence .NB-taskbar-intelligence-neutral {
|
||||
right: 45px;
|
||||
background: transparent url(/media/embed/icons/circular/g_icn_unread.png) no-repeat 0 0;
|
||||
background: transparent url(/media/embed/icons/nouns/indicator-unread.svg) no-repeat 0 0;
|
||||
background-size: 8px;
|
||||
}
|
||||
|
||||
.NB-taskbar-intelligence .NB-taskbar-intelligence-positive {
|
||||
right: -4px;
|
||||
background: transparent url(/media/embed/icons/circular/g_icn_focus.png) no-repeat 0 0;
|
||||
background: transparent url(/media/embed/icons/nouns/indicator-focus.svg) no-repeat 0 0;
|
||||
background-size: 8px;
|
||||
}
|
||||
|
||||
|
@ -8589,11 +8606,11 @@ form.opml_import_form input {
|
|||
opacity: 1;
|
||||
}
|
||||
.NB-menu-manage .NB-menu-manage-story-unread .NB-menu-manage-image {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 4px center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 4px center;
|
||||
background-size: 8px;
|
||||
}
|
||||
.NB-menu-manage .NB-menu-manage-story-read .NB-menu-manage-image {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 4px center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 4px center;
|
||||
background-size: 8px;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
@ -10023,11 +10040,11 @@ form.opml_import_form input {
|
|||
display: block;
|
||||
float: left;
|
||||
margin: 0 5px 0 2px;
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 0 center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 0 center;
|
||||
background-size: 8px;
|
||||
}
|
||||
.NB-feed-notification .NB-feed-notification-filter .NB-focus-icon {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_focus.png') no-repeat 0 center;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-focus.svg') no-repeat 0 center;
|
||||
background-size: 8px;
|
||||
}
|
||||
.NB-feed-notification .segmented-control {
|
||||
|
@ -11540,7 +11557,7 @@ form.opml_import_form input {
|
|||
}
|
||||
|
||||
.NB-static-faq .NB-module ul li {
|
||||
background: transparent url('/media/embed/icons/circular/g_icn_unread.png') no-repeat 0 6px;
|
||||
background: transparent url('/media/embed/icons/nouns/indicator-unread.svg') no-repeat 0 6px;
|
||||
background-size: 8px;
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
|
10
media/img/icons/nouns/indicator-focus.svg
Normal file
10
media/img/icons/nouns/indicator-focus.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="68px" height="68px" viewBox="0 0 68 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>indicator-focus</title>
|
||||
<g id="indicator-focus" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="noun-dots-2561422-95978E" transform="translate(-0.000000, 0.000000)" fill="#5BB76C" fill-rule="nonzero">
|
||||
<path d="M34.000003,57.5219761 C20.9630424,57.5219761 10.4778292,47.0439523 10.4778292,33.9998003 C10.4778292,20.9628385 20.9558522,10.4776244 34.000003,10.4776244 C47.0369636,10.4776244 57.5221768,20.9556482 57.5221768,33.9998003 C57.5143754,47.036762 47.0363644,57.5219761 34.000003,57.5219761 M34.000003,68 C52.919804,68 68.000003,52.6613523 68.000003,34 C68.000003,15.3386477 52.6613537,0 34.000003,0 C15.3386524,0 3.02146611e-06,15.3386477 3.02146611e-06,34 C-0.00779539913,52.6623509 15.0812007,68 34.000003,68 Z" id="Shape"></path>
|
||||
<path d="M34.0038728,49 C25.7183476,49 19,42.2876649 19,34 C19,25.7123351 25.7183476,19 34.0038728,19 C42.2816524,19 49,25.7123351 49,34 C49,42.2876649 42.2816524,49 34.0038728,49 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
10
media/img/icons/nouns/indicator-hidden.svg
Normal file
10
media/img/icons/nouns/indicator-hidden.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="68px" height="68px" viewBox="0 0 68 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>indicator-hidden</title>
|
||||
<g id="indicator-hidden" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="noun-dots-2561422-95978E" fill="#B7655B" fill-rule="nonzero">
|
||||
<path d="M34,60.5882277 C19.4259179,60.5882277 7.41197204,48.8307349 7.41197204,34.0001997 C7.41197204,19.1696646 19.1694648,7.41217177 34,7.41217177 C48.8305352,7.41217177 60.3323738,19.4271163 60.3323738,34.0001997 C60.3323738,48.5732832 48.574881,60.5882277 34,60.5882277 M34,68 C52.9198026,68 68,52.6613523 68,34 C68,15.3386477 52.6613523,0 34,0 C15.3386477,0 0,15.081196 0,34 C0,52.918804 15.0889855,68 34,68 Z" id="Shape"></path>
|
||||
<path d="M34.5,48.1220374 C27.0498492,48.1220374 20.8777619,41.9579806 20.8777619,34.4997992 C20.8777619,27.0496484 27.0418186,20.8775611 34.5,20.8775611 C41.9501508,20.8775611 48.1222381,27.0416178 48.1222381,34.4997992 C48.1222381,41.9499501 41.9581814,48.1220374 34.5,48.1220374 M34.5,53 C44.7813246,53 53,44.773294 53,34.5 C53,24.2186754 44.773294,16 34.5,16 C24.226706,16 16,24.2188762 16,34.5 C16,44.7811238 24.226706,53 34.5,53 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
9
media/img/icons/nouns/indicator-read.svg
Normal file
9
media/img/icons/nouns/indicator-read.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="68px" height="68px" viewBox="0 0 68 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>indicator-read</title>
|
||||
<g id="indicator-read" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="noun-dots-2561422-95978E" fill="#95968E" fill-rule="nonzero">
|
||||
<path d="M34,68 C52.9198026,68 68,52.6613523 68,34 C68,15.0801974 52.6613523,0 34,0 C15.3386477,0 0,15.3386477 0,34 C0,52.9198026 15.081196,68 34,68 Z M34,4.99980027 C50.1773833,4.99980027 63,17.822417 63,33.9998003 C63,50.1771836 50.1773833,62.9998003 34,62.9998003 C17.8226167,62.9998003 5,50.1771836 5,33.9998003 C5,17.822417 17.8226167,4.99980027 34,4.99980027 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 813 B |
9
media/img/icons/nouns/indicator-unread.svg
Normal file
9
media/img/icons/nouns/indicator-unread.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="68px" height="68px" viewBox="0 0 68 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>indicator-unread</title>
|
||||
<g id="indicator-unread" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="noun-dots-2561422-95978E" fill="#AEA99C" fill-rule="nonzero">
|
||||
<path d="M34,68 C52.9198026,68 68,52.6613523 68,34 C68,15.0801974 52.6613523,0 34,0 C15.3386477,0 0,15.3386477 0,34 C0,52.9198026 15.081196,68 34,68 Z M34,26.9998003 C37.9048856,26.9998003 41,30.0949146 41,33.9998003 C41,37.9046859 37.9048856,40.9998003 34,40.9998003 C30.0951144,40.9998003 27,37.9046859 27,33.9998003 C27,30.0949146 30.0951144,26.9998003 34,26.9998003 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 822 B |
|
@ -17,7 +17,7 @@ NEWSBLUR.Models.SavedSearchFeed = Backbone.Model.extend({
|
|||
} else if (_.string.startsWith(feed_id, 'river:')) {
|
||||
url = NEWSBLUR.Globals.MEDIA_URL + 'img/icons/nouns/folder-open.svg';
|
||||
} else if (feed_id == "read") {
|
||||
url = NEWSBLUR.Globals.MEDIA_URL + 'img/icons/circular/g_icn_unread.png';
|
||||
url = NEWSBLUR.Globals.MEDIA_URL + 'img/icons/nouns/indicator-unread.svg';
|
||||
} else if (feed_id == "starred") {
|
||||
url = NEWSBLUR.Globals.MEDIA_URL + 'img/icons/nouns/saved-stories.svg';
|
||||
} else if (_.string.startsWith(feed_id, 'starred:')) {
|
||||
|
|
|
@ -322,13 +322,13 @@ var classifier_prototype = {
|
|||
]),
|
||||
$.make('li', [
|
||||
$.make('b', 'The intelligence slider filters stories.'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_focus.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-focus.svg'}),
|
||||
' are stories you like',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_unread.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-unread.svg'}),
|
||||
' are stories you have not yet rated',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_hidden.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-hidden.svg'}),
|
||||
' are stories you don\'t like'
|
||||
]),
|
||||
$.make('li', [
|
||||
|
@ -366,13 +366,13 @@ var classifier_prototype = {
|
|||
$.make('li', [
|
||||
$.make('img', { src: NEWSBLUR.Globals.MEDIA_URL + '/img/reader/intelligence_slider_positive.png', style: 'float: right', width: 114, height: 29 }),
|
||||
$.make('b', 'As a reminder, use the intelligence slider to select a filter:'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_hidden.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-hidden.svg'}),
|
||||
' are stories you don\'t like',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_unread.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-unread.svg'}),
|
||||
' are stories you have not yet rated',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_focus.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-focus.svg'}),
|
||||
' are stories you like'
|
||||
|
||||
]),
|
||||
|
|
|
@ -144,13 +144,13 @@ _.extend(NEWSBLUR.ReaderTutorial.prototype, {
|
|||
$.make('li', [
|
||||
$.make('b', 'Second: The intelligence slider filters stories based on training.'),
|
||||
$.make('div', { className: 'NB-tutorial-stories', id: 'story_titles' }),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_focus.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-focus.svg'}),
|
||||
'Focus stories are stories you like',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_unread.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-unread.svg'}),
|
||||
'Unread stories include both focus and unread stories',
|
||||
$.make('br'),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/circular/g_icn_hidden.png'}),
|
||||
$.make('img', { className: 'NB-trainer-bullet', src: NEWSBLUR.Globals.MEDIA_URL + '/img/icons/nouns/indicator-hidden.svg'}),
|
||||
'Hidden stories are filtered out'
|
||||
]),
|
||||
$.make('li', [
|
||||
|
@ -518,4 +518,4 @@ _.extend(NEWSBLUR.ReaderTutorial.prototype, {
|
|||
});
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -188,11 +188,11 @@
|
|||
All
|
||||
</li>
|
||||
<li class="NB-intelligence-slider-control NB-intelligence-slider-yellow" role="button">
|
||||
<img src="{{ MEDIA_URL }}embed/icons/circular/g_icn_unread.png">
|
||||
<img src="{{ MEDIA_URL }}embed/icons/nouns/indicator-unread.svg">
|
||||
<span class="NB-intelligence-label">Unread</span>
|
||||
</li>
|
||||
<li class="NB-intelligence-slider-control NB-intelligence-slider-green" role="button">
|
||||
<img src="{{ MEDIA_URL }}embed/icons/circular/g_icn_focus.png">
|
||||
<img src="{{ MEDIA_URL }}embed/icons/nouns/indicator-focus.svg">
|
||||
<span class="NB-intelligence-label">Focus</span>
|
||||
</li>
|
||||
<li class="NB-intelligence-slider-control NB-intelligence-slider-blue" role="button">
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
What do the three bullet colors next to stories mean?
|
||||
</li>
|
||||
<li class="NB-faq-answer">
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/circular/g_icn_hidden.png"> are stories you don't like<br>
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/circular/g_icn_unread.png"> are stories you have not yet rated<br>
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/circular/g_icn_focus.png"> are stories you like
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/nouns/indicator-hidden.svg"> are stories you don't like<br>
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/nouns/indicator-unread.svg"> are stories you have not yet rated<br>
|
||||
<img class="NB-trainer-bullet" src="/media//img/icons/nouns/indicator-focus.svg"> are stories you like
|
||||
</li>
|
||||
<li class="NB-faq-question">
|
||||
How does NewsBlur know whether I like or dislike a story?
|
||||
|
|
Loading…
Add table
Reference in a new issue