Updating premium features by adding search and saved story tags.

This commit is contained in:
Samuel Clay 2015-02-19 11:49:26 -08:00
parent f001bc475a
commit 632814225e
6 changed files with 28 additions and 6 deletions

View file

@ -8779,14 +8779,22 @@ form.opml_import_form input {
background-size: 16px; background-size: 16px;
} }
.NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-4 .NB-feedchooser-premium-bullet-image { .NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-4 .NB-feedchooser-premium-bullet-image {
background: transparent url('/media/embed/icons/circular/g_icn_privacy.png') no-repeat 0 0; background: transparent url('/media/embed/icons/circular/g_icn_search_black.png') no-repeat 0 0;
background-size: 16px; background-size: 16px;
} }
.NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-5 .NB-feedchooser-premium-bullet-image { .NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-5 .NB-feedchooser-premium-bullet-image {
background: transparent url('/media/embed/icons/circular/g_icn_textview.png') no-repeat 0 0; background: transparent url('/media/embed/icons/circular/g_icn_tag_black.png') no-repeat 0 0;
background-size: 16px; background-size: 16px;
} }
.NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-6 .NB-feedchooser-premium-bullet-image { .NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-6 .NB-feedchooser-premium-bullet-image {
background: transparent url('/media/embed/icons/circular/g_icn_privacy.png') no-repeat 0 0;
background-size: 16px;
}
.NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-7 .NB-feedchooser-premium-bullet-image {
background: transparent url('/media/embed/icons/circular/g_icn_textview_black.png') no-repeat 0 0;
background-size: 16px;
}
.NB-modal-feedchooser .NB-feedchooser-premium-bullets li.NB-8 .NB-feedchooser-premium-bullet-image {
background: transparent url('/media/embed/icons/circular/g_icn_eating.png') no-repeat 0 0; background: transparent url('/media/embed/icons/circular/g_icn_eating.png') no-repeat 0 0;
background-size: 16px; background-size: 16px;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

View file

@ -105,13 +105,21 @@ _.extend(NEWSBLUR.ReaderFeedchooser.prototype, {
]), ]),
$.make('li', { className: 'NB-4' }, [ $.make('li', { className: 'NB-4' }, [
$.make('div', { className: 'NB-feedchooser-premium-bullet-image' }), $.make('div', { className: 'NB-feedchooser-premium-bullet-image' }),
'Privacy options for your blurblog' 'Search sites and folders'
]), ]),
$.make('li', { className: 'NB-5' }, [ $.make('li', { className: 'NB-5' }, [
$.make('div', { className: 'NB-feedchooser-premium-bullet-image' }), $.make('div', { className: 'NB-feedchooser-premium-bullet-image' }),
'Text view conveniently extracts the story' 'Save stories with searchable tags'
]), ]),
$.make('li', { className: 'NB-6' }, [ $.make('li', { className: 'NB-6' }, [
$.make('div', { className: 'NB-feedchooser-premium-bullet-image' }),
'Privacy options for your blurblog'
]),
$.make('li', { className: 'NB-7' }, [
$.make('div', { className: 'NB-feedchooser-premium-bullet-image' }),
'Text view conveniently extracts the story'
]),
$.make('li', { className: 'NB-8' }, [
$.make('div', { className: 'NB-feedchooser-premium-bullet-image' }), $.make('div', { className: 'NB-feedchooser-premium-bullet-image' }),
'You feed Shiloh, my poor, hungry dog, for ', 'You feed Shiloh, my poor, hungry dog, for ',
$.make('span', { className: 'NB-feedchooser-hungry-dog' }, '6 days'), $.make('span', { className: 'NB-feedchooser-hungry-dog' }, '6 days'),

View file

@ -48,12 +48,18 @@ float: right;">
<div class="NB-feedchooser-premium-bullet-image"></div>River of News (reading by folder) <div class="NB-feedchooser-premium-bullet-image"></div>River of News (reading by folder)
</li> </li>
<li class="NB-4"> <li class="NB-4">
<div class="NB-feedchooser-premium-bullet-image"></div>Privacy options for your blurblog <div class="NB-feedchooser-premium-bullet-image"></div>Search sites and folders
</li> </li>
<li class="NB-5"> <li class="NB-5">
<div class="NB-feedchooser-premium-bullet-image"></div>Text view conveniently extracts the story <div class="NB-feedchooser-premium-bullet-image"></div>Save stories with searchable tags
</li> </li>
<li class="NB-6"> <li class="NB-6">
<div class="NB-feedchooser-premium-bullet-image"></div>Privacy options for your blurblog
</li>
<li class="NB-7">
<div class="NB-feedchooser-premium-bullet-image"></div>Text view conveniently extracts the story
</li>
<li class="NB-8">
<div class="NB-feedchooser-premium-bullet-image"></div>You feed Shiloh, my poor, hungry dog, for <span class="NB-feedchooser-hungry-dog">12 days</span><img src="/media//img/reader/shiloh.jpg" class="NB-feedchooser-premium-poor-hungry-dog"> <div class="NB-feedchooser-premium-bullet-image"></div>You feed Shiloh, my poor, hungry dog, for <span class="NB-feedchooser-hungry-dog">12 days</span><img src="/media//img/reader/shiloh.jpg" class="NB-feedchooser-premium-poor-hungry-dog">
</li> </li>
</ul> </ul>