AHHH CRAZY. stupid branchs. WIP
This commit is contained in:
parent
e1bf6441fe
commit
283e730430
14 changed files with 12 additions and 7 deletions
|
|
@ -6,6 +6,9 @@
|
|||
//= require_tree ./pages
|
||||
//= require_tree ./collections
|
||||
//= require_tree ./views
|
||||
//= require ./forms
|
||||
//= require_tree ./forms
|
||||
|
||||
var app = {
|
||||
collections: {},
|
||||
models: {},
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//= require ../post_view
|
||||
app.views.Post.Day = app.views.Post.extend({
|
||||
templateName : "day",
|
||||
className : "day post loaded",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
//= require ./stream_object_view
|
||||
|
||||
app.views.Post = app.views.StreamObject.extend({
|
||||
presenter : function() {
|
||||
return _.extend(this.defaultPresenter(), {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@
|
|||
//= require_tree ./helpers
|
||||
//= require_tree ./pages
|
||||
//= require_tree ./widgets
|
||||
//= require_tree ./forms
|
||||
//= require view
|
||||
//= require aspects-dropdown
|
||||
//= require contact-edit
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/* variables */
|
||||
|
||||
$light-grey: #999;
|
||||
$pane-width: 420px;
|
||||
|
||||
|
|
@ -87,7 +88,7 @@ $pane-width: 420px;
|
|||
|
||||
@mixin dark-hatched-bg() {
|
||||
background-color: #444;
|
||||
background-image: image-url("hatched-bg-dark.png");
|
||||
background-image: url("../images/hatched-bg-dark.png");
|
||||
}
|
||||
|
||||
@mixin photo-shadow() {
|
||||
|
|
@ -107,15 +108,15 @@ $pane-width: 420px;
|
|||
|
||||
/* bootstrap extentions */
|
||||
.icon-red {
|
||||
background-image: url("/img/glyphicons-halflings-red.png");
|
||||
background-image: url(../img/glyphicons-halflings-red.png);
|
||||
}
|
||||
|
||||
.icon-green {
|
||||
background-image: url("/img/glyphicons-halflings-green.png");
|
||||
background-image: url(../img/glyphicons-halflings-green.png);
|
||||
}
|
||||
|
||||
.icon-blue {
|
||||
background-image: url("/img/glyphicons-halflings-blue.png");
|
||||
background-image: url(../img/glyphicons-halflings-blue.png);
|
||||
}
|
||||
|
||||
/* styles */
|
||||
|
|
@ -515,7 +516,7 @@ body.idle {
|
|||
|
||||
border-top: 1px solid #444;
|
||||
text-align: left;
|
||||
background-image: image-url("hatched-bg-dark.png");
|
||||
background-image: url("../images/hatched-bg-dark.png");
|
||||
}
|
||||
|
||||
#new-post-comment-container {
|
||||
|
|
@ -807,4 +808,4 @@ text-rendering: optimizelegibility;
|
|||
|
||||
.headline p{
|
||||
@include media-text();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue