isodoc 2.12.9 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/isodoc.gemspec +3 -2
- data/lib/isodoc/base_style/all.scss +6 -6
- data/lib/isodoc/base_style/bands.css +135 -0
- data/lib/isodoc/base_style/bands.scss +6 -3
- data/lib/isodoc/base_style/blocks.scss +1 -1
- data/lib/isodoc/base_style/metanorma_word.css +33 -17
- data/lib/isodoc/base_style/nav.scss +7 -7
- data/lib/isodoc/base_style/reset.css +100 -54
- data/lib/isodoc/css.rb +1 -1
- data/lib/isodoc/function/blocks.rb +9 -6
- data/lib/isodoc/function/inline.rb +30 -7
- data/lib/isodoc/function/reqt.rb +3 -2
- data/lib/isodoc/function/section.rb +1 -1
- data/lib/isodoc/function/to_word_html.rb +19 -6
- data/lib/isodoc/gem_tasks.rb +1 -1
- data/lib/isodoc/html_function/html.rb +4 -2
- data/lib/isodoc/init.rb +1 -0
- data/lib/isodoc/presentation_function/block.rb +14 -8
- data/lib/isodoc/presentation_function/concepts.rb +37 -13
- data/lib/isodoc/presentation_function/erefs.rb +13 -8
- data/lib/isodoc/presentation_function/image.rb +5 -2
- data/lib/isodoc/presentation_function/inline.rb +41 -16
- data/lib/isodoc/presentation_function/math.rb +19 -8
- data/lib/isodoc/presentation_function/sourcecode.rb +46 -15
- data/lib/isodoc/presentation_function/xrefs.rb +14 -1
- data/lib/isodoc/presentation_xml_convert.rb +24 -4
- data/lib/isodoc/sassc_importer.rb +1 -1
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/word_function/body.rb +1 -1
- data/lib/isodoc/xref/xref_sect_gen.rb +4 -2
- metadata +8 -8
- data/lib/isodoc/base_style/all.css +0 -368
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2fbbffe1ad377a78a633b5b7520737e4b623b3451b3475e9e4f9c7e9ecb2d5b
|
4
|
+
data.tar.gz: 6a8927c8585c3d35a2bfbeea8df4699b96b111a3a86c870588f524109e04938f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6ab8147f4a8abfa5846772df470777d55a7f169d46d6fe6f5f83aaf0114812b5eac1f98dc69a41fb43bbfc0e7e4635b86394a30398b8262e71d7b82da7c65a2
|
7
|
+
data.tar.gz: 63be260dc909fdbac39e62d06cd28448e71fe968b237f542545057a6777b0b0f79bd01cc1faafb0467855c99d5d3b058371c62b76a592bd837140d546a9ccfa5
|
data/isodoc.gemspec
CHANGED
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
35
35
|
# spec.add_dependency "relaton-cli"
|
36
36
|
# spec.add_dependency "metanorma-utils", "~> 1.5.0" # already in isodoc-i18n
|
37
37
|
spec.add_dependency "mn2pdf", ">= 2.13"
|
38
|
-
spec.add_dependency "mn-requirements", "~> 0.
|
38
|
+
spec.add_dependency "mn-requirements", "~> 0.5.0"
|
39
39
|
|
40
40
|
spec.add_dependency "relaton-render", "~> 0.9.0"
|
41
41
|
spec.add_dependency "roman-numerals"
|
@@ -53,7 +53,8 @@ Gem::Specification.new do |spec|
|
|
53
53
|
spec.add_development_dependency "rake", "~> 13.0"
|
54
54
|
spec.add_development_dependency "rspec", "~> 3.6"
|
55
55
|
spec.add_development_dependency "rubocop", "~> 1.5.2"
|
56
|
-
spec.add_development_dependency "sassc", "~> 2.4.0"
|
56
|
+
#spec.add_development_dependency "sassc", "~> 2.4.0"
|
57
|
+
spec.add_development_dependency "sassc-embedded", "~> 1"
|
57
58
|
spec.add_development_dependency "simplecov", "~> 0.15"
|
58
59
|
spec.add_development_dependency "timecop", "~> 0.9"
|
59
60
|
spec.add_development_dependency "xml-c14n"
|
@@ -1,6 +1,6 @@
|
|
1
|
-
@
|
2
|
-
@
|
3
|
-
@
|
4
|
-
@
|
5
|
-
@
|
6
|
-
@
|
1
|
+
@use 'base_style/reset';
|
2
|
+
@use 'base_style/typography';
|
3
|
+
@use 'base_style/nav';
|
4
|
+
@use 'base_style/bands';
|
5
|
+
@use 'base_style/blocks';
|
6
|
+
@use 'base_style/coverpage';
|
@@ -0,0 +1,135 @@
|
|
1
|
+
#standard-band {
|
2
|
+
background-color: #0AC442;
|
3
|
+
}
|
4
|
+
|
5
|
+
#standard {
|
6
|
+
border-bottom: solid 3px #0AC442;
|
7
|
+
}
|
8
|
+
|
9
|
+
#directive-band {
|
10
|
+
background-color: #540D6E;
|
11
|
+
}
|
12
|
+
|
13
|
+
#directive {
|
14
|
+
border-bottom: solid 3px #540D6E;
|
15
|
+
}
|
16
|
+
|
17
|
+
#guide-band {
|
18
|
+
background-color: #D183C9;
|
19
|
+
}
|
20
|
+
|
21
|
+
#guide {
|
22
|
+
border-bottom: solid 3px #D183C9;
|
23
|
+
}
|
24
|
+
|
25
|
+
#specification-band {
|
26
|
+
background-color: #65AFFF;
|
27
|
+
}
|
28
|
+
|
29
|
+
#specification {
|
30
|
+
border-bottom: solid 3px #65AFFF;
|
31
|
+
}
|
32
|
+
|
33
|
+
#report-band {
|
34
|
+
background-color: #3A405A;
|
35
|
+
}
|
36
|
+
|
37
|
+
#report {
|
38
|
+
border-bottom: solid 3px #3A405A;
|
39
|
+
}
|
40
|
+
|
41
|
+
#amendment-band {
|
42
|
+
background-color: #F26430;
|
43
|
+
}
|
44
|
+
|
45
|
+
#amendment {
|
46
|
+
border-bottom: solid 3px #F26430;
|
47
|
+
}
|
48
|
+
|
49
|
+
#corrigendum-band {
|
50
|
+
background-color: #C84630;
|
51
|
+
}
|
52
|
+
|
53
|
+
#corrigendum {
|
54
|
+
border-bottom: solid 3px #C84630;
|
55
|
+
}
|
56
|
+
|
57
|
+
#administrative-band {
|
58
|
+
background-color: #BFAE48;
|
59
|
+
}
|
60
|
+
|
61
|
+
#administrative {
|
62
|
+
border-bottom: solid 3px #BFAE48;
|
63
|
+
}
|
64
|
+
|
65
|
+
#advisory-band {
|
66
|
+
background-color: #BD9391;
|
67
|
+
}
|
68
|
+
|
69
|
+
#advisory {
|
70
|
+
border-bottom: solid 3px #BD9391;
|
71
|
+
}
|
72
|
+
|
73
|
+
#proposal-band {
|
74
|
+
background-color: #39A0ED;
|
75
|
+
}
|
76
|
+
|
77
|
+
#proposal {
|
78
|
+
border-bottom: solid 3px #39A0ED;
|
79
|
+
}
|
80
|
+
|
81
|
+
#working-draft-band {
|
82
|
+
background-color: #2D7393;
|
83
|
+
}
|
84
|
+
|
85
|
+
#working-draft {
|
86
|
+
border-bottom: solid 3px #2D7393;
|
87
|
+
}
|
88
|
+
|
89
|
+
#committee-draft-band {
|
90
|
+
background-color: #2A6B7C;
|
91
|
+
}
|
92
|
+
|
93
|
+
#committee-draft {
|
94
|
+
border-bottom: solid 3px #2A6B7C;
|
95
|
+
}
|
96
|
+
|
97
|
+
#draft-standard-band {
|
98
|
+
background-color: #1C7F7A;
|
99
|
+
}
|
100
|
+
|
101
|
+
#draft-standard {
|
102
|
+
border-bottom: solid 3px #1C7F7A;
|
103
|
+
}
|
104
|
+
|
105
|
+
#final-draft-band {
|
106
|
+
background-color: #53C170;
|
107
|
+
}
|
108
|
+
|
109
|
+
#final-draft {
|
110
|
+
border-bottom: solid 3px #53C170;
|
111
|
+
}
|
112
|
+
|
113
|
+
#published-band {
|
114
|
+
background-color: #069E2D;
|
115
|
+
}
|
116
|
+
|
117
|
+
#published {
|
118
|
+
border-bottom: solid 3px #069E2D;
|
119
|
+
}
|
120
|
+
|
121
|
+
#withdrawn-band {
|
122
|
+
background-color: #004E64;
|
123
|
+
}
|
124
|
+
|
125
|
+
#withdrawn {
|
126
|
+
border-bottom: solid 3px #004E64;
|
127
|
+
}
|
128
|
+
|
129
|
+
#cancelled-band {
|
130
|
+
background-color: #2E382E;
|
131
|
+
}
|
132
|
+
|
133
|
+
#cancelled {
|
134
|
+
border-bottom: solid 3px #2E382E;
|
135
|
+
}
|
@@ -1,9 +1,12 @@
|
|
1
|
+
@use "sass:string";
|
2
|
+
@use "defaults";
|
3
|
+
|
1
4
|
@mixin docBandTitle($length, $fontWeight: 400, $fontFamily: null, $color: white) {
|
2
5
|
position: relative;
|
3
6
|
width: 25px;
|
4
7
|
|
5
8
|
@if $fontFamily {
|
6
|
-
font-family: unquote($fontFamily);
|
9
|
+
font-family: string.unquote($fontFamily);
|
7
10
|
}
|
8
11
|
|
9
12
|
font-weight: $fontWeight;
|
@@ -59,7 +62,7 @@
|
|
59
62
|
}
|
60
63
|
|
61
64
|
|
62
|
-
@each $key, $val in
|
65
|
+
@each $key, $val in defaults.$doctype-colors-list {
|
63
66
|
##{$key}-band {
|
64
67
|
background-color: #{$val};
|
65
68
|
}
|
@@ -69,7 +72,7 @@
|
|
69
72
|
}
|
70
73
|
|
71
74
|
|
72
|
-
@each $key, $val in
|
75
|
+
@each $key, $val in defaults.$docstage-colors-list {
|
73
76
|
##{$key}-band {
|
74
77
|
background-color: #{$val};
|
75
78
|
}
|
@@ -1,56 +1,72 @@
|
|
1
1
|
ol {
|
2
|
-
margin-bottom: 0cm;
|
2
|
+
margin-bottom: 0cm;
|
3
|
+
}
|
3
4
|
|
4
5
|
ul {
|
5
|
-
margin-bottom: 0cm;
|
6
|
+
margin-bottom: 0cm;
|
7
|
+
}
|
6
8
|
|
7
9
|
table.MsoISOTable tr {
|
8
|
-
page-break-inside: avoid;
|
10
|
+
page-break-inside: avoid;
|
11
|
+
}
|
9
12
|
|
10
13
|
td {
|
11
|
-
page-break-inside: avoid;
|
14
|
+
page-break-inside: avoid;
|
15
|
+
}
|
12
16
|
|
13
17
|
tr {
|
14
|
-
page-break-after: avoid;
|
18
|
+
page-break-after: avoid;
|
19
|
+
}
|
15
20
|
|
16
21
|
table.MsoISOTableBig tr {
|
17
|
-
page-break-inside: auto;
|
22
|
+
page-break-inside: auto;
|
23
|
+
}
|
18
24
|
|
19
25
|
table.MsoISOTableBig td {
|
20
|
-
page-break-inside: auto;
|
26
|
+
page-break-inside: auto;
|
27
|
+
}
|
21
28
|
|
22
29
|
span.stem {
|
23
|
-
font-family: "Cambria Math",serif;
|
30
|
+
font-family: "Cambria Math", serif;
|
24
31
|
mso-ascii-font-family: "Cambria Math";
|
25
|
-
font-style: italic;
|
32
|
+
font-style: italic;
|
33
|
+
}
|
26
34
|
|
27
35
|
dt {
|
28
36
|
page-break-inside: avoid;
|
29
|
-
page-break-after: avoid;
|
37
|
+
page-break-after: avoid;
|
38
|
+
}
|
30
39
|
|
31
40
|
br.section {
|
32
41
|
page-break-before: always;
|
33
|
-
mso-break-type: section-break;
|
42
|
+
mso-break-type: section-break;
|
43
|
+
}
|
34
44
|
|
35
45
|
br.pagebreak {
|
36
46
|
page-break-before: always;
|
37
|
-
mso-special-character: line-break;
|
47
|
+
mso-special-character: line-break;
|
48
|
+
}
|
38
49
|
|
39
50
|
span.addition {
|
40
|
-
color: blue;
|
51
|
+
color: blue;
|
52
|
+
}
|
41
53
|
|
42
54
|
span.deletion {
|
43
55
|
color: red;
|
44
|
-
text-decoration: line-through;
|
56
|
+
text-decoration: line-through;
|
57
|
+
}
|
45
58
|
|
46
59
|
table.rouge-line-table {
|
47
60
|
border: none;
|
48
61
|
mso-border-alt: none;
|
49
62
|
mso-border-insideh: none;
|
50
|
-
mso-border-insidev: none;
|
63
|
+
mso-border-insidev: none;
|
64
|
+
}
|
51
65
|
|
52
66
|
td.rouge-code p.Sourcecode {
|
53
|
-
margin: 0px;
|
67
|
+
margin: 0px;
|
68
|
+
}
|
54
69
|
|
55
70
|
div.table_container {
|
56
|
-
margin-bottom: 14pt;
|
71
|
+
margin-bottom: 14pt;
|
72
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@
|
1
|
+
@use 'defaults';
|
2
2
|
|
3
3
|
@mixin toc($colorLink, $colorLinkActiveBg, $colorLinkActiveFg) {
|
4
4
|
ul {
|
@@ -70,7 +70,7 @@
|
|
70
70
|
@mixin sidebarNavContainer($offset) {
|
71
71
|
// Expected to be applied to body.
|
72
72
|
|
73
|
-
@media screen and (min-width:
|
73
|
+
@media screen and (min-width: defaults.$bigscreenBreakpoint) {
|
74
74
|
padding-left: $offset;
|
75
75
|
}
|
76
76
|
|
@@ -83,7 +83,7 @@
|
|
83
83
|
font-family: $font;
|
84
84
|
font-weight: $fontWeight;
|
85
85
|
|
86
|
-
@media screen and (max-width:
|
86
|
+
@media screen and (max-width: defaults.$bigscreenBreakpoint) {
|
87
87
|
padding: 0 1.5em;
|
88
88
|
overflow: visible;
|
89
89
|
}
|
@@ -95,7 +95,7 @@
|
|
95
95
|
$offsetLeft,
|
96
96
|
$lineHeight: null) {
|
97
97
|
|
98
|
-
@media screen and (min-width:
|
98
|
+
@media screen and (min-width: defaults.$bigscreenBreakpoint) {
|
99
99
|
position: fixed;
|
100
100
|
top: 0;
|
101
101
|
bottom: 0;
|
@@ -123,7 +123,7 @@
|
|
123
123
|
}
|
124
124
|
|
125
125
|
@mixin sidebarNavToggle($colorFg: white, $colorBg: black) {
|
126
|
-
@media screen and (min-width:
|
126
|
+
@media screen and (min-width: defaults.$bigscreenBreakpoint) {
|
127
127
|
position: fixed;
|
128
128
|
height: 100%;
|
129
129
|
width: 30px;
|
@@ -141,7 +141,7 @@
|
|
141
141
|
}
|
142
142
|
}
|
143
143
|
|
144
|
-
@media screen and (max-width:
|
144
|
+
@media screen and (max-width: defaults.$bigscreenBreakpoint) {
|
145
145
|
display: none;
|
146
146
|
}
|
147
147
|
|
@@ -151,7 +151,7 @@
|
|
151
151
|
}
|
152
152
|
|
153
153
|
@mixin tocSeparator {
|
154
|
-
@media screen and (min-width:
|
154
|
+
@media screen and (min-width: defaults.$bigscreenBreakpoint) {
|
155
155
|
display: none;
|
156
156
|
}
|
157
157
|
}
|
@@ -13,7 +13,8 @@ figure, figcaption, footer, header, hgroup,
|
|
13
13
|
menu, output, ruby, section, summary,
|
14
14
|
time, mark, audio, video {
|
15
15
|
margin: 0;
|
16
|
-
padding: 0;
|
16
|
+
padding: 0;
|
17
|
+
}
|
17
18
|
|
18
19
|
html, body, div, span, applet, object, iframe,
|
19
20
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
@@ -29,7 +30,8 @@ figure, figcaption, footer, header, hgroup,
|
|
29
30
|
menu, nav, output, ruby, section, summary,
|
30
31
|
time, mark, audio, video {
|
31
32
|
border: 0;
|
32
|
-
font-size: 100%;
|
33
|
+
font-size: 100%;
|
34
|
+
}
|
33
35
|
|
34
36
|
html, body, div, span, applet, object, iframe,
|
35
37
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
@@ -44,7 +46,8 @@ article, aside, canvas, details, embed,
|
|
44
46
|
figure, figcaption, footer, header, hgroup,
|
45
47
|
menu, nav, output, ruby, section, summary,
|
46
48
|
time, mark, audio, video {
|
47
|
-
vertical-align: baseline;
|
49
|
+
vertical-align: baseline;
|
50
|
+
}
|
48
51
|
|
49
52
|
html, body, div, span, applet, object, iframe,
|
50
53
|
p, blockquote,
|
@@ -59,90 +62,115 @@ article, aside, canvas, details, embed,
|
|
59
62
|
figure, figcaption, footer, header, hgroup,
|
60
63
|
menu, nav, output, ruby, section, summary,
|
61
64
|
time, mark, audio, video {
|
62
|
-
font-family: {{bodyfont}};
|
65
|
+
font-family: {{bodyfont}};
|
66
|
+
}
|
63
67
|
|
64
68
|
code, pre, tt, kbd, samp {
|
65
69
|
font-family: {{monospacefont}};
|
66
|
-
font-variant-ligatures: none;
|
70
|
+
font-variant-ligatures: none;
|
71
|
+
}
|
67
72
|
|
68
73
|
code *, pre *, tt *, kbd *, samp * {
|
69
74
|
font-family: {{monospacefont}} !important;
|
70
|
-
font-variant-ligatures: none;
|
75
|
+
font-variant-ligatures: none;
|
76
|
+
}
|
71
77
|
|
72
78
|
p code, dt code, li code, label code, legend code, caption code, th code, td code,
|
73
79
|
p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
|
74
80
|
p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
|
75
81
|
p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
|
76
|
-
font-size: {{monospacefontsize}};
|
82
|
+
font-size: {{monospacefontsize}};
|
83
|
+
}
|
77
84
|
|
78
85
|
sub, sup {
|
79
|
-
font-size: 0.75em;
|
86
|
+
font-size: 0.75em;
|
87
|
+
}
|
80
88
|
|
81
89
|
article, aside, details, figcaption, figure,
|
82
90
|
footer, header, hgroup, menu, nav, section {
|
83
|
-
display: block;
|
91
|
+
display: block;
|
92
|
+
}
|
84
93
|
|
85
94
|
table {
|
86
95
|
border-collapse: collapse;
|
87
|
-
border-spacing: 0;
|
96
|
+
border-spacing: 0;
|
97
|
+
}
|
88
98
|
|
89
99
|
h1, h2, h3, h4, h5, h6 {
|
90
|
-
font-family: {{headerfont}};
|
100
|
+
font-family: {{headerfont}};
|
101
|
+
}
|
91
102
|
|
92
103
|
.h1, .h2, .h3, .h4, .h5, .h6 {
|
93
|
-
font-family: {{headerfont}};
|
104
|
+
font-family: {{headerfont}};
|
105
|
+
}
|
94
106
|
|
95
107
|
blockquote, q {
|
96
|
-
quotes: none;
|
97
|
-
|
98
|
-
|
99
|
-
|
108
|
+
quotes: none;
|
109
|
+
}
|
110
|
+
blockquote::before, blockquote::after, q::before, q::after {
|
111
|
+
content: "";
|
112
|
+
content: none;
|
113
|
+
}
|
100
114
|
|
101
115
|
.h2Annex {
|
102
|
-
font-family: {{headerfont}};
|
116
|
+
font-family: {{headerfont}};
|
117
|
+
}
|
103
118
|
|
104
119
|
dl {
|
105
120
|
display: grid;
|
106
|
-
grid-template-columns: max-content auto;
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
121
|
+
grid-template-columns: max-content auto;
|
122
|
+
}
|
123
|
+
dl dt p, dl dd p {
|
124
|
+
margin-top: 0;
|
125
|
+
}
|
126
|
+
dl dt {
|
127
|
+
grid-column-start: 1;
|
128
|
+
}
|
129
|
+
dl dd {
|
130
|
+
grid-column-start: 2;
|
131
|
+
}
|
113
132
|
|
114
133
|
b, strong {
|
115
|
-
font-weight: bold;
|
134
|
+
font-weight: bold;
|
135
|
+
}
|
116
136
|
|
117
137
|
div.document-stage-band, div.document-type-band {
|
118
|
-
background-color: #333333;
|
138
|
+
background-color: #333333;
|
139
|
+
}
|
119
140
|
|
120
141
|
a.FootnoteRef + a.FootnoteRef::before {
|
121
142
|
content: ", ";
|
122
|
-
vertical-align: super;
|
143
|
+
vertical-align: super;
|
144
|
+
}
|
123
145
|
|
124
146
|
a.TableFootnoteRef + a.TableFootnoteRef::before {
|
125
147
|
content: ", ";
|
126
|
-
vertical-align: super;
|
148
|
+
vertical-align: super;
|
149
|
+
}
|
127
150
|
|
128
151
|
a.TableFootnoteRef, span.TableFootnoteRef,
|
129
152
|
a.FootnoteRef, span.FootnoteRef {
|
130
|
-
vertical-align: super;
|
153
|
+
vertical-align: super;
|
154
|
+
}
|
131
155
|
|
132
156
|
.addition {
|
133
|
-
color: blue;
|
157
|
+
color: blue;
|
158
|
+
}
|
134
159
|
|
135
160
|
.deletion {
|
136
161
|
color: red;
|
137
|
-
text-decoration: line-through;
|
162
|
+
text-decoration: line-through;
|
163
|
+
}
|
138
164
|
|
139
165
|
ruby {
|
140
166
|
ruby-position: over;
|
141
|
-
-webkit-ruby-position: before;
|
167
|
+
-webkit-ruby-position: before;
|
168
|
+
}
|
142
169
|
|
143
170
|
ruby ruby {
|
144
171
|
ruby-position: under;
|
145
|
-
-webkit-ruby-position: after;
|
172
|
+
-webkit-ruby-position: after;
|
173
|
+
}
|
146
174
|
|
147
175
|
/* code highlighting with line numbers */
|
148
176
|
table.rouge-line-table td.rouge-gutter {
|
@@ -150,13 +178,15 @@ table.rouge-line-table td.rouge-gutter {
|
|
150
178
|
-ms-user-select: none;
|
151
179
|
-webkit-user-select: none;
|
152
180
|
user-select: none;
|
153
|
-
padding-right: 1em;
|
181
|
+
padding-right: 1em;
|
182
|
+
}
|
154
183
|
|
155
184
|
table.rouge-line-table td.rouge-code {
|
156
185
|
-moz-user-select: all;
|
157
186
|
-ms-user-select: all;
|
158
187
|
-webkit-user-select: all;
|
159
|
-
user-select: all;
|
188
|
+
user-select: all;
|
189
|
+
}
|
160
190
|
|
161
191
|
table.rouge-line-table,
|
162
192
|
table.rouge-line-table th,
|
@@ -165,27 +195,32 @@ table.rouge-line-table td {
|
|
165
195
|
border: none;
|
166
196
|
margin: 0;
|
167
197
|
padding: 0;
|
168
|
-
font-size: 100%;
|
198
|
+
font-size: 100%;
|
199
|
+
}
|
169
200
|
|
170
201
|
table.rouge-line-table pre {
|
171
202
|
margin: 0;
|
172
203
|
padding: 0;
|
173
204
|
overflow-x: visible;
|
174
|
-
font-size: 100%;
|
205
|
+
font-size: 100%;
|
206
|
+
}
|
175
207
|
|
176
208
|
/* header § links */
|
177
209
|
a.header {
|
178
210
|
color: inherit;
|
179
|
-
text-decoration: none;
|
211
|
+
text-decoration: none;
|
212
|
+
}
|
180
213
|
|
181
214
|
a.header:hover {
|
182
215
|
color: #a53221 !important;
|
183
216
|
background: inherit;
|
184
|
-
box-shadow: none;
|
217
|
+
box-shadow: none;
|
218
|
+
}
|
185
219
|
|
186
220
|
a.header:visited {
|
187
221
|
color: inherit;
|
188
|
-
text-decoration: none;
|
222
|
+
text-decoration: none;
|
223
|
+
}
|
189
224
|
|
190
225
|
a.anchor {
|
191
226
|
position: absolute;
|
@@ -196,18 +231,21 @@ a.anchor {
|
|
196
231
|
text-decoration: none !important;
|
197
232
|
visibility: hidden;
|
198
233
|
text-align: center;
|
199
|
-
font-weight: 400;
|
234
|
+
font-weight: 400;
|
235
|
+
}
|
200
236
|
|
201
237
|
a.anchor::before {
|
202
|
-
content: "
|
203
|
-
font-size: .85em;
|
238
|
+
content: "§";
|
239
|
+
font-size: 0.85em;
|
204
240
|
display: block;
|
205
|
-
padding-top: .1em;
|
241
|
+
padding-top: 0.1em;
|
242
|
+
}
|
206
243
|
|
207
244
|
a.anchor:hover {
|
208
245
|
color: #a53221;
|
209
246
|
background: inherit;
|
210
|
-
box-shadow: none;
|
247
|
+
box-shadow: none;
|
248
|
+
}
|
211
249
|
|
212
250
|
h1 > a.anchor:hover,
|
213
251
|
h2 > a.anchor:hover,
|
@@ -223,13 +261,15 @@ h4:hover > a.anchor,
|
|
223
261
|
h5:hover > a.anchor,
|
224
262
|
h6:hover > a.anchor,
|
225
263
|
.inline-header:hover > a.anchor {
|
226
|
-
visibility: visible;
|
264
|
+
visibility: visible;
|
265
|
+
}
|
227
266
|
|
228
267
|
/* collapsible snippets: collapsible before hidable */
|
229
268
|
.hidable {
|
230
269
|
max-height: 0;
|
231
270
|
overflow: hidden;
|
232
|
-
transition: max-height 0.2s ease-out;
|
271
|
+
transition: max-height 0.2s ease-out;
|
272
|
+
}
|
233
273
|
|
234
274
|
.collapsible {
|
235
275
|
background-color: #777;
|
@@ -241,26 +281,32 @@ h6:hover > a.anchor,
|
|
241
281
|
border: none;
|
242
282
|
text-align: left;
|
243
283
|
outline: none;
|
244
|
-
font-size: 15px;
|
284
|
+
font-size: 15px;
|
285
|
+
}
|
245
286
|
|
246
287
|
.active, .collapsible:hover {
|
247
|
-
background-color: #555;
|
288
|
+
background-color: #555;
|
289
|
+
}
|
248
290
|
|
249
291
|
.collapsible:after {
|
250
|
-
content:
|
292
|
+
content: "▼";
|
251
293
|
color: white;
|
252
294
|
font-weight: bold;
|
253
295
|
float: right;
|
254
296
|
margin-left: 12px;
|
255
|
-
margin-right: 12px;
|
297
|
+
margin-right: 12px;
|
298
|
+
}
|
256
299
|
|
257
300
|
.active:after {
|
258
|
-
content: "
|
301
|
+
content: "▲";
|
302
|
+
}
|
259
303
|
|
260
304
|
/* collapsible: */
|
261
305
|
.collapsible + .hidable {
|
262
|
-
margin-top: 0;
|
306
|
+
margin-top: 0;
|
307
|
+
}
|
263
308
|
|
264
309
|
.collapsible:not(.active) + .hidable {
|
265
310
|
overflow: hidden;
|
266
|
-
padding: 0;
|
311
|
+
padding: 0;
|
312
|
+
}
|