@net7/components 4.2.1 → 4.2.3
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.
- package/README.md +2 -1
- package/esm2022/lib/components/advanced-autocomplete/advanced-autocomplete.mjs +25 -0
- package/esm2022/lib/components/advanced-autocomplete/advanced-autocomplete.mock.mjs +147 -0
- package/esm2022/lib/components/alert/alert.mjs +24 -0
- package/{esm2020 → esm2022}/lib/components/alert/alert.mock.mjs +2 -2
- package/esm2022/lib/components/anchor-wrapper/anchor-wrapper.mjs +35 -0
- package/esm2022/lib/components/avatar/avatar.mjs +34 -0
- package/esm2022/lib/components/breadcrumbs/breadcrumbs.mjs +25 -0
- package/{esm2020 → esm2022}/lib/components/breadcrumbs/breadcrumbs.mock.mjs +8 -8
- package/esm2022/lib/components/bubble-chart/bubble-chart.mjs +336 -0
- package/{esm2020 → esm2022}/lib/components/bubble-chart/bubble-chart.mock.mjs +249 -249
- package/esm2022/lib/components/button/button.mjs +26 -0
- package/{esm2020 → esm2022}/lib/components/button/button.mock.mjs +3 -3
- package/esm2022/lib/components/carousel/carousel.mjs +97 -0
- package/esm2022/lib/components/carousel/carousel.mock.mjs +157 -0
- package/esm2022/lib/components/chart/chart.mjs +37 -0
- package/esm2022/lib/components/chart/chart.mock.mjs +127 -0
- package/esm2022/lib/components/content-placeholder/content-placeholder.mjs +17 -0
- package/{esm2020 → esm2022}/lib/components/content-placeholder/content-placeholder.mock.mjs +6 -3
- package/esm2022/lib/components/data-widget/data-widget.mjs +29 -0
- package/{esm2020 → esm2022}/lib/components/data-widget/data-widget.mock.mjs +4 -4
- package/esm2022/lib/components/datepicker/datepicker.mjs +44 -0
- package/esm2022/lib/components/facet/facet.mjs +24 -0
- package/esm2022/lib/components/facet/facet.mock.mjs +169 -0
- package/esm2022/lib/components/facet-header/facet-header.mjs +24 -0
- package/esm2022/lib/components/facet-year-range/facet-year-range.mjs +53 -0
- package/esm2022/lib/components/file-selector/file-selector.mjs +41 -0
- package/{esm2020 → esm2022}/lib/components/file-selector/file-selector.mock.mjs +2 -2
- package/esm2022/lib/components/footer/footer.mjs +26 -0
- package/esm2022/lib/components/footer/footer.mock.mjs +60 -0
- package/esm2022/lib/components/header/header.mjs +53 -0
- package/esm2022/lib/components/header/header.mock.mjs +119 -0
- package/esm2022/lib/components/hero/hero.mjs +41 -0
- package/{esm2020 → esm2022}/lib/components/hero/hero.mock.mjs +5 -5
- package/esm2022/lib/components/histogram-range/histogram-range.mjs +390 -0
- package/{esm2020 → esm2022}/lib/components/histogram-range/histogram-range.mock.mjs +4 -4
- package/esm2022/lib/components/icon/icon.mjs +21 -0
- package/{esm2020 → esm2022}/lib/components/icon/icon.mock.mjs +2 -2
- package/esm2022/lib/components/image-viewer/image-viewer.mjs +57 -0
- package/esm2022/lib/components/image-viewer/image-viewer.mock.mjs +29 -0
- package/esm2022/lib/components/image-viewer-tools/image-viewer-tools.mjs +28 -0
- package/esm2022/lib/components/image-viewer-tools/image-viewer-tools.mock.mjs +54 -0
- package/esm2022/lib/components/inner-title/inner-title.mjs +40 -0
- package/esm2022/lib/components/inner-title/inner-title.mock.mjs +53 -0
- package/esm2022/lib/components/input-checkbox/input-checkbox.mjs +24 -0
- package/esm2022/lib/components/input-checkbox/input-checkbox.mock.mjs +31 -0
- package/esm2022/lib/components/input-link/input-link.mjs +24 -0
- package/esm2022/lib/components/input-link/input-link.mock.mjs +66 -0
- package/{esm2020 → esm2022}/lib/components/input-select/input-select.mjs +5 -5
- package/esm2022/lib/components/input-text/input-text.mjs +34 -0
- package/esm2022/lib/components/input-textarea/input-textarea.mjs +21 -0
- package/esm2022/lib/components/item-preview/item-preview.mjs +25 -0
- package/esm2022/lib/components/item-preview/item-preview.mock.mjs +46 -0
- package/esm2022/lib/components/loader/loader.mjs +16 -0
- package/{esm2020 → esm2022}/lib/components/loader/loader.mock.mjs +2 -2
- package/esm2022/lib/components/map/map.mjs +66 -0
- package/{esm2020 → esm2022}/lib/components/map/map.mock.mjs +14 -10
- package/esm2022/lib/components/metadata-viewer/metadata-viewer.mjs +19 -0
- package/esm2022/lib/components/metadata-viewer/metadata-viewer.mock.mjs +75 -0
- package/esm2022/lib/components/mirador/mirador.mjs +36 -0
- package/esm2022/lib/components/mirador/mirador.mock.mjs +23 -0
- package/esm2022/lib/components/mirador/miradorTheme.mjs +220 -0
- package/esm2022/lib/components/nav/nav.mjs +27 -0
- package/esm2022/lib/components/nav/nav.mock.mjs +46 -0
- package/esm2022/lib/components/pagination/pagination.mjs +31 -0
- package/esm2022/lib/components/pagination/pagination.mock.mjs +27 -0
- package/esm2022/lib/components/progress-line/progress-line.mjs +19 -0
- package/esm2022/lib/components/sidebar-header/sidebar-header.mjs +24 -0
- package/esm2022/lib/components/signup/signup.mjs +44 -0
- package/{esm2020 → esm2022}/lib/components/signup/signup.mock.mjs +14 -14
- package/esm2022/lib/components/simple-autocomplete/simple-autocomplete.mjs +25 -0
- package/esm2022/lib/components/simple-autocomplete/simple-autocomplete.mock.mjs +22 -0
- package/esm2022/lib/components/table/table.mjs +35 -0
- package/esm2022/lib/components/table/table.mock.mjs +156 -0
- package/esm2022/lib/components/tag/tag.mjs +35 -0
- package/esm2022/lib/components/text-viewer/text-viewer.mjs +42 -0
- package/{esm2020 → esm2022}/lib/components/text-viewer/text-viewer.mock.mjs +4 -4
- package/esm2022/lib/components/timeline/timeline.mjs +51 -0
- package/esm2022/lib/components/timeline/timeline.mock.mjs +137 -0
- package/esm2022/lib/components/toast/toast.mjs +24 -0
- package/esm2022/lib/components/toast/toast.mock.mjs +65 -0
- package/esm2022/lib/components/tooltip-content/tooltip-content.mjs +25 -0
- package/{esm2020 → esm2022}/lib/components/tooltip-content/tooltip-content.mock.mjs +9 -8
- package/esm2022/lib/components/tree/tree.mjs +25 -0
- package/{esm2020 → esm2022}/lib/components/tree/tree.mock.mjs +44 -44
- package/esm2022/lib/components/wizard/wizard.mjs +24 -0
- package/{esm2020 → esm2022}/lib/components/wizard/wizard.mock.mjs +6 -6
- package/esm2022/lib/dv-components-lib.module.mjs +211 -0
- package/{esm2020 → esm2022}/lib/shared-interfaces.mjs +1 -1
- package/esm2022/public-api.mjs +105 -0
- package/fesm2022/net7-components.mjs +6091 -0
- package/fesm2022/net7-components.mjs.map +1 -0
- package/lib/components/advanced-autocomplete/advanced-autocomplete.d.ts +22 -22
- package/lib/components/alert/alert.d.ts +2 -2
- package/lib/components/anchor-wrapper/anchor-wrapper.d.ts +1 -1
- package/lib/components/avatar/avatar.d.ts +1 -1
- package/lib/components/breadcrumbs/breadcrumbs.d.ts +1 -1
- package/lib/components/bubble-chart/bubble-chart.d.ts +3 -3
- package/lib/components/button/button.d.ts +1 -1
- package/lib/components/carousel/carousel.d.ts +1 -1
- package/lib/components/chart/chart.d.ts +2 -2
- package/lib/components/content-placeholder/content-placeholder.d.ts +6 -6
- package/lib/components/data-widget/data-widget.d.ts +1 -1
- package/lib/components/datepicker/datepicker.d.ts +4 -4
- package/lib/components/facet/facet.d.ts +23 -23
- package/lib/components/facet-header/facet-header.d.ts +1 -1
- package/lib/components/facet-year-range/facet-year-range.d.ts +9 -9
- package/lib/components/file-selector/file-selector.d.ts +1 -1
- package/lib/components/footer/footer.d.ts +4 -4
- package/lib/components/header/header.d.ts +1 -1
- package/lib/components/hero/hero.d.ts +16 -16
- package/lib/components/histogram-range/histogram-range.d.ts +3 -3
- package/lib/components/icon/icon.d.ts +1 -1
- package/lib/components/image-viewer/image-viewer.d.ts +1 -1
- package/lib/components/image-viewer-tools/image-viewer-tools.d.ts +3 -3
- package/lib/components/inner-title/inner-title.d.ts +1 -1
- package/lib/components/input-checkbox/input-checkbox.d.ts +1 -1
- package/lib/components/input-link/input-link.d.ts +1 -1
- package/lib/components/input-select/input-select.d.ts +1 -1
- package/lib/components/input-text/input-text.d.ts +1 -1
- package/lib/components/input-textarea/input-textarea.d.ts +2 -2
- package/lib/components/item-preview/item-preview.d.ts +40 -40
- package/lib/components/loader/loader.d.ts +1 -1
- package/lib/components/map/map.d.ts +1 -1
- package/lib/components/metadata-viewer/metadata-viewer.d.ts +19 -19
- package/lib/components/mirador/mirador.d.ts +15 -0
- package/lib/components/mirador/mirador.mock.d.ts +6 -0
- package/lib/components/mirador/miradorTheme.d.ts +218 -0
- package/lib/components/nav/nav.d.ts +1 -1
- package/lib/components/pagination/pagination.d.ts +1 -1
- package/lib/components/progress-line/progress-line.d.ts +1 -1
- package/lib/components/sidebar-header/sidebar-header.d.ts +1 -1
- package/lib/components/signup/signup.d.ts +1 -1
- package/lib/components/simple-autocomplete/simple-autocomplete.d.ts +11 -11
- package/lib/components/table/table.d.ts +1 -1
- package/lib/components/tag/tag.d.ts +1 -1
- package/lib/components/text-viewer/text-viewer.d.ts +1 -1
- package/lib/components/timeline/timeline.d.ts +1 -1
- package/lib/components/toast/toast.d.ts +1 -1
- package/lib/components/tooltip-content/tooltip-content.d.ts +1 -1
- package/lib/components/tree/tree.d.ts +20 -20
- package/lib/components/wizard/wizard.d.ts +30 -30
- package/lib/dv-components-lib.module.d.ts +19 -18
- package/lib/shared-interfaces.d.ts +3 -3
- package/package.json +8 -14
- package/public-api.d.ts +2 -0
- package/src/lib/styles/_imports.scss +54 -56
- package/src/lib/styles/atoms/_button.scss +37 -30
- package/src/lib/styles/components/_advanced-autocomplete.scss +15 -38
- package/src/lib/styles/components/_alert.scss +6 -18
- package/src/lib/styles/components/_anchor-wrapper.scss +3 -4
- package/src/lib/styles/components/_avatar.scss +1 -4
- package/src/lib/styles/components/_breadcrumbs.scss +12 -23
- package/src/lib/styles/components/_bubble-chart.scss +3 -4
- package/src/lib/styles/components/_button.scss +3 -13
- package/src/lib/styles/components/_carousel.scss +18 -46
- package/src/lib/styles/components/_chart.scss +3 -4
- package/src/lib/styles/components/_content-placeholder.scss +17 -17
- package/src/lib/styles/components/_data-widget.scss +5 -17
- package/src/lib/styles/components/_datepicker.scss +3 -4
- package/src/lib/styles/components/_facet-header.scss +3 -8
- package/src/lib/styles/components/_facet-year-range.scss +7 -12
- package/src/lib/styles/components/_facet.scss +11 -28
- package/src/lib/styles/components/_file-selector.scss +3 -4
- package/src/lib/styles/components/_footer.scss +7 -28
- package/src/lib/styles/components/_header.scss +15 -76
- package/src/lib/styles/components/_hero.scss +10 -20
- package/src/lib/styles/components/_histogram-range.scss +1 -2
- package/src/lib/styles/components/_icon.scss +1 -3
- package/src/lib/styles/components/_image-viewer-tools.scss +31 -40
- package/src/lib/styles/components/_image-viewer.scss +20 -36
- package/src/lib/styles/components/_inner-title.scss +13 -39
- package/src/lib/styles/components/_input-checkbox.scss +6 -10
- package/src/lib/styles/components/_input-link.scss +4 -10
- package/src/lib/styles/components/_input-select.scss +2 -7
- package/src/lib/styles/components/_input-text.scss +5 -10
- package/src/lib/styles/components/_input-textarea.scss +3 -8
- package/src/lib/styles/components/_item-preview.scss +10 -36
- package/src/lib/styles/components/_loader.scss +1 -2
- package/src/lib/styles/components/_map.scss +2 -3
- package/src/lib/styles/components/_metadata-viewer.scss +7 -12
- package/src/lib/styles/components/_mirador.scss +19 -0
- package/src/lib/styles/components/_nav.scss +5 -11
- package/src/lib/styles/components/_pagination.scss +29 -33
- package/src/lib/styles/components/_progress-line.scss +3 -10
- package/src/lib/styles/components/_sidebar-header.scss +3 -8
- package/src/lib/styles/components/_signup.scss +48 -49
- package/src/lib/styles/components/_simple-autocomplete.scss +5 -12
- package/src/lib/styles/components/_table.scss +5 -18
- package/src/lib/styles/components/_tag.scss +7 -10
- package/src/lib/styles/components/_text-viewer.scss +33 -88
- package/src/lib/styles/components/_timeline.scss +3 -4
- package/src/lib/styles/components/_toast.scss +7 -17
- package/src/lib/styles/components/_tooltip-content.scss +3 -4
- package/src/lib/styles/components/_tree.scss +26 -22
- package/src/lib/styles/components/_wizard.scss +36 -29
- package/src/lib/styles/generic/_color_scheme.scss +2 -2
- package/src/lib/styles/generic/_mixins.scss +28 -31
- package/src/lib/styles/generic/_variables.scss +9 -11
- package/src/lib/styles/global/_forms.scss +38 -63
- package/src/lib/styles/global/_global.scss +3 -5
- package/src/lib/styles/global/_normalize.scss +17 -57
- package/src/lib/styles/global/_typography.scss +25 -23
- package/src/lib/styles/utilities/_grids.scss +40 -79
- package/esm2020/lib/components/advanced-autocomplete/advanced-autocomplete.mjs +0 -25
- package/esm2020/lib/components/advanced-autocomplete/advanced-autocomplete.mock.mjs +0 -100
- package/esm2020/lib/components/alert/alert.mjs +0 -24
- package/esm2020/lib/components/anchor-wrapper/anchor-wrapper.mjs +0 -35
- package/esm2020/lib/components/avatar/avatar.mjs +0 -34
- package/esm2020/lib/components/breadcrumbs/breadcrumbs.mjs +0 -25
- package/esm2020/lib/components/bubble-chart/bubble-chart.mjs +0 -329
- package/esm2020/lib/components/button/button.mjs +0 -26
- package/esm2020/lib/components/carousel/carousel.mjs +0 -89
- package/esm2020/lib/components/carousel/carousel.mock.mjs +0 -136
- package/esm2020/lib/components/chart/chart.mjs +0 -37
- package/esm2020/lib/components/chart/chart.mock.mjs +0 -112
- package/esm2020/lib/components/content-placeholder/content-placeholder.mjs +0 -17
- package/esm2020/lib/components/data-widget/data-widget.mjs +0 -29
- package/esm2020/lib/components/datepicker/datepicker.mjs +0 -44
- package/esm2020/lib/components/facet/facet.mjs +0 -24
- package/esm2020/lib/components/facet/facet.mock.mjs +0 -103
- package/esm2020/lib/components/facet-header/facet-header.mjs +0 -24
- package/esm2020/lib/components/facet-year-range/facet-year-range.mjs +0 -53
- package/esm2020/lib/components/file-selector/file-selector.mjs +0 -39
- package/esm2020/lib/components/footer/footer.mjs +0 -26
- package/esm2020/lib/components/footer/footer.mock.mjs +0 -58
- package/esm2020/lib/components/header/header.mjs +0 -53
- package/esm2020/lib/components/header/header.mock.mjs +0 -101
- package/esm2020/lib/components/hero/hero.mjs +0 -41
- package/esm2020/lib/components/histogram-range/histogram-range.mjs +0 -390
- package/esm2020/lib/components/icon/icon.mjs +0 -21
- package/esm2020/lib/components/image-viewer/image-viewer.mjs +0 -55
- package/esm2020/lib/components/image-viewer/image-viewer.mock.mjs +0 -25
- package/esm2020/lib/components/image-viewer-tools/image-viewer-tools.mjs +0 -28
- package/esm2020/lib/components/image-viewer-tools/image-viewer-tools.mock.mjs +0 -54
- package/esm2020/lib/components/inner-title/inner-title.mjs +0 -40
- package/esm2020/lib/components/inner-title/inner-title.mock.mjs +0 -53
- package/esm2020/lib/components/input-checkbox/input-checkbox.mjs +0 -24
- package/esm2020/lib/components/input-checkbox/input-checkbox.mock.mjs +0 -25
- package/esm2020/lib/components/input-link/input-link.mjs +0 -24
- package/esm2020/lib/components/input-link/input-link.mock.mjs +0 -38
- package/esm2020/lib/components/input-text/input-text.mjs +0 -34
- package/esm2020/lib/components/input-textarea/input-textarea.mjs +0 -21
- package/esm2020/lib/components/item-preview/item-preview.mjs +0 -25
- package/esm2020/lib/components/item-preview/item-preview.mock.mjs +0 -43
- package/esm2020/lib/components/loader/loader.mjs +0 -16
- package/esm2020/lib/components/map/map.mjs +0 -64
- package/esm2020/lib/components/metadata-viewer/metadata-viewer.mjs +0 -19
- package/esm2020/lib/components/metadata-viewer/metadata-viewer.mock.mjs +0 -74
- package/esm2020/lib/components/nav/nav.mjs +0 -27
- package/esm2020/lib/components/nav/nav.mock.mjs +0 -36
- package/esm2020/lib/components/pagination/pagination.mjs +0 -31
- package/esm2020/lib/components/pagination/pagination.mock.mjs +0 -23
- package/esm2020/lib/components/progress-line/progress-line.mjs +0 -19
- package/esm2020/lib/components/sidebar-header/sidebar-header.mjs +0 -24
- package/esm2020/lib/components/signup/signup.mjs +0 -44
- package/esm2020/lib/components/simple-autocomplete/simple-autocomplete.mjs +0 -25
- package/esm2020/lib/components/simple-autocomplete/simple-autocomplete.mock.mjs +0 -15
- package/esm2020/lib/components/table/table.mjs +0 -35
- package/esm2020/lib/components/table/table.mock.mjs +0 -152
- package/esm2020/lib/components/tag/tag.mjs +0 -35
- package/esm2020/lib/components/text-viewer/text-viewer.mjs +0 -42
- package/esm2020/lib/components/timeline/timeline.mjs +0 -51
- package/esm2020/lib/components/timeline/timeline.mock.mjs +0 -137
- package/esm2020/lib/components/toast/toast.mjs +0 -24
- package/esm2020/lib/components/toast/toast.mock.mjs +0 -51
- package/esm2020/lib/components/tooltip-content/tooltip-content.mjs +0 -25
- package/esm2020/lib/components/tree/tree.mjs +0 -25
- package/esm2020/lib/components/wizard/wizard.mjs +0 -24
- package/esm2020/lib/dv-components-lib.module.mjs +0 -211
- package/esm2020/public-api.mjs +0 -103
- package/fesm2015/net7-components.mjs +0 -5421
- package/fesm2015/net7-components.mjs.map +0 -1
- package/fesm2020/net7-components.mjs +0 -5434
- package/fesm2020/net7-components.mjs.map +0 -1
- /package/{esm2020 → esm2022}/lib/components/avatar/avatar.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/datepicker/datepicker.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/facet-header/facet-header.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/facet-year-range/facet-year-range.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/input-select/input-select.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/input-text/input-text.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/input-textarea/input-textarea.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/progress-line/progress-line.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sidebar-header/sidebar-header.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/tag/tag.mock.mjs +0 -0
- /package/{esm2020 → esm2022}/net7-components.mjs +0 -0
|
@@ -11,17 +11,15 @@
|
|
|
11
11
|
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
|
12
12
|
* user zoom.
|
|
13
13
|
*/
|
|
14
|
-
|
|
15
14
|
html {
|
|
16
15
|
font-family: sans-serif; /* 1 */
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
text-size-adjust: 100%; /* 2 */
|
|
17
|
+
text-size-adjust: 100%; /* 2 */
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
/**
|
|
22
21
|
* Remove default margin.
|
|
23
22
|
*/
|
|
24
|
-
|
|
25
23
|
body {
|
|
26
24
|
margin: 0;
|
|
27
25
|
}
|
|
@@ -35,7 +33,6 @@ body {
|
|
|
35
33
|
* and Firefox.
|
|
36
34
|
* Correct `block` display not defined for `main` in IE 11.
|
|
37
35
|
*/
|
|
38
|
-
|
|
39
36
|
article,
|
|
40
37
|
aside,
|
|
41
38
|
details,
|
|
@@ -56,7 +53,6 @@ summary {
|
|
|
56
53
|
* 1. Correct `inline-block` display not defined in IE 8/9.
|
|
57
54
|
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
|
58
55
|
*/
|
|
59
|
-
|
|
60
56
|
audio,
|
|
61
57
|
canvas,
|
|
62
58
|
progress,
|
|
@@ -69,7 +65,6 @@ video {
|
|
|
69
65
|
* Prevent modern browsers from displaying `audio` without controls.
|
|
70
66
|
* Remove excess height in iOS 5 devices.
|
|
71
67
|
*/
|
|
72
|
-
|
|
73
68
|
audio:not([controls]) {
|
|
74
69
|
display: none;
|
|
75
70
|
height: 0;
|
|
@@ -79,7 +74,6 @@ audio:not([controls]) {
|
|
|
79
74
|
* Address `[hidden]` styling not present in IE 8/9/10.
|
|
80
75
|
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
|
81
76
|
*/
|
|
82
|
-
|
|
83
77
|
[hidden],
|
|
84
78
|
template {
|
|
85
79
|
display: none;
|
|
@@ -91,7 +85,6 @@ template {
|
|
|
91
85
|
/**
|
|
92
86
|
* Remove the gray background color from active links in IE 10.
|
|
93
87
|
*/
|
|
94
|
-
|
|
95
88
|
a {
|
|
96
89
|
background-color: transparent;
|
|
97
90
|
}
|
|
@@ -99,7 +92,6 @@ a {
|
|
|
99
92
|
/**
|
|
100
93
|
* Improve readability when focused and also mouse hovered in all browsers.
|
|
101
94
|
*/
|
|
102
|
-
|
|
103
95
|
a:active,
|
|
104
96
|
a:hover {
|
|
105
97
|
outline: 0;
|
|
@@ -111,7 +103,6 @@ a:hover {
|
|
|
111
103
|
/**
|
|
112
104
|
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
|
113
105
|
*/
|
|
114
|
-
|
|
115
106
|
abbr[title] {
|
|
116
107
|
border-bottom: 1px dotted;
|
|
117
108
|
}
|
|
@@ -119,7 +110,6 @@ abbr[title] {
|
|
|
119
110
|
/**
|
|
120
111
|
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
|
121
112
|
*/
|
|
122
|
-
|
|
123
113
|
b,
|
|
124
114
|
strong {
|
|
125
115
|
font-weight: $font-weight-bold;
|
|
@@ -128,7 +118,6 @@ strong {
|
|
|
128
118
|
/**
|
|
129
119
|
* Address styling not present in Safari and Chrome.
|
|
130
120
|
*/
|
|
131
|
-
|
|
132
121
|
dfn {
|
|
133
122
|
font-style: italic;
|
|
134
123
|
}
|
|
@@ -137,7 +126,6 @@ dfn {
|
|
|
137
126
|
* Address variable `h1` font-size and margin within `section` and `article`
|
|
138
127
|
* contexts in Firefox 4+, Safari, and Chrome.
|
|
139
128
|
*/
|
|
140
|
-
|
|
141
129
|
h1 {
|
|
142
130
|
font-size: 2em;
|
|
143
131
|
margin: 0.67em 0;
|
|
@@ -146,7 +134,6 @@ h1 {
|
|
|
146
134
|
/**
|
|
147
135
|
* Address styling not present in IE 8/9.
|
|
148
136
|
*/
|
|
149
|
-
|
|
150
137
|
mark {
|
|
151
138
|
background: #ffff00;
|
|
152
139
|
color: #000000;
|
|
@@ -155,7 +142,6 @@ mark {
|
|
|
155
142
|
/**
|
|
156
143
|
* Address inconsistent and variable font size in all browsers.
|
|
157
144
|
*/
|
|
158
|
-
|
|
159
145
|
small {
|
|
160
146
|
font-size: 80%;
|
|
161
147
|
}
|
|
@@ -163,7 +149,6 @@ small {
|
|
|
163
149
|
/**
|
|
164
150
|
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
|
165
151
|
*/
|
|
166
|
-
|
|
167
152
|
sub,
|
|
168
153
|
sup {
|
|
169
154
|
font-size: 75%;
|
|
@@ -171,11 +156,9 @@ sup {
|
|
|
171
156
|
position: relative;
|
|
172
157
|
vertical-align: baseline;
|
|
173
158
|
}
|
|
174
|
-
|
|
175
159
|
sup {
|
|
176
160
|
top: -0.5em;
|
|
177
161
|
}
|
|
178
|
-
|
|
179
162
|
sub {
|
|
180
163
|
bottom: -0.25em;
|
|
181
164
|
}
|
|
@@ -186,7 +169,6 @@ sub {
|
|
|
186
169
|
/**
|
|
187
170
|
* Remove border when inside `a` element in IE 8/9/10.
|
|
188
171
|
*/
|
|
189
|
-
|
|
190
172
|
img {
|
|
191
173
|
border: 0;
|
|
192
174
|
}
|
|
@@ -194,7 +176,6 @@ img {
|
|
|
194
176
|
/**
|
|
195
177
|
* Correct overflow not hidden in IE 9/10/11.
|
|
196
178
|
*/
|
|
197
|
-
|
|
198
179
|
svg:not(:root) {
|
|
199
180
|
overflow: hidden;
|
|
200
181
|
}
|
|
@@ -205,7 +186,6 @@ svg:not(:root) {
|
|
|
205
186
|
/**
|
|
206
187
|
* Address margin not present in IE 8/9 and Safari.
|
|
207
188
|
*/
|
|
208
|
-
|
|
209
189
|
figure {
|
|
210
190
|
margin: 1em 40px;
|
|
211
191
|
}
|
|
@@ -213,9 +193,8 @@ figure {
|
|
|
213
193
|
/**
|
|
214
194
|
* Address differences between Firefox and other browsers.
|
|
215
195
|
*/
|
|
216
|
-
|
|
217
196
|
hr {
|
|
218
|
-
|
|
197
|
+
box-sizing: content-box;
|
|
219
198
|
box-sizing: content-box;
|
|
220
199
|
height: 0;
|
|
221
200
|
}
|
|
@@ -223,7 +202,6 @@ hr {
|
|
|
223
202
|
/**
|
|
224
203
|
* Contain overflow in all browsers.
|
|
225
204
|
*/
|
|
226
|
-
|
|
227
205
|
pre {
|
|
228
206
|
overflow: auto;
|
|
229
207
|
}
|
|
@@ -231,12 +209,11 @@ pre {
|
|
|
231
209
|
/**
|
|
232
210
|
* Address odd `em`-unit font size rendering in all browsers.
|
|
233
211
|
*/
|
|
234
|
-
|
|
235
212
|
code,
|
|
236
213
|
kbd,
|
|
237
214
|
pre,
|
|
238
215
|
samp {
|
|
239
|
-
font-family: monospace
|
|
216
|
+
font-family: monospace;
|
|
240
217
|
font-size: 1em;
|
|
241
218
|
}
|
|
242
219
|
|
|
@@ -254,7 +231,6 @@ samp {
|
|
|
254
231
|
* 2. Correct font properties not being inherited.
|
|
255
232
|
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
|
256
233
|
*/
|
|
257
|
-
|
|
258
234
|
button,
|
|
259
235
|
input,
|
|
260
236
|
optgroup,
|
|
@@ -268,7 +244,6 @@ textarea {
|
|
|
268
244
|
/**
|
|
269
245
|
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
|
270
246
|
*/
|
|
271
|
-
|
|
272
247
|
button {
|
|
273
248
|
overflow: visible;
|
|
274
249
|
}
|
|
@@ -279,7 +254,6 @@ button {
|
|
|
279
254
|
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
|
280
255
|
* Correct `select` style inheritance in Firefox.
|
|
281
256
|
*/
|
|
282
|
-
|
|
283
257
|
button,
|
|
284
258
|
select {
|
|
285
259
|
text-transform: none;
|
|
@@ -292,19 +266,17 @@ select {
|
|
|
292
266
|
* 3. Improve usability and consistency of cursor style between image-type
|
|
293
267
|
* `input` and others.
|
|
294
268
|
*/
|
|
295
|
-
|
|
296
269
|
button,
|
|
297
270
|
html input[type="button"], /* 1 */
|
|
298
271
|
input[type="reset"],
|
|
299
272
|
input[type="submit"] {
|
|
300
|
-
|
|
273
|
+
appearance: button; /* 2 */
|
|
301
274
|
cursor: pointer; /* 3 */
|
|
302
275
|
}
|
|
303
276
|
|
|
304
277
|
/**
|
|
305
278
|
* Re-set default cursor for disabled elements.
|
|
306
279
|
*/
|
|
307
|
-
|
|
308
280
|
button[disabled],
|
|
309
281
|
html input[disabled] {
|
|
310
282
|
cursor: default;
|
|
@@ -313,7 +285,6 @@ html input[disabled] {
|
|
|
313
285
|
/**
|
|
314
286
|
* Remove inner padding and border in Firefox 4+.
|
|
315
287
|
*/
|
|
316
|
-
|
|
317
288
|
button::-moz-focus-inner,
|
|
318
289
|
input::-moz-focus-inner {
|
|
319
290
|
border: 0;
|
|
@@ -324,7 +295,6 @@ input::-moz-focus-inner {
|
|
|
324
295
|
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
|
325
296
|
* the UA stylesheet.
|
|
326
297
|
*/
|
|
327
|
-
|
|
328
298
|
input {
|
|
329
299
|
line-height: normal;
|
|
330
300
|
}
|
|
@@ -336,9 +306,8 @@ input {
|
|
|
336
306
|
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
|
337
307
|
* 2. Remove excess padding in IE 8/9/10.
|
|
338
308
|
*/
|
|
339
|
-
|
|
340
|
-
input[type=
|
|
341
|
-
input[type="radio"] {
|
|
309
|
+
input[type='checkbox'],
|
|
310
|
+
input[type='radio'] {
|
|
342
311
|
box-sizing: border-box; /* 1 */
|
|
343
312
|
padding: 0; /* 2 */
|
|
344
313
|
}
|
|
@@ -348,9 +317,8 @@ input[type="radio"] {
|
|
|
348
317
|
* `font-size` values of the `input`, it causes the cursor style of the
|
|
349
318
|
* decrement button to change from `default` to `text`.
|
|
350
319
|
*/
|
|
351
|
-
|
|
352
|
-
input[type=
|
|
353
|
-
input[type="number"]::-webkit-outer-spin-button {
|
|
320
|
+
input[type='number']::-webkit-inner-spin-button,
|
|
321
|
+
input[type='number']::-webkit-outer-spin-button {
|
|
354
322
|
height: auto;
|
|
355
323
|
}
|
|
356
324
|
|
|
@@ -359,11 +327,10 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
359
327
|
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
|
360
328
|
* (include `-moz` to future-proof).
|
|
361
329
|
*/
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
-
|
|
365
|
-
|
|
366
|
-
-webkit-box-sizing: content-box; /* 2 */
|
|
330
|
+
input[type='search'] {
|
|
331
|
+
appearance: textfield; /* 1 */
|
|
332
|
+
box-sizing: content-box;
|
|
333
|
+
box-sizing: content-box; /* 2 */
|
|
367
334
|
box-sizing: content-box;
|
|
368
335
|
}
|
|
369
336
|
|
|
@@ -372,16 +339,14 @@ input[type="search"] {
|
|
|
372
339
|
* Safari (but not Chrome) clips the cancel button when the search input has
|
|
373
340
|
* padding (and `textfield` appearance).
|
|
374
341
|
*/
|
|
375
|
-
|
|
376
|
-
input[type=
|
|
377
|
-
|
|
378
|
-
-webkit-appearance: none;
|
|
342
|
+
input[type='search']::-webkit-search-cancel-button,
|
|
343
|
+
input[type='search']::-webkit-search-decoration {
|
|
344
|
+
appearance: none;
|
|
379
345
|
}
|
|
380
346
|
|
|
381
347
|
/**
|
|
382
348
|
* Define consistent border, margin, and padding.
|
|
383
349
|
*/
|
|
384
|
-
|
|
385
350
|
fieldset {
|
|
386
351
|
border: 1px solid #c0c0c0;
|
|
387
352
|
margin: 0 2px;
|
|
@@ -392,7 +357,6 @@ fieldset {
|
|
|
392
357
|
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
|
393
358
|
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
|
394
359
|
*/
|
|
395
|
-
|
|
396
360
|
legend {
|
|
397
361
|
border: 0; /* 1 */
|
|
398
362
|
padding: 0; /* 2 */
|
|
@@ -401,7 +365,6 @@ legend {
|
|
|
401
365
|
/**
|
|
402
366
|
* Remove default vertical scrollbar in IE 8/9/10/11.
|
|
403
367
|
*/
|
|
404
|
-
|
|
405
368
|
textarea {
|
|
406
369
|
overflow: auto;
|
|
407
370
|
}
|
|
@@ -410,7 +373,6 @@ textarea {
|
|
|
410
373
|
* Don't inherit the `font-weight` (applied by a rule above).
|
|
411
374
|
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
|
412
375
|
*/
|
|
413
|
-
|
|
414
376
|
optgroup {
|
|
415
377
|
font-weight: $font-weight-bold;
|
|
416
378
|
}
|
|
@@ -421,13 +383,11 @@ optgroup {
|
|
|
421
383
|
/**
|
|
422
384
|
* Remove most spacing between table cells.
|
|
423
385
|
*/
|
|
424
|
-
|
|
425
386
|
table {
|
|
426
387
|
border-collapse: collapse;
|
|
427
388
|
border-spacing: 0;
|
|
428
389
|
}
|
|
429
|
-
|
|
430
390
|
td,
|
|
431
391
|
th {
|
|
432
392
|
padding: 0;
|
|
433
|
-
}
|
|
393
|
+
}
|
|
@@ -7,58 +7,57 @@
|
|
|
7
7
|
/* ------------------------------------ *\
|
|
8
8
|
#HEADINGS
|
|
9
9
|
\* ------------------------------------ */
|
|
10
|
-
h1,
|
|
10
|
+
h1,
|
|
11
|
+
h2,
|
|
12
|
+
h3,
|
|
13
|
+
h4,
|
|
14
|
+
h5,
|
|
15
|
+
h6 {
|
|
11
16
|
font-weight: $font-weight-bold;
|
|
12
17
|
font-family: $font-family-headings;
|
|
13
18
|
margin: 0;
|
|
14
19
|
padding: 0;
|
|
15
20
|
color: $color-text;
|
|
16
21
|
}
|
|
17
|
-
|
|
18
22
|
h1 {
|
|
19
23
|
font-size: $font-size-xl;
|
|
20
24
|
line-height: 1.2;
|
|
21
|
-
margin-bottom: .3em;
|
|
25
|
+
margin-bottom: 0.3em;
|
|
22
26
|
}
|
|
23
|
-
|
|
24
27
|
h2 {
|
|
25
28
|
font-size: $font-size-l;
|
|
26
29
|
line-height: 1.2;
|
|
27
|
-
margin-bottom: .3em;
|
|
30
|
+
margin-bottom: 0.3em;
|
|
28
31
|
}
|
|
29
|
-
|
|
30
32
|
h3 {
|
|
31
33
|
font-size: $font-size-m;
|
|
32
34
|
line-height: 1.2;
|
|
33
|
-
margin-bottom: .3em;
|
|
35
|
+
margin-bottom: 0.3em;
|
|
34
36
|
}
|
|
35
|
-
|
|
36
37
|
h4 {
|
|
37
38
|
font-size: $font-size-m;
|
|
38
39
|
line-height: 1.2;
|
|
39
|
-
margin-bottom: .3em;
|
|
40
|
+
margin-bottom: 0.3em;
|
|
40
41
|
}
|
|
41
|
-
|
|
42
42
|
h5 {
|
|
43
43
|
font-size: $font-size-s;
|
|
44
44
|
line-height: 1.2;
|
|
45
|
-
margin-bottom: .3em;
|
|
45
|
+
margin-bottom: 0.3em;
|
|
46
46
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
margin: 0 0 calc($space
|
|
47
|
+
p,
|
|
48
|
+
.single-content p {
|
|
49
|
+
margin: 0 0 calc($space * 0.5) 0;
|
|
50
50
|
padding: 0;
|
|
51
51
|
color: $color-text;
|
|
52
52
|
font-size: $font-size-m;
|
|
53
53
|
font-weight: $font-weight-normal;
|
|
54
54
|
line-height: 1.5;
|
|
55
55
|
}
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
b,
|
|
57
|
+
strong {
|
|
58
58
|
font-weight: $font-weight-bold;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
|
|
62
61
|
/* ------------------------------------ *\
|
|
63
62
|
#LINKS
|
|
64
63
|
\* ------------------------------------ */
|
|
@@ -66,17 +65,20 @@ a {
|
|
|
66
65
|
color: $color-text-link;
|
|
67
66
|
text-decoration: none;
|
|
68
67
|
transition: color $transition-durations;
|
|
69
|
-
|
|
70
|
-
|
|
68
|
+
h1,
|
|
69
|
+
h2,
|
|
70
|
+
h3,
|
|
71
|
+
h4,
|
|
72
|
+
h5,
|
|
73
|
+
h6 {
|
|
71
74
|
color: inherit;
|
|
72
75
|
}
|
|
73
|
-
|
|
74
|
-
&:
|
|
76
|
+
&:hover,
|
|
77
|
+
&:focus {
|
|
75
78
|
color: $color-text-link-hover;
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
81
|
|
|
79
|
-
|
|
80
82
|
/* ------------------------------------ *\
|
|
81
83
|
#HR
|
|
82
84
|
\* ------------------------------------ */
|
|
@@ -85,4 +87,4 @@ hr {
|
|
|
85
87
|
padding: 0;
|
|
86
88
|
border: none;
|
|
87
89
|
border-top: 1px solid $color-border-normal;
|
|
88
|
-
}
|
|
90
|
+
}
|