@castlabs/ui 4.18.2

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.
Files changed (140) hide show
  1. package/README.md +94 -0
  2. package/dist/assets/castlabs-logo.svg +2 -0
  3. package/dist/assets/cookie.svg +1 -0
  4. package/dist/castlabs-ui-editor.common.js +23189 -0
  5. package/dist/castlabs-ui-editor.common.js.map +1 -0
  6. package/dist/castlabs-ui-editor.css +1 -0
  7. package/dist/castlabs-ui-editor.umd.js +23208 -0
  8. package/dist/castlabs-ui-editor.umd.js.map +1 -0
  9. package/dist/castlabs-ui-editor.umd.min.js +10 -0
  10. package/dist/castlabs-ui-editor.umd.min.js.map +1 -0
  11. package/dist/castlabs-ui.common.js +6828 -0
  12. package/dist/castlabs-ui.common.js.map +1 -0
  13. package/dist/castlabs-ui.core.js +1031 -0
  14. package/dist/castlabs-ui.css +12 -0
  15. package/dist/castlabs-ui.module.d.ts +83 -0
  16. package/dist/castlabs-ui.module.js +1031 -0
  17. package/dist/castlabs-ui.umd.js +6847 -0
  18. package/dist/castlabs-ui.umd.js.map +1 -0
  19. package/dist/castlabs-ui.umd.min.js +8 -0
  20. package/dist/castlabs-ui.umd.min.js.map +1 -0
  21. package/dist/demo.html +1 -0
  22. package/dist/favicon/192.png +0 -0
  23. package/dist/favicon/512.png +0 -0
  24. package/dist/favicon/apple-touch-icon.png +0 -0
  25. package/dist/favicon/favicon-unread.svg +75 -0
  26. package/dist/favicon/favicon.ico +0 -0
  27. package/dist/favicon/favicon.svg +43 -0
  28. package/dist/favicon/manifest.webmanifest +6 -0
  29. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCCwR26eg.f31394d2.woff2 +0 -0
  30. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCFwR26eg.00073a59.woff2 +0 -0
  31. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCGwR0.faa92a75.woff2 +0 -0
  32. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCIwR26eg.f8e38fba.woff2 +0 -0
  33. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCJwR26eg.f1d5cd16.woff2 +0 -0
  34. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCKwR26eg.ebbe259f.woff2 +0 -0
  35. package/dist/fonts/BngRUXNETWXI6LwhGYvaxZikqbCLwR26eg.e3d460d0.woff2 +0 -0
  36. package/dist/fonts/fa-brands-400.18993be8.woff2 +0 -0
  37. package/dist/fonts/fa-regular-400.e45bb696.woff2 +0 -0
  38. package/dist/fonts/fa-solid-900.16e3d2f0.woff2 +0 -0
  39. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0Udc1UAw.6de93dc1.woff2 +0 -0
  40. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0Wdc1UAw.55c9461f.woff2 +0 -0
  41. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0Xdc1UAw.111f8c99.woff2 +0 -0
  42. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0Zdc0.92257a03.woff2 +0 -0
  43. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0adc1UAw.1844ded3.woff2 +0 -0
  44. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0bdc1UAw.719267ea.woff2 +0 -0
  45. package/dist/fonts/mem6YaGs126MiZpBA-UFUK0ddc1UAw.037dea2d.woff2 +0 -0
  46. package/dist/fonts/mem8YaGs126MiZpBA-UFUZ0bbck.6869bd80.woff2 +0 -0
  47. package/dist/fonts/mem8YaGs126MiZpBA-UFV50bbck.05a41692.woff2 +0 -0
  48. package/dist/fonts/mem8YaGs126MiZpBA-UFVZ0b.38ffdf27.woff2 +0 -0
  49. package/dist/fonts/mem8YaGs126MiZpBA-UFVp0bbck.f12c0c2c.woff2 +0 -0
  50. package/dist/fonts/mem8YaGs126MiZpBA-UFW50bbck.03f14837.woff2 +0 -0
  51. package/dist/fonts/mem8YaGs126MiZpBA-UFWJ0bbck.abcca84a.woff2 +0 -0
  52. package/dist/fonts/mem8YaGs126MiZpBA-UFWp0bbck.4d1e267c.woff2 +0 -0
  53. package/package.json +71 -0
  54. package/plugins/uid/index.js +16 -0
  55. package/plugins/uid/index.ts +16 -0
  56. package/src/assets/castlabs-logo.svg +2 -0
  57. package/src/assets/cookie.svg +1 -0
  58. package/src/components/ClAlert/style.scss +117 -0
  59. package/src/components/ClBadge/style.scss +122 -0
  60. package/src/components/ClButton/style.scss +338 -0
  61. package/src/components/ClCard/style.scss +61 -0
  62. package/src/components/ClCard/style.variables.scss +179 -0
  63. package/src/components/ClDropdown/style.scss +272 -0
  64. package/src/components/ClDropzone/style.scss +21 -0
  65. package/src/components/ClFooter/style.scss +119 -0
  66. package/src/components/ClIcon/style.scss +58 -0
  67. package/src/components/ClIconotron/style.scss +86 -0
  68. package/src/components/ClList/style.scss +93 -0
  69. package/src/components/ClList/style.variables.scss +133 -0
  70. package/src/components/ClListGroup/style.scss +9 -0
  71. package/src/components/ClPagination/style.scss +123 -0
  72. package/src/components/ClProgress/style.scss +49 -0
  73. package/src/components/ClScrollbar/style.scss +14 -0
  74. package/src/components/ClSpinner/style.scss +26 -0
  75. package/src/components/ClTabs/style.scss +90 -0
  76. package/src/components/ClToggle/style.scss +97 -0
  77. package/src/components/ClTooltip/style.scss +46 -0
  78. package/src/components/ClWizard/style.scss +173 -0
  79. package/src/components/form/ClField/style.scss +45 -0
  80. package/src/components/form/ClFieldCheck/style.scss +99 -0
  81. package/src/components/form/ClFieldFile/style.scss +71 -0
  82. package/src/components/form/ClFieldGroup/style.scss +73 -0
  83. package/src/components/form/ClFieldInput/style.scss +118 -0
  84. package/src/components/form/ClFieldSelect/style.scss +39 -0
  85. package/src/components/form/ClFieldSet/style.scss +16 -0
  86. package/src/components/form/ClForm/style.scss +87 -0
  87. package/src/components/modal/ClModal/style.scss +138 -0
  88. package/src/components/navigation/ClNavSide/ClNavDrawer/style.scss +444 -0
  89. package/src/components/navigation/ClNavSide/ClNavSideMenu/style.scss +51 -0
  90. package/src/components/navigation/ClNavSide/style.scss +81 -0
  91. package/src/components/navigation/ClNavTop/style.scss +305 -0
  92. package/src/components/section/ClSectionHeadline/style.scss +49 -0
  93. package/src/components/section/ClSectionMainSide/style.scss +60 -0
  94. package/src/components/table/ClTable/style.scss +23 -0
  95. package/src/components/table/ClTable/style.variables.scss +155 -0
  96. package/src/components/table/ClTableCel/Actions/style.scss +11 -0
  97. package/src/components/table/ClTableCel/Audit/style.scss +26 -0
  98. package/src/components/table/ClTableCel/Boolean/style.scss +12 -0
  99. package/src/components/table/ClTableCel/Checkbox/style.scss +18 -0
  100. package/src/components/table/ClTableCel/Code/style.scss +13 -0
  101. package/src/components/table/ClTableCel/Currency/style.scss +9 -0
  102. package/src/components/table/ClTableCel/Date/style.scss +12 -0
  103. package/src/components/table/ClTableCel/ID/style.scss +16 -0
  104. package/src/components/table/ClTableCel/Links/style.scss +44 -0
  105. package/src/components/table/ClTableCel/style.scss +7 -0
  106. package/src/components/table/ClTableCel/style.variables.scss +25 -0
  107. package/src/components/table/ClTableFootChecked/style.scss +2 -0
  108. package/src/components/table/ClTableHead/style.scss +36 -0
  109. package/src/components/text/ClCopy/style.scss +42 -0
  110. package/src/components/text/ClHashtag/style.scss +31 -0
  111. package/src/components/text/ClLinkExternal/style.scss +147 -0
  112. package/src/components/text/ClOrg/style.scss +40 -0
  113. package/src/components/text/ClPlan/style.scss +35 -0
  114. package/src/components/text/ClRole/style.scss +39 -0
  115. package/src/components/widget/ClBackCancelOk/style.scss +3 -0
  116. package/src/components/widget/ClCookieBanner/style.scss +40 -0
  117. package/src/components/widget/ClPage/style.scss +11 -0
  118. package/src/fonts/FontAwesome5/FontAwesome5.scss +6121 -0
  119. package/src/fonts/NotoSansMono/NotoSansMono.scss +82 -0
  120. package/src/fonts/OpenSansVariable/OpenSansVariable.scss +183 -0
  121. package/src/styles/_global.scss +70 -0
  122. package/src/styles/abstracts/color.scss +127 -0
  123. package/src/styles/abstracts/layer.scss +10 -0
  124. package/src/styles/abstracts/spacing.scss +35 -0
  125. package/src/styles/abstracts/tools.scss +117 -0
  126. package/src/styles/assets/logo.scss +22 -0
  127. package/src/styles/components/button.variables.scss +18 -0
  128. package/src/styles/components/form.variables.scss +51 -0
  129. package/src/styles/layout/animation.scss +39 -0
  130. package/src/styles/layout/grid.scss +144 -0
  131. package/src/styles/layout/grid.variables.scss +50 -0
  132. package/src/styles/layout/section.scss +90 -0
  133. package/src/styles/layout/spacing.scss +295 -0
  134. package/src/styles/layout/typography.scss +321 -0
  135. package/src/styles/layout/typography.variables.scss +363 -0
  136. package/src/styles/ui.scss +98 -0
  137. package/src/styles/vendors/bootstrap.scss +28 -0
  138. package/src/styles/vendors/castlabs.scss +17 -0
  139. package/types/castlabs-ui.module.d.ts +83 -0
  140. package/types/index.d.ts +140 -0
@@ -0,0 +1,82 @@
1
+ // https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wdth,wght@80..100,100..900
2
+
3
+ /* cyrillic-ext */
4
+ @font-face {
5
+ font-family: 'Noto Sans Mono';
6
+ font-stretch: 80% 100%;
7
+ font-style: normal;
8
+ font-weight: 100 900;
9
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCLwR26eg.woff2')
10
+ format('woff2');
11
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
12
+ }
13
+
14
+ /* cyrillic */
15
+ @font-face {
16
+ font-family: 'Noto Sans Mono';
17
+ font-stretch: 80% 100%;
18
+ font-style: normal;
19
+ font-weight: 100 900;
20
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCCwR26eg.woff2')
21
+ format('woff2');
22
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
23
+ }
24
+
25
+ /* greek-ext */
26
+ @font-face {
27
+ font-family: 'Noto Sans Mono';
28
+ font-stretch: 80% 100%;
29
+ font-style: normal;
30
+ font-weight: 100 900;
31
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCKwR26eg.woff2')
32
+ format('woff2');
33
+ unicode-range: U+1F00-1FFF;
34
+ }
35
+
36
+ /* greek */
37
+ @font-face {
38
+ font-family: 'Noto Sans Mono';
39
+ font-stretch: 80% 100%;
40
+ font-style: normal;
41
+ font-weight: 100 900;
42
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCFwR26eg.woff2')
43
+ format('woff2');
44
+ unicode-range: U+0370-03FF;
45
+ }
46
+
47
+ /* vietnamese */
48
+ @font-face {
49
+ font-family: 'Noto Sans Mono';
50
+ font-stretch: 80% 100%;
51
+ font-style: normal;
52
+ font-weight: 100 900;
53
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCJwR26eg.woff2')
54
+ format('woff2');
55
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
56
+ U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
57
+ }
58
+
59
+ /* latin-ext */
60
+ @font-face {
61
+ font-family: 'Noto Sans Mono';
62
+ font-stretch: 80% 100%;
63
+ font-style: normal;
64
+ font-weight: 100 900;
65
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCIwR26eg.woff2')
66
+ format('woff2');
67
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
68
+ U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
69
+ }
70
+
71
+ /* latin */
72
+ @font-face {
73
+ font-family: 'Noto Sans Mono';
74
+ font-stretch: 80% 100%;
75
+ font-style: normal;
76
+ font-weight: 100 900;
77
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/NotoSansMono/BngRUXNETWXI6LwhGYvaxZikqbCGwR0.woff2')
78
+ format('woff2');
79
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
80
+ U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
81
+ U+FFFD;
82
+ }
@@ -0,0 +1,183 @@
1
+ // https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,80..100,300..800;1,80..100,300..800
2
+
3
+ /* cyrillic-ext */
4
+ @font-face {
5
+ font-family: 'Open Sans';
6
+ font-stretch: 80% 100%;
7
+ font-style: italic;
8
+ font-weight: 300 800;
9
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0Udc1UAw.woff2')
10
+ format('woff2');
11
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
12
+ }
13
+
14
+ /* cyrillic */
15
+ @font-face {
16
+ font-family: 'Open Sans';
17
+ font-stretch: 80% 100%;
18
+ font-style: italic;
19
+ font-weight: 300 800;
20
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0ddc1UAw.woff2')
21
+ format('woff2');
22
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
23
+ }
24
+
25
+ /* greek-ext */
26
+ // @font-face {
27
+ // font-family: 'Open Sans';
28
+ // font-style: italic;
29
+ // font-weight: 300 800;
30
+ // font-stretch: 80% 100%;
31
+ // src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0Vdc1UAw.woff2') format('woff2');
32
+ // unicode-range: U+1F00-1FFF;
33
+ // }
34
+
35
+ /* greek */
36
+ @font-face {
37
+ font-family: 'Open Sans';
38
+ font-stretch: 80% 100%;
39
+ font-style: italic;
40
+ font-weight: 300 800;
41
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0adc1UAw.woff2')
42
+ format('woff2');
43
+ unicode-range: U+0370-03FF;
44
+ }
45
+
46
+ /* hebrew */
47
+ @font-face {
48
+ font-family: 'Open Sans';
49
+ font-stretch: 80% 100%;
50
+ font-style: italic;
51
+ font-weight: 300 800;
52
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0bdc1UAw.woff2')
53
+ format('woff2');
54
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
55
+ }
56
+
57
+ /* vietnamese */
58
+ @font-face {
59
+ font-family: 'Open Sans';
60
+ font-stretch: 80% 100%;
61
+ font-style: italic;
62
+ font-weight: 300 800;
63
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0Wdc1UAw.woff2')
64
+ format('woff2');
65
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
66
+ U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
67
+ }
68
+
69
+ /* latin-ext */
70
+ @font-face {
71
+ font-family: 'Open Sans';
72
+ font-stretch: 80% 100%;
73
+ font-style: italic;
74
+ font-weight: 300 800;
75
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0Xdc1UAw.woff2')
76
+ format('woff2');
77
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
78
+ U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
79
+ }
80
+
81
+ /* latin */
82
+ @font-face {
83
+ font-family: 'Open Sans';
84
+ font-stretch: 80% 100%;
85
+ font-style: italic;
86
+ font-weight: 300 800;
87
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem6YaGs126MiZpBA-UFUK0Zdc0.woff2')
88
+ format('woff2');
89
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
90
+ U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
91
+ U+FFFD;
92
+ }
93
+
94
+ /* cyrillic-ext */
95
+ @font-face {
96
+ font-family: 'Open Sans';
97
+ font-stretch: 80% 100%;
98
+ font-style: normal;
99
+ font-weight: 300 800;
100
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFWJ0bbck.woff2')
101
+ format('woff2');
102
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
103
+ }
104
+
105
+ /* cyrillic */
106
+ @font-face {
107
+ font-family: 'Open Sans';
108
+ font-stretch: 80% 100%;
109
+ font-style: normal;
110
+ font-weight: 300 800;
111
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFUZ0bbck.woff2')
112
+ format('woff2');
113
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
114
+ }
115
+
116
+ /* greek-ext */
117
+ // @font-face {
118
+ // font-family: 'Open Sans';
119
+ // font-style: normal;
120
+ // font-weight: 300 800;
121
+ // font-stretch: 80% 100%;
122
+ // src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFWZ0bbck.woff2') format('woff2');
123
+ // unicode-range: U+1F00-1FFF;
124
+ // }
125
+
126
+ /* greek */
127
+ @font-face {
128
+ font-family: 'Open Sans';
129
+ font-stretch: 80% 100%;
130
+ font-style: normal;
131
+ font-weight: 300 800;
132
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFVp0bbck.woff2')
133
+ format('woff2');
134
+ unicode-range: U+0370-03FF;
135
+ }
136
+
137
+ /* hebrew */
138
+ @font-face {
139
+ font-family: 'Open Sans';
140
+ font-stretch: 80% 100%;
141
+ font-style: normal;
142
+ font-weight: 300 800;
143
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFV50bbck.woff2')
144
+ format('woff2');
145
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
146
+ }
147
+
148
+ /* vietnamese */
149
+ @font-face {
150
+ font-family: 'Open Sans';
151
+ font-stretch: 80% 100%;
152
+ font-style: normal;
153
+ font-weight: 300 800;
154
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFWp0bbck.woff2')
155
+ format('woff2');
156
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
157
+ U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
158
+ }
159
+
160
+ /* latin-ext */
161
+ @font-face {
162
+ font-family: 'Open Sans';
163
+ font-stretch: 80% 100%;
164
+ font-style: normal;
165
+ font-weight: 300 800;
166
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFW50bbck.woff2')
167
+ format('woff2');
168
+ unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
169
+ U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
170
+ }
171
+
172
+ /* latin */
173
+ @font-face {
174
+ font-family: 'Open Sans';
175
+ font-stretch: 80% 100%;
176
+ font-style: normal;
177
+ font-weight: 300 800;
178
+ src: url('#{$castlabs-ui-asset-prefix}/fonts/OpenSansVariable/mem8YaGs126MiZpBA-UFVZ0b.woff2')
179
+ format('woff2');
180
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
181
+ U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
182
+ U+FFFD;
183
+ }
@@ -0,0 +1,70 @@
1
+ ////
2
+ /// @group global
3
+ /// @access public
4
+ ////
5
+
6
+ // This file defines all global variables and helper functions/mixins. It MUST
7
+ // NOT not output any css, as it will be included by every Vue component.
8
+
9
+ @use 'sass:math';
10
+
11
+ // -----------------------------------------------------------------------------
12
+
13
+ @import 'abstracts/tools';
14
+ @import 'abstracts/color';
15
+ @import 'abstracts/layer';
16
+ @import 'abstracts/spacing';
17
+ @import 'vendors/bootstrap';
18
+ @import 'bootstrap/scss/mixins/breakpoints';
19
+ @import 'layout/typography.variables';
20
+ @import 'layout/grid.variables';
21
+ @import 'components/button.variables';
22
+ @import 'components/form.variables';
23
+ @import '../components/ClList/style.variables';
24
+ @import '../components/table/ClTable/style.variables';
25
+ @import '../components/table/ClTableCel/style.variables';
26
+ @import '../components/ClCard/style.variables';
27
+ @import 'vendors/castlabs';
28
+
29
+ // --- spacings ----------------------------------------------------------------
30
+
31
+ %spacing-huge {
32
+ margin-top: $spacing-huge;
33
+ }
34
+
35
+ %spacing-large {
36
+ margin-top: $spacing-large;
37
+ }
38
+
39
+ %spacing-medium {
40
+ margin-top: $spacing-medium;
41
+ }
42
+
43
+ %spacing-small {
44
+ margin-top: $spacing-small;
45
+ }
46
+
47
+ %spacing-tiny {
48
+ margin-top: $spacing-tiny;
49
+ }
50
+
51
+ %spacing-micro {
52
+ margin-top: $spacing-micro;
53
+ }
54
+
55
+ %spacing-none {
56
+ margin-top: 0;
57
+ }
58
+
59
+ // --- other -------------------------------------------------------------------
60
+
61
+ @mixin focus-glow-embed($color) {
62
+ box-shadow: 0 0 0 $btn-focus-width rgba($color, 0.5); // sass-lint:disable-line no-color-literals
63
+ outline: 0;
64
+ }
65
+
66
+ @mixin focus-glow($color) {
67
+ &:focus {
68
+ @include focus-glow-embed($color);
69
+ }
70
+ }
@@ -0,0 +1,127 @@
1
+ ////
2
+ /// @group themes
3
+ /// @access public
4
+ ////
5
+
6
+ // Basic/generic color values.
7
+
8
+ $color-white-100: rgb(255 255 255 / 100%);
9
+ $color-white-95a: rgb(255 255 255 / 95%);
10
+ $color-white-90a: rgb(255 255 255 / 90%);
11
+ $color-white-85a: rgb(255 255 255 / 85%);
12
+ $color-white-80a: rgb(255 255 255 / 80%);
13
+ $color-white-75a: rgb(255 255 255 / 75%);
14
+ $color-white-70a: rgb(255 255 255 / 70%);
15
+ $color-white-65a: rgb(255 255 255 / 65%);
16
+ $color-white-60a: rgb(255 255 255 / 60%);
17
+ $color-white-55a: rgb(255 255 255 / 55%);
18
+ $color-white-50a: rgb(255 255 255 / 50%);
19
+ $color-white-45a: rgb(255 255 255 / 45%);
20
+ $color-white-40a: rgb(255 255 255 / 40%);
21
+ $color-white-35a: rgb(255 255 255 / 35%);
22
+ $color-white-30a: rgb(255 255 255 / 30%);
23
+ $color-white-25a: rgb(255 255 255 / 25%);
24
+ $color-white-20a: rgb(255 255 255 / 20%);
25
+ $color-white-15a: rgb(255 255 255 / 15%);
26
+ $color-white-10a: rgb(255 255 255 / 10%);
27
+ $color-white-05a: rgb(255 255 255 / 5%);
28
+
29
+ $color-gray-95: #0d0d0d;
30
+ $color-gray-90: #1a1a1a;
31
+ $color-gray-85: #262626;
32
+ $color-gray-80: #333;
33
+ $color-gray-75: #404040;
34
+ $color-gray-70: #4d4d4d;
35
+ $color-gray-65: #595959;
36
+ $color-gray-60: #666;
37
+ $color-gray-55: #737373;
38
+ $color-gray-50: #808080;
39
+ $color-gray-45: #8c8c8c;
40
+ $color-gray-40: #999;
41
+ $color-gray-35: #a6a6a6;
42
+ $color-gray-30: #b3b3b3;
43
+ $color-gray-25: #c0c0c0;
44
+ $color-gray-20: #ccc;
45
+ $color-gray-15: #d9d9d9;
46
+ $color-gray-10: #e6e6e6;
47
+ $color-gray-05: #f2f2f2;
48
+
49
+ $color-black-100: rgb(0 0 0 / 100%);
50
+ $color-black-95a: rgb(0 0 0 / 95%);
51
+ $color-black-90a: rgb(0 0 0 / 90%);
52
+ $color-black-85a: rgb(0 0 0 / 85%);
53
+ $color-black-80a: rgb(0 0 0 / 80%);
54
+ $color-black-75a: rgb(0 0 0 / 75%);
55
+ $color-black-70a: rgb(0 0 0 / 70%);
56
+ $color-black-65a: rgb(0 0 0 / 65%);
57
+ $color-black-60a: rgb(0 0 0 / 60%);
58
+ $color-black-55a: rgb(0 0 0 / 55%);
59
+ $color-black-50a: rgb(0 0 0 / 50%);
60
+ $color-black-45a: rgb(0 0 0 / 45%);
61
+ $color-black-40a: rgb(0 0 0 / 40%);
62
+ $color-black-35a: rgb(0 0 0 / 35%);
63
+ $color-black-30a: rgb(0 0 0 / 30%);
64
+ $color-black-25a: rgb(0 0 0 / 25%);
65
+ $color-black-20a: rgb(0 0 0 / 20%);
66
+ $color-black-15a: rgb(0 0 0 / 15%);
67
+ $color-black-10a: rgb(0 0 0 / 10%);
68
+ $color-black-05a: rgb(0 0 0 / 5%);
69
+
70
+ $color-ci-red: #d2232a;
71
+ $color-ci-blue: #2a80d5; // was #0474dc;
72
+ $color-ci-night: $color-gray-90;
73
+ $color-ci-dusk: $color-gray-75;
74
+ $color-ci-dim: $color-gray-65;
75
+ $color-ci-cloud: #757371;
76
+ $color-ci-silver: #b0b3b6; // ~ $color-gray-30
77
+ $color-ci-smoke: #dad6d6; // ~ $color-gray-15
78
+ $color-ci-haze: #f6f5f5; // ~ $color-gray-05
79
+ $color-ci-white: $color-white-100;
80
+ $color-ci-sand: #fdf5cf;
81
+
82
+ $color-ci-green: #3fa261; //2a7a5c; // not used - AA contrast rating
83
+ $color-ci-orange: #e6a707; // fec671; //f18f01;
84
+ $color-ci-magenta: #802392;
85
+ // $color-ci-violet: #805d93; // not used
86
+ // $color-ci-orange: #ffba08; // not used
87
+ // $color-ci-green: #4cb944; // not used
88
+
89
+ $color-ui-milk: rgb(255 255 255 / 90%);
90
+
91
+ $color-primary: $color-ci-red;
92
+ $color-secondary: $color-ci-blue;
93
+ $color-dark: $color-ci-cloud;
94
+
95
+ $color-hover-opacity: 0.75;
96
+
97
+ $color-positive: $color-ci-dim;
98
+ $color-negative: $color-ci-blue;
99
+ $color-neutral: $color-ci-dim;
100
+
101
+ $color-attention: $color-ci-blue;
102
+
103
+ $color-text: $color-ci-dim;
104
+ $color-background: $color-white-100;
105
+ $color-code-background: rgb(16 0 0 / 5%); // transparent to work on different colors
106
+
107
+ $color-line: $color-ci-smoke;
108
+ $color-line-focus: $color-ci-silver;
109
+
110
+ $color-shadow: $color-black-20a;
111
+ $color-shadow-3d: 1px 1px 2px $color-black-25a;
112
+ $border-ui-radius: 3px;
113
+ $bar-ui-width: px(4);
114
+
115
+ @mixin color-shadow-3d {
116
+ border-radius: $border-ui-radius;
117
+ box-shadow: $color-shadow-3d;
118
+ overflow: hidden;
119
+ }
120
+
121
+ @mixin color-focus-outline($color: $color-text, $offset: -2px) {
122
+ &:focus {
123
+ outline: 1px dashed $color;
124
+ outline-offset: $offset;
125
+ z-index: 100;
126
+ }
127
+ }
@@ -0,0 +1,10 @@
1
+ ////
2
+ /// @group themes
3
+ /// @access public
4
+ ////
5
+
6
+ // Layering / z-index of app
7
+
8
+ $layer-z-modal: 2000;
9
+ $layer-z-sidenav: 1000;
10
+ $layer-z-content: 0;
@@ -0,0 +1,35 @@
1
+ ////
2
+ /// @group themes
3
+ /// @access public
4
+ ////
5
+
6
+ // Our global spacing values.
7
+
8
+ $spacing-none: px(0);
9
+ $spacing-micro: px(4);
10
+ $spacing-tiny: px(8);
11
+ $spacing-small: px(16);
12
+ $spacing-medium: px(24);
13
+ $spacing-large: px(48);
14
+ $spacing-huge: px(64);
15
+
16
+ $header-nav-height: px(40);
17
+ $header-headline-height: px(80);
18
+
19
+ @mixin spacing-before-auto($value) {
20
+ margin-bottom: 0;
21
+ margin-top: $value;
22
+
23
+ &:first-child {
24
+ margin-top: $value - $spacing-small;
25
+ }
26
+ }
27
+
28
+ @mixin spacing-before($margin-top) {
29
+ // move (default) margin to bottom of element
30
+ margin-top: $margin-top;
31
+
32
+ &:first-child {
33
+ margin-top: $margin-top;
34
+ }
35
+ }
@@ -0,0 +1,117 @@
1
+ ////
2
+ /// @group abstracts
3
+ /// @access public
4
+ ////
5
+
6
+ @use 'sass:math';
7
+
8
+ /// Convert a px-length to rems. Will stick with pixels
9
+ /// for small sizes. Based on 16px root font size.
10
+ ///
11
+ /// @example scss
12
+ /// px(32)
13
+ ///
14
+ /// @param {length} $px Amout to convert without units, e.g. `32`.
15
+ /// @return {length} Corresponding rem value, e.g. `2rem`.
16
+ @function px($px) {
17
+ @return (math.div(math.round(math.div(1rem, 16) * $px * 16), 16)); // based on 16px = 1rem
18
+ }
19
+
20
+ /// Set a property only if it is not equal to another value.
21
+ ///
22
+ /// Useful to minizize / avoid duplicate responsive rules.
23
+ ///
24
+ /// @example scss
25
+ /// set-property-if-not(font-size, $somesize, 2rem)
26
+ ///
27
+ /// @param {property} $property Property to (not) set.
28
+ /// @param {value} $old-value Old value to check against.
29
+ /// @param {value} $new-value New value to set.
30
+ /// @output Property clause or nothing.
31
+ @mixin set-property-if-not($property, $old-value, $new-value) {
32
+ @if $old-value != $new-value {
33
+ #{$property}: $new-value;
34
+ }
35
+ }
36
+
37
+ /// Add a fontawesome icon via codepoint.
38
+ ///
39
+ /// @example scss
40
+ /// @include cl-fontawesome('\f2bd');
41
+ ///
42
+ /// @param {value} $content UTF8 codepoint.
43
+ /// @output Property clause.
44
+ @mixin cl-fontawesome($codepoint) {
45
+ content: $codepoint;
46
+ display: inline-block;
47
+ font-family: 'Font Awesome 5 Free';
48
+ font-weight: 900;
49
+ line-height: 1;
50
+ position: relative;
51
+ top: 0.1em;
52
+ }
53
+
54
+ /// Add a fontawesome icon ::after an element.
55
+ ///
56
+ /// @example scss
57
+ /// @include cl-fontawesome-after('\f2bd', 0, .5em, .25em);
58
+ ///
59
+ /// @param {value} $codepoint UTF8 codepoint.
60
+ /// @param {value} $offset Optional horizontal offset (em). Defaults to 0.
61
+ /// @param {value} $scale Optinal icon scale (font-size) of the icon. Defaults to 1.
62
+ /// @param {value} $top Optional vertical offset (em). Defaults to 0.
63
+ /// @output ::after element.
64
+ @mixin cl-fontawesome-after($codepoint, $offset: 0, $scale: 1em, $top: 0) {
65
+ $cl-fontawesome-box: 1em;
66
+
67
+ margin-right: $cl-fontawesome-box;
68
+ white-space: nowrap;
69
+
70
+ &::after {
71
+ @include cl-fontawesome($codepoint);
72
+
73
+ & {
74
+ @include set-property-if-not(font-size, 1em, $scale);
75
+
76
+ font-weight: 400;
77
+ left: $offset;
78
+ opacity: 0.5;
79
+ position: relative;
80
+ top: $top;
81
+ width: 0;
82
+ }
83
+ }
84
+ }
85
+
86
+ /// Add a fontawesome icon ::before an element.
87
+ ///
88
+ /// @example scss
89
+ /// @include cl-fontawesome-before('\f2bd', 0, .5em, .25em);
90
+ ///
91
+ /// @param {value} $codepoint UTF8 codepoint.
92
+ /// @param {value} $offset Optional horizontal offset (em). Defaults to 0.
93
+ /// @param {value} $scale Optinal icon scale (font-size) of the icon. Defaults to 1.
94
+ /// @param {value} $top Optional vertical offset (em). Defaults to 0.
95
+ /// @output ::before element.
96
+ @mixin cl-fontawesome-before($codepoint, $offset: 0, $scale: 1em, $top: 0) {
97
+ $cl-fontawesome-box: 1em;
98
+
99
+ margin-left: $cl-fontawesome-box;
100
+ white-space: nowrap;
101
+
102
+ &::before {
103
+ @include cl-fontawesome($codepoint);
104
+
105
+ & {
106
+ @include set-property-if-not(font-size, 1em, $scale);
107
+
108
+ font-weight: 400;
109
+ opacity: 0.5;
110
+ position: relative;
111
+ right: $cl-fontawesome-box - $offset;
112
+ text-align: right;
113
+ top: $top;
114
+ width: 0;
115
+ }
116
+ }
117
+ }
@@ -0,0 +1,22 @@
1
+ ////
2
+ /// @group global
3
+ /// @access public
4
+ ////
5
+
6
+ // This file contains inline css assets.
7
+
8
+ .cl-asset-logo {
9
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgNTAiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+IC5zdDB7ZmlsbDojRDIyMzJBO30gLnN0MXtmaWxsOiNGRkZGRkY7fSA8L3N0eWxlPjxyZWN0IGNsYXNzPSJzdDAiIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIvPjxyZWN0IHg9IjUxLjUiIGNsYXNzPSJzdDAiIHdpZHRoPSIxOTguNSIgaGVpZ2h0PSI1MCIvPjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNSA0Mi4zYzEuNy0yLjQgOS4xLTEyLjkgMTEuNC0xNi44IC0wLjgtMi4zLTYuNS0xNC44LTcuOS0xNy4ybDIuMi0xLjdDMjMuOCAxMC44IDMxIDIxIDM0LjUgMjUuNSAzMiAyOC4xIDIxLjMgMzkuMyAxNi44IDQ0TDE1IDQyLjN6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTcyLjQgMzkuM2MtMSAwLjctMi45IDEuNi02IDEuNiAtNC4zIDAtOC44LTIuNS04LjgtOCAwLTcuMiA1LjEtMTAuMyA5LjctMTAuMyAxLjggMCAzLjUgMC40IDQuNCAxLjEgMCAwLjgtMC40IDEuOS0xIDIuOGgtMC4yYy0wLjYtMC44LTItMi4xLTQuNC0yLjEgLTIuNyAwLTUgMi4yLTUgNi40IDAgNiAzLjEgOC44IDcuNCA4LjggMS41IDAgMy4xLTAuOSAzLjYtMS4yTDcyLjQgMzkuM3oiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTcuNSA0MGMtMC41IDAuMy0xLjMgMC45LTIuOSAwLjkgLTEuOSAwLTIuNi0wLjgtMy0xLjYgLTEuMiAwLjgtMi42IDEuNi01LjYgMS42IC0yLjggMC00LjctMS42LTQuNy0zLjcgMC00LjkgNi41LTYuNCA5LjktNy40VjI5YzAtMi41LTAuNy00LjYtMy41LTQuNiAtMyAwLTQgMi40LTQuNyAzLjhoLTAuM2MtMC40LTAuNS0wLjctMC44LTEtMS41IDEuMS0xLjUgMy41LTQgNy42LTQgNC4zIDAgNS4yIDIuMyA1LjIgNi4xdjUuNGMwIDIuNiAwIDUuNSAyLjEgNS41IDAuNCAwIDAuNS0wLjEgMC43LTAuMkw5Ny41IDQwek05MC44IDMxLjdjLTIuMiAwLTUuOSAwLjktNS45IDQuNSAwIDIuMiAxLjQgMy40IDMuNSAzLjQgMS43IDAgMi42LTEuMiAyLjktMS41di02LjRIOTAuOHoiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTE2LjYgMjguM2MwLTEuNy0xLjItNC40LTMuNy00LjQgLTEuNCAwLTIuNCAxLTIuNCAyLjcgMCA0LjMgOC40IDMuMSA4LjQgOS4xIDAgMy42LTIuOSA1LjMtNi41IDUuMyAtMi41IDAtMy44LTAuNi00LjgtMS4xIC0wLjYtMS43LTAuNy0zLjYtMC43LTUuMWgxYzAuOCAyLjUgMiA0LjkgNS4xIDQuOSAxLjcgMCAyLjctMS41IDIuNy0yLjggMC01LjEtOC40LTMuMy04LjQtOS41IDAtMy4xIDIuOC00LjggNi00LjggMiAwIDMuMiAwLjYgNCAxLjEgMC40IDEuNCAwLjUgMi42IDAuNSA0LjZIMTE2LjZ6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTEzOS45IDM5LjdjLTAuNSAwLjItMi42IDEuMi00LjUgMS4yIC00LjEgMC00LjItMi4xLTQuMi02LjN2LTkuOWMtMC44IDAtMi0wLjEtMi45LTAuNHYtMC44YzEtMC4xIDIuMS0wLjMgMi45LTAuNHYtMS4xYzEtMS4yIDIuMy0yLjUgMy4zLTMuM0wxMzUgMTljLTAuMSAwLjctMC41IDMuMS0wLjUgNC4yIDEuMSAwLjEgMyAwLjMgNCAwLjR2MC44Yy0xIDAuMy0yLjkgMC4zLTQgMC40djguMmMwIDMgMCA2LjIgMy4yIDYuMiAwLjggMCAxLjUtMC4yIDEuOS0wLjNMMTM5LjkgMzkuN3oiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTQ5LjIgMzkuNGwxLjYtMC4xYzEuNy0wLjIgMS43LTAuNCAxLjctNS44VjE4LjFjMC01LjQgMC01LjYtMS43LTUuOGwtMS42LTAuMXYtMWgxMC43djFsLTEuNiAwLjFjLTEuNyAwLjItMS43IDAuNC0xLjcgNS44djIwLjRjMS42IDAuMyAzLjIgMC41IDQuOCAwLjUgNi41IDAgNy0yLjYgNy44LTYuM2wxLjEgMC4yYy0wLjEgMi44LTAuNyA0LjktMS41IDcuM2gtMTkuN1YzOS40eiIvPjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xOTYuNiA0MGMtMC41IDAuMy0xLjMgMC45LTIuOSAwLjkgLTEuOSAwLTIuNi0wLjgtMy0xLjYgLTEuMiAwLjgtMi42IDEuNi01LjUgMS42IC0yLjggMC00LjctMS42LTQuNy0zLjcgMC00LjkgNi41LTYuNCA5LjktNy40VjI5YzAtMi41LTAuNy00LjYtMy41LTQuNiAtMyAwLTQgMi40LTQuNyAzLjhoLTAuM2MtMC40LTAuNS0wLjctMC44LTEtMS41IDEuMS0xLjUgMy41LTQgNy42LTQgNC4zIDAgNS4yIDIuMyA1LjIgNi4xdjUuNGMwIDIuNiAwIDUuNSAyLjEgNS41IDAuNCAwIDAuNS0wLjEgMC43LTAuMkwxOTYuNiA0MHpNMTg5LjkgMzEuN2MtMi4yIDAtNS45IDAuOS01LjkgNC41IDAgMi4yIDEuNCAzLjQgMy41IDMuNCAxLjcgMCAyLjYtMS4yIDIuOS0xLjV2LTYuNEgxODkuOXoiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjEwLjQgMjcuOEwyMTAuNCAyNy44YzEuMy0xLjYgNC01LjIgNy44LTUuMiAxLjkgMCAyLjkgMS40IDIuOSAzLjcgMCA2LjQtMy44IDE0LjctMTEuMyAxNC43IC0yLjQgMC0zLjYtMS4yLTMuNi0zLjQgMC0xLjIgMC4zLTIuOCAwLjYtNC41bDIuOC0xNC43YzAuMS0wLjcgMC4zLTEuNyAwLjMtMiAwLTAuNS0wLjItMC44LTAuNi0wLjggLTAuNSAwLTEuNyAwLjUtMi40IDAuOGwtMC4zLTAuOGMxLTAuNyA0LjItMi4zIDUuNS0yLjMgMC42IDAgMC45IDAuMyAwLjkgMS4xIDAgMC41LTAuMiAxLjUtMC4zIDIuNUwyMTAuNCAyNy44ek0yMTEuNiAzOS40YzQuNiAwIDYuMi04LjQgNi4yLTExLjYgMC0xLjgtMC4yLTMuNC0xLjctMy40IC0yLjkgMC02LjcgNi41LTYuNyAxMS42QzIwOS40IDM3LjkgMjEwIDM5LjQgMjExLjYgMzkuNHoiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjQwLjcgMjguM2MwLTEuNy0xLjItNC40LTMuNy00LjQgLTEuNCAwLTIuNCAxLTIuNCAyLjcgMCA0LjMgOC40IDMuMSA4LjQgOS4xIDAgMy42LTIuOSA1LjMtNi41IDUuMyAtMi41IDAtMy44LTAuNi00LjgtMS4xIC0wLjYtMS43LTAuNy0zLjYtMC43LTUuMWgxYzAuOCAyLjUgMiA0LjkgNS4xIDQuOSAxLjcgMCAyLjctMS41IDIuNy0yLjggMC01LjEtOC40LTMuMy04LjQtOS41IDAtMy4xIDIuOC00LjggNi00LjggMiAwIDMuMiAwLjYgNCAxLjEgMC40IDEuNCAwLjUgMi42IDAuNSA0LjZIMjQwLjd6Ii8+PC9zdmc+');
10
+ background-size: cover;
11
+ display: inline-block;
12
+ height: 1em;
13
+ width: 5em;
14
+ }
15
+
16
+ .cl-asset-cookie {
17
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5NyAxMTQiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHN0eWxlPi5zdDB7ZmlsbDojZTU5YjM0fS5zdDJ7ZmlsbDojNmEzMDAwfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTgzLjIgNDYuOWwtOS44LTE4LjVjNS45LTEuMyA5LjYtNS4zIDExLjUtNy4zbDExLjUgNi43Yy0xLjggMi0xMy4yIDE5LjEtMTMuMiAxOS4xek0yNC4xIDExMC41Qy0yNiA5MS4xIDExLjggMTUuMSA0OC42IDBsMTEuNSA2LjctMzYgMTAzLjh6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTYzLjYgMjYuNmwtMTEtMTAuN2MyLjcgMS42IDYuNCAxLjUgMTAuNC0uN2wxMS41IDYuN2MtNCAyLjEtMTAuOSA0LjctMTAuOSA0Ljd6Ii8+PHBhdGggZD0iTTk2LjQgMjcuOWMzLjEgMjkuMy0xNi45IDY0LjgtNDIuMSA3OS43LTIzLjUgMTMuNi00Mi42IDIuNy00Mi43LTI0LjMuMy0yOS4zIDIxLjMtNjQuNyA0OC41LTc2LjYtMi43IDEwLjggMi43IDIxLjIgMTQuNCAxNS4yLS45IDE2LjQgMTIuOSAxNiAyMS45IDZ6IiBmaWxsPSIjZmZiNDUwIi8+PHBhdGggY2xhc3M9InN0MiIgZD0iTTY4LjcgNzYuM2MtNC41IDEuNy03LjggMTQuMiAwIDEwLjkgNC41LTEuNiA3LjgtMTQuMiAwLTEwLjl6TTQ4LjggNjMuOGMxMi4yLTQtMiAyMC43LTQuNyA4LjIgMC0zIDIuMS02LjcgNC43LTguMnpNNzIuNyA0Mi45YzcuOC0zLjMgNC41IDkuMyAwIDExLTcuOCAzLjMtNC41LTkuMyAwLTExek0zMy44IDg4YzcuOC0zLjMgNC41IDkuMyAwIDEwLjktNy43IDMuNC00LjQtOS4yIDAtMTAuOXpNNTAuOCAyNy44YzcuOC0zLjMgNC41IDkuMyAwIDExLTcuOCAzLjMtNC41LTkuMyAwLTExek0zMCA1NC43YzEyLjItNC0yIDIwLjctNC44IDguMi4xLTMgMi4yLTYuNyA0LjgtOC4yeiIvPjwvc3ZnPgo=');
18
+ background-size: cover;
19
+ display: inline-block;
20
+ height: 1em;
21
+ width: 1em;
22
+ }
@@ -0,0 +1,18 @@
1
+ ////
2
+ /// @group layout
3
+ /// @access public
4
+ ////
5
+
6
+ $button-hover-opacity: $color-hover-opacity;
7
+ $button-disabled-opacity: 0.33;
8
+
9
+ @mixin button-focus-outline($color) {
10
+ .btn-check:focus + &,
11
+ &:focus {
12
+ @include color-focus-outline($color, 1px);
13
+
14
+ & {
15
+ box-shadow: none;
16
+ }
17
+ }
18
+ }