@dialpad/dialtone-css 1.0.0
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/CHANGELOG.json +1 -0
- package/LICENSE.md +21 -0
- package/README.md +64 -0
- package/lib/build/favicons/dialpad/favicon-beta-notification__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon-beta__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon-csr__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon-notification__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon-staging-notification__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon-staging__512.png +0 -0
- package/lib/build/favicons/dialpad/favicon__512.png +0 -0
- package/lib/build/favicons/favicon-dialtone__512.png +0 -0
- package/lib/build/favicons/uberconference/favicon-uberconference__512.png +0 -0
- package/lib/build/fonts/Archivo-Bold.woff2 +0 -0
- package/lib/build/fonts/Archivo-Regular.woff2 +0 -0
- package/lib/build/fonts/Archivo-SemiBold.woff2 +0 -0
- package/lib/build/fonts/ArchivoExpanded-SemiBold.woff2 +0 -0
- package/lib/build/fonts/ArchivoSemiExpanded-Medium.woff2 +0 -0
- package/lib/build/fonts/ArchivoSemiExpanded-SemiBold.woff2 +0 -0
- package/lib/build/js/dialtone_health_check/deprecated_icons.cjs +105 -0
- package/lib/build/js/dialtone_health_check/index.cjs +82 -0
- package/lib/build/js/dialtone_health_check/non_dialtone_properties.cjs +44 -0
- package/lib/build/js/dialtone_migration_helper/configs/box-shadows.mjs +19 -0
- package/lib/build/js/dialtone_migration_helper/configs/colors.mjs +69 -0
- package/lib/build/js/dialtone_migration_helper/configs/fonts.mjs +49 -0
- package/lib/build/js/dialtone_migration_helper/configs/size-and-space.mjs +124 -0
- package/lib/build/js/dialtone_migration_helper/helpers.mjs +212 -0
- package/lib/build/js/dialtone_migration_helper/index.mjs +135 -0
- package/lib/build/less/components/avatar.less +169 -0
- package/lib/build/less/components/badge.less +139 -0
- package/lib/build/less/components/banner.less +77 -0
- package/lib/build/less/components/breadcrumbs.less +88 -0
- package/lib/build/less/components/button.less +554 -0
- package/lib/build/less/components/card.less +56 -0
- package/lib/build/less/components/chip.less +192 -0
- package/lib/build/less/components/codeblock.less +26 -0
- package/lib/build/less/components/collapsible.less +33 -0
- package/lib/build/less/components/combobox.less +28 -0
- package/lib/build/less/components/datepicker.less +146 -0
- package/lib/build/less/components/emoji-picker.less +223 -0
- package/lib/build/less/components/forms.less +153 -0
- package/lib/build/less/components/icon.less +63 -0
- package/lib/build/less/components/image-viewer.less +35 -0
- package/lib/build/less/components/input.less +321 -0
- package/lib/build/less/components/item-layout.less +53 -0
- package/lib/build/less/components/keyboard-shortcut.less +39 -0
- package/lib/build/less/components/link.less +130 -0
- package/lib/build/less/components/list-group.less +48 -0
- package/lib/build/less/components/list-item-group.less +17 -0
- package/lib/build/less/components/modal.less +340 -0
- package/lib/build/less/components/notice.less +171 -0
- package/lib/build/less/components/pagination.less +41 -0
- package/lib/build/less/components/popover.less +99 -0
- package/lib/build/less/components/presence.less +60 -0
- package/lib/build/less/components/radio-checkbox.less +278 -0
- package/lib/build/less/components/root-layout.less +125 -0
- package/lib/build/less/components/selects.less +152 -0
- package/lib/build/less/components/skeleton.less +101 -0
- package/lib/build/less/components/stack.less +129 -0
- package/lib/build/less/components/tab-panel.less +15 -0
- package/lib/build/less/components/table.less +118 -0
- package/lib/build/less/components/tabs.less +219 -0
- package/lib/build/less/components/toast.less +120 -0
- package/lib/build/less/components/toggle.less +173 -0
- package/lib/build/less/components/tooltip.less +267 -0
- package/lib/build/less/dialtone-globals.less +45 -0
- package/lib/build/less/dialtone-reset.less +362 -0
- package/lib/build/less/dialtone-variables.less +16 -0
- package/lib/build/less/dialtone.less +71 -0
- package/lib/build/less/themes/default.less +83 -0
- package/lib/build/less/themes/example.less +89 -0
- package/lib/build/less/utilities/backgrounds.less +139 -0
- package/lib/build/less/utilities/borders.less +196 -0
- package/lib/build/less/utilities/colors.less +122 -0
- package/lib/build/less/utilities/effects.less +210 -0
- package/lib/build/less/utilities/flex.less +227 -0
- package/lib/build/less/utilities/grid.less +244 -0
- package/lib/build/less/utilities/interactivity.less +69 -0
- package/lib/build/less/utilities/layout.less +146 -0
- package/lib/build/less/utilities/lint-staged.config.cjs +5 -0
- package/lib/build/less/utilities/sizing.less +152 -0
- package/lib/build/less/utilities/spacing.less +107 -0
- package/lib/build/less/utilities/typography.less +300 -0
- package/lib/build/less/variables/layout.less +19 -0
- package/lib/build/less/variables/sizes.less +64 -0
- package/lib/build/less/variables/typography.less +46 -0
- package/lib/build/less/variables/visual-styles.less +77 -0
- package/lib/build/svg/spot/blank-space.svg +35 -0
- package/lib/build/svg/spot/browser-list-callout.svg +27 -0
- package/lib/build/svg/spot/browser-table-graph.svg +37 -0
- package/lib/build/svg/spot/female-laptop-typing.svg +21 -0
- package/lib/build/svg/spot/file-upload.svg +50 -0
- package/lib/build/svg/spot/male-laptop-typing.svg +24 -0
- package/lib/build/svg/spot/mind.svg +58 -0
- package/lib/build/svg/spot/publish.svg +54 -0
- package/lib/build/svg/spot/vector-vortex.svg +53 -0
- package/lib/build/svg/spot/wireless-screenshare.svg +30 -0
- package/lib/dist/css/dialtone.css +18711 -0
- package/lib/dist/css/dialtone.min.css +1 -0
- package/lib/dist/fonts/Archivo-Bold.woff2 +0 -0
- package/lib/dist/fonts/Archivo-Regular.woff2 +0 -0
- package/lib/dist/fonts/Archivo-SemiBold.woff2 +0 -0
- package/lib/dist/fonts/ArchivoExpanded-SemiBold.woff2 +0 -0
- package/lib/dist/fonts/ArchivoSemiExpanded-Medium.woff2 +0 -0
- package/lib/dist/fonts/ArchivoSemiExpanded-SemiBold.woff2 +0 -0
- package/lib/dist/js/dialtone_health_check/deprecated_icons.cjs +105 -0
- package/lib/dist/js/dialtone_health_check/index.cjs +82 -0
- package/lib/dist/js/dialtone_health_check/non_dialtone_properties.cjs +44 -0
- package/lib/dist/js/dialtone_migration_helper/configs/box-shadows.mjs +19 -0
- package/lib/dist/js/dialtone_migration_helper/configs/colors.mjs +69 -0
- package/lib/dist/js/dialtone_migration_helper/configs/fonts.mjs +49 -0
- package/lib/dist/js/dialtone_migration_helper/configs/size-and-space.mjs +124 -0
- package/lib/dist/js/dialtone_migration_helper/helpers.mjs +212 -0
- package/lib/dist/js/dialtone_migration_helper/index.mjs +135 -0
- package/lib/dist/svg/spot/blank-space.svg +1 -0
- package/lib/dist/svg/spot/browser-list-callout.svg +1 -0
- package/lib/dist/svg/spot/browser-table-graph.svg +1 -0
- package/lib/dist/svg/spot/female-laptop-typing.svg +1 -0
- package/lib/dist/svg/spot/file-upload.svg +1 -0
- package/lib/dist/svg/spot/male-laptop-typing.svg +1 -0
- package/lib/dist/svg/spot/mind.svg +1 -0
- package/lib/dist/svg/spot/publish.svg +1 -0
- package/lib/dist/svg/spot/vector-vortex.svg +1 -0
- package/lib/dist/svg/spot/wireless-screenshare.svg +1 -0
- package/lib/dist/vue/spot/SpotBlankSpace.vue +3 -0
- package/lib/dist/vue/spot/SpotBrowserListCallout.vue +3 -0
- package/lib/dist/vue/spot/SpotBrowserTableGraph.vue +3 -0
- package/lib/dist/vue/spot/SpotFemaleLaptopTyping.vue +3 -0
- package/lib/dist/vue/spot/SpotFileUpload.vue +3 -0
- package/lib/dist/vue/spot/SpotMaleLaptopTyping.vue +3 -0
- package/lib/dist/vue/spot/SpotMind.vue +3 -0
- package/lib/dist/vue/spot/SpotPublish.vue +3 -0
- package/lib/dist/vue/spot/SpotVectorVortex.vue +3 -0
- package/lib/dist/vue/spot/SpotWirelessScreenshare.vue +3 -0
- package/package.json +115 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DIALTONE
|
|
3
|
+
// UTILITIES: SPACING
|
|
4
|
+
//
|
|
5
|
+
// These are spacing utility classes for Dialpad's design system Dialtone.
|
|
6
|
+
// For further documentation of these and other classes,
|
|
7
|
+
// visit https://dialpad.design/utilities/spacing
|
|
8
|
+
//
|
|
9
|
+
// TABLE OF CONTENTS
|
|
10
|
+
// • AUTO-SPACING
|
|
11
|
+
// - VERTICALLY
|
|
12
|
+
// - HORIZONTALLY
|
|
13
|
+
// • MARGIN
|
|
14
|
+
// • PADDING
|
|
15
|
+
//
|
|
16
|
+
// ============================================================================
|
|
17
|
+
// $ AUTO-SPACING
|
|
18
|
+
// ============================================================================
|
|
19
|
+
// $$ THE STACK
|
|
20
|
+
// Instead of stlying specific elements when we're unaware of their context,
|
|
21
|
+
// this applies margin to context. The margin is only applied when an
|
|
22
|
+
// element is proceeded by another element.
|
|
23
|
+
// ============================================================================
|
|
24
|
+
// $$ VERTICALLY
|
|
25
|
+
// ----------------------------------------------------------------------------
|
|
26
|
+
.d-stack0 { > * + * { margin-top: 0 !important; } }
|
|
27
|
+
.d-stack1 { > * + * { margin-top: var(--dt-space-100) !important; } }
|
|
28
|
+
.d-stack2 { > * + * { margin-top: var(--dt-space-200) !important; } }
|
|
29
|
+
.d-stack4 { > * + * { margin-top: var(--dt-space-300) !important; } }
|
|
30
|
+
.d-stack6 { > * + * { margin-top: var(--dt-space-350) !important; } }
|
|
31
|
+
.d-stack8 { > * + * { margin-top: var(--dt-space-400) !important; } }
|
|
32
|
+
.d-stack12 { > * + * { margin-top: var(--dt-space-450) !important; } }
|
|
33
|
+
.d-stack16 { > * + * { margin-top: var(--dt-space-500) !important; } }
|
|
34
|
+
.d-stack24 { > * + * { margin-top: var(--dt-space-550) !important; } }
|
|
35
|
+
.d-stack32 { > * + * { margin-top: var(--dt-space-600) !important; } }
|
|
36
|
+
.d-stack48 { > * + * { margin-top: var(--dt-space-650) !important; } }
|
|
37
|
+
.d-stack64 { > * + * { margin-top: var(--dt-space-700) !important; } }
|
|
38
|
+
.d-stack72 { > * + * { margin-top: var(--dt-space-720) !important; } }
|
|
39
|
+
.d-stack84 { > * + * { margin-top: var(--dt-space-730) !important; } }
|
|
40
|
+
.d-stack96 { > * + * { margin-top: var(--dt-space-750) !important; } }
|
|
41
|
+
.d-stack102 { > * + * { margin-top: var(--dt-space-760) !important; } }
|
|
42
|
+
.d-stack114 { > * + * { margin-top: var(--dt-space-775) !important; } }
|
|
43
|
+
.d-stack128 { > * + * { margin-top: var(--dt-space-800) !important; } }
|
|
44
|
+
|
|
45
|
+
// ============================================================================
|
|
46
|
+
// $$ HORIZONTALLY
|
|
47
|
+
// ----------------------------------------------------------------------------
|
|
48
|
+
.d-flow0 { > * + * { margin-left: 0 !important; } }
|
|
49
|
+
.d-flow1 { > * + * { margin-left: var(--dt-space-100) !important; } }
|
|
50
|
+
.d-flow2 { > * + * { margin-left: var(--dt-space-200) !important; } }
|
|
51
|
+
.d-flow4 { > * + * { margin-left: var(--dt-space-300) !important; } }
|
|
52
|
+
.d-flow6 { > * + * { margin-left: var(--dt-space-350) !important; } }
|
|
53
|
+
.d-flow8 { > * + * { margin-left: var(--dt-space-400) !important; } }
|
|
54
|
+
.d-flow12 { > * + * { margin-left: var(--dt-space-450) !important; } }
|
|
55
|
+
.d-flow16 { > * + * { margin-left: var(--dt-space-500) !important; } }
|
|
56
|
+
.d-flow24 { > * + * { margin-left: var(--dt-space-550) !important; } }
|
|
57
|
+
.d-flow32 { > * + * { margin-left: var(--dt-space-600) !important; } }
|
|
58
|
+
.d-flow48 { > * + * { margin-left: var(--dt-space-650) !important; } }
|
|
59
|
+
.d-flow64 { > * + * { margin-left: var(--dt-space-700) !important; } }
|
|
60
|
+
.d-flow72 { > * + * { margin-left: var(--dt-space-720) !important; } }
|
|
61
|
+
.d-flow84 { > * + * { margin-left: var(--dt-space-730) !important; } }
|
|
62
|
+
.d-flow96 { > * + * { margin-left: var(--dt-space-750) !important; } }
|
|
63
|
+
.d-flow102 { > * + * { margin-left: var(--dt-space-760) !important; } }
|
|
64
|
+
.d-flow114 { > * + * { margin-left: var(--dt-space-775) !important; } }
|
|
65
|
+
.d-flow128 { > * + * { margin-left: var(--dt-space-800) !important; } }
|
|
66
|
+
|
|
67
|
+
// ============================================================================
|
|
68
|
+
// $ MARGIN
|
|
69
|
+
// ----------------------------------------------------------------------------
|
|
70
|
+
.d-m-auto { margin: auto !important; }
|
|
71
|
+
.d-m-unset { margin: unset !important; }
|
|
72
|
+
|
|
73
|
+
.d-mt-auto { margin-top: auto !important; }
|
|
74
|
+
.d-mt-unset { margin-top: unset !important; }
|
|
75
|
+
|
|
76
|
+
.d-mr-auto { margin-right: auto !important; }
|
|
77
|
+
.d-mr-unset { margin-right: unset !important; }
|
|
78
|
+
|
|
79
|
+
.d-mb-auto { margin-bottom: auto !important; }
|
|
80
|
+
.d-mb-unset { margin-bottom: unset !important; }
|
|
81
|
+
|
|
82
|
+
.d-ml-auto { margin-left: auto !important; }
|
|
83
|
+
.d-ml-unset { margin-left: unset !important; }
|
|
84
|
+
|
|
85
|
+
.d-mx-auto { margin-right: auto !important; margin-left: auto !important; }
|
|
86
|
+
.d-mx-unset { margin-right: unset !important; margin-left: unset !important; }
|
|
87
|
+
|
|
88
|
+
.d-my-auto { margin-top: auto !important; margin-bottom: auto !important; }
|
|
89
|
+
.d-my-unset { margin-top: unset !important; margin-bottom: unset !important; }
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
// ============================================================================
|
|
93
|
+
// $ PADDING
|
|
94
|
+
// ----------------------------------------------------------------------------
|
|
95
|
+
.d-p-unset { padding: unset !important; }
|
|
96
|
+
|
|
97
|
+
.d-pt-unset { padding-top: unset !important; }
|
|
98
|
+
|
|
99
|
+
.d-pr-unset { padding-right: unset !important; }
|
|
100
|
+
|
|
101
|
+
.d-pb-unset { padding-bottom: unset !important; }
|
|
102
|
+
|
|
103
|
+
.d-pl-unset { padding-left: unset !important; }
|
|
104
|
+
|
|
105
|
+
.d-px-unset { padding-right: unset !important; padding-left: unset !important; }
|
|
106
|
+
|
|
107
|
+
.d-py-unset { padding-top: unset !important; padding-bottom: unset !important; }
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DIALTONE
|
|
3
|
+
// UTILITIES: TYPOGRAPHY
|
|
4
|
+
//
|
|
5
|
+
// These are utility typography classes for Dialpad's design system Dialtone.
|
|
6
|
+
// For further documentation of these and other classes,
|
|
7
|
+
// visit https://dialpad.design/utilties/typography
|
|
8
|
+
//
|
|
9
|
+
// TABLE OF CONTENTS
|
|
10
|
+
// • FONT FAMILY
|
|
11
|
+
// • RESET HEADERS & PARAGRAPH MARGINS
|
|
12
|
+
// • FONT SIZE
|
|
13
|
+
// • FONT STYLE
|
|
14
|
+
// • FONT WEIGHT
|
|
15
|
+
// • LINE HEIGHT
|
|
16
|
+
// • LISTS
|
|
17
|
+
// • TEXT ALIGN
|
|
18
|
+
// • TEXT DECORATION
|
|
19
|
+
// • TEXT OVERFLOW
|
|
20
|
+
// • TEXT TRANSFORM
|
|
21
|
+
// • VERTICAL ALIGN
|
|
22
|
+
// • WHITESPACE
|
|
23
|
+
// • WORD-BREAK
|
|
24
|
+
// • WORD-WRAP
|
|
25
|
+
//
|
|
26
|
+
// ============================================================================
|
|
27
|
+
// $ FONT FAMILY
|
|
28
|
+
// ----------------------------------------------------------------------------
|
|
29
|
+
.d-ff-custom { font-family: var(--dt-font-family-body) !important; }
|
|
30
|
+
.d-ff-sans { font-family: var(--dt-font-family-body) !important; }
|
|
31
|
+
.d-ff-mono { font-family: var(--dt-font-family-mono) !important; }
|
|
32
|
+
.d-ff-marketing { font-family: var(--dt-font-family-expressive) !important; }
|
|
33
|
+
.d-ff-unset { font-family: unset !important; }
|
|
34
|
+
|
|
35
|
+
// ============================================================================
|
|
36
|
+
// $ RESET HEADERS & PARAGRAPH MARGINS
|
|
37
|
+
// ----------------------------------------------------------------------------
|
|
38
|
+
h1,
|
|
39
|
+
h2,
|
|
40
|
+
h3,
|
|
41
|
+
h4,
|
|
42
|
+
h5,
|
|
43
|
+
h6,
|
|
44
|
+
p,
|
|
45
|
+
ol,
|
|
46
|
+
ul {
|
|
47
|
+
margin-top: 0;
|
|
48
|
+
margin-bottom: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// ============================================================================
|
|
52
|
+
// $ BODY STYLES
|
|
53
|
+
// ----------------------------------------------------------------------------
|
|
54
|
+
.d-body-base { line-height: var(--dt-font-line-height-400); font-size: var(--dt-font-size-200); }
|
|
55
|
+
.d-body-small { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); }
|
|
56
|
+
.d-body-compact { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-200); }
|
|
57
|
+
.d-body-compact-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); }
|
|
58
|
+
|
|
59
|
+
// ============================================================================
|
|
60
|
+
// $ LABEL STYLES
|
|
61
|
+
// ----------------------------------------------------------------------------
|
|
62
|
+
.d-label-base { line-height: var(--dt-font-line-height-400); font-size: var(--dt-font-size-200); font-weight: var(--dt-font-weight-semi-bold); }
|
|
63
|
+
.d-label-small { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-semi-bold); }
|
|
64
|
+
.d-label-compact { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-200); font-weight: var(--dt-font-weight-semi-bold); }
|
|
65
|
+
.d-label-plain { line-height: var(--dt-font-line-height-400); font-size: var(--dt-font-size-200); }
|
|
66
|
+
.d-label-compact-plain { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-200); }
|
|
67
|
+
.d-label-compact-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-semi-bold); }
|
|
68
|
+
.d-label-plain-small { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); }
|
|
69
|
+
.d-label-compact-plain-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); }
|
|
70
|
+
|
|
71
|
+
// ============================================================================
|
|
72
|
+
// $ HELPER STYLES
|
|
73
|
+
// ----------------------------------------------------------------------------
|
|
74
|
+
.d-helper-base { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-200); }
|
|
75
|
+
.d-helper-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); }
|
|
76
|
+
|
|
77
|
+
// ============================================================================
|
|
78
|
+
// $ CODE STYLES
|
|
79
|
+
// ----------------------------------------------------------------------------
|
|
80
|
+
|
|
81
|
+
.d-code-base { font-family: var(--dt-font-family-mono); line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-200); }
|
|
82
|
+
.d-code-small { font-family: var(--dt-font-family-mono); line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); }
|
|
83
|
+
|
|
84
|
+
// ============================================================================
|
|
85
|
+
// $ FONT SIZE
|
|
86
|
+
// ----------------------------------------------------------------------------
|
|
87
|
+
.d-fs-100 { font-size: var(--dt-font-size-100) !important; }
|
|
88
|
+
.d-fs-200 { font-size: var(--dt-font-size-200) !important; }
|
|
89
|
+
.d-fs-300 { font-size: var(--dt-font-size-300) !important; }
|
|
90
|
+
.d-fs-400 { font-size: var(--dt-font-size-400) !important; }
|
|
91
|
+
.d-fs-500 { font-size: var(--dt-font-size-500) !important; }
|
|
92
|
+
|
|
93
|
+
.d-fs-100-mobile { font-size: var(--dt-font-size-100-mobile) !important; }
|
|
94
|
+
.d-fs-200-mobile { font-size: var(--dt-font-size-200-mobile) !important; }
|
|
95
|
+
.d-fs-300-mobile { font-size: var(--dt-font-size-300-mobile) !important; }
|
|
96
|
+
.d-fs-400-mobile { font-size: var(--dt-font-size-400-mobile) !important; }
|
|
97
|
+
.d-fs-500-mobile { font-size: var(--dt-font-size-500-mobile) !important; }
|
|
98
|
+
|
|
99
|
+
.d-fs-100-tc8 { font-size: var(--dt-font-size-100-tc8) !important; }
|
|
100
|
+
.d-fs-200-tc8 { font-size: var(--dt-font-size-200-tc8) !important; }
|
|
101
|
+
.d-fs-300-tc8 { font-size: var(--dt-font-size-300-tc8) !important; }
|
|
102
|
+
.d-fs-400-tc8 { font-size: var(--dt-font-size-400-tc8) !important; }
|
|
103
|
+
.d-fs-500-tc8 { font-size: var(--dt-font-size-500-tc8) !important; }
|
|
104
|
+
|
|
105
|
+
.d-fs-100-tv { font-size: var(--dt-font-size-100-tv) !important; }
|
|
106
|
+
.d-fs-200-tv { font-size: var(--dt-font-size-200-tv) !important; }
|
|
107
|
+
.d-fs-300-tv { font-size: var(--dt-font-size-300-tv) !important; }
|
|
108
|
+
.d-fs-400-tv { font-size: var(--dt-font-size-400-tv) !important; }
|
|
109
|
+
.d-fs-500-tv { font-size: var(--dt-font-size-500-tv) !important; }
|
|
110
|
+
|
|
111
|
+
.d-headline10 { .d-fs-100(); font-weight: var(--dt-font-weight-bold); .d-tt-uppercase(); }
|
|
112
|
+
.d-headline24 { .d-fs-300(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
113
|
+
.d-headline28 { .d-fs-400(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
114
|
+
.d-headline32 { .d-fs-400(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
115
|
+
.d-headline36 { .d-fs-400(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
116
|
+
.d-headline42 { .d-fs-500(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
117
|
+
.d-headline48 { .d-fs-500(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
118
|
+
.d-headline54 { .d-fs-500(); font-weight: var(--dt-font-weight-bold) !important; }
|
|
119
|
+
|
|
120
|
+
.d-headline-eyebrow { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-normal); .d-tt-uppercase(); }
|
|
121
|
+
.d-headline-small { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-bold); }
|
|
122
|
+
.d-headline-soft-small { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-medium); }
|
|
123
|
+
.d-headline-medium { line-height: var(--dt-font-line-height-400); font-size: var(--dt-font-size-200); font-weight: var(--dt-font-weight-bold); }
|
|
124
|
+
.d-headline-compact-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-bold); }
|
|
125
|
+
.d-headline-compact-soft-small { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-100); font-weight: var(--dt-font-weight-medium); }
|
|
126
|
+
.d-headline-compact-base,
|
|
127
|
+
.d-headline-compact-medium { line-height: var(--dt-font-line-height-300); font-size: var(--dt-font-size-200); font-weight: var(--dt-font-weight-bold); }
|
|
128
|
+
.d-headline-compact-large { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-300); font-weight: var(--dt-font-weight-bold); }
|
|
129
|
+
.d-headline-large { line-height: var(--dt-font-line-height-400); font-size: var(--dt-font-size-300); font-weight: var(--dt-font-weight-bold); }
|
|
130
|
+
.d-headline-extra-large { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-400); font-weight: var(--dt-font-weight-medium); }
|
|
131
|
+
.d-headline-extra-extra-large { line-height: var(--dt-font-line-height-200); font-size: var(--dt-font-size-500); font-weight: var(--dt-font-weight-medium); }
|
|
132
|
+
|
|
133
|
+
.d-fs-unset { font-size: unset !important; }
|
|
134
|
+
|
|
135
|
+
// ============================================================================
|
|
136
|
+
// $$ FONT STYLE
|
|
137
|
+
// ----------------------------------------------------------------------------
|
|
138
|
+
.d-fs-normal { font-style: normal !important; }
|
|
139
|
+
.d-fs-italic { font-style: italic !important; }
|
|
140
|
+
.d-fs-unset { font-style: unset !important; }
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
// ============================================================================
|
|
144
|
+
// $$ FONT WEIGHT
|
|
145
|
+
// ----------------------------------------------------------------------------
|
|
146
|
+
.d-fw-normal { font-weight: var(--dt-font-weight-normal) !important; }
|
|
147
|
+
.d-fw-medium { font-weight: var(--dt-font-weight-medium) !important; }
|
|
148
|
+
.d-fw-semibold { font-weight: var(--dt-font-weight-semi-bold) !important; }
|
|
149
|
+
.d-fw-bold { font-weight: var(--dt-font-weight-bold) !important; }
|
|
150
|
+
.d-fw-unset { font-weight: unset !important; }
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
// ============================================================================
|
|
154
|
+
// $ LINE HEIGHT
|
|
155
|
+
// ----------------------------------------------------------------------------
|
|
156
|
+
.d-lh0 { line-height: var(--lh0) !important; }
|
|
157
|
+
.d-lh1 { line-height: var(--lh1) !important; }
|
|
158
|
+
.d-lh2 { line-height: var(--lh2) !important; }
|
|
159
|
+
.d-lh4 { line-height: var(--lh4) !important; }
|
|
160
|
+
.d-lh6 { line-height: var(--lh6) !important; }
|
|
161
|
+
.d-lh8 { line-height: var(--lh8) !important; }
|
|
162
|
+
.d-lh12 { line-height: var(--lh12) !important; }
|
|
163
|
+
.d-lh16 { line-height: var(--lh16) !important; }
|
|
164
|
+
.d-lh20 { line-height: var(--lh20) !important; }
|
|
165
|
+
.d-lh24 { line-height: var(--lh24) !important; }
|
|
166
|
+
.d-lh-100 { line-height: var(--dt-font-line-height-100) !important; }
|
|
167
|
+
.d-lh-200 { line-height: var(--dt-font-line-height-200) !important; }
|
|
168
|
+
.d-lh-300 { line-height: var(--dt-font-line-height-300) !important; }
|
|
169
|
+
.d-lh-400 { line-height: var(--dt-font-line-height-400) !important; }
|
|
170
|
+
.d-lh-500 { line-height: var(--dt-font-line-height-500) !important; }
|
|
171
|
+
.d-lh-600 { line-height: var(--dt-font-line-height-600) !important; }
|
|
172
|
+
.d-lh-unset { line-height: unset !important; }
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
// ============================================================================
|
|
176
|
+
// $ LISTS
|
|
177
|
+
// ----------------------------------------------------------------------------
|
|
178
|
+
.d-ls-reset {
|
|
179
|
+
// We want to reset everything when applied
|
|
180
|
+
&,
|
|
181
|
+
li,
|
|
182
|
+
ol,
|
|
183
|
+
ul {
|
|
184
|
+
margin: 0;
|
|
185
|
+
padding: 0;
|
|
186
|
+
.d-ls-none();
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
.d-ls-none { list-style: none !important; }
|
|
190
|
+
.d-lst-disc { list-style-type: disc !important; }
|
|
191
|
+
.d-lst-circle { list-style-type: circle !important; }
|
|
192
|
+
.d-lst-content { list-style-type: var(--ls-content) !important; }
|
|
193
|
+
.d-lst-decimal { list-style-type: decimal !important; }
|
|
194
|
+
.d-lst-none { list-style-type: none !important; }
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
// ============================================================================
|
|
198
|
+
// $$ TEXT ALIGN
|
|
199
|
+
// ----------------------------------------------------------------------------
|
|
200
|
+
.d-ta-left { text-align: left !important; }
|
|
201
|
+
.d-ta-right { text-align: right !important; }
|
|
202
|
+
.d-ta-center { text-align: center !important; }
|
|
203
|
+
.d-ta-justify { text-align: justify !important; }
|
|
204
|
+
.d-ta-unset { text-align: unset !important; }
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
// ============================================================================
|
|
208
|
+
// $$ TEXT DECORATION
|
|
209
|
+
// ----------------------------------------------------------------------------
|
|
210
|
+
.d-td-none { text-decoration: none !important; }
|
|
211
|
+
.d-td-underline {
|
|
212
|
+
text-decoration: underline !important;
|
|
213
|
+
text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100)) !important;
|
|
214
|
+
text-decoration-thickness: var(--dt-size-border-100) !important;
|
|
215
|
+
}
|
|
216
|
+
.d-td-dotted {
|
|
217
|
+
text-decoration: underline dotted !important;
|
|
218
|
+
text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100)) !important;
|
|
219
|
+
text-decoration-thickness: var(--dt-size-border-100) !important;
|
|
220
|
+
}
|
|
221
|
+
.d-td-line-through { text-decoration: line-through !important; }
|
|
222
|
+
.d-td-unset { text-decoration: unset !important; }
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
// ============================================================================
|
|
226
|
+
// $$ TEXT OVERFLOW
|
|
227
|
+
// ----------------------------------------------------------------------------
|
|
228
|
+
.d-to-ellipsis { text-overflow: ellipsis !important; }
|
|
229
|
+
.d-to-clip { text-overflow: clip !important; }
|
|
230
|
+
.d-to-unset { text-overflow: unset !important; }
|
|
231
|
+
|
|
232
|
+
// $$ OVERFLOW WRAP
|
|
233
|
+
// ----------------------------------------------------------------------------
|
|
234
|
+
.d-ow-normal { overflow-wrap: normal !important; }
|
|
235
|
+
.d-ow-anywhere { overflow-wrap: anywhere !important; }
|
|
236
|
+
.d-ow-break-word { overflow-wrap: break-word !important; }
|
|
237
|
+
.d-ow-unset { overflow-wrap: unset !important; }
|
|
238
|
+
|
|
239
|
+
// ============================================================================
|
|
240
|
+
// $$ TEXT TRANSFORM
|
|
241
|
+
// ----------------------------------------------------------------------------
|
|
242
|
+
.d-tt-uppercase { text-transform: uppercase !important; }
|
|
243
|
+
.d-tt-lowercase { text-transform: lowercase !important; }
|
|
244
|
+
.d-tt-capitalize { text-transform: capitalize !important; }
|
|
245
|
+
.d-tt-full-width { text-transform: full-width !important; }
|
|
246
|
+
.d-tt-none { text-transform: none !important; }
|
|
247
|
+
.d-tt-unset { text-transform: unset !important; }
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
// ============================================================================
|
|
251
|
+
// $$ VERTICAL ALIGN
|
|
252
|
+
// ----------------------------------------------------------------------------
|
|
253
|
+
.d-va-baseline { vertical-align: baseline !important; }
|
|
254
|
+
.d-va-top { vertical-align: top !important; }
|
|
255
|
+
.d-va-bottom { vertical-align: bottom !important; }
|
|
256
|
+
.d-va-text-top { vertical-align: text-top !important; }
|
|
257
|
+
.d-va-text-bottom { vertical-align: text-bottom !important; }
|
|
258
|
+
.d-va-middle { vertical-align: middle !important; }
|
|
259
|
+
.d-va-sub { vertical-align: sub !important; }
|
|
260
|
+
.d-va-super { vertical-align: super !important; }
|
|
261
|
+
.d-va-unset { vertical-align: unset !important; }
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
// ============================================================================
|
|
265
|
+
// $$ WHITESPACE
|
|
266
|
+
// ----------------------------------------------------------------------------
|
|
267
|
+
.d-ws-normal { white-space: normal !important; }
|
|
268
|
+
.d-ws-nowrap { white-space: nowrap !important; }
|
|
269
|
+
.d-ws-pre { white-space: pre !important; }
|
|
270
|
+
.d-ws-pre-line { white-space: pre-line !important; }
|
|
271
|
+
.d-ws-pre-wrap { white-space: pre-wrap !important; }
|
|
272
|
+
.d-ws-break-spaces { white-space: break-spaces !important; }
|
|
273
|
+
.d-ws-unset { white-space: unset !important; }
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
// ============================================================================
|
|
277
|
+
// $$ WORD BREAK
|
|
278
|
+
// ----------------------------------------------------------------------------
|
|
279
|
+
.d-wb-normal { word-break: normal !important; }
|
|
280
|
+
.d-wb-break-all { word-break: break-all !important; }
|
|
281
|
+
.d-wb-keep-all { word-break: keep-all !important; }
|
|
282
|
+
.d-wb-unset { word-break: unset !important; }
|
|
283
|
+
|
|
284
|
+
// ============================================================================
|
|
285
|
+
// $$ WORD WRAP
|
|
286
|
+
// ----------------------------------------------------------------------------
|
|
287
|
+
.d-ww-break-word { word-wrap: break-word !important; }
|
|
288
|
+
.d-ww-normal { word-wrap: normal !important; }
|
|
289
|
+
.d-ww-initial { word-wrap: initial !important; }
|
|
290
|
+
.d-ww-inherit { word-wrap: inherit !important; }
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
// Unsure what to do with this
|
|
294
|
+
// $$ TRUNCATE
|
|
295
|
+
// ----------------------------------------------------------------------------
|
|
296
|
+
.d-truncate {
|
|
297
|
+
overflow: hidden !important;
|
|
298
|
+
white-space: nowrap !important;
|
|
299
|
+
text-overflow: ellipsis !important;
|
|
300
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DIALTONE
|
|
3
|
+
// TOKENS: Grid-vars
|
|
4
|
+
//
|
|
5
|
+
// ============================================================================
|
|
6
|
+
// $ GRID VARIABLES
|
|
7
|
+
// ----------------------------------------------------------------------------
|
|
8
|
+
@grid-vars: {
|
|
9
|
+
// Grid Layout Variables
|
|
10
|
+
sidebar-width: minmax(20rem, 30rem);
|
|
11
|
+
content-width: minmax(32rem, 90ch);
|
|
12
|
+
header-height: minmax(6.4rem, min-content);
|
|
13
|
+
content-height: minmax(64rem, max-content);
|
|
14
|
+
|
|
15
|
+
// Grid Columns
|
|
16
|
+
grid-columns: 12;
|
|
17
|
+
grid-column-width: minmax(min-content, 24rem);
|
|
18
|
+
grid-column-auto: 1fr;
|
|
19
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DIALTONE
|
|
3
|
+
// TOKENS: SIZES
|
|
4
|
+
//
|
|
5
|
+
// These are shared sizes for buttons, inputs, select menus (native),
|
|
6
|
+
// and text-areas.
|
|
7
|
+
// ============================================================================
|
|
8
|
+
// $ SHARED INPUT & BUTTON SIZES
|
|
9
|
+
// ============================================================================
|
|
10
|
+
// $$ EXTRA SMALL
|
|
11
|
+
// ----------------------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
#d-internal__input-and-select-xs() {
|
|
14
|
+
--input-padding-y: calc(calc(var(--dt-space-400) - var(--dt-space-100)) - var(--input-border-width));
|
|
15
|
+
--input-padding-x: calc(var(--dt-space-400) - var(--input-border-width));
|
|
16
|
+
--input-font-size: var(--dt-font-size-100);
|
|
17
|
+
--input-border-radius: var(--dt-size-300);
|
|
18
|
+
|
|
19
|
+
.d-btn__icon {
|
|
20
|
+
width: calc(var(--dt-size-500) - var(--dt-size-200));
|
|
21
|
+
height: calc(var(--dt-size-500) - var(--dt-size-200));
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// $$ SMALL
|
|
26
|
+
// ----------------------------------------------------------------------------
|
|
27
|
+
#d-internal__input-and-select-sm() {
|
|
28
|
+
--input-padding-y: calc(var(--dt-space-400) - var(--input-border-width));
|
|
29
|
+
--input-padding-x: calc((var(--dt-space-500) - var(--dt-space-300)) - var(--input-border-width));
|
|
30
|
+
--input-font-size: var(--dt-font-size-100);
|
|
31
|
+
|
|
32
|
+
.d-btn__icon {
|
|
33
|
+
width: var(--dt-size-500);
|
|
34
|
+
height: var(--dt-size-500);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// $$ LARGE
|
|
39
|
+
// ----------------------------------------------------------------------------
|
|
40
|
+
#d-internal__input-and-select-lg() {
|
|
41
|
+
--input-padding-y: calc((var(--dt-space-400) + var(--dt-space-200)) - var(--input-border-width));
|
|
42
|
+
--input-padding-x: calc(var(--dt-space-500) - var(--input-border-width));
|
|
43
|
+
--input-font-size: var(--dt-font-size-300);
|
|
44
|
+
--input-border-radius: var(--dt-size-450);
|
|
45
|
+
|
|
46
|
+
.d-btn__icon {
|
|
47
|
+
width: calc(var(--dt-size-300) * 5);
|
|
48
|
+
height: calc(var(--dt-size-300) * 5);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// $$ EXTRA LARGE
|
|
53
|
+
// ----------------------------------------------------------------------------
|
|
54
|
+
#d-internal__input-and-select-xl() {
|
|
55
|
+
--input-padding-y: calc((var(--dt-space-500) - var(--dt-space-300)) - var(--input-border-width));
|
|
56
|
+
--input-padding-x: calc(var(--dt-space-500) - var(--input-border-width));
|
|
57
|
+
--input-font-size: var(--dt-font-size-400);
|
|
58
|
+
--input-border-radius: var(--dt-size-500);
|
|
59
|
+
|
|
60
|
+
.d-btn__icon {
|
|
61
|
+
width: var(--dt-size-550);
|
|
62
|
+
height: var(--dt-size-550);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* stylelint-disable meowtec/no-px */
|
|
2
|
+
//
|
|
3
|
+
// DIALTONE
|
|
4
|
+
// TOKENS: TYPOGRAPHY
|
|
5
|
+
// Pretty much everything in this file will ultimately be replaced by Design Tokens
|
|
6
|
+
//
|
|
7
|
+
// These are typography constants for Dialpad's design system Dialtone.
|
|
8
|
+
// For further documentation of these and other classes,
|
|
9
|
+
// visit https://dialpad.design/tokens/typography
|
|
10
|
+
//
|
|
11
|
+
// TABLE OF CONTENTS
|
|
12
|
+
// • Line heights
|
|
13
|
+
//
|
|
14
|
+
|
|
15
|
+
// ============================================================================
|
|
16
|
+
// $ LINE HEIGHTS
|
|
17
|
+
// ----------------------------------------------------------------------------
|
|
18
|
+
// Currently unclear how these will be replaced by Design Tokens
|
|
19
|
+
@lh0: 1;
|
|
20
|
+
@lh1: calc(1em + 1px);
|
|
21
|
+
@lh2: calc(1em + 2px);
|
|
22
|
+
@lh4: calc(1em + 4px);
|
|
23
|
+
@lh6: calc(1em + 6px);
|
|
24
|
+
@lh8: calc(1em + 8px);
|
|
25
|
+
@lh12: calc(1em + 12px);
|
|
26
|
+
@lh16: calc(1em + 16px);
|
|
27
|
+
@lh20: calc(1em + 20px);
|
|
28
|
+
@lh24: calc(1em + 24px);
|
|
29
|
+
|
|
30
|
+
// ============================================================================
|
|
31
|
+
// $ CSS VARIABLES
|
|
32
|
+
// ----------------------------------------------------------------------------
|
|
33
|
+
@type-styles-vars: {
|
|
34
|
+
lh0: @lh0;
|
|
35
|
+
lh1: @lh1;
|
|
36
|
+
lh2: @lh2;
|
|
37
|
+
lh4: @lh4;
|
|
38
|
+
lh6: @lh6;
|
|
39
|
+
lh8: @lh8;
|
|
40
|
+
lh12: @lh12;
|
|
41
|
+
lh16: @lh16;
|
|
42
|
+
lh20: @lh20;
|
|
43
|
+
lh24: @lh24;
|
|
44
|
+
|
|
45
|
+
ls-content: '\1F44D';
|
|
46
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DIALTONE
|
|
3
|
+
// TOKENS: VISUAL STYLES
|
|
4
|
+
//
|
|
5
|
+
// Pretty much everything in this file will ultimately be replaced by Design Tokens
|
|
6
|
+
//
|
|
7
|
+
// These are various visual style tokens and mixins for Dialpad's design
|
|
8
|
+
// system Dialtone. For further documentation of these values, please visit:
|
|
9
|
+
// https://dialpad.design/tokens/visual-styles
|
|
10
|
+
//
|
|
11
|
+
// TABLE OF CONTENTS
|
|
12
|
+
// • BACKGROUND PATTERNS
|
|
13
|
+
//
|
|
14
|
+
//¡
|
|
15
|
+
// ============================================================================
|
|
16
|
+
// $ TRANSITIONS
|
|
17
|
+
// ----------------------------------------------------------------------------
|
|
18
|
+
@transition: {
|
|
19
|
+
ttf-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
20
|
+
ttf-out: cubic-bezier(0.23, 1, 0.32, 1);
|
|
21
|
+
ttf-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
|
|
22
|
+
td0: 0s;
|
|
23
|
+
td50: 50ms;
|
|
24
|
+
td100: 100ms;
|
|
25
|
+
td150: 150ms;
|
|
26
|
+
td200: 200ms;
|
|
27
|
+
td300: 300ms;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// ============================================================================
|
|
32
|
+
// $ BACKGROUND PATTERNS
|
|
33
|
+
// ----------------------------------------------------------------------------
|
|
34
|
+
// TODO: sunset these?
|
|
35
|
+
@background-patterns: {
|
|
36
|
+
bgg-pattern-blob-dark: @bgg-pattern-blob-dark;
|
|
37
|
+
bgg-pattern-chevrons-dark: @bgg-pattern-chevrons-dark;
|
|
38
|
+
bgg-pattern-crosses-dark: @bgg-pattern-crosses-dark;
|
|
39
|
+
bgg-pattern-crosshatch-dark: @bgg-pattern-crosshatch-dark;
|
|
40
|
+
bgg-pattern-dot-dash-dark: @bgg-pattern-dot-dash-dark;
|
|
41
|
+
bgg-pattern-dots-circles-dark: @bgg-pattern-dots-circles-dark;
|
|
42
|
+
bgg-pattern-horz-stripes-dark: @bgg-pattern-horz-stripes-dark;
|
|
43
|
+
bgg-pattern-slanted-stripes-dark: @bgg-pattern-slanted-stripes-dark;
|
|
44
|
+
bgg-pattern-steps-dark: @bgg-pattern-steps-dark;
|
|
45
|
+
bgg-pattern-stripe-dark: @bgg-pattern-stripe-dark;
|
|
46
|
+
bgg-pattern-blob-light: @bgg-pattern-blob-light;
|
|
47
|
+
bgg-pattern-chevrons-light: @bgg-pattern-chevrons-light;
|
|
48
|
+
bgg-pattern-crosses-light: @bgg-pattern-crosses-light;
|
|
49
|
+
bgg-pattern-crosshatch-light: @bgg-pattern-crosshatch-light;
|
|
50
|
+
bgg-pattern-dot-dash-light: @bgg-pattern-dot-dash-light;
|
|
51
|
+
bgg-pattern-dots-circles-light: @bgg-pattern-dots-circles-light;
|
|
52
|
+
bgg-pattern-horz-stripes-light: @bgg-pattern-horz-stripes-light;
|
|
53
|
+
bgg-pattern-slanted-stripes-light: @bgg-pattern-slanted-stripes-light;
|
|
54
|
+
bgg-pattern-steps-light: @bgg-pattern-steps-light;
|
|
55
|
+
bgg-pattern-stripe-light: @bgg-pattern-stripe-light;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@bgg-pattern-blob-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQmxvYiBEYXJrIiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fYmxvYkRhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xIDBhMSAxIDAgMDAtMSAxdjIuM2ExIDEgMCAwMDEgMWg0LjAyYy0uMDEzLjA2NS0uMDIuMTMyLS4wMi4ydjIuM0gxYTEgMSAwIDAwLTEgMXYyLjNhMSAxIDAgMDAxIDFoNC4wMmMtLjAxMy4wNjUtLjAyLjEzMi0uMDIuMnYyLjNIMWExIDEgMCAwMC0xIDF2Mi4zYTEgMSAwIDAwMSAxaDQuMDJjLS4wMTMuMDY1LS4wMi4xMzItLjAyLjJWMjBoOHYtMS45YTEgMSAwIDAwLTEtMUg3Ljk4Yy4wMTMtLjA2NS4wMi0uMTMyLjAyLS4ydi0yLjNoNGExIDEgMCAwMDEtMXYtMi4zYTEgMSAwIDAwLTEtMUg3Ljk4Yy4wMTMtLjA2NS4wMi0uMTMyLjAyLS4yVjcuOGg0YTEgMSAwIDAwMS0xVjQuNWExIDEgMCAwMC0xLTFINy45OGMuMDEzLS4wNjUuMDItLjEzMi4wMi0uMnYtMmg0YTEgMSAwIDAwMS0xVjBIMXoiIGZpbGw9IiMxNDE3MjEiLz48L3N2Zz4=');
|
|
59
|
+
@bgg-pattern-chevrons-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ2hldnJvbnMgRGFyayIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX2NoZXZyb25zRGFyayIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTExLjAyNyAxLjMyNEMxMS42IDEuMTM0IDExLjk4OS42MDIgMTIgMEgwdjFsNiAyIDUuMDI3LTEuNjc2ek0wIDN2M2w2IDIgNS4wMjctMS42NzZhMS40MjMgMS40MjMgMCAxMC0uOS0yLjdMNiA1IDAgM3pNMCA4djNsNiAyIDUuMDI3LTEuNjc2YTEuNDIzIDEuNDIzIDAgMTAtLjktMi43TDYgMTAgMCA4ek0wIDEzdjNsNiAyIDUuMDI3LTEuNjc2YTEuNDIzIDEuNDIzIDAgMTAtLjktMi43TDYgMTVsLTYtMnpNMCAxOHYyaDEydi0uMDI2YzAtLjk3MS0uOTUyLTEuNjU3LTEuODczLTEuMzVMNiAyMGwtNi0yeiIgZmlsbD0iIzE0MTcyMSIvPjwvc3ZnPg==');
|
|
60
|
+
@bgg-pattern-crosses-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ3Jvc3NlcyBEYXJrIiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fY3Jvc3Nlc0RhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMWExIDEgMCAwMC0xLTFIMHYyaDN2M0gwdjJoM3YzSDB2MmgzdjNIMHYyaDN2M2gydi0zaDJ2M2gydi0zaDJhMSAxIDAgMTAwLTJIOXYtM2gyYTEgMSAwIDEwMC0ySDlWN2gyYTEgMSAwIDEwMC0ySDlWMmgyYTEgMSAwIDAwMS0xek03IDJINXYzaDJWMnptMCA1SDV2M2gyVjd6bTAgNUg1djNoMnYtM3oiIGZpbGw9IiMxNDE3MjEiLz48L3N2Zz4=');
|
|
61
|
+
@bgg-pattern-crosshatch-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ3Jvc3NoYXRjaCBEYXJrIiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fY3Jvc3NoYXRjaERhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0zIDBIMHYyLjVhMS41IDEuNSAwIDEwMyAwVjB6TTAgMTcuNVYyMGgzdi0yLjVhMS41IDEuNSAwIDAwLTMgMHpNOCAyMEg1di0yLjVhMS41IDEuNSAwIDAxMyAwVjIwek0xMyAyMGgtM3YtMi41YTEuNSAxLjUgMCAwMTMgMFYyMHpNMTAgMGgzdjIuNWExLjUgMS41IDAgMDEtMyAwVjB6TTUgMGgzdjIuNWExLjUgMS41IDAgMTEtMyAwVjB6TTAgMTMuNWExIDEgMCAwMTEtMWgxMWExIDEgMCAxMTAgMkgxYTEgMSAwIDAxLTEtMXpNMCAxMGExIDEgMCAwMDEgMWgxMWExIDEgMCAxMDAtMkgxYTEgMSAwIDAwLTEgMXpNMCA2LjVhMSAxIDAgMDAxIDFoMTFhMSAxIDAgMTAwLTJIMWExIDEgMCAwMC0xIDF6IiBmaWxsPSIjMTQxNzIxIi8+PC9zdmc+');
|
|
62
|
+
@bgg-pattern-dot-dash-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iRG90IERhc2ggRGFyayIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX2RvdERhc2hEYXJrIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNNS4xNDMgNC44MThWMEgwdjQuODE4YzAgMS40MDYgMS4xNTEgMi41NDYgMi41NzEgMi41NDYgMS40MiAwIDIuNTcyLTEuMTQgMi41NzItMi41NDZ6TTAgMTguMzk0VjIwaDUuMTQzdi0xLjYwNmMwLTEuNDA2LTEuMTUxLTIuNTQ1LTIuNTcyLTIuNTQ1LTEuNDIgMC0yLjU3MSAxLjE0LTIuNTcxIDIuNTQ1ek0xMiAyMEg2Ljg1N3YtNi42OTdjMC0xLjQwNiAxLjE1MS0yLjU0NSAyLjU3Mi0yLjU0NSAxLjQyIDAgMi41NzEgMS4xNCAyLjU3MSAyLjU0NVYyMHpNMTEuOTg1IDBINi44NzJhMi41NjIgMi41NjIgMCAwMDIuNTU3IDIuMjczYzEuMzI3IDAgMi40MTktLjk5NSAyLjU1Ni0yLjI3M3pNMCAxMS42MDZDMCAxMC4yIDEuMTUxIDkuMDYxIDIuNTcxIDkuMDYxYzEuNDIgMCAyLjU3MiAxLjE0IDIuNTcyIDIuNTQ1IDAgMS40MDYtMS4xNTEgMi41NDYtMi41NzIgMi41NDYtMS40MiAwLTIuNTcxLTEuMTQtMi41NzEtMi41NDZ6TTEyIDYuNTE1QzEyIDUuMTEgMTAuODQ5IDMuOTcgOS40MjkgMy45N2MtMS40MiAwLTIuNTcyIDEuMTQtMi41NzIgMi41NDUgMCAxLjQwNiAxLjE1MSAyLjU0NiAyLjU3MiAyLjU0NkMxMC44NDkgOS4wNiAxMiA3LjkyIDEyIDYuNTE1eiIgZmlsbD0iIzE0MTcyMSIvPjwvc3ZnPg==');
|
|
63
|
+
@bgg-pattern-dots-circles-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iRG90cyBDaXJjbGVzIERhcmsiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19kb3RzQ2lyY2xlc0RhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMiAwSDZhMiAyIDAgMDAyIDJoNFYwek00IDBIMHY0aDRhMiAyIDAgMTAwLTR6TTAgMTEuNTM1djYuOTNhNCA0IDAgMTAwLTYuOTN6TTEyIDIwSDZhMiAyIDAgMDEyLTJoNHYyek02IDkuNWEyIDIgMCAwMTItMmg0djRIOGEyIDIgMCAwMS0yLTJ6TS41IDcuNWExLjUgMS41IDAgMTEzIDAgMS41IDEuNSAwIDAxLTMgMHpNMTAgMy41YTEgMSAwIDEwMCAyIDEgMSAwIDAwMC0yek0xMCAxMy41YTEuNSAxLjUgMCAxMDAgMyAxLjUgMS41IDAgMDAwLTN6IiBmaWxsPSIjMTQxNzIxIi8+PC9zdmc+');
|
|
64
|
+
@bgg-pattern-horz-stripes-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iSG9yeiBTdHJpcGVzIERhcmsiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19ob3J6U3RyaXBlc0RhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0xMC40MTIgM0gwVjBoMTAuNDEyQzExLjI4OSAwIDEyIC42NzIgMTIgMS41UzExLjI4OSAzIDEwLjQxMiAzek0wIDE4aDEwLjQxMmMuODc3IDAgMS41ODgtLjY3MiAxLjU4OC0xLjVzLS43MTEtMS41LTEuNTg4LTEuNUgwdjN6TTAgMTNoMTAuNDEyYy44NzcgMCAxLjU4OC0uNjcyIDEuNTg4LTEuNXMtLjcxMS0xLjUtMS41ODgtMS41SDB2M3pNMCA4aDEwLjQxMkMxMS4yODkgOCAxMiA3LjMyOCAxMiA2LjVTMTEuMjg5IDUgMTAuNDEyIDVIMHYzeiIgZmlsbD0iIzE0MTcyMSIvPjwvc3ZnPg==');
|
|
65
|
+
@bgg-pattern-slanted-stripes-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU2xhbnRlZCBTdHJpcGVzIERhcmsiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19zbGFudGVkU3RyaXBlc0RhcmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik04IDBIMHY0bDgtNHpNMCA1djRsMTItNlYwaC0yTDAgNXpNMTIgMjB2LTFsLTIgMWgyek04IDIwbDQtMnYtNEwwIDIwaDh6TTAgMTlsMTItNlY5TDAgMTV2NHpNMCAxNGwxMi02VjRMMCAxMHY0eiIgZmlsbD0iIzE0MTcyMSIvPjwvc3ZnPg==');
|
|
66
|
+
@bgg-pattern-steps-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU3RlcHMgRGFyayIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX3N0ZXBzRGFyayIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTAgMHYuNWExLjUgMS41IDAgMTAzIDBWMEgwek0xMCAyMGEyIDIgMCAwMDItMnYtMS41YTEuNSAxLjUgMCAwMC0zIDB2LjVIMmEyIDIgMCAwMC0yIDJ2MWgxMHpNMCAxMy41YTEuNSAxLjUgMCAwMDMgMFYxM2g3YTIgMiAwIDAwMi0yVjkuNWExLjUgMS41IDAgMDAtMyAwdi41SDJhMiAyIDAgMDAtMiAydjEuNXpNMCA2LjVhMS41IDEuNSAwIDEwMyAwVjZoN2EyIDIgMCAwMDItMlYyLjVhMS41IDEuNSAwIDAwLTMgMFYzSDJhMiAyIDAgMDAtMiAydjEuNXoiIGZpbGw9IiMxNDE3MjEiLz48L3N2Zz4=');
|
|
67
|
+
@bgg-pattern-stripe-dark: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU3RyaXBlIERhcmsiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19zdHJpcGVEYXJrIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNNCAyMEgyVjBoMnYyMHpNOSAyMEg1VjBoNHYyMHpNMTIgMjBoLTJWMGgydjIweiIgZmlsbD0iIzE0MTcyMSIvPjwvc3ZnPg==');
|
|
68
|
+
@bgg-pattern-blob-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQmxvYiBMaWdodCIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX2Jsb2JMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEgMGExIDEgMCAwMC0xIDF2Mi4zYTEgMSAwIDAwMSAxaDQuMDJjLS4wMTMuMDY1LS4wMi4xMzItLjAyLjJ2Mi4zSDFhMSAxIDAgMDAtMSAxdjIuM2ExIDEgMCAwMDEgMWg0LjAyYy0uMDEzLjA2NS0uMDIuMTMyLS4wMi4ydjIuM0gxYTEgMSAwIDAwLTEgMXYyLjNhMSAxIDAgMDAxIDFoNC4wMmMtLjAxMy4wNjUtLjAyLjEzMi0uMDIuMlYyMGg4di0xLjlhMSAxIDAgMDAtMS0xSDcuOThjLjAxMy0uMDY1LjAyLS4xMzIuMDItLjJ2LTIuM2g0YTEgMSAwIDAwMS0xdi0yLjNhMSAxIDAgMDAtMS0xSDcuOThjLjAxMy0uMDY1LjAyLS4xMzIuMDItLjJWNy44aDRhMSAxIDAgMDAxLTFWNC41YTEgMSAwIDAwLTEtMUg3Ljk4Yy4wMTMtLjA2NS4wMi0uMTMyLjAyLS4ydi0yaDRhMSAxIDAgMDAxLTFWMEgxeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==');
|
|
69
|
+
@bgg-pattern-chevrons-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ2hldnJvbnMgTGlnaHQiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19jaGV2cm9uc0xpZ2h0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTEuMDI3IDEuMzI0QzExLjYgMS4xMzQgMTEuOTg5LjYwMiAxMiAwSDB2MWw2IDIgNS4wMjctMS42NzZ6TTAgM3YzbDYgMiA1LjAyNy0xLjY3NmExLjQyMyAxLjQyMyAwIDEwLS45LTIuN0w2IDUgMCAzek0wIDh2M2w2IDIgNS4wMjctMS42NzZhMS40MjMgMS40MjMgMCAxMC0uOS0yLjdMNiAxMCAwIDh6TTAgMTN2M2w2IDIgNS4wMjctMS42NzZhMS40MjMgMS40MjMgMCAxMC0uOS0yLjdMNiAxNWwtNi0yek0wIDE4djJoMTJ2LS4wMjZjMC0uOTcxLS45NTItMS42NTctMS44NzMtMS4zNUw2IDIwbC02LTJ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+');
|
|
70
|
+
@bgg-pattern-crosses-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ3Jvc3NlcyBMaWdodCIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX2Nyb3NzZXNMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAxYTEgMSAwIDAwLTEtMUgwdjJoM3YzSDB2MmgzdjNIMHYyaDN2M0gwdjJoM3YzaDJ2LTNoMnYzaDJ2LTNoMmExIDEgMCAxMDAtMkg5di0zaDJhMSAxIDAgMTAwLTJIOVY3aDJhMSAxIDAgMTAwLTJIOVYyaDJhMSAxIDAgMDAxLTF6TTcgMkg1djNoMlYyem0wIDVINXYzaDJWN3ptMCA1SDV2M2gydi0zeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==');
|
|
71
|
+
@bgg-pattern-crosshatch-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iQ3Jvc3NoYXRjaCBMaWdodCIgY2xhc3M9ImQtc3ZnIGQtc3ZnLS1zeXN0ZW0gZC1zdmdfX2Nyb3NzaGF0Y2hMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTMgMEgwdjIuNWExLjUgMS41IDAgMTAzIDBWMHpNMCAxNy41VjIwaDN2LTIuNWExLjUgMS41IDAgMDAtMyAwek04IDIwSDV2LTIuNWExLjUgMS41IDAgMDEzIDBWMjB6TTEzIDIwaC0zdi0yLjVhMS41IDEuNSAwIDAxMyAwVjIwek0xMCAwaDN2Mi41YTEuNSAxLjUgMCAwMS0zIDBWMHpNNSAwaDN2Mi41YTEuNSAxLjUgMCAxMS0zIDBWMHpNMCAxMy41YTEgMSAwIDAxMS0xaDExYTEgMSAwIDExMCAySDFhMSAxIDAgMDEtMS0xek0wIDEwYTEgMSAwIDAwMSAxaDExYTEgMSAwIDEwMC0ySDFhMSAxIDAgMDAtMSAxek0wIDYuNWExIDEgMCAwMDEgMWgxMWExIDEgMCAxMDAtMkgxYTEgMSAwIDAwLTEgMXoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=');
|
|
72
|
+
@bgg-pattern-dot-dash-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iRG90IERhc2ggTGlnaHQiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19kb3REYXNoTGlnaHQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik01LjE0MyA0LjgxOFYwSDB2NC44MThjMCAxLjQwNiAxLjE1MSAyLjU0NiAyLjU3MSAyLjU0NiAxLjQyIDAgMi41NzItMS4xNCAyLjU3Mi0yLjU0NnpNMCAxOC4zOTRWMjBoNS4xNDN2LTEuNjA2YzAtMS40MDYtMS4xNTEtMi41NDUtMi41NzItMi41NDUtMS40MiAwLTIuNTcxIDEuMTQtMi41NzEgMi41NDV6TTEyIDIwSDYuODU3di02LjY5N2MwLTEuNDA2IDEuMTUxLTIuNTQ1IDIuNTcyLTIuNTQ1IDEuNDIgMCAyLjU3MSAxLjE0IDIuNTcxIDIuNTQ1VjIwek0xMS45ODUgMEg2Ljg3MmEyLjU2MiAyLjU2MiAwIDAwMi41NTcgMi4yNzNjMS4zMjcgMCAyLjQxOS0uOTk1IDIuNTU2LTIuMjczek0wIDExLjYwNkMwIDEwLjIgMS4xNTEgOS4wNjEgMi41NzEgOS4wNjFjMS40MiAwIDIuNTcyIDEuMTQgMi41NzIgMi41NDUgMCAxLjQwNi0xLjE1MSAyLjU0Ni0yLjU3MiAyLjU0Ni0xLjQyIDAtMi41NzEtMS4xNC0yLjU3MS0yLjU0NnpNMTIgNi41MTVDMTIgNS4xMSAxMC44NDkgMy45NyA5LjQyOSAzLjk3Yy0xLjQyIDAtMi41NzIgMS4xNC0yLjU3MiAyLjU0NSAwIDEuNDA2IDEuMTUxIDIuNTQ2IDIuNTcyIDIuNTQ2QzEwLjg0OSA5LjA2IDEyIDcuOTIgMTIgNi41MTV6IiBmaWxsPSIjZmZmIi8+PC9zdmc+');
|
|
73
|
+
@bgg-pattern-dots-circles-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iRG90cyBDaXJjbGVzIExpZ2h0IiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fZG90c0NpcmNsZXNMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEyIDBINmEyIDIgMCAwMDIgMmg0VjB6TTQgMEgwdjRoNGEyIDIgMCAxMDAtNHpNMCAxMS41MzV2Ni45M2E0IDQgMCAxMDAtNi45M3pNMTIgMjBINmEyIDIgMCAwMTItMmg0djJ6TTYgOS41YTIgMiAwIDAxMi0yaDR2NEg4YTIgMiAwIDAxLTItMnpNLjUgNy41YTEuNSAxLjUgMCAxMTMgMCAxLjUgMS41IDAgMDEtMyAwek0xMCAzLjVhMSAxIDAgMTAwIDIgMSAxIDAgMDAwLTJ6TTEwIDEzLjVhMS41IDEuNSAwIDEwMCAzIDEuNSAxLjUgMCAwMDAtM3oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=');
|
|
74
|
+
@bgg-pattern-horz-stripes-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iSG9yeiBTdHJpcGVzIExpZ2h0IiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19faG9yelN0cmlwZXNMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEwLjQxMiAzSDBWMGgxMC40MTJDMTEuMjg5IDAgMTIgLjY3MiAxMiAxLjVTMTEuMjg5IDMgMTAuNDEyIDN6TTAgMThoMTAuNDEyYy44NzcgMCAxLjU4OC0uNjcyIDEuNTg4LTEuNXMtLjcxMS0xLjUtMS41ODgtMS41SDB2M3pNMCAxM2gxMC40MTJjLjg3NyAwIDEuNTg4LS42NzIgMS41ODgtMS41cy0uNzExLTEuNS0xLjU4OC0xLjVIMHYzek0wIDhoMTAuNDEyQzExLjI4OSA4IDEyIDcuMzI4IDEyIDYuNVMxMS4yODkgNSAxMC40MTIgNUgwdjN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+');
|
|
75
|
+
@bgg-pattern-slanted-stripes-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU2xhbnRlZCBTdHJpcGVzIExpZ2h0IiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fc2xhbnRlZFN0cmlwZXNMaWdodCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTggMEgwdjRsOC00ek0wIDV2NGwxMi02VjBoLTJMMCA1ek0xMiAyMHYtMWwtMiAxaDJ6TTggMjBsNC0ydi00TDAgMjBoOHpNMCAxOWwxMi02VjlMMCAxNXY0ek0wIDE0bDEyLTZWNEwwIDEwdjR6IiBmaWxsPSIjZmZmIi8+PC9zdmc+');
|
|
76
|
+
@bgg-pattern-steps-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU3RlcHMgTGlnaHQiIGNsYXNzPSJkLXN2ZyBkLXN2Zy0tc3lzdGVtIGQtc3ZnX19zdGVwc0xpZ2h0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMCAwdi41YTEuNSAxLjUgMCAxMDMgMFYwSDB6TTEwIDIwYTIgMiAwIDAwMi0ydi0xLjVhMS41IDEuNSAwIDAwLTMgMHYuNUgyYTIgMiAwIDAwLTIgMnYxaDEwek0wIDEzLjVhMS41IDEuNSAwIDAwMyAwVjEzaDdhMiAyIDAgMDAyLTJWOS41YTEuNSAxLjUgMCAwMC0zIDB2LjVIMmEyIDIgMCAwMC0yIDJ2MS41ek0wIDYuNWExLjUgMS41IDAgMTAzIDBWNmg3YTIgMiAwIDAwMi0yVjIuNWExLjUgMS41IDAgMDAtMyAwVjNIMmEyIDIgMCAwMC0yIDJ2MS41eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==');
|
|
77
|
+
@bgg-pattern-stripe-light: url('data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgYXJpYS1sYWJlbD0iU3RyaXBlIExpZ2h0IiBjbGFzcz0iZC1zdmcgZC1zdmctLXN5c3RlbSBkLXN2Z19fc3RyaXBlTGlnaHQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik00IDIwSDJWMGgydjIwek05IDIwSDVWMGg0djIwek0xMiAyMGgtMlYwaDJ2MjB6IiBmaWxsPSIjZmZmIi8+PC9zdmc+');
|