Commit f3dfd2299381778d66f833520afa7aeb7804f576
1 parent
5bf3a898
Exists in
master
and in
4 other branches
add wall.scss
Showing
3 changed files
with
20 additions
and
1 deletions
Show diff stats
app/assets/stylesheets/application.scss
@@ -35,6 +35,7 @@ | @@ -35,6 +35,7 @@ | ||
35 | @import "sections/editor.scss"; | 35 | @import "sections/editor.scss"; |
36 | @import "sections/admin.scss"; | 36 | @import "sections/admin.scss"; |
37 | @import "sections/wiki.scss"; | 37 | @import "sections/wiki.scss"; |
38 | +@import "sections/wall.scss"; | ||
38 | 39 | ||
39 | @import "highlight/white.scss"; | 40 | @import "highlight/white.scss"; |
40 | @import "highlight/dark.scss"; | 41 | @import "highlight/dark.scss"; |
app/assets/stylesheets/common.scss
@@ -0,0 +1,19 @@ | @@ -0,0 +1,19 @@ | ||
1 | +.wall-page { | ||
2 | + .new_note { | ||
3 | + @extend .span12; | ||
4 | + | ||
5 | + margin: 0; | ||
6 | + height: 140px; | ||
7 | + background: #F9F9F9; | ||
8 | + position: fixed; | ||
9 | + bottom: 0px; | ||
10 | + padding: 3px; | ||
11 | + padding-bottom: 25px; | ||
12 | + border: 1px solid #DDD; | ||
13 | + display: block; | ||
14 | + } | ||
15 | + | ||
16 | + .notes { | ||
17 | + margin-bottom: 160px; | ||
18 | + } | ||
19 | +} |