mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Adding sublabel info to default view to tell folks about the per-site override. Styling.
This commit is contained in:
parent
35acbeeec7
commit
eb3ec3b230
2 changed files with 8 additions and 2 deletions
|
@ -4220,6 +4220,11 @@ background: transparent;
|
|||
float: left;
|
||||
width: 150px;
|
||||
}
|
||||
.NB-modal-preferences .NB-preference .NB-preference-sublabel {
|
||||
font-size: 11px;
|
||||
color: #808080;
|
||||
margin: 4px 30px 0px 0px;
|
||||
}
|
||||
|
||||
.NB-modal-preferences .NB-preference .NB-preference-options input {
|
||||
clear: both;
|
||||
|
|
|
@ -151,7 +151,8 @@ NEWSBLUR.ReaderPreferences.prototype = {
|
|||
])
|
||||
]),
|
||||
$.make('div', { className: 'NB-preference-label'}, [
|
||||
'Default view'
|
||||
'Default view',
|
||||
$.make('div', { className: 'NB-preference-sublabel' }, 'You can override this on a per-site basis.')
|
||||
])
|
||||
]),
|
||||
$.make('div', { className: 'NB-preference NB-preference-window' }, [
|
||||
|
@ -160,7 +161,7 @@ NEWSBLUR.ReaderPreferences.prototype = {
|
|||
$.make('input', { id: 'NB-preference-window-1', type: 'radio', name: 'new_window', value: 0 }),
|
||||
$.make('label', { 'for': 'NB-preference-window-1' }, [
|
||||
$.make('img', { src: NEWSBLUR.Globals.MEDIA_URL+'/img/icons/silk/application_view_gallery.png' }),
|
||||
'Normally'
|
||||
'In this window'
|
||||
])
|
||||
]),
|
||||
$.make('div', [
|
||||
|
|
Loading…
Add table
Reference in a new issue