From f3dfd2299381778d66f833520afa7aeb7804f576 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Tue, 19 Mar 2013 12:34:59 +0200 Subject: [PATCH] add wall.scss --- app/assets/stylesheets/application.scss | 1 + app/assets/stylesheets/common.scss | 1 - app/assets/stylesheets/sections/wall.scss | 19 +++++++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 app/assets/stylesheets/sections/wall.scss diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index f7cd2b5..fd15d5c 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -35,6 +35,7 @@ @import "sections/editor.scss"; @import "sections/admin.scss"; @import "sections/wiki.scss"; +@import "sections/wall.scss"; @import "highlight/white.scss"; @import "highlight/dark.scss"; diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 622d65f..390f8a6 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -543,4 +543,3 @@ img.emoji { .appear-data { display: none; } - diff --git a/app/assets/stylesheets/sections/wall.scss b/app/assets/stylesheets/sections/wall.scss new file mode 100644 index 0000000..ea66374 --- /dev/null +++ b/app/assets/stylesheets/sections/wall.scss @@ -0,0 +1,19 @@ +.wall-page { + .new_note { + @extend .span12; + + margin: 0; + height: 140px; + background: #F9F9F9; + position: fixed; + bottom: 0px; + padding: 3px; + padding-bottom: 25px; + border: 1px solid #DDD; + display: block; + } + + .notes { + margin-bottom: 160px; + } +} -- libgit2 0.21.2