mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Cleaning up profile modal.
This commit is contained in:
parent
0e7b14709f
commit
82ab5fdd32
2 changed files with 9 additions and 1 deletions
|
@ -126,6 +126,9 @@ color: #a85b40;
|
|||
color: #c0c0c0;
|
||||
}
|
||||
|
||||
.NB-dark .NB-module-recommended .NB-recommended-added {
|
||||
color: #69ac4b;
|
||||
}
|
||||
/* Divider color */
|
||||
.NB-dark .NB-module.NB-module-features .NB-module-content-header,
|
||||
.NB-dark .NB-module-recommended .NB-recommended-description,
|
||||
|
@ -540,6 +543,11 @@ color: #a85b40;
|
|||
border: solid 1px #505050;
|
||||
}
|
||||
|
||||
.NB-dark .NB-modal-profile .NB-profile-followers {
|
||||
background-color: #464646;
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/*Account input fields */
|
||||
.NB-dark .NB-modal-account .NB-preference-username input,
|
||||
.NB-dark .NB-modal-account .NB-preference-email input,
|
||||
|
|
|
@ -53,7 +53,7 @@ NEWSBLUR.Views.SocialProfileBadge = Backbone.View.extend({
|
|||
$.make('div', { className: 'NB-profile-badge-bio' }, profile.get('bio')),
|
||||
(_.isNumber(profile.get('shared_stories_count')) &&
|
||||
$.make('div', { className: 'NB-profile-badge-stats' }, [
|
||||
$.make('span', { className: 'NB-count' }, profile.get('shared_stories_count')),
|
||||
$.make('span', { className: 'NB-count' }, Inflector.commas(profile.get('shared_stories_count'))),
|
||||
'shared ',
|
||||
Inflector.pluralize('story', profile.get('shared_stories_count')),
|
||||
' · ',
|
||||
|
|
Loading…
Add table
Reference in a new issue