Commit f3dfd2299381778d66f833520afa7aeb7804f576

Authored by Dmitriy Zaporozhets
1 parent 5bf3a898

add wall.scss

app/assets/stylesheets/application.scss
... ... @@ -35,6 +35,7 @@
35 35 @import "sections/editor.scss";
36 36 @import "sections/admin.scss";
37 37 @import "sections/wiki.scss";
  38 +@import "sections/wall.scss";
38 39  
39 40 @import "highlight/white.scss";
40 41 @import "highlight/dark.scss";
... ...
app/assets/stylesheets/common.scss
... ... @@ -543,4 +543,3 @@ img.emoji {
543 543 .appear-data {
544 544 display: none;
545 545 }
546   -
... ...
app/assets/stylesheets/sections/wall.scss 0 → 100644
... ... @@ -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 +}
... ...