mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Warning label on importing from google reader.
This commit is contained in:
parent
a5c7adba49
commit
1e1528482a
2 changed files with 22 additions and 2 deletions
|
@ -1514,6 +1514,14 @@ a.NB-splash-link:hover {
|
||||||
margin: 14px 0 14px 16px;
|
margin: 14px 0 14px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.NB-add .NB-add-danger {
|
||||||
|
display: block;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #535558;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 8px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
.NB-add .NB-add-folders {
|
.NB-add .NB-add-folders {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -1566,6 +1574,13 @@ a.NB-splash-link:hover {
|
||||||
margin: 10px 0 0 0;
|
margin: 10px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.NB-add .NB-add-google-reader-arrow {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
margin: 0 4px;
|
||||||
|
}
|
||||||
|
|
||||||
/* ================ */
|
/* ================ */
|
||||||
/* = Manage Feeds = */
|
/* = Manage Feeds = */
|
||||||
/* ================ */
|
/* ================ */
|
||||||
|
|
|
@ -61,7 +61,11 @@ NEWSBLUR.ReaderAddFeed.prototype = {
|
||||||
'Import from Google Reader'
|
'Import from Google Reader'
|
||||||
]),
|
]),
|
||||||
$.make('div', { className: 'NB-fieldset-fields' }, [
|
$.make('div', { className: 'NB-fieldset-fields' }, [
|
||||||
$.make('a', { href: NEWSBLUR.URLs['opml-reader-authorize'], className: 'NB-opml-reader-oauth NB-splash-link' }, 'Synchronize with Google Reader (OAuth)')
|
$.make('a', { href: NEWSBLUR.URLs['opml-reader-authorize'], className: 'NB-opml-reader-oauth NB-splash-link' }, [
|
||||||
|
'Synchronize with Google Reader (OAuth)',
|
||||||
|
$.make('img', { className: 'NB-add-google-reader-arrow', src: NEWSBLUR.Globals['MEDIA_URL']+'img/icons/silk/arrow_right.png' })
|
||||||
|
]),
|
||||||
|
$.make('div', { className: 'NB-add-danger' }, 'This will erase all existing feeds and folders.')
|
||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
$.make('div', { className: 'NB-fieldset NB-add-opml' }, [
|
$.make('div', { className: 'NB-fieldset NB-add-opml' }, [
|
||||||
|
@ -75,7 +79,8 @@ NEWSBLUR.ReaderAddFeed.prototype = {
|
||||||
self.handle_opml_upload();
|
self.handle_opml_upload();
|
||||||
return false;
|
return false;
|
||||||
})
|
})
|
||||||
])
|
]),
|
||||||
|
$.make('div', { className: 'NB-add-danger' }, 'This will erase all existing feeds and folders.')
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Reference in a new issue