ixbrl-viewer 1.4.1__py3-none-any.whl → 1.4.86__py3-none-any.whl
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.
- iXBRLViewerPlugin/__init__.py +231 -127
- iXBRLViewerPlugin/_version.py +33 -3
- iXBRLViewerPlugin/constants.py +96 -2
- iXBRLViewerPlugin/featureConfig.py +8 -1
- iXBRLViewerPlugin/iXBRLViewer.py +356 -214
- iXBRLViewerPlugin/plugin.py +12 -0
- iXBRLViewerPlugin/ui.py +81 -50
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt +12 -5
- iXBRLViewerPlugin/viewer/i18next-parser.config.js +1 -1
- iXBRLViewerPlugin/viewer/src/data/utr.json +1244 -0
- iXBRLViewerPlugin/viewer/src/html/fact-details.html +69 -38
- iXBRLViewerPlugin/viewer/src/html/footer-logo.html +4 -0
- iXBRLViewerPlugin/viewer/src/html/footnote-details.html +2 -2
- iXBRLViewerPlugin/viewer/src/html/inspector.html +352 -197
- iXBRLViewerPlugin/viewer/src/i18n/cy/balancetypes.json +1 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/labelroles.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +73 -23
- iXBRLViewerPlugin/viewer/src/i18n/es/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +87 -37
- iXBRLViewerPlugin/viewer/src/i18n/fr/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/icons/calculator.svg +13 -0
- iXBRLViewerPlugin/viewer/src/icons/circle-cross.svg +11 -0
- iXBRLViewerPlugin/viewer/src/icons/circle-tick.svg +11 -0
- iXBRLViewerPlugin/viewer/src/icons/dark-mode.svg +4 -0
- iXBRLViewerPlugin/viewer/src/icons/dimension.svg +1 -5
- iXBRLViewerPlugin/viewer/src/icons/member.svg +2 -5
- iXBRLViewerPlugin/viewer/src/icons/multi-tag.svg +10 -0
- iXBRLViewerPlugin/viewer/src/img/arelle-dark.svg +179 -0
- iXBRLViewerPlugin/viewer/src/img/inline-viewer-dark.svg +59 -0
- iXBRLViewerPlugin/viewer/src/js/accordian.js +5 -4
- iXBRLViewerPlugin/viewer/src/js/aspect.js +29 -10
- iXBRLViewerPlugin/viewer/src/js/aspect.test.js +40 -31
- iXBRLViewerPlugin/viewer/src/js/balance.js +14 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.js +213 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.test.js +306 -0
- iXBRLViewerPlugin/viewer/src/js/calculationInspector.js +187 -0
- iXBRLViewerPlugin/viewer/src/js/chart.js +26 -24
- iXBRLViewerPlugin/viewer/src/js/chart.test.js +10 -9
- iXBRLViewerPlugin/viewer/src/js/concept.js +37 -4
- iXBRLViewerPlugin/viewer/src/js/concept.test.js +30 -6
- iXBRLViewerPlugin/viewer/src/js/datatype.js +20 -0
- iXBRLViewerPlugin/viewer/src/js/datatype.test.js +62 -0
- iXBRLViewerPlugin/viewer/src/js/dialog.js +6 -4
- iXBRLViewerPlugin/viewer/src/js/docOrderIndex.js +7 -7
- iXBRLViewerPlugin/viewer/src/js/fact.js +156 -59
- iXBRLViewerPlugin/viewer/src/js/fact.test.js +160 -29
- iXBRLViewerPlugin/viewer/src/js/factset.js +64 -15
- iXBRLViewerPlugin/viewer/src/js/factset.test.js +102 -31
- iXBRLViewerPlugin/viewer/src/js/footnote.js +8 -2
- iXBRLViewerPlugin/viewer/src/js/index.js +11 -3
- iXBRLViewerPlugin/viewer/src/js/inspector.js +747 -221
- iXBRLViewerPlugin/viewer/src/js/inspector.test.js +143 -25
- iXBRLViewerPlugin/viewer/src/js/interval.js +70 -0
- iXBRLViewerPlugin/viewer/src/js/interval.test.js +153 -0
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +391 -262
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js +134 -20
- iXBRLViewerPlugin/viewer/src/js/ixnode.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/menu.js +25 -7
- iXBRLViewerPlugin/viewer/src/js/number-matcher.js +7 -3
- iXBRLViewerPlugin/viewer/src/js/number-matcher.test.js +4 -0
- iXBRLViewerPlugin/viewer/src/js/outline.js +34 -13
- iXBRLViewerPlugin/viewer/src/js/outline.test.js +97 -91
- iXBRLViewerPlugin/viewer/src/js/period.js +0 -1
- iXBRLViewerPlugin/viewer/src/js/report.js +260 -351
- iXBRLViewerPlugin/viewer/src/js/report.test.js +95 -27
- iXBRLViewerPlugin/viewer/src/js/reportset.js +264 -0
- iXBRLViewerPlugin/viewer/src/js/reportset.test.js +357 -0
- iXBRLViewerPlugin/viewer/src/js/search.js +72 -38
- iXBRLViewerPlugin/viewer/src/js/search.test.js +184 -84
- iXBRLViewerPlugin/viewer/src/js/summary.js +34 -8
- iXBRLViewerPlugin/viewer/src/js/summary.test.js +69 -25
- iXBRLViewerPlugin/viewer/src/js/tableExport.js +9 -9
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.js +34 -0
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.test.js +32 -0
- iXBRLViewerPlugin/viewer/src/js/test-utils.js +46 -0
- iXBRLViewerPlugin/viewer/src/js/theme.js +50 -0
- iXBRLViewerPlugin/viewer/src/js/unit.js +90 -32
- iXBRLViewerPlugin/viewer/src/js/unit.test.js +62 -25
- iXBRLViewerPlugin/viewer/src/js/util.js +94 -0
- iXBRLViewerPlugin/viewer/src/js/util.test.js +33 -1
- iXBRLViewerPlugin/viewer/src/js/utr.js +27 -0
- iXBRLViewerPlugin/viewer/src/js/viewer.js +205 -181
- iXBRLViewerPlugin/viewer/src/js/viewerOptions.js +0 -2
- iXBRLViewerPlugin/viewer/src/less/accordian.less +10 -6
- iXBRLViewerPlugin/viewer/src/less/block-list.less +16 -5
- iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less +83 -0
- iXBRLViewerPlugin/viewer/src/less/chart.less +8 -5
- iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less +40 -0
- iXBRLViewerPlugin/viewer/src/less/colours.less +32 -20
- iXBRLViewerPlugin/viewer/src/less/common.less +3 -3
- iXBRLViewerPlugin/viewer/src/less/components.less +6 -4
- iXBRLViewerPlugin/viewer/src/less/core.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/dialog.less +21 -14
- iXBRLViewerPlugin/viewer/src/less/form-controls.less +33 -11
- iXBRLViewerPlugin/viewer/src/less/inspector.less +1045 -726
- iXBRLViewerPlugin/viewer/src/less/loader.less +2 -2
- iXBRLViewerPlugin/viewer/src/less/menu.less +33 -15
- iXBRLViewerPlugin/viewer/src/less/summary.less +16 -6
- iXBRLViewerPlugin/viewer/src/less/tabs.less +9 -9
- iXBRLViewerPlugin/viewer/src/less/text-block-viewer.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/text-mixins.less +2 -1
- iXBRLViewerPlugin/viewer/src/less/validation-report.less +2 -3
- iXBRLViewerPlugin/viewer/src/less/viewer.less +105 -74
- iXBRLViewerPlugin/viewer/webpack.common.js +19 -9
- iXBRLViewerPlugin/xhtmlserialize.py +59 -45
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/METADATA +181 -50
- ixbrl_viewer-1.4.86.dist-info/RECORD +217 -0
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/WHEEL +1 -1
- ixbrl_viewer-1.4.1.dist-info/LICENSE → ixbrl_viewer-1.4.86.dist-info/licenses/LICENSE.md +8 -14
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/top_level.txt +0 -1
- iXBRLViewerPlugin/viewer/src/js/calculations.js +0 -111
- iXBRLViewerPlugin/viewer/src/js/interact.min.js +0 -6
- ixbrl_viewer-1.4.1.dist-info/RECORD +0 -155
- tests/__init__.py +0 -0
- tests/puppeteer/framework/core_elements.js +0 -117
- tests/puppeteer/framework/page_objects/doc_frame.js +0 -105
- tests/puppeteer/framework/page_objects/fact_details_panel.js +0 -80
- tests/puppeteer/framework/page_objects/search_panel.js +0 -76
- tests/puppeteer/framework/page_objects/toolbar.js +0 -18
- tests/puppeteer/framework/utils.js +0 -3
- tests/puppeteer/framework/viewer_page.js +0 -103
- tests/puppeteer/puppeteer_test_run_via_intellij.jpg +0 -0
- tests/puppeteer/test_filings/filing_documents_smoke_test.zip +0 -0
- tests/puppeteer/test_filings/highlights.zip +0 -0
- tests/puppeteer/tests/fact_properties.test.js +0 -78
- tests/puppeteer/tests/highlight.test.js +0 -186
- tests/puppeteer/tests/search.test.js +0 -86
- tests/puppeteer/tools/generate.sh +0 -15
- tests/unit_tests/__init__.py +0 -0
- tests/unit_tests/iXBRLViewerPlugin/__init__.py +0 -0
- tests/unit_tests/iXBRLViewerPlugin/mock_arelle.py +0 -39
- tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py +0 -641
- tests/unit_tests/iXBRLViewerPlugin/test_xhtmlserialize.py +0 -310
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info/licenses}/NOTICE +0 -0
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@import url("core.less");
|
|
4
4
|
@import url("fonts.less");
|
|
5
5
|
@import url("colours.less");
|
|
6
|
+
@import url("colours-dark-mode.less");
|
|
6
7
|
@import url("common.less");
|
|
7
8
|
@import (reference) "components.less";
|
|
8
9
|
@import url("form-controls.less");
|
|
@@ -15,522 +16,652 @@
|
|
|
15
16
|
@import (reference) "text-mixins.less";
|
|
16
17
|
@import url("block-list.less");
|
|
17
18
|
@import url("validation-report.less");
|
|
19
|
+
@import url("calculation-inspector.less");
|
|
18
20
|
@import url("text-block-viewer.less");
|
|
19
21
|
@import url("summary.less");
|
|
20
22
|
|
|
21
23
|
@top-bar-height: 3.5rem;
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
:root {
|
|
26
|
+
--colour-bg-selected: @colour-bg-selected;
|
|
27
|
+
--colour-bg-tag: @colour-bg-tag;
|
|
28
|
+
--colour-bg: @colour-bg;
|
|
29
|
+
--colour-bg-fade: @colour-bg-fade;
|
|
30
|
+
--colour-border-grey: @colour-border-grey;
|
|
31
|
+
--colour-button-bg: @colour-button-bg;
|
|
32
|
+
--colour-button-primary-bg: @colour-button-primary-bg;
|
|
33
|
+
--colour-button-primary-border: @colour-button-primary-border;
|
|
34
|
+
--colour-foreground: @colour-foreground;
|
|
35
|
+
--colour-highlight-1: @colour-highlight-1;
|
|
36
|
+
--colour-highlight-2: @colour-highlight-2;
|
|
37
|
+
--colour-highlight-3: @colour-highlight-3;
|
|
38
|
+
--colour-highlight-4: @colour-highlight-4;
|
|
39
|
+
--colour-highlight-5: @colour-highlight-5;
|
|
40
|
+
--colour-highlight-default: @colour-highlight-default;
|
|
41
|
+
--colour-icon-grey: @colour-icon-grey;
|
|
42
|
+
--colour-linked-fact: @colour-linked-fact;
|
|
43
|
+
--colour-loader: @colour-loader;
|
|
44
|
+
--colour-primary-focus: @colour-primary-focus;
|
|
45
|
+
--colour-primary: @colour-primary;
|
|
46
|
+
--colour-related-fact: @colour-related-fact;
|
|
47
|
+
--colour-row-odd: @colour-row-odd;
|
|
48
|
+
--colour-row-hover: @colour-row-hover;
|
|
49
|
+
--colour-text-form-value: @colour-text-form-value;
|
|
50
|
+
--colour-text-light: @colour-text-light;
|
|
51
|
+
--colour-text-title: @colour-text-title;
|
|
52
|
+
--colour-text: @colour-text;
|
|
53
|
+
--colour-warning: @colour-warning;
|
|
54
|
+
--top-bar-height: @top-bar-height;
|
|
55
|
+
|
|
56
|
+
.only-dark {
|
|
57
|
+
display: none;
|
|
30
58
|
}
|
|
59
|
+
}
|
|
31
60
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
61
|
+
:root[data-ixbrl-viewer-theme="dark"] {
|
|
62
|
+
--colour-bg-selected: @colour-bg-selected-d;
|
|
63
|
+
--colour-bg-tag: @colour-bg-tag-d;
|
|
64
|
+
--colour-bg: @colour-bg-d;
|
|
65
|
+
--colour-bg-fade: @colour-bg-fade-d;
|
|
66
|
+
--colour-border-grey: @colour-border-grey-d;
|
|
67
|
+
--colour-button-bg: @colour-button-bg-d;
|
|
68
|
+
--colour-button-primary-bg: @colour-button-primary-bg-d;
|
|
69
|
+
--colour-button-primary-border: @colour-button-primary-border-d;
|
|
70
|
+
--colour-foreground: @colour-foreground-d;
|
|
71
|
+
--colour-highlight-1: @colour-highlight-1-d;
|
|
72
|
+
--colour-highlight-2: @colour-highlight-2-d;
|
|
73
|
+
--colour-highlight-default: @colour-highlight-default-d;
|
|
74
|
+
--colour-icon-grey: @colour-icon-grey-d;
|
|
75
|
+
--colour-linked-fact: @colour-linked-fact-d;
|
|
76
|
+
--colour-loader: @colour-loader-d;
|
|
77
|
+
--colour-primary-focus: @colour-primary-focus-d;
|
|
78
|
+
--colour-primary: @colour-primary-d;
|
|
79
|
+
--colour-related-fact: @colour-related-fact-d;
|
|
80
|
+
--colour-row-odd: @colour-row-odd-d;
|
|
81
|
+
--colour-row-hover: @colour-row-hover-d;
|
|
82
|
+
--colour-text-form-value: @colour-text-form-value-d;
|
|
83
|
+
--colour-text-light: @colour-text-light-d;
|
|
84
|
+
--colour-text-title: @colour-text-title-d;
|
|
85
|
+
--colour-text: @colour-text-d;
|
|
86
|
+
--colour-warning: @colour-warning-d;
|
|
87
|
+
--top-bar-height: @top-bar-height;
|
|
88
|
+
|
|
89
|
+
.only-dark {
|
|
90
|
+
display: initial;
|
|
41
91
|
}
|
|
42
92
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
left: 0;
|
|
48
|
-
top: @top-bar-height;
|
|
49
|
-
bottom: 0;
|
|
50
|
-
z-index: 0;
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-flow: column;
|
|
93
|
+
.only-light {
|
|
94
|
+
display: none;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
53
97
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
98
|
+
body,
|
|
99
|
+
table,
|
|
100
|
+
dialog,
|
|
101
|
+
button {
|
|
102
|
+
.default-font();
|
|
103
|
+
.text-md();
|
|
104
|
+
}
|
|
58
105
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
106
|
+
a {
|
|
107
|
+
text-decoration: none;
|
|
108
|
+
color: var(--colour-primary);
|
|
62
109
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
border: none;
|
|
68
|
-
}
|
|
110
|
+
&:hover {
|
|
111
|
+
text-decoration: underline;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
69
114
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
display: flex;
|
|
81
|
-
align-items: center;
|
|
82
|
-
color: #777;
|
|
83
|
-
cursor: pointer;
|
|
84
|
-
user-select: none;
|
|
85
|
-
}
|
|
115
|
+
#ixv-progress {
|
|
116
|
+
position: fixed;
|
|
117
|
+
top: 20px;
|
|
118
|
+
left: 20px;
|
|
119
|
+
width: 500px;
|
|
120
|
+
height: 200px;
|
|
121
|
+
background-color: var(--colour-bg);
|
|
122
|
+
border: solid #000 1px;
|
|
123
|
+
text-align: center;
|
|
124
|
+
}
|
|
86
125
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
126
|
+
#viewer-pane {
|
|
127
|
+
width: 75%;
|
|
128
|
+
box-sizing: border-box;
|
|
129
|
+
position: fixed;
|
|
130
|
+
left: 0;
|
|
131
|
+
top: var(--top-bar-height);
|
|
132
|
+
bottom: 0;
|
|
133
|
+
z-index: 1;
|
|
134
|
+
display: flex;
|
|
135
|
+
flex-flow: column;
|
|
136
|
+
|
|
137
|
+
.ixds-tabs {
|
|
138
|
+
display: none;
|
|
139
|
+
flex: 0 1 auto;
|
|
140
|
+
}
|
|
90
141
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
142
|
+
#iframe-container {
|
|
143
|
+
background-color:white;
|
|
144
|
+
color:black;
|
|
145
|
+
position: relative;
|
|
146
|
+
flex: 1 1 auto;
|
|
94
147
|
|
|
95
|
-
|
|
96
|
-
|
|
148
|
+
& > iframe {
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
box-sizing: border-box;
|
|
152
|
+
border: none;
|
|
153
|
+
}
|
|
97
154
|
|
|
98
|
-
|
|
99
|
-
|
|
155
|
+
.zoom-in,
|
|
156
|
+
.zoom-out,
|
|
157
|
+
.print {
|
|
158
|
+
position: absolute;
|
|
159
|
+
right: 30px;
|
|
160
|
+
width: 20px;
|
|
161
|
+
height: 20px;
|
|
162
|
+
border: solid 1px #bbb;
|
|
163
|
+
background-color: rgb(225 225 225 / 70%);
|
|
164
|
+
justify-content: center;
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center;
|
|
167
|
+
color: #777;
|
|
168
|
+
cursor: pointer;
|
|
169
|
+
user-select: none;
|
|
170
|
+
}
|
|
100
171
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
172
|
+
.zoom-in {
|
|
173
|
+
top: 15px;
|
|
174
|
+
}
|
|
104
175
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
.print:hover {
|
|
108
|
-
background-color: rgb(128 128 128 / 70%);
|
|
109
|
-
}
|
|
176
|
+
.zoom-out {
|
|
177
|
+
top: 40px;
|
|
110
178
|
}
|
|
111
179
|
|
|
112
|
-
.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
180
|
+
.print {
|
|
181
|
+
top: 75px;
|
|
182
|
+
|
|
183
|
+
&::after {
|
|
184
|
+
.icon-print();
|
|
185
|
+
|
|
186
|
+
font-size: 20px;
|
|
187
|
+
}
|
|
119
188
|
}
|
|
120
189
|
|
|
121
|
-
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
width: 3px;
|
|
126
|
-
right: 0;
|
|
127
|
-
bottom: 0;
|
|
128
|
-
z-index: 20;
|
|
190
|
+
.zoom-in:hover,
|
|
191
|
+
.zoom-out:hover,
|
|
192
|
+
.print:hover {
|
|
193
|
+
background-color: rgb(128 128 128 / 70%);
|
|
129
194
|
}
|
|
130
195
|
}
|
|
131
196
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
197
|
+
.resize {
|
|
198
|
+
position: absolute;
|
|
199
|
+
top: 0;
|
|
200
|
+
width: 5px;
|
|
201
|
+
right: -5px;
|
|
202
|
+
bottom: 0;
|
|
203
|
+
z-index: 20;
|
|
204
|
+
}
|
|
135
205
|
|
|
136
|
-
|
|
137
|
-
|
|
206
|
+
/* This spacer stops drag events getting lost to the iframe */
|
|
207
|
+
.resize-spacer {
|
|
208
|
+
position: absolute;
|
|
138
209
|
top: 0;
|
|
139
|
-
|
|
210
|
+
width: 3px;
|
|
140
211
|
right: 0;
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
212
|
+
bottom: 0;
|
|
213
|
+
z-index: 20;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
144
216
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
217
|
+
#top-bar {
|
|
218
|
+
.default-font();
|
|
219
|
+
.text-md();
|
|
220
|
+
|
|
221
|
+
display: flex;
|
|
222
|
+
align-items: center;
|
|
223
|
+
color: var(--colour-text);
|
|
224
|
+
position: fixed;
|
|
225
|
+
top: 0;
|
|
226
|
+
left: 0;
|
|
227
|
+
right: 0;
|
|
228
|
+
height: var(--top-bar-height);
|
|
229
|
+
border-bottom: solid 1px #ccc;
|
|
230
|
+
z-index: 5;
|
|
231
|
+
|
|
232
|
+
#home-link {
|
|
233
|
+
font-size: 2.2rem;
|
|
234
|
+
font-weight: bold;
|
|
235
|
+
margin-left: 1rem;
|
|
236
|
+
margin-right: 1rem;
|
|
237
|
+
}
|
|
152
238
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
left: 160px;
|
|
157
|
-
top: 0;
|
|
158
|
-
padding-right: 1.6rem;
|
|
159
|
-
padding-top: 1.3rem;
|
|
160
|
-
border-right: solid 0.1rem #ccc;
|
|
161
|
-
height: @top-bar-height;
|
|
162
|
-
overflow: hidden;
|
|
163
|
-
}
|
|
239
|
+
.header {
|
|
240
|
+
height: 100%;
|
|
241
|
+
}
|
|
164
242
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
243
|
+
.document-title {
|
|
244
|
+
box-sizing: border-box;
|
|
245
|
+
padding-right: 1.6rem;
|
|
246
|
+
line-height: var(--top-bar-height);
|
|
247
|
+
border-right: solid 0.1rem #ccc;
|
|
248
|
+
height: var(--top-bar-height);
|
|
249
|
+
overflow: hidden;
|
|
250
|
+
font-size: inherit;
|
|
251
|
+
font-weight: inherit;
|
|
252
|
+
margin: 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.top-bar-controls {
|
|
256
|
+
position: absolute;
|
|
257
|
+
display: flex;
|
|
258
|
+
right: 0;
|
|
259
|
+
top: 0;
|
|
260
|
+
line-height: var(--top-bar-height);
|
|
261
|
+
height: var(--top-bar-height);
|
|
262
|
+
background: var(--colour-bg);
|
|
263
|
+
padding-left: 1.8rem;
|
|
264
|
+
|
|
265
|
+
& > * {
|
|
266
|
+
margin-right: 0.8rem;
|
|
267
|
+
}
|
|
170
268
|
|
|
269
|
+
.horizontal-menu {
|
|
171
270
|
* {
|
|
172
271
|
vertical-align: middle;
|
|
173
272
|
}
|
|
174
273
|
|
|
175
|
-
.content {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
margin-right: 0.6rem;
|
|
180
|
-
}
|
|
274
|
+
.content > * {
|
|
275
|
+
position: relative;
|
|
276
|
+
top: -0.1rem;
|
|
277
|
+
margin-right: 0.6rem;
|
|
181
278
|
}
|
|
279
|
+
}
|
|
182
280
|
|
|
183
|
-
.highlight-key {
|
|
184
|
-
margin-left: 0.6rem;
|
|
185
|
-
margin-right: 1.5rem;
|
|
186
|
-
position: relative;
|
|
187
281
|
|
|
188
|
-
|
|
189
|
-
|
|
282
|
+
.highlight-key {
|
|
283
|
+
margin-left: 0.6rem;
|
|
284
|
+
margin-right: 1.5rem;
|
|
285
|
+
position: relative;
|
|
190
286
|
|
|
191
|
-
|
|
192
|
-
|
|
287
|
+
&::before {
|
|
288
|
+
.icon-question();
|
|
193
289
|
|
|
194
|
-
|
|
290
|
+
font-size: 1.6rem;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.popup-content {
|
|
294
|
+
position: absolute;
|
|
295
|
+
top: 3.2rem;
|
|
296
|
+
left: -2rem;
|
|
297
|
+
background: white;
|
|
298
|
+
color: black;
|
|
299
|
+
border: solid 1px black;
|
|
300
|
+
border-radius: 0.3rem;
|
|
301
|
+
line-height: 1.6rem;
|
|
302
|
+
|
|
303
|
+
.arrow {
|
|
195
304
|
position: absolute;
|
|
196
|
-
top:
|
|
197
|
-
left:
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
border-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
305
|
+
top: 0;
|
|
306
|
+
left: 1.1rem;
|
|
307
|
+
width: 1.5rem;
|
|
308
|
+
height: 1.5rem;
|
|
309
|
+
border-top: solid 0.1rem black;
|
|
310
|
+
border-left: solid 0.1rem black;
|
|
311
|
+
transform: translate(50%, -50%) rotate(45deg);
|
|
312
|
+
background: white;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.item {
|
|
316
|
+
white-space: nowrap;
|
|
317
|
+
margin: 1rem;
|
|
318
|
+
position: relative;
|
|
319
|
+
|
|
320
|
+
.sample {
|
|
321
|
+
display: inline-block;
|
|
322
|
+
width: 3.2rem;
|
|
323
|
+
height: 1.6rem;
|
|
324
|
+
margin-right: 1rem;
|
|
213
325
|
}
|
|
214
326
|
|
|
215
|
-
.
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
position: relative;
|
|
219
|
-
|
|
220
|
-
.sample {
|
|
221
|
-
display: inline-block;
|
|
222
|
-
width: 3.2rem;
|
|
223
|
-
height: 1.6rem;
|
|
224
|
-
margin-right: 1rem;
|
|
225
|
-
}
|
|
327
|
+
.sample-0 {
|
|
328
|
+
background: var(--colour-highlight-default);
|
|
329
|
+
}
|
|
226
330
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
331
|
+
.sample-1 {
|
|
332
|
+
background: var(--colour-highlight-1);
|
|
333
|
+
}
|
|
230
334
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
335
|
+
.sample-2 {
|
|
336
|
+
background: var(--colour-highlight-2);
|
|
337
|
+
}
|
|
234
338
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
}
|
|
339
|
+
.sample-3 {
|
|
340
|
+
background: var(--colour-highlight-3);
|
|
238
341
|
}
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
342
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
display: none;
|
|
246
|
-
cursor: pointer;
|
|
343
|
+
.sample-4 {
|
|
344
|
+
background: var(--colour-highlight-4);
|
|
345
|
+
}
|
|
247
346
|
|
|
248
|
-
|
|
249
|
-
|
|
347
|
+
.sample-5 {
|
|
348
|
+
background: var(--colour-highlight-5);
|
|
349
|
+
}
|
|
250
350
|
}
|
|
251
351
|
}
|
|
252
352
|
}
|
|
253
|
-
}
|
|
254
353
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
354
|
+
.validation-warning {
|
|
355
|
+
margin-left: 0.5rem;
|
|
356
|
+
font-size: 1.6rem;
|
|
357
|
+
display: none;
|
|
358
|
+
cursor: pointer;
|
|
258
359
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
font-weight: normal;
|
|
263
|
-
border-bottom: solid 1px @border-grey;
|
|
264
|
-
width: 100%;
|
|
265
|
-
box-sizing: border-box;
|
|
266
|
-
padding-bottom: 5px;
|
|
267
|
-
color: @text-title;
|
|
360
|
+
&::before {
|
|
361
|
+
.icon-warning();
|
|
362
|
+
}
|
|
268
363
|
}
|
|
269
364
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
}
|
|
365
|
+
#toggle-dark-mode {
|
|
366
|
+
border: none;
|
|
273
367
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
}
|
|
368
|
+
&::before {
|
|
369
|
+
.icon-dark-mode();
|
|
277
370
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
color: @text-title;
|
|
281
|
-
margin-bottom: 1.4em;
|
|
371
|
+
cursor: pointer;
|
|
372
|
+
}
|
|
282
373
|
}
|
|
283
374
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
position: relative;
|
|
287
|
-
border-bottom: solid 1px @border-grey;
|
|
375
|
+
.menu .menu-title::before {
|
|
376
|
+
.icon-cog();
|
|
288
377
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
378
|
+
font-size: 2rem;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
293
382
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
padding: 0;
|
|
298
|
-
font-size: 1.8rem;
|
|
299
|
-
line-height: 3.2rem;
|
|
300
|
-
}
|
|
383
|
+
#inspector {
|
|
384
|
+
display: flex;
|
|
385
|
+
flex-direction: column;
|
|
301
386
|
|
|
302
|
-
|
|
303
|
-
|
|
387
|
+
h1,
|
|
388
|
+
h2,
|
|
389
|
+
h3 {
|
|
390
|
+
font-weight: normal;
|
|
391
|
+
width: 100%;
|
|
392
|
+
box-sizing: border-box;
|
|
393
|
+
color: var(--colour-text-title);
|
|
394
|
+
}
|
|
304
395
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
396
|
+
h2 {
|
|
397
|
+
text-align: center;
|
|
398
|
+
font-size: 1.8rem;
|
|
399
|
+
line-height: 3.2rem;
|
|
400
|
+
margin: 0.8rem 0;
|
|
401
|
+
}
|
|
308
402
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
}
|
|
403
|
+
h3 {
|
|
404
|
+
.text-md();
|
|
405
|
+
}
|
|
313
406
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
407
|
+
h4 {
|
|
408
|
+
font-weight: bold;
|
|
409
|
+
color: var(--colour-text-title);
|
|
410
|
+
margin-bottom: 1.4em;
|
|
411
|
+
}
|
|
318
412
|
|
|
319
|
-
|
|
320
|
-
|
|
413
|
+
#inspector-head {
|
|
414
|
+
padding: 0;
|
|
415
|
+
position: relative;
|
|
416
|
+
border-bottom: solid 1px var(--colour-border-grey);
|
|
321
417
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
418
|
+
.controls {
|
|
419
|
+
position: relative;
|
|
420
|
+
height: 3.2rem;
|
|
421
|
+
padding: 0.8rem 0.9rem;
|
|
422
|
+
display: flex;
|
|
326
423
|
|
|
327
|
-
|
|
328
|
-
position: relative;
|
|
329
|
-
height: 3.2rem;
|
|
424
|
+
& > * {
|
|
330
425
|
margin: 0.8rem 0.9rem;
|
|
426
|
+
}
|
|
331
427
|
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
position: absolute;
|
|
336
|
-
top: 0;
|
|
337
|
-
left: 7.7rem;
|
|
428
|
+
.search-button {
|
|
429
|
+
.square-button();
|
|
338
430
|
|
|
339
|
-
|
|
340
|
-
|
|
431
|
+
&::before {
|
|
432
|
+
.icon-search();
|
|
341
433
|
|
|
342
|
-
|
|
343
|
-
}
|
|
434
|
+
position: relative;
|
|
344
435
|
}
|
|
436
|
+
}
|
|
345
437
|
|
|
346
|
-
|
|
347
|
-
|
|
438
|
+
.outline-button {
|
|
439
|
+
.square-button();
|
|
348
440
|
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
left: 3.6rem;
|
|
441
|
+
&::before {
|
|
442
|
+
.icon-outline();
|
|
352
443
|
|
|
353
|
-
|
|
354
|
-
|
|
444
|
+
position: relative;
|
|
445
|
+
}
|
|
446
|
+
}
|
|
355
447
|
|
|
356
|
-
|
|
357
|
-
|
|
448
|
+
.summary-button {
|
|
449
|
+
.square-button();
|
|
450
|
+
|
|
451
|
+
&::before {
|
|
452
|
+
.icon-summary();
|
|
453
|
+
|
|
454
|
+
position: relative;
|
|
358
455
|
}
|
|
456
|
+
}
|
|
359
457
|
|
|
360
|
-
|
|
361
|
-
|
|
458
|
+
.ixbrl-prev-tag {
|
|
459
|
+
.square-button();
|
|
362
460
|
|
|
363
|
-
|
|
364
|
-
top: 0;
|
|
365
|
-
left: 0;
|
|
461
|
+
margin-left: auto;
|
|
366
462
|
|
|
367
|
-
|
|
368
|
-
|
|
463
|
+
&::before {
|
|
464
|
+
.icon-chevron-left();
|
|
465
|
+
}
|
|
466
|
+
}
|
|
369
467
|
|
|
370
|
-
|
|
371
|
-
|
|
468
|
+
.ixbrl-next-tag {
|
|
469
|
+
.square-button();
|
|
470
|
+
|
|
471
|
+
&::before {
|
|
472
|
+
.icon-chevron-right();
|
|
372
473
|
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
}
|
|
373
477
|
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
478
|
+
.inspector-container {
|
|
479
|
+
flex-grow: 1;
|
|
480
|
+
overflow: hidden;
|
|
481
|
+
display: flex;
|
|
482
|
+
flex-direction: column;
|
|
378
483
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
484
|
+
.inspector-title {
|
|
485
|
+
text-align: center;
|
|
486
|
+
position: relative;
|
|
487
|
+
margin: 0.8rem 0;
|
|
382
488
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
489
|
+
h2 {
|
|
490
|
+
margin: 0;
|
|
491
|
+
padding: 0;
|
|
492
|
+
}
|
|
386
493
|
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
}
|
|
494
|
+
.back {
|
|
495
|
+
.square-button-bare();
|
|
390
496
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
497
|
+
top: 0;
|
|
498
|
+
left: 0.9rem;
|
|
499
|
+
position: absolute;
|
|
500
|
+
|
|
501
|
+
&::before {
|
|
502
|
+
.icon-chevron-left();
|
|
394
503
|
}
|
|
395
504
|
}
|
|
505
|
+
}
|
|
396
506
|
|
|
397
|
-
|
|
398
|
-
|
|
507
|
+
.search-controls {
|
|
508
|
+
margin: 0 0 0.8rem;
|
|
399
509
|
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
510
|
+
.search-input {
|
|
511
|
+
display: flex;
|
|
512
|
+
padding: 0 0.9rem;
|
|
403
513
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
514
|
+
input#ixbrl-search {
|
|
515
|
+
flex-grow: 1;
|
|
516
|
+
margin-right: 1rem;
|
|
517
|
+
}
|
|
408
518
|
|
|
409
|
-
|
|
410
|
-
|
|
519
|
+
.filter-toggle {
|
|
520
|
+
.square-button();
|
|
411
521
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
}
|
|
522
|
+
&::before {
|
|
523
|
+
.icon-filter();
|
|
415
524
|
}
|
|
416
525
|
}
|
|
526
|
+
}
|
|
417
527
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
528
|
+
.filter-info {
|
|
529
|
+
text-align: center;
|
|
530
|
+
font-style: italic;
|
|
531
|
+
margin-top: 0.8rem;
|
|
532
|
+
position: relative;
|
|
533
|
+
|
|
534
|
+
.reset {
|
|
535
|
+
.bare-button();
|
|
536
|
+
.text-md();
|
|
421
537
|
|
|
422
|
-
|
|
423
|
-
|
|
538
|
+
position: absolute;
|
|
539
|
+
right: 0.8rem;
|
|
540
|
+
top: -0.3rem;
|
|
424
541
|
}
|
|
542
|
+
}
|
|
425
543
|
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
max-height: 60vh;
|
|
430
|
-
overflow-y: auto;
|
|
544
|
+
&:not(.show-filters) .search-filters {
|
|
545
|
+
display: none;
|
|
546
|
+
}
|
|
431
547
|
|
|
432
|
-
|
|
433
|
-
|
|
548
|
+
&.active-filters .filter-toggle {
|
|
549
|
+
color: var(--colour-primary);
|
|
550
|
+
}
|
|
434
551
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
}
|
|
552
|
+
&:not(.active-filters) .reset {
|
|
553
|
+
display: none;
|
|
554
|
+
}
|
|
439
555
|
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
556
|
+
.search-filters {
|
|
557
|
+
position: relative;
|
|
558
|
+
// Ensure the filter pane never grows too large to hide the results pane
|
|
559
|
+
max-height: 60vh;
|
|
560
|
+
overflow-y: auto;
|
|
561
|
+
padding: 0 0.9rem;
|
|
445
562
|
|
|
446
|
-
.filter-group {
|
|
447
|
-
display: flex;
|
|
448
|
-
flex-wrap: wrap;
|
|
449
|
-
justify-content: space-between;
|
|
450
|
-
margin-bottom: 0.4em;
|
|
451
563
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
}
|
|
564
|
+
h3 {
|
|
565
|
+
border: none;
|
|
566
|
+
font-weight: bold;
|
|
567
|
+
padding-bottom: 0;
|
|
457
568
|
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
textarea {
|
|
461
|
-
flex-basis: 12em;
|
|
462
|
-
flex-grow: 2;
|
|
463
|
-
}
|
|
569
|
+
button {
|
|
570
|
+
font-weight: inherit;
|
|
464
571
|
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.filter-group {
|
|
575
|
+
display: flex;
|
|
576
|
+
flex-wrap: wrap;
|
|
577
|
+
justify-content: space-between;
|
|
578
|
+
margin-bottom: 0.4em;
|
|
465
579
|
|
|
466
580
|
.control-label {
|
|
467
|
-
|
|
468
|
-
margin-
|
|
469
|
-
|
|
581
|
+
white-space: nowrap;
|
|
582
|
+
margin-right: 2em;
|
|
583
|
+
width: 6em;
|
|
470
584
|
}
|
|
471
585
|
|
|
472
|
-
|
|
473
|
-
|
|
586
|
+
input,
|
|
587
|
+
select,
|
|
588
|
+
textarea {
|
|
589
|
+
flex-basis: 12em;
|
|
590
|
+
flex-grow: 2;
|
|
474
591
|
}
|
|
592
|
+
}
|
|
475
593
|
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
594
|
+
.control-label {
|
|
595
|
+
font-weight: bold;
|
|
596
|
+
margin-bottom: 0.6em;
|
|
597
|
+
margin-top: 0.8em;
|
|
598
|
+
}
|
|
479
599
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
600
|
+
select {
|
|
601
|
+
width: 100%;
|
|
602
|
+
}
|
|
483
603
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
604
|
+
.checkboxes {
|
|
605
|
+
display: flex;
|
|
606
|
+
flex-wrap: wrap;
|
|
607
|
+
|
|
608
|
+
& > div {
|
|
609
|
+
margin: 1.2rem 0;
|
|
610
|
+
flex-grow: 1;
|
|
611
|
+
|
|
612
|
+
input {
|
|
613
|
+
vertical-align: middle;
|
|
487
614
|
}
|
|
488
615
|
}
|
|
616
|
+
}
|
|
489
617
|
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
618
|
+
|
|
619
|
+
.datatype-conflict-warning {
|
|
620
|
+
margin: 1rem 0;
|
|
621
|
+
color: var(--colour-warning);
|
|
622
|
+
display: none;
|
|
495
623
|
}
|
|
496
624
|
}
|
|
497
625
|
}
|
|
498
626
|
|
|
499
627
|
.inspector-body {
|
|
500
|
-
|
|
628
|
+
border-top: solid 1px var(--colour-border-grey);
|
|
501
629
|
width: 100%;
|
|
502
630
|
position: relative;
|
|
503
|
-
overflow:
|
|
631
|
+
overflow-y: auto;
|
|
632
|
+
flex-grow: 1;
|
|
504
633
|
|
|
505
634
|
.no-fact-overlay,
|
|
506
635
|
.no-outline-overlay {
|
|
507
|
-
display: block;
|
|
508
636
|
position: absolute;
|
|
509
637
|
left: 50%;
|
|
510
638
|
top: 50%;
|
|
511
639
|
transform: translate(-50%, -50%);
|
|
512
640
|
width: 80%;
|
|
513
641
|
text-align: center;
|
|
514
|
-
color:
|
|
642
|
+
color: var(--colour-text-light);
|
|
515
643
|
|
|
516
644
|
.no-fact-overlay-icon::before {
|
|
517
645
|
.icon-tag();
|
|
518
646
|
|
|
519
647
|
font-size: 10rem;
|
|
648
|
+
line-height: normal;
|
|
520
649
|
}
|
|
521
650
|
|
|
522
651
|
.no-outline-overlay-icon::before {
|
|
523
652
|
.icon-outline();
|
|
524
653
|
|
|
525
654
|
font-size: 10rem;
|
|
655
|
+
line-height: normal;
|
|
526
656
|
}
|
|
527
657
|
|
|
528
658
|
.title {
|
|
529
659
|
font-size: x-large;
|
|
660
|
+
line-height: normal;
|
|
530
661
|
}
|
|
531
662
|
}
|
|
532
663
|
|
|
533
|
-
.inspector-body
|
|
664
|
+
.inspector-body {
|
|
534
665
|
overflow-y: auto;
|
|
535
666
|
height: 100%;
|
|
536
667
|
position: relative;
|
|
@@ -546,12 +677,13 @@
|
|
|
546
677
|
position: absolute;
|
|
547
678
|
top: 50%;
|
|
548
679
|
left: 50%;
|
|
549
|
-
color:
|
|
680
|
+
color: var(--colour-text-light);
|
|
550
681
|
width: 85%;
|
|
551
682
|
|
|
552
683
|
.search-overlay-icon {
|
|
553
684
|
text-align: center;
|
|
554
685
|
font-size: 10rem;
|
|
686
|
+
line-height: normal;
|
|
555
687
|
|
|
556
688
|
&::before {
|
|
557
689
|
.icon-search();
|
|
@@ -561,26 +693,15 @@
|
|
|
561
693
|
.search-overlay-text {
|
|
562
694
|
text-align: center;
|
|
563
695
|
font-size: medium;
|
|
696
|
+
line-height: normal;
|
|
564
697
|
|
|
565
698
|
.title {
|
|
566
699
|
font-size: x-large;
|
|
700
|
+
line-height: normal;
|
|
567
701
|
}
|
|
568
702
|
}
|
|
569
703
|
}
|
|
570
704
|
|
|
571
|
-
.select-icon {
|
|
572
|
-
float: right;
|
|
573
|
-
.square-button();
|
|
574
|
-
.clickable();
|
|
575
|
-
|
|
576
|
-
&:first-of-type {
|
|
577
|
-
margin-left: 0.5rem;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
&::before {
|
|
581
|
-
.icon-select();
|
|
582
|
-
}
|
|
583
|
-
}
|
|
584
705
|
|
|
585
706
|
.more-results {
|
|
586
707
|
.clickable();
|
|
@@ -604,296 +725,330 @@
|
|
|
604
725
|
.panel-indent();
|
|
605
726
|
}
|
|
606
727
|
} /* inspector body */
|
|
728
|
+
} /* inspector container */
|
|
607
729
|
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
730
|
+
.std-label {
|
|
731
|
+
margin-left: 30px;
|
|
732
|
+
min-height: 20px;
|
|
733
|
+
position: relative;
|
|
612
734
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
font-size: x-large;
|
|
620
|
-
}
|
|
735
|
+
&::before {
|
|
736
|
+
color: var(--colour-primary);
|
|
737
|
+
content: "\2022";
|
|
738
|
+
position: absolute;
|
|
739
|
+
left: -20px;
|
|
740
|
+
font-size: x-large;
|
|
621
741
|
}
|
|
742
|
+
}
|
|
622
743
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
744
|
+
dt {
|
|
745
|
+
font-weight: bold;
|
|
746
|
+
color: var(--colour-text-title);
|
|
747
|
+
margin-bottom: 1.4rem;
|
|
748
|
+
margin-top: 1.4rem;
|
|
749
|
+
}
|
|
628
750
|
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
margin-bottom: 1rem;
|
|
751
|
+
dd {
|
|
752
|
+
margin-inline-start: 2rem;
|
|
753
|
+
}
|
|
633
754
|
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
755
|
+
#concept {
|
|
756
|
+
margin-top: 20px;
|
|
757
|
+
font-size: small;
|
|
758
|
+
min-height: 25px;
|
|
759
|
+
}
|
|
637
760
|
|
|
638
|
-
|
|
639
|
-
|
|
761
|
+
#dimensions {
|
|
762
|
+
margin-left: 2rem;
|
|
763
|
+
margin-right: 2rem;
|
|
764
|
+
margin-bottom: 1rem;
|
|
640
765
|
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
766
|
+
.dimension {
|
|
767
|
+
position: relative;
|
|
768
|
+
margin: 1.5rem 0 1.5rem 1rem;
|
|
769
|
+
|
|
770
|
+
&::before {
|
|
771
|
+
.icon-dimension();
|
|
772
|
+
|
|
773
|
+
color: var(--colour-primary);
|
|
774
|
+
position: absolute;
|
|
775
|
+
top: 0;
|
|
776
|
+
left: -2.3rem;
|
|
777
|
+
font-size: 120%;
|
|
647
778
|
}
|
|
779
|
+
}
|
|
648
780
|
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
781
|
+
.dimension-value {
|
|
782
|
+
position: relative;
|
|
783
|
+
margin: 1.5rem 0 1.5rem 3.5rem;
|
|
652
784
|
|
|
653
|
-
|
|
654
|
-
|
|
785
|
+
&::before {
|
|
786
|
+
.icon-dimension-member();
|
|
655
787
|
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
}
|
|
788
|
+
position: absolute;
|
|
789
|
+
color: var(--colour-primary);
|
|
790
|
+
top: 0;
|
|
791
|
+
left: -2.3rem;
|
|
792
|
+
font-size: 120%;
|
|
662
793
|
}
|
|
663
794
|
}
|
|
795
|
+
}
|
|
664
796
|
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
797
|
+
.inline-button {
|
|
798
|
+
display: inline;
|
|
799
|
+
cursor: pointer;
|
|
800
|
+
color: var(--colour-primary);
|
|
801
|
+
padding: 0.3rem;
|
|
802
|
+
border: none;
|
|
803
|
+
}
|
|
670
804
|
|
|
671
|
-
|
|
672
|
-
|
|
805
|
+
.analyse {
|
|
806
|
+
margin-left: 0.4rem;
|
|
807
|
+
}
|
|
673
808
|
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
}
|
|
809
|
+
.analyse::before {
|
|
810
|
+
.icon-graph();
|
|
677
811
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
812
|
+
position: relative;
|
|
813
|
+
top: 1px;
|
|
814
|
+
}
|
|
681
815
|
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
816
|
+
.inspector-body .tags {
|
|
817
|
+
position: absolute;
|
|
818
|
+
top: 1.5rem;
|
|
819
|
+
right: 0.9rem;
|
|
820
|
+
}
|
|
685
821
|
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
}
|
|
822
|
+
.target-document-tag {
|
|
823
|
+
.tag();
|
|
824
|
+
}
|
|
690
825
|
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
826
|
+
.hidden-fact-tag,
|
|
827
|
+
.html-hidden-fact-tag {
|
|
828
|
+
.tag();
|
|
694
829
|
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
color: @text-title;
|
|
700
|
-
}
|
|
830
|
+
&.html-hidden-fact-tag {
|
|
831
|
+
background-color: #c63018;
|
|
832
|
+
}
|
|
833
|
+
}
|
|
701
834
|
|
|
702
|
-
th,
|
|
703
|
-
td {
|
|
704
|
-
padding-top: 2px;
|
|
705
|
-
padding-bottom: 2px;
|
|
706
|
-
}
|
|
707
835
|
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
836
|
+
.duplicates {
|
|
837
|
+
text-align: center;
|
|
838
|
+
width: 100%;
|
|
839
|
+
height: 3.2rem;
|
|
840
|
+
line-height: 3.2rem;
|
|
713
841
|
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
842
|
+
& > * {
|
|
843
|
+
vertical-align: middle;
|
|
844
|
+
}
|
|
717
845
|
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
846
|
+
.text {
|
|
847
|
+
margin: 0 5px;
|
|
848
|
+
}
|
|
721
849
|
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
}
|
|
726
|
-
}
|
|
850
|
+
.next,
|
|
851
|
+
.prev {
|
|
852
|
+
.square-button-bare();
|
|
727
853
|
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
color: @text-form-value;
|
|
732
|
-
}
|
|
854
|
+
position: relative;
|
|
855
|
+
display: inline-block;
|
|
856
|
+
}
|
|
733
857
|
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
}
|
|
858
|
+
.prev::before {
|
|
859
|
+
.icon-chevron-left();
|
|
737
860
|
}
|
|
738
861
|
|
|
739
|
-
.
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
line-height: 3.2rem;
|
|
862
|
+
.next::before {
|
|
863
|
+
.icon-chevron-right();
|
|
864
|
+
}
|
|
865
|
+
}
|
|
744
866
|
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
867
|
+
.concept td > div {
|
|
868
|
+
display: flex;
|
|
869
|
+
|
|
870
|
+
span.text {
|
|
871
|
+
white-space: nowrap;
|
|
872
|
+
position: relative;
|
|
873
|
+
flex-shrink: 1;
|
|
874
|
+
overflow: hidden;
|
|
875
|
+
text-overflow: ellipsis;
|
|
876
|
+
}
|
|
748
877
|
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
878
|
+
span.filler {
|
|
879
|
+
width: 0.7rem;
|
|
880
|
+
display: inline-block;
|
|
881
|
+
flex-shrink: 1000;
|
|
882
|
+
}
|
|
752
883
|
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
884
|
+
span.copy-icon {
|
|
885
|
+
flex-shrink: 0;
|
|
886
|
+
}
|
|
887
|
+
}
|
|
756
888
|
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
889
|
+
.documentation {
|
|
890
|
+
margin-top: 10px;
|
|
891
|
+
margin-left: 30px;
|
|
892
|
+
font-style: italic;
|
|
893
|
+
font-family: serif;
|
|
894
|
+
}
|
|
760
895
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
896
|
+
width: 25%;
|
|
897
|
+
position: absolute;
|
|
898
|
+
top: var(--top-bar-height);
|
|
899
|
+
right: 0;
|
|
900
|
+
bottom: 0;
|
|
901
|
+
box-sizing: border-box;
|
|
902
|
+
overflow: hidden;
|
|
903
|
+
border-left: solid 0.1rem var(--colour-border-grey);
|
|
904
|
+
|
|
905
|
+
.inspector-section {
|
|
906
|
+
padding-left: 0.9rem;
|
|
907
|
+
padding-right: 0.9rem;
|
|
908
|
+
}
|
|
764
909
|
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
910
|
+
.collapsible-section {
|
|
911
|
+
.collapsible-body {
|
|
912
|
+
.panel-indent();
|
|
768
913
|
}
|
|
769
914
|
|
|
770
|
-
.
|
|
771
|
-
|
|
915
|
+
.collapsible-header {
|
|
916
|
+
position: relative;
|
|
917
|
+
padding: 0 0 0.5rem 1.2rem;
|
|
918
|
+
cursor: pointer;
|
|
919
|
+
user-select: none;
|
|
920
|
+
white-space: nowrap;
|
|
921
|
+
border-bottom: solid 1px var(--colour-border-grey);
|
|
772
922
|
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
position: relative;
|
|
776
|
-
flex-shrink: 1;
|
|
777
|
-
overflow: hidden;
|
|
778
|
-
text-overflow: ellipsis;
|
|
779
|
-
}
|
|
923
|
+
button:first-of-type {
|
|
924
|
+
.text-md();
|
|
780
925
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
926
|
+
border: none;
|
|
927
|
+
color: var(--colour-text-title);
|
|
928
|
+
text-align: left;
|
|
929
|
+
position: relative;
|
|
930
|
+
padding: 0.4rem 0.9rem 0.4rem 2.3rem;
|
|
931
|
+
|
|
932
|
+
&::before {
|
|
933
|
+
.icon-chevron-right();
|
|
786
934
|
|
|
787
|
-
|
|
788
|
-
|
|
935
|
+
font-size: 1.8rem;
|
|
936
|
+
position: absolute;
|
|
937
|
+
top: 0.4rem;
|
|
938
|
+
left: 0;
|
|
939
|
+
transform: rotate(90deg);
|
|
940
|
+
transition: all 0.25s ease;
|
|
941
|
+
display: inline-block;
|
|
942
|
+
}
|
|
789
943
|
}
|
|
790
|
-
}
|
|
791
944
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
945
|
+
.collapsible-subheader {
|
|
946
|
+
user-select: none;
|
|
947
|
+
font-weight: normal;
|
|
948
|
+
font-style: italic;
|
|
949
|
+
font-size: 1.3rem;
|
|
950
|
+
color: var(--colour-text-form-value);
|
|
951
|
+
}
|
|
797
952
|
}
|
|
798
953
|
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
overflow: hidden;
|
|
806
|
-
border-left: @simple-border;
|
|
807
|
-
|
|
808
|
-
a {
|
|
809
|
-
text-decoration: none;
|
|
810
|
-
color: @primary;
|
|
954
|
+
&.collapsed {
|
|
955
|
+
.collapsible-header button::before {
|
|
956
|
+
transform: rotate(0);
|
|
957
|
+
top: 0.3rem;
|
|
958
|
+
left: -0.2rem;
|
|
959
|
+
}
|
|
811
960
|
|
|
812
|
-
|
|
813
|
-
|
|
961
|
+
.collapsible-subheader {
|
|
962
|
+
color: var(--colour-primary);
|
|
814
963
|
}
|
|
815
964
|
}
|
|
816
965
|
|
|
817
|
-
.
|
|
818
|
-
|
|
819
|
-
padding-right: 0.9rem;
|
|
966
|
+
.footnote-details {
|
|
967
|
+
display: none;
|
|
820
968
|
}
|
|
821
969
|
|
|
822
|
-
.
|
|
823
|
-
.
|
|
824
|
-
.panel-indent();
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.collapsible-header {
|
|
970
|
+
.calculations {
|
|
971
|
+
.card .title {
|
|
828
972
|
position: relative;
|
|
829
|
-
padding-left: 12px;
|
|
830
|
-
cursor: pointer;
|
|
831
|
-
user-select: none;
|
|
832
|
-
white-space: nowrap;
|
|
833
973
|
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
font-size: 1.8rem;
|
|
974
|
+
.inconsistent-flag {
|
|
975
|
+
padding-right: 0.75rem;
|
|
838
976
|
position: relative;
|
|
839
|
-
top: 0.
|
|
840
|
-
|
|
841
|
-
transform: rotate(90deg);
|
|
842
|
-
transition: all 0.25s ease;
|
|
843
|
-
display: inline-block;
|
|
844
|
-
}
|
|
977
|
+
top: 0.2rem;
|
|
978
|
+
color: var(--colour-warning);
|
|
845
979
|
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
font-style: italic;
|
|
850
|
-
font-size: 1.3rem;
|
|
851
|
-
color: @text-form-value;
|
|
980
|
+
&::before {
|
|
981
|
+
.icon-circle-cross();
|
|
982
|
+
}
|
|
852
983
|
}
|
|
853
|
-
}
|
|
854
984
|
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
top: 0.
|
|
859
|
-
|
|
985
|
+
.consistent-flag {
|
|
986
|
+
padding-right: 0.75rem;
|
|
987
|
+
position: relative;
|
|
988
|
+
top: 0.2rem;
|
|
989
|
+
color: var(--colour-primary);
|
|
990
|
+
|
|
991
|
+
&::before {
|
|
992
|
+
.icon-circle-tick();
|
|
993
|
+
}
|
|
860
994
|
}
|
|
861
995
|
|
|
862
|
-
.
|
|
863
|
-
|
|
996
|
+
.unchecked-flag {
|
|
997
|
+
padding-right: 0.5rem;
|
|
998
|
+
position: relative;
|
|
999
|
+
top: 0.2rem;
|
|
1000
|
+
|
|
1001
|
+
&::before {
|
|
1002
|
+
.icon-question();
|
|
1003
|
+
}
|
|
864
1004
|
}
|
|
865
|
-
}
|
|
866
1005
|
|
|
867
|
-
.footnote-details {
|
|
868
|
-
display: none;
|
|
869
1006
|
}
|
|
870
1007
|
|
|
871
|
-
.
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
1008
|
+
table.calculation-table {
|
|
1009
|
+
width: 100%;
|
|
1010
|
+
border-collapse: collapse;
|
|
1011
|
+
|
|
1012
|
+
tr.item {
|
|
1013
|
+
td {
|
|
1014
|
+
padding: 0.2rem 0;
|
|
1015
|
+
line-height: 1.8rem;
|
|
1016
|
+
|
|
1017
|
+
&.weight {
|
|
1018
|
+
text-align: center;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
&.value {
|
|
1022
|
+
text-align: right;
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
876
1025
|
|
|
877
1026
|
&:not(.calc-fact-link, .total) .concept-name {
|
|
878
1027
|
color: #777;
|
|
879
1028
|
}
|
|
880
1029
|
|
|
881
|
-
.
|
|
882
|
-
|
|
883
|
-
|
|
1030
|
+
&:not(.calc-fact-link) {
|
|
1031
|
+
td {
|
|
1032
|
+
.text-md();
|
|
1033
|
+
|
|
1034
|
+
&.concept-name {
|
|
1035
|
+
// Compensate for padding that gets added by button on clickable rows.
|
|
1036
|
+
padding: 0.3rem;
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
884
1039
|
}
|
|
885
1040
|
|
|
886
1041
|
&.calc-fact-link {
|
|
887
1042
|
cursor: pointer;
|
|
888
1043
|
|
|
889
|
-
.concept-name
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
}
|
|
1044
|
+
.concept-name,
|
|
1045
|
+
.value {
|
|
1046
|
+
color: var(--colour-primary);
|
|
893
1047
|
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
1048
|
+
button {
|
|
1049
|
+
.text-md();
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
897
1052
|
}
|
|
898
1053
|
|
|
899
1054
|
&.linked-highlight,
|
|
@@ -901,229 +1056,393 @@
|
|
|
901
1056
|
.linked-highlight-text();
|
|
902
1057
|
}
|
|
903
1058
|
|
|
904
|
-
&.total {
|
|
905
|
-
border-top: solid 1px
|
|
1059
|
+
&.total td {
|
|
1060
|
+
border-top: solid 1px var(--colour-border-grey);
|
|
906
1061
|
padding-bottom: 1.2rem;
|
|
907
1062
|
}
|
|
908
1063
|
}
|
|
909
1064
|
}
|
|
1065
|
+
|
|
1066
|
+
.calculation-details-link {
|
|
1067
|
+
.inline-button();
|
|
1068
|
+
.text-md();
|
|
1069
|
+
}
|
|
910
1070
|
}
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.resetable-multiselect {
|
|
1074
|
+
position: relative;
|
|
911
1075
|
|
|
912
1076
|
.reset-multiselect {
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
bottom: 1rem;
|
|
1077
|
+
position: absolute;
|
|
1078
|
+
top: -2.5rem;
|
|
1079
|
+
right: -0.5rem;
|
|
917
1080
|
cursor: pointer;
|
|
1081
|
+
border: none;
|
|
1082
|
+
padding: 0.3rem;
|
|
1083
|
+
|
|
918
1084
|
|
|
919
1085
|
&::after {
|
|
920
1086
|
.icon-close();
|
|
921
1087
|
}
|
|
922
1088
|
}
|
|
1089
|
+
}
|
|
923
1090
|
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
}
|
|
1091
|
+
&:not(.no-fact-selected) {
|
|
1092
|
+
.no-fact-overlay {
|
|
1093
|
+
display: none;
|
|
928
1094
|
}
|
|
1095
|
+
}
|
|
929
1096
|
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
}
|
|
1097
|
+
&.no-fact-selected {
|
|
1098
|
+
.fact-selected-only {
|
|
1099
|
+
display: none;
|
|
934
1100
|
}
|
|
1101
|
+
}
|
|
935
1102
|
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
}
|
|
1103
|
+
&:not(.hidden-fact) {
|
|
1104
|
+
.hidden-fact-tag {
|
|
1105
|
+
display: none;
|
|
940
1106
|
}
|
|
1107
|
+
}
|
|
941
1108
|
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
}
|
|
1109
|
+
&:not(.html-hidden-fact) {
|
|
1110
|
+
.html-hidden-fact-tag {
|
|
1111
|
+
display: none;
|
|
946
1112
|
}
|
|
1113
|
+
}
|
|
947
1114
|
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
}
|
|
1115
|
+
&.search-mode {
|
|
1116
|
+
#inspector-head {
|
|
1117
|
+
.controls {
|
|
1118
|
+
.search-button {
|
|
1119
|
+
.square-button.primary();
|
|
954
1120
|
}
|
|
955
1121
|
}
|
|
956
1122
|
}
|
|
1123
|
+
}
|
|
957
1124
|
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
}
|
|
1125
|
+
&.outline-mode {
|
|
1126
|
+
#inspector-head {
|
|
1127
|
+
.controls {
|
|
1128
|
+
.outline-button {
|
|
1129
|
+
.square-button.primary();
|
|
964
1130
|
}
|
|
965
1131
|
}
|
|
966
1132
|
}
|
|
1133
|
+
}
|
|
967
1134
|
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
}
|
|
1135
|
+
&.summary-mode {
|
|
1136
|
+
#inspector-head {
|
|
1137
|
+
.controls {
|
|
1138
|
+
.summary-button {
|
|
1139
|
+
.square-button.primary();
|
|
974
1140
|
}
|
|
975
1141
|
}
|
|
976
1142
|
}
|
|
1143
|
+
}
|
|
977
1144
|
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
text-align: center;
|
|
982
|
-
flex-shrink: 0;
|
|
983
|
-
background: #fff;
|
|
984
|
-
width: 100%;
|
|
985
|
-
height: 3rem;
|
|
986
|
-
margin: 0;
|
|
987
|
-
box-sizing: border-box;
|
|
988
|
-
border-top: @simple-border;
|
|
989
|
-
position: relative;
|
|
1145
|
+
.powered-by {
|
|
1146
|
+
.text-sm();
|
|
990
1147
|
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
1148
|
+
text-align: center;
|
|
1149
|
+
flex-shrink: 0;
|
|
1150
|
+
background: var(--colour-bg);
|
|
1151
|
+
width: 100%;
|
|
1152
|
+
height: 3rem;
|
|
1153
|
+
margin: 0;
|
|
1154
|
+
box-sizing: border-box;
|
|
1155
|
+
border-top: solid 0.1rem var(--colour-border-grey);
|
|
1156
|
+
position: relative;
|
|
996
1157
|
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
font-size: small;
|
|
1002
|
-
line-height: 3rem;
|
|
1003
|
-
color: #999;
|
|
1004
|
-
}
|
|
1158
|
+
img {
|
|
1159
|
+
box-sizing: border-box;
|
|
1160
|
+
height: 3rem;
|
|
1161
|
+
padding: 0.5rem;
|
|
1005
1162
|
}
|
|
1006
1163
|
|
|
1007
|
-
|
|
1008
|
-
|
|
1164
|
+
.version {
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
top: 0;
|
|
1167
|
+
right: 5px;
|
|
1168
|
+
font-size: small;
|
|
1169
|
+
line-height: 3rem;
|
|
1170
|
+
color: var(--colour-text-light);
|
|
1009
1171
|
}
|
|
1172
|
+
}
|
|
1010
1173
|
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1174
|
+
&:not(.search-mode) .search-mode-only {
|
|
1175
|
+
display: none;
|
|
1176
|
+
}
|
|
1014
1177
|
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1178
|
+
&:not(.outline-mode) .outline-mode-only {
|
|
1179
|
+
display: none;
|
|
1180
|
+
}
|
|
1018
1181
|
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
display: none;
|
|
1023
|
-
}
|
|
1182
|
+
&:not(.summary-mode) .summary-mode-only {
|
|
1183
|
+
display: none;
|
|
1184
|
+
}
|
|
1024
1185
|
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1186
|
+
&.search-mode .fact-mode-only,
|
|
1187
|
+
&.summary-mode .fact-mode-only,
|
|
1188
|
+
&.outline-mode .fact-mode-only {
|
|
1189
|
+
display: none;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
&:not(.footnote-mode) .footnote-mode-only {
|
|
1193
|
+
display: none;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
&.footnote-mode .footnote-mode-off {
|
|
1197
|
+
display: none;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.failed-to-load-mask {
|
|
1201
|
+
display: none;
|
|
1202
|
+
}
|
|
1028
1203
|
|
|
1029
|
-
|
|
1204
|
+
&.failed-to-load .failed-to-load-mask {
|
|
1205
|
+
display: block;
|
|
1206
|
+
background-color: var(--colour-bg-fade);
|
|
1207
|
+
position: absolute;
|
|
1208
|
+
width: 100%;
|
|
1209
|
+
height: 100%;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
&.search-ready {
|
|
1213
|
+
.search-not-ready-only {
|
|
1030
1214
|
display: none;
|
|
1031
1215
|
}
|
|
1216
|
+
}
|
|
1032
1217
|
|
|
1033
|
-
|
|
1218
|
+
&:not(.search-ready) {
|
|
1219
|
+
.search-ready-only {
|
|
1034
1220
|
display: none;
|
|
1035
1221
|
}
|
|
1036
1222
|
|
|
1037
|
-
|
|
1038
|
-
display: block;
|
|
1223
|
+
.search-results {
|
|
1039
1224
|
background-color: rgb(0 0 0 / 50%);
|
|
1040
|
-
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
table.property-table {
|
|
1229
|
+
&:not(.numeric) {
|
|
1230
|
+
table-layout: fixed;
|
|
1041
1231
|
width: 100%;
|
|
1042
|
-
height: 100%;
|
|
1043
1232
|
}
|
|
1044
1233
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1234
|
+
td, th {
|
|
1235
|
+
padding: 0;
|
|
1236
|
+
line-height: 2.6rem;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
th {
|
|
1240
|
+
width: 90px;
|
|
1241
|
+
text-align: right;
|
|
1242
|
+
padding-right: 30px;
|
|
1243
|
+
color: var(--colour-text-title);
|
|
1244
|
+
|
|
1245
|
+
&.has-tooltip {
|
|
1246
|
+
padding-right: 10px;
|
|
1048
1247
|
}
|
|
1049
1248
|
}
|
|
1050
1249
|
|
|
1051
|
-
|
|
1052
|
-
.
|
|
1250
|
+
tr.value {
|
|
1251
|
+
.show-all {
|
|
1252
|
+
color: var(--colour-primary);
|
|
1253
|
+
cursor: pointer;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
&:not(.truncated) .show-all {
|
|
1053
1257
|
display: none;
|
|
1054
1258
|
}
|
|
1055
1259
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1260
|
+
&.text-block .expand-text-block {
|
|
1261
|
+
color: var(--colour-primary);
|
|
1262
|
+
cursor: pointer;
|
|
1263
|
+
|
|
1264
|
+
&::before {
|
|
1265
|
+
.icon-text-block();
|
|
1266
|
+
}
|
|
1058
1267
|
}
|
|
1059
1268
|
}
|
|
1060
|
-
}
|
|
1061
1269
|
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1270
|
+
td {
|
|
1271
|
+
overflow: clip visible;
|
|
1272
|
+
text-overflow: ellipsis;
|
|
1273
|
+
color: var(--colour-text-form-value);
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
tr.uri > td {
|
|
1277
|
+
white-space: nowrap;
|
|
1278
|
+
}
|
|
1065
1279
|
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
outline-offset: 1px;
|
|
1280
|
+
&.numeric td {
|
|
1281
|
+
text-align: right;
|
|
1069
1282
|
}
|
|
1070
1283
|
}
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.fact-link {
|
|
1287
|
+
cursor: pointer;
|
|
1288
|
+
color: var(--colour-primary);
|
|
1289
|
+
|
|
1290
|
+
&:hover {
|
|
1291
|
+
outline: solid 0.125em var(--colour-linked-fact);
|
|
1292
|
+
outline-offset: 0.0625em;
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.fact-list {
|
|
1297
|
+
.fact-list-item {
|
|
1298
|
+
.block-list-item();
|
|
1299
|
+
|
|
1300
|
+
.select-icon {
|
|
1301
|
+
float: right;
|
|
1302
|
+
.square-button();
|
|
1303
|
+
.clickable();
|
|
1304
|
+
|
|
1305
|
+
&:first-of-type {
|
|
1306
|
+
margin-left: 0.5rem;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
&::before {
|
|
1310
|
+
.icon-select();
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.title {
|
|
1315
|
+
color: var(--colour-text-title);
|
|
1316
|
+
font-weight: bold;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.dimension {
|
|
1320
|
+
color: var(--colour-text);
|
|
1321
|
+
margin: 0.6rem 0;
|
|
1322
|
+
}
|
|
1071
1323
|
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
.
|
|
1324
|
+
.datatype {
|
|
1325
|
+
color: var(--colour-text);
|
|
1326
|
+
margin: 0.6rem 0;
|
|
1327
|
+
font-style: italic;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.hidden {
|
|
1331
|
+
.tag();
|
|
1332
|
+
}
|
|
1075
1333
|
|
|
1334
|
+
&.selected {
|
|
1076
1335
|
.title {
|
|
1077
|
-
color: @text-title;
|
|
1078
1336
|
font-weight: bold;
|
|
1079
1337
|
}
|
|
1080
1338
|
|
|
1081
1339
|
.dimension {
|
|
1082
|
-
color:
|
|
1083
|
-
margin: 0.6rem 0;
|
|
1340
|
+
color: var(--colour-text);
|
|
1084
1341
|
}
|
|
1342
|
+
}
|
|
1085
1343
|
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
}
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1089
1346
|
|
|
1090
|
-
&.selected {
|
|
1091
|
-
.title {
|
|
1092
|
-
font-weight: bold;
|
|
1093
|
-
}
|
|
1094
1347
|
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1348
|
+
.dialog-mask {
|
|
1349
|
+
background-color: var(--colour-bg-fade);
|
|
1350
|
+
position: fixed;
|
|
1351
|
+
inset: 0;
|
|
1352
|
+
z-index: 10;
|
|
1353
|
+
display: none;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.popup-content {
|
|
1357
|
+
display: none;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.copy-icon {
|
|
1361
|
+
color: var(--colour-primary);
|
|
1362
|
+
border-radius: 0.3rem;
|
|
1363
|
+
|
|
1364
|
+
&:active {
|
|
1365
|
+
background-color: var(--colour-primary);
|
|
1366
|
+
color: var(--colour-bg);
|
|
1100
1367
|
}
|
|
1101
1368
|
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
z-index: 10;
|
|
1107
|
-
display: none;
|
|
1369
|
+
&::before {
|
|
1370
|
+
.icon-clipboard();
|
|
1371
|
+
|
|
1372
|
+
cursor: pointer;
|
|
1108
1373
|
}
|
|
1374
|
+
}
|
|
1109
1375
|
|
|
1110
|
-
|
|
1111
|
-
|
|
1376
|
+
.has-tooltip {
|
|
1377
|
+
white-space: nowrap;
|
|
1378
|
+
|
|
1379
|
+
& > * {
|
|
1380
|
+
vertical-align: middle;
|
|
1112
1381
|
}
|
|
1113
1382
|
|
|
1114
|
-
.
|
|
1115
|
-
|
|
1116
|
-
|
|
1383
|
+
.tooltip-icon {
|
|
1384
|
+
.inline-button();
|
|
1385
|
+
|
|
1386
|
+
cursor: help;
|
|
1387
|
+
margin-left: -0.3rem;
|
|
1388
|
+
vertical-align: middle;
|
|
1117
1389
|
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
color: #fff;
|
|
1390
|
+
&::after {
|
|
1391
|
+
content: "\24d8";
|
|
1121
1392
|
}
|
|
1393
|
+
}
|
|
1122
1394
|
|
|
1123
|
-
|
|
1124
|
-
|
|
1395
|
+
button + .tooltip-icon {
|
|
1396
|
+
margin-left: -1rem;
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1125
1399
|
|
|
1126
|
-
|
|
1127
|
-
|
|
1400
|
+
.tooltip {
|
|
1401
|
+
position: fixed;
|
|
1402
|
+
visibility: hidden;
|
|
1403
|
+
transition: all 0.5s ease;
|
|
1404
|
+
background-color: var(--colour-bg);
|
|
1405
|
+
z-index: 1;
|
|
1406
|
+
border: solid 0.1rem var(--colour-border-grey);
|
|
1407
|
+
border-radius: 0.4rem;
|
|
1408
|
+
padding: 0.8rem;
|
|
1409
|
+
box-shadow: rgb(0 0 0 / 30%) 0.2rem 0.2rem 0.2rem;
|
|
1410
|
+
font-weight: normal;
|
|
1411
|
+
opacity: 0;
|
|
1412
|
+
cursor: default;
|
|
1413
|
+
color: var(--colour-text);
|
|
1414
|
+
text-align: left;
|
|
1415
|
+
|
|
1416
|
+
&.show,
|
|
1417
|
+
&.hover-show {
|
|
1418
|
+
visibility: visible;
|
|
1419
|
+
opacity: 1;
|
|
1420
|
+
transition: opacity 0.5s ease;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
&.with-glossary-link .glossary-link {
|
|
1424
|
+
display: block;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.glossary-link {
|
|
1428
|
+
margin-top: 0.8rem;
|
|
1429
|
+
font-size: smaller;
|
|
1430
|
+
display: none;
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.fact-value {
|
|
1435
|
+
&.fact-value-invalid {
|
|
1436
|
+
font-style: italic;
|
|
1437
|
+
color: #f00;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
&.fact-value-nil {
|
|
1441
|
+
font-style: italic;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.measure {
|
|
1445
|
+
border-bottom: 1px dotted @colour-text-form-value;
|
|
1446
|
+
cursor: help;
|
|
1128
1447
|
}
|
|
1129
1448
|
}
|