mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-01 09:39:51 -04:00
Merge branch 'master' into deprecation
This commit is contained in:
commit
ce511231a4
4 changed files with 36 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
{{#if username}}
|
||||
<div class="card-content">
|
||||
|
||||
<div class="card-content">
|
||||
{{#if username}}
|
||||
|
||||
{{#link-to 'user' user}}{{bound-avatar avatar "huge"}}{{/link-to}}
|
||||
|
||||
|
@ -9,9 +9,19 @@
|
|||
<h1 {{bind-attr class="staff new_user"}}>
|
||||
{{#link-to 'user' user}}{{username}}{{/link-to}}
|
||||
</h1>
|
||||
{{#if user.title}}
|
||||
<h2>{{user.title}}</h2>
|
||||
|
||||
{{#if user.name}}
|
||||
<h2>{{user.name}}</h2>
|
||||
{{/if}}
|
||||
|
||||
{{#if user.title}}
|
||||
{{#if user.name}}
|
||||
<h2>/ {{user.title}}</h2>
|
||||
{{else}}
|
||||
<h2> {{user.title}}</h2>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if showName}}
|
||||
<h2>{{#link-to 'user' user}}{{name}}{{/link-to}}</h2>
|
||||
{{/if}}
|
||||
|
|
|
@ -11,11 +11,13 @@
|
|||
color: $secondary;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
min-height: 175px;
|
||||
|
||||
.card-content {
|
||||
padding: 12px;
|
||||
background: rgba($primary, .85);
|
||||
margin-top: 100px;
|
||||
margin-top: 85px;
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
display: block;
|
||||
|
@ -24,6 +26,8 @@
|
|||
}
|
||||
|
||||
&.no-bg {
|
||||
min-height: 50px;
|
||||
|
||||
.card-content {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
@ -60,6 +64,7 @@
|
|||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: inline;
|
||||
a {
|
||||
color: $secondary;
|
||||
}
|
||||
|
@ -101,8 +106,8 @@
|
|||
}
|
||||
|
||||
.bio {
|
||||
max-height: 55px;
|
||||
overflow: auto;
|
||||
max-height: 60px;
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
margin: 10px 0;
|
||||
width: 70%;
|
||||
|
@ -161,6 +166,7 @@
|
|||
position: absolute;
|
||||
bottom: 0;
|
||||
display: block;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -186,7 +192,6 @@
|
|||
.more-user-badges {
|
||||
@extend .user-badge;
|
||||
padding: 3px 8px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -199,7 +204,10 @@
|
|||
img {
|
||||
max-width: 100px;
|
||||
}
|
||||
float: right;
|
||||
margin-right: 5px;
|
||||
position: absolute;
|
||||
right: 12px;
|
||||
bottom: 12px;
|
||||
font-size: 30px;
|
||||
i {color: $secondary;}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"file_exclude_patterns": ["*.sqlite3"]
|
||||
},
|
||||
{ "path": "lib" },
|
||||
{ "path": "plugins" },
|
||||
{ "path": "script" },
|
||||
{ "path": "spec" },
|
||||
{ "path": "test",
|
||||
|
|
|
@ -9,9 +9,12 @@ var Poll = Discourse.Model.extend({
|
|||
this.updateFromJson(this.get('post.poll_details'));
|
||||
}.observes('post.poll_details'),
|
||||
|
||||
fetchNewPostDetails: function() {
|
||||
this.get('post.topic.postStream').triggerChangedPost(this.get('post.id'), this.get('post.topic.updated_at'));
|
||||
}.observes('post.topic.title'),
|
||||
fetchNewPostDetails: Discourse.debounce(function() {
|
||||
var self = this;
|
||||
Discourse.debounce(function() {
|
||||
self.get('post.topic.postStream').triggerChangedPost(self.get('post.id'), self.get('post.topic.updated_at'));
|
||||
}, 500);
|
||||
}).observes('post.topic.title'),
|
||||
|
||||
updateFromJson: function(json) {
|
||||
var selectedOption = json["selected"];
|
||||
|
@ -24,8 +27,8 @@ var Poll = Discourse.Model.extend({
|
|||
checked: (option === selectedOption)
|
||||
}));
|
||||
});
|
||||
this.set('options', options);
|
||||
|
||||
this.set('options', options);
|
||||
this.set('closed', json.closed);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue