MS DC MOAR profile tweaks, show cubbies posts
This commit is contained in:
parent
0e8fd604e9
commit
cfa518674f
3 changed files with 22 additions and 2 deletions
|
|
@ -80,6 +80,9 @@ app.views.SmallFrame = app.views.Base.extend({
|
|||
this.render()
|
||||
|
||||
app.page.stream.trigger("reLayout")
|
||||
//trigger moar relayouts in the case of images WHOA GROSS HAX
|
||||
_.delay(function(){app.page.stream.trigger("reLayout")}, 200)
|
||||
_.delay(function(){app.page.stream.trigger("reLayout")}, 500)
|
||||
},
|
||||
|
||||
goToPost : function() {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ $two-column-width : $raw-two-column-width - 30; //simply subtract an arbitrary
|
|||
$margin-between-rows : 20;
|
||||
|
||||
$row-height : $column-width;
|
||||
$two-row-height : $raw-two-column-width + $margin-between-rows;
|
||||
$two-row-height : $raw-two-column-width - 20;
|
||||
|
||||
/* colors : http://www.colourlovers.com/palette/2134203/Awezome_in_argyle */
|
||||
$cyan : rgb(8,204,249);
|
||||
|
|
@ -66,7 +66,6 @@ body {
|
|||
position : relative;
|
||||
|
||||
background-color : #fff;
|
||||
min-height : $column-width + px;
|
||||
|
||||
width : $column-width + px;
|
||||
min-width : $column-width + px;
|
||||
|
|
@ -138,6 +137,15 @@ body {
|
|||
line-height : 1.2em;
|
||||
}
|
||||
|
||||
&.sticky-note {
|
||||
.content{
|
||||
min-height : $column-width + px;
|
||||
.text-content {
|
||||
margin: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.cyan .background-color { background-color : rgba($cyan, 0.2); }
|
||||
&.green .background-color { background-color : rgba($green, 0.2); }
|
||||
&.yellow .background-color { background-color : rgba($yellow, 0.2); }
|
||||
|
|
@ -178,6 +186,7 @@ body {
|
|||
|
||||
/* larger declarations */
|
||||
&.x2.width .content { @include wide(); }
|
||||
&.sticky-note.x2.height .content { @include tall(); }
|
||||
|
||||
&.scale-horizontal .content img,
|
||||
&.scale-horizontal .content .image-container {width : 100%; }
|
||||
|
|
|
|||
|
|
@ -16,6 +16,14 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if object_url}}
|
||||
<div class="image-container">
|
||||
<a href="{{object_url}}" class="stream-photo-link">
|
||||
<img src="{{image_url}}" data-small-photo="{{image_url}}" data-full-photo="{{image_url}}" class="stream-photo" />
|
||||
</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if o_embed_cache.data}}
|
||||
<div class="embed-frame">
|
||||
{{{o_embed_cache.data.html}}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue