From 4fbbfeb423ced0f0b859d4d74f5fc8b5d4db4756 Mon Sep 17 00:00:00 2001 From: Anna Melzer Date: Thu, 8 Jun 2017 12:53:06 +0200 Subject: [PATCH 1/2] Style functions in outline view --- src/components/Outline.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/Outline.css b/src/components/Outline.css index d158f5444c..15ebe5c345 100644 --- a/src/components/Outline.css +++ b/src/components/Outline.css @@ -1,8 +1,15 @@ .outline-list { - list-style-type: "-"; + list-style-type: none; + padding-left: 10px; } .outline-list__element { color: blue; padding-left: 0.5rem; + padding-right: 0.5rem; + cursor: pointer; +} + +.outline-list__element:hover { + background: var(--theme-toolbar-background-hover); } From fdc757b04f47752009936527a703273d13655706 Mon Sep 17 00:00:00 2001 From: Anna Melzer Date: Mon, 12 Jun 2017 13:24:27 +0200 Subject: [PATCH 2/2] Use full container width for outline list --- src/components/Outline.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Outline.css b/src/components/Outline.css index 15ebe5c345..e93d9aeb2d 100644 --- a/src/components/Outline.css +++ b/src/components/Outline.css @@ -1,11 +1,12 @@ .outline-list { list-style-type: none; - padding-left: 10px; + padding-left: 0px; + width: 100%; } .outline-list__element { color: blue; - padding-left: 0.5rem; + padding-left: 1rem; padding-right: 0.5rem; cursor: pointer; }