diff options
-rw-r--r-- | assets/css/_basics.scss | 12 | ||||
-rw-r--r-- | assets/css/components/_page.scss | 10 | ||||
-rw-r--r-- | assets/css/scopes/_code.scss | 15 | ||||
-rw-r--r-- | filters/common_actions.lua | 4 |
4 files changed, 16 insertions, 25 deletions
diff --git a/assets/css/_basics.scss b/assets/css/_basics.scss index cbdfb9a..14c0391 100644 --- a/assets/css/_basics.scss +++ b/assets/css/_basics.scss | |||
@@ -46,10 +46,10 @@ code { | |||
46 | pre { | 46 | pre { |
47 | margin: ($line-height * 1em) 0 0; | 47 | margin: ($line-height * 1em) 0 0; |
48 | overflow-x: auto; | 48 | overflow-x: auto; |
49 | color: var(--code-block--fg); | 49 | |
50 | font-size: $code-block--font-size; | 50 | code { |
51 | line-height: $code-block--line-height; | 51 | color: currentColor; |
52 | text-overflow: ''; | 52 | } |
53 | 53 | ||
54 | strong { | 54 | strong { |
55 | font-weight: normal; | 55 | font-weight: normal; |
@@ -180,8 +180,8 @@ hr { | |||
180 | background-color: var(--obj); | 180 | background-color: var(--obj); |
181 | } | 181 | } |
182 | 182 | ||
183 | blockquote { | 183 | blockquote, |
184 | position: relative; | 184 | pre { |
185 | margin: ($line-height * 1em) 0 0 1px; | 185 | margin: ($line-height * 1em) 0 0 1px; |
186 | padding-left: calc(#{$subcontent--indent} - 3px); | 186 | padding-left: calc(#{$subcontent--indent} - 3px); |
187 | border-left: 2px solid var(--obj); | 187 | border-left: 2px solid var(--obj); |
diff --git a/assets/css/components/_page.scss b/assets/css/components/_page.scss index 87d5413..a55bcb4 100644 --- a/assets/css/components/_page.scss +++ b/assets/css/components/_page.scss | |||
@@ -29,12 +29,6 @@ | |||
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | &__code { | ||
33 | margin-left: 1px; | ||
34 | padding-left: calc(#{$subcontent--indent} - 3px); | ||
35 | border-left: 2px solid var(--obj); | ||
36 | } | ||
37 | |||
38 | &__prefixed { | 32 | &__prefixed { |
39 | position: relative; | 33 | position: relative; |
40 | margin-left: -1 * $page--item-prefix--width; | 34 | margin-left: -1 * $page--item-prefix--width; |
@@ -82,6 +76,10 @@ | |||
82 | margin-left: calc(#{-1 * $page--item-prefix--width} * #{$scale-factor}); | 76 | margin-left: calc(#{-1 * $page--item-prefix--width} * #{$scale-factor}); |
83 | padding-left: calc(#{$page--item-prefix--width} * #{$scale-factor}); | 77 | padding-left: calc(#{$page--item-prefix--width} * #{$scale-factor}); |
84 | border-left: 0; | 78 | border-left: 0; |
79 | color: var(--code-block--fg); | ||
80 | font-size: $code-block--font-size; | ||
81 | line-height: $code-block--line-height; | ||
82 | text-overflow: ''; | ||
85 | 83 | ||
86 | &::before { | 84 | &::before { |
87 | content: str-repeat('``\A', 40); | 85 | content: str-repeat('``\A', 40); |
diff --git a/assets/css/scopes/_code.scss b/assets/css/scopes/_code.scss index f024dbd..4a40d0f 100644 --- a/assets/css/scopes/_code.scss +++ b/assets/css/scopes/_code.scss | |||
@@ -1,22 +1,15 @@ | |||
1 | .s-code { | 1 | .s-code { |
2 | pre, | 2 | &--highlight { |
3 | code { | 3 | pre { |
4 | color: var(--fg-lo); | 4 | color: var(--fg-lo); |
5 | } | ||
5 | } | 6 | } |
6 | 7 | ||
7 | pre { | 8 | pre { |
8 | overflow-x: auto; | ||
9 | font-size: 1em; | 9 | font-size: 1em; |
10 | line-height: $line-height; | 10 | line-height: $line-height; |
11 | } | 11 | } |
12 | 12 | ||
13 | &--plain { | ||
14 | pre, | ||
15 | code { | ||
16 | color: var(--fg); | ||
17 | } | ||
18 | } | ||
19 | |||
20 | /* stylelint-disable selector-class-pattern */ | 13 | /* stylelint-disable selector-class-pattern */ |
21 | 14 | ||
22 | .c { | 15 | .c { |
diff --git a/filters/common_actions.lua b/filters/common_actions.lua index abb15a1..9ebcf17 100644 --- a/filters/common_actions.lua +++ b/filters/common_actions.lua | |||
@@ -2,11 +2,11 @@ function CodeBlock(el) | |||
2 | if next(el.classes) == nil then | 2 | if next(el.classes) == nil then |
3 | el.classes = el.classes .. {'c-page__prefixed', 'c-page__prefixed--pre'} | 3 | el.classes = el.classes .. {'c-page__prefixed', 'c-page__prefixed--pre'} |
4 | elseif el.classes[1] == "plain" then | 4 | elseif el.classes[1] == "plain" then |
5 | el = pandoc.Div({el}, {class = 'c-page__code s-code s-code--plain'}) | 5 | el = pandoc.Div({el}, {class = 's-code'}) |
6 | else | 6 | else |
7 | local formatted = pandoc.pipe('pygmentize', { | 7 | local formatted = pandoc.pipe('pygmentize', { |
8 | '-l', el.classes[1], '-f', 'html', '-O', | 8 | '-l', el.classes[1], '-f', 'html', '-O', |
9 | 'cssclass=c-page__code s-code' | 9 | 'cssclass=s-code s-code--highlight' |
10 | }, el.text) | 10 | }, el.text) |
11 | el = pandoc.RawBlock('html', formatted) | 11 | el = pandoc.RawBlock('html', formatted) |
12 | end | 12 | end |