summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-19 12:34:59 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-19 12:34:59 +0200
commitf3dfd2299381778d66f833520afa7aeb7804f576 (patch)
tree34b2ccb4f5890e0b8a12ad6be41b53585e8c8121
parent5bf3a898edbbd0fc4f7a4557f6ffaea8ffabfbc7 (diff)
downloadgitlab-ce-f3dfd2299381778d66f833520afa7aeb7804f576.tar.gz
add wall.scss
-rw-r--r--app/assets/stylesheets/application.scss1
-rw-r--r--app/assets/stylesheets/common.scss1
-rw-r--r--app/assets/stylesheets/sections/wall.scss19
3 files changed, 20 insertions, 1 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index f7cd2b559d3..fd15d5c6097 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 622d65f696f..390f8a627bc 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 00000000000..ea663742ee6
--- /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;
+ }
+}