summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/note_form.scss
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-30 08:28:06 +0100
committerPhil Hughes <me@iamphill.com>2016-04-04 10:48:49 +0100
commit0331fa3f3d27dbffdd2144073cf9c62fe7837aa1 (patch)
tree312002ff8edb97cc5a764a5a44dada3836261c9e /app/assets/stylesheets/pages/note_form.scss
parentb7f0b22b9fe76f634d9e8cbce03cfaac41f333e6 (diff)
downloadgitlab-ce-0331fa3f3d27dbffdd2144073cf9c62fe7837aa1.tar.gz
Restyling on elements in comment form
Diffstat (limited to 'app/assets/stylesheets/pages/note_form.scss')
-rw-r--r--app/assets/stylesheets/pages/note_form.scss28
1 files changed, 13 insertions, 15 deletions
diff --git a/app/assets/stylesheets/pages/note_form.scss b/app/assets/stylesheets/pages/note_form.scss
index 91b5216a22f..554f87c05ad 100644
--- a/app/assets/stylesheets/pages/note_form.scss
+++ b/app/assets/stylesheets/pages/note_form.scss
@@ -1,10 +1,6 @@
/**
* Note Form
*/
-
-.comment-btn {
- @extend .btn-create;
-}
.reply-btn {
@extend .btn-primary;
margin: 10px $gl-padding;
@@ -42,18 +38,22 @@
max-width: 100%;
}
- .note_text {
- width: 100%;
- }
-
.comment-hints {
margin-top: -12px;
}
}
-/* loading indicator */
-.notes-busy {
- margin: 18px;
+.note-textarea {
+ padding-left: 0;
+ padding-right: 0;
+ font-family: $regular_font;
+ border-left: 0;
+ border-right: 0;
+ resize: none!important; // TODO: Find a way to remove this !important
+
+ &:focus {
+ outline: 0;
+ }
}
.note-image-attach {
@@ -64,11 +64,9 @@
.common-note-form {
margin: 0;
- background: #fff;
padding: $gl-padding;
- margin-left: -$gl-padding;
- margin-right: -$gl-padding;
- margin-bottom: -$gl-padding;
+ border: 1px solid #E5E5E5;
+ border-radius: $border-radius-base;
}
.note-form-actions {