summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-07-09 15:10:59 -0400
committerRobert Speicher <rspeicher@gmail.com>2015-07-09 15:10:59 -0400
commit4498de4867bc87ac83898cfe80417a9d29c952ea (patch)
tree57ee88a47a4d5579dd7596251ece7affb46f2a64
parentdf64e0db08e2aa03534c0286801eb8dfc8f02e97 (diff)
downloadgitlab-ce-rs-issue-1939.tar.gz
Reset ul list style types inside notesrs-issue-1939
Closes #259
-rw-r--r--app/assets/stylesheets/pages/notes.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss
index 42b8ecabb38..4da65b28743 100644
--- a/app/assets/stylesheets/pages/notes.scss
+++ b/app/assets/stylesheets/pages/notes.scss
@@ -72,13 +72,28 @@ ul.notes {
.note {
display: block;
position:relative;
+
.note-body {
overflow: auto;
+
.note-text {
overflow: auto;
word-wrap: break-word;
@include md-typography;
+ // Reset ul style types since we're nested inside a ul already
+ & > ul {
+ list-style-type: disc;
+
+ ul {
+ list-style-type: circle;
+
+ ul {
+ list-style-type: square;
+ }
+ }
+ }
+
// Reduce left padding of first task list ul element
ul.task-list:first-child {
padding-left: 10px;
@@ -94,6 +109,7 @@ ul.notes {
}
}
}
+
.note-header {
padding-bottom: 3px;
}