@limetech/lime-elements 38.3.1 → 38.3.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/CHANGELOG.md +16 -0
- package/dist/cjs/limel-dialog.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js +1 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-table.cjs.entry.js +11 -4
- package/dist/cjs/limel-table.cjs.entry.js.map +1 -1
- package/dist/collection/components/action-bar/action-bar-item/action-bar-item.css +16 -0
- package/dist/collection/components/badge/badge.css +16 -0
- package/dist/collection/components/breadcrumbs/breadcrumbs.css +16 -0
- package/dist/collection/components/button/button.css +16 -0
- package/dist/collection/components/button-group/button-group.css +16 -0
- package/dist/collection/components/card/card.css +16 -0
- package/dist/collection/components/chart/chart.css +32 -0
- package/dist/collection/components/checkbox/checkbox.css +16 -0
- package/dist/collection/components/chip/chip.css +16 -0
- package/dist/collection/components/chip-set/chip-set.css +32 -0
- package/dist/collection/components/circular-progress/circular-progress.css +16 -0
- package/dist/collection/components/code-editor/code-editor.css +16 -0
- package/dist/collection/components/collapsible-section/collapsible-section.css +16 -0
- package/dist/collection/components/color-picker/color-picker-palette.css +32 -0
- package/dist/collection/components/color-picker/color-picker.css +16 -0
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +16 -0
- package/dist/collection/components/dialog/dialog.css +16 -0
- package/dist/collection/components/dock/dock-button/dock-button.css +16 -0
- package/dist/collection/components/dock/dock.css +16 -0
- package/dist/collection/components/file/file.css +16 -0
- package/dist/collection/components/file-viewer/file-viewer.css +16 -0
- package/dist/collection/components/form/form.css +16 -0
- package/dist/collection/components/header/header.css +16 -0
- package/dist/collection/components/help/help.css +16 -0
- package/dist/collection/components/help/limel-help-content.css +16 -0
- package/dist/collection/components/icon-button/icon-button.css +16 -0
- package/dist/collection/components/info-tile/info-tile.css +16 -0
- package/dist/collection/components/input-field/input-field.css +16 -0
- package/dist/collection/components/list/list.css +80 -0
- package/dist/collection/components/markdown/markdown.css +32 -0
- package/dist/collection/components/menu-list/menu-list.css +80 -0
- package/dist/collection/components/popover-surface/popover-surface.css +16 -0
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +16 -0
- package/dist/collection/components/select/select.css +32 -0
- package/dist/collection/components/shortcut/shortcut.css +16 -0
- package/dist/collection/components/slider/slider.css +16 -0
- package/dist/collection/components/split-button/split-button.css +16 -0
- package/dist/collection/components/switch/switch.css +16 -0
- package/dist/collection/components/table/table.css +64 -0
- package/dist/collection/components/table/table.js +11 -4
- package/dist/collection/components/table/table.js.map +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.css +48 -0
- package/dist/collection/components/text-editor/text-editor.css +16 -0
- package/dist/collection/style/mixins.scss +60 -0
- package/dist/esm/limel-dialog.entry.js.map +1 -1
- package/dist/esm/limel-info-tile.entry.js +1 -1
- package/dist/esm/limel-info-tile.entry.js.map +1 -1
- package/dist/esm/limel-table.entry.js +11 -4
- package/dist/esm/limel-table.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-89eaca66.entry.js.map +1 -1
- package/dist/lime-elements/{p-f077bfca.entry.js → p-c923b97d.entry.js} +2 -2
- package/dist/lime-elements/p-c923b97d.entry.js.map +1 -0
- package/dist/lime-elements/p-ece3a0f5.entry.js +2 -0
- package/dist/lime-elements/{p-2963426c.entry.js.map → p-ece3a0f5.entry.js.map} +1 -1
- package/dist/lime-elements/style/mixins.scss +60 -0
- package/dist/scss/mixins.scss +60 -0
- package/dist/types/components/table/table.d.ts +2 -0
- package/package.json +2 -2
- package/dist/lime-elements/p-2963426c.entry.js +0 -2
- package/dist/lime-elements/p-f077bfca.entry.js.map +0 -1
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/*
|
|
61
77
|
* This file is imported into every component!
|
|
62
78
|
*
|
|
@@ -123,6 +123,22 @@
|
|
|
123
123
|
* to enable you to truncate a piece of text,
|
|
124
124
|
* after a certain number of lines.
|
|
125
125
|
*/
|
|
126
|
+
/**
|
|
127
|
+
* The breakpoints below are used to create responsive designs
|
|
128
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
129
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
130
|
+
* file, to create consistent styles.
|
|
131
|
+
*
|
|
132
|
+
* :::important
|
|
133
|
+
* In very rare cases you should used media queries!
|
|
134
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
135
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
136
|
+
* :::
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* Media query mixins for responsive design based on screen width.
|
|
140
|
+
* Note that these mixins do not detect the device type!
|
|
141
|
+
*/
|
|
126
142
|
/**
|
|
127
143
|
* @prop --badge-background-color: badge background color
|
|
128
144
|
* @prop --badge-text-color: badge text color
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/**
|
|
61
77
|
* @prop --breadcrumbs-item-text-color: Text color of breadcrumbs items, defaults to `--contrast-1100`.
|
|
62
78
|
* @prop --breadcrumbs-item-max-width: Maximum width of a button in the breadcrumbs. Defaults to `10rem`. Keep in mind that the buttons should not appear too big.
|
|
@@ -63,6 +63,22 @@
|
|
|
63
63
|
* to enable you to truncate a piece of text,
|
|
64
64
|
* after a certain number of lines.
|
|
65
65
|
*/
|
|
66
|
+
/**
|
|
67
|
+
* The breakpoints below are used to create responsive designs
|
|
68
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
69
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
70
|
+
* file, to create consistent styles.
|
|
71
|
+
*
|
|
72
|
+
* :::important
|
|
73
|
+
* In very rare cases you should used media queries!
|
|
74
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
75
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
76
|
+
* :::
|
|
77
|
+
*/
|
|
78
|
+
/**
|
|
79
|
+
* Media query mixins for responsive design based on screen width.
|
|
80
|
+
* Note that these mixins do not detect the device type!
|
|
81
|
+
*/
|
|
66
82
|
/*
|
|
67
83
|
* This file is imported into every component that uses MDC!
|
|
68
84
|
*
|
|
@@ -123,6 +123,22 @@
|
|
|
123
123
|
* to enable you to truncate a piece of text,
|
|
124
124
|
* after a certain number of lines.
|
|
125
125
|
*/
|
|
126
|
+
/**
|
|
127
|
+
* The breakpoints below are used to create responsive designs
|
|
128
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
129
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
130
|
+
* file, to create consistent styles.
|
|
131
|
+
*
|
|
132
|
+
* :::important
|
|
133
|
+
* In very rare cases you should used media queries!
|
|
134
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
135
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
136
|
+
* :::
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* Media query mixins for responsive design based on screen width.
|
|
140
|
+
* Note that these mixins do not detect the device type!
|
|
141
|
+
*/
|
|
126
142
|
.mdc-touch-target-wrapper {
|
|
127
143
|
display: inline;
|
|
128
144
|
}
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/**
|
|
61
77
|
* @prop --card-heading-color: color of the heading. Defaults to `--contrast-1100`;
|
|
62
78
|
* @prop --card-subheading-color: color of the sub heading. Defaults to `--contrast-1000`;
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/**
|
|
61
77
|
* @prop --chart-background-color: Defines the background color of the chart. Defaults to `transparent` for _most_ chart types.
|
|
62
78
|
* @prop --chart-item-color: If no color is defined for chart items, this color will be use. Defaults to `rgb(var(--contrast-1100), 0.8)`.
|
|
@@ -564,6 +580,22 @@ limel-spinner {
|
|
|
564
580
|
* to enable you to truncate a piece of text,
|
|
565
581
|
* after a certain number of lines.
|
|
566
582
|
*/
|
|
583
|
+
/**
|
|
584
|
+
* The breakpoints below are used to create responsive designs
|
|
585
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
586
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
587
|
+
* file, to create consistent styles.
|
|
588
|
+
*
|
|
589
|
+
* :::important
|
|
590
|
+
* In very rare cases you should used media queries!
|
|
591
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
592
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
593
|
+
* :::
|
|
594
|
+
*/
|
|
595
|
+
/**
|
|
596
|
+
* Media query mixins for responsive design based on screen width.
|
|
597
|
+
* Note that these mixins do not detect the device type!
|
|
598
|
+
*/
|
|
567
599
|
:host(limel-chart[type=stacked-bar]) .chart {
|
|
568
600
|
display: flex;
|
|
569
601
|
border-radius: 0.25rem;
|
|
@@ -886,6 +886,22 @@ limel-dynamic-label {
|
|
|
886
886
|
* to enable you to truncate a piece of text,
|
|
887
887
|
* after a certain number of lines.
|
|
888
888
|
*/
|
|
889
|
+
/**
|
|
890
|
+
* The breakpoints below are used to create responsive designs
|
|
891
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
892
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
893
|
+
* file, to create consistent styles.
|
|
894
|
+
*
|
|
895
|
+
* :::important
|
|
896
|
+
* In very rare cases you should used media queries!
|
|
897
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
898
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
899
|
+
* :::
|
|
900
|
+
*/
|
|
901
|
+
/**
|
|
902
|
+
* Media query mixins for responsive design based on screen width.
|
|
903
|
+
* Note that these mixins do not detect the device type!
|
|
904
|
+
*/
|
|
889
905
|
:host(limel-checkbox:focus),
|
|
890
906
|
:host(limel-checkbox:focus-visible),
|
|
891
907
|
:host(limel-checkbox:focus-within) {
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/**
|
|
61
77
|
* @prop --chip-max-width: Maximum width of the chip. Defaults to `10rem`. Keep in mind that the chips should not appear too big.
|
|
62
78
|
* @prop --chip-progress-color: Color of the progress bar. Defaults to `rgb(var(--contrast-700))`.
|
|
@@ -123,6 +123,22 @@
|
|
|
123
123
|
* to enable you to truncate a piece of text,
|
|
124
124
|
* after a certain number of lines.
|
|
125
125
|
*/
|
|
126
|
+
/**
|
|
127
|
+
* The breakpoints below are used to create responsive designs
|
|
128
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
129
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
130
|
+
* file, to create consistent styles.
|
|
131
|
+
*
|
|
132
|
+
* :::important
|
|
133
|
+
* In very rare cases you should used media queries!
|
|
134
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
135
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
136
|
+
* :::
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* Media query mixins for responsive design based on screen width.
|
|
140
|
+
* Note that these mixins do not detect the device type!
|
|
141
|
+
*/
|
|
126
142
|
.mdc-notched-outline {
|
|
127
143
|
display: flex;
|
|
128
144
|
position: absolute;
|
|
@@ -2207,6 +2223,22 @@ limel-chip.can-be-removed {
|
|
|
2207
2223
|
* to enable you to truncate a piece of text,
|
|
2208
2224
|
* after a certain number of lines.
|
|
2209
2225
|
*/
|
|
2226
|
+
/**
|
|
2227
|
+
* The breakpoints below are used to create responsive designs
|
|
2228
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
2229
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
2230
|
+
* file, to create consistent styles.
|
|
2231
|
+
*
|
|
2232
|
+
* :::important
|
|
2233
|
+
* In very rare cases you should used media queries!
|
|
2234
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
2235
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
2236
|
+
* :::
|
|
2237
|
+
*/
|
|
2238
|
+
/**
|
|
2239
|
+
* Media query mixins for responsive design based on screen width.
|
|
2240
|
+
* Note that these mixins do not detect the device type!
|
|
2241
|
+
*/
|
|
2210
2242
|
:host(limel-chip-set:focus),
|
|
2211
2243
|
:host(limel-chip-set:focus-visible),
|
|
2212
2244
|
:host(limel-chip-set:focus-within) {
|
|
@@ -63,6 +63,22 @@
|
|
|
63
63
|
* to enable you to truncate a piece of text,
|
|
64
64
|
* after a certain number of lines.
|
|
65
65
|
*/
|
|
66
|
+
/**
|
|
67
|
+
* The breakpoints below are used to create responsive designs
|
|
68
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
69
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
70
|
+
* file, to create consistent styles.
|
|
71
|
+
*
|
|
72
|
+
* :::important
|
|
73
|
+
* In very rare cases you should used media queries!
|
|
74
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
75
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
76
|
+
* :::
|
|
77
|
+
*/
|
|
78
|
+
/**
|
|
79
|
+
* Media query mixins for responsive design based on screen width.
|
|
80
|
+
* Note that these mixins do not detect the device type!
|
|
81
|
+
*/
|
|
66
82
|
/*
|
|
67
83
|
* This file is imported into every component that uses MDC!
|
|
68
84
|
*
|
|
@@ -503,6 +503,22 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
503
503
|
* to enable you to truncate a piece of text,
|
|
504
504
|
* after a certain number of lines.
|
|
505
505
|
*/
|
|
506
|
+
/**
|
|
507
|
+
* The breakpoints below are used to create responsive designs
|
|
508
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
509
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
510
|
+
* file, to create consistent styles.
|
|
511
|
+
*
|
|
512
|
+
* :::important
|
|
513
|
+
* In very rare cases you should used media queries!
|
|
514
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
515
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
516
|
+
* :::
|
|
517
|
+
*/
|
|
518
|
+
/**
|
|
519
|
+
* Media query mixins for responsive design based on screen width.
|
|
520
|
+
* Note that these mixins do not detect the device type!
|
|
521
|
+
*/
|
|
506
522
|
/**
|
|
507
523
|
* @prop --code-editor-max-height: Defines how tall the code editor can get before content becomes scrollable, defaults to `10rem`.
|
|
508
524
|
* @prop --code-editor-font-size: Defines the font size of the code, defaults to `0.8125rem`.
|
|
@@ -123,6 +123,22 @@
|
|
|
123
123
|
* to enable you to truncate a piece of text,
|
|
124
124
|
* after a certain number of lines.
|
|
125
125
|
*/
|
|
126
|
+
/**
|
|
127
|
+
* The breakpoints below are used to create responsive designs
|
|
128
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
129
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
130
|
+
* file, to create consistent styles.
|
|
131
|
+
*
|
|
132
|
+
* :::important
|
|
133
|
+
* In very rare cases you should used media queries!
|
|
134
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
135
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
136
|
+
* :::
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* Media query mixins for responsive design based on screen width.
|
|
140
|
+
* Note that these mixins do not detect the device type!
|
|
141
|
+
*/
|
|
126
142
|
/**
|
|
127
143
|
* @prop --closed-header-background-color: background color for header when closed
|
|
128
144
|
* @prop --open-header-background-color: background color for header when open
|
|
@@ -609,6 +609,22 @@
|
|
|
609
609
|
* to enable you to truncate a piece of text,
|
|
610
610
|
* after a certain number of lines.
|
|
611
611
|
*/
|
|
612
|
+
/**
|
|
613
|
+
* The breakpoints below are used to create responsive designs
|
|
614
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
615
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
616
|
+
* file, to create consistent styles.
|
|
617
|
+
*
|
|
618
|
+
* :::important
|
|
619
|
+
* In very rare cases you should used media queries!
|
|
620
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
621
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
622
|
+
* :::
|
|
623
|
+
*/
|
|
624
|
+
/**
|
|
625
|
+
* Media query mixins for responsive design based on screen width.
|
|
626
|
+
* Note that these mixins do not detect the device type!
|
|
627
|
+
*/
|
|
612
628
|
/**
|
|
613
629
|
* Note! This file is exported to `dist/scss/` in the published
|
|
614
630
|
* node module, for consumer projects to import.
|
|
@@ -667,6 +683,22 @@
|
|
|
667
683
|
* to enable you to truncate a piece of text,
|
|
668
684
|
* after a certain number of lines.
|
|
669
685
|
*/
|
|
686
|
+
/**
|
|
687
|
+
* The breakpoints below are used to create responsive designs
|
|
688
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
689
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
690
|
+
* file, to create consistent styles.
|
|
691
|
+
*
|
|
692
|
+
* :::important
|
|
693
|
+
* In very rare cases you should used media queries!
|
|
694
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
695
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
696
|
+
* :::
|
|
697
|
+
*/
|
|
698
|
+
/**
|
|
699
|
+
* Media query mixins for responsive design based on screen width.
|
|
700
|
+
* Note that these mixins do not detect the device type!
|
|
701
|
+
*/
|
|
670
702
|
/*
|
|
671
703
|
* This file is imported into every component!
|
|
672
704
|
*
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/*
|
|
61
77
|
* This file is imported into every component!
|
|
62
78
|
*
|
|
@@ -123,6 +123,22 @@
|
|
|
123
123
|
* to enable you to truncate a piece of text,
|
|
124
124
|
* after a certain number of lines.
|
|
125
125
|
*/
|
|
126
|
+
/**
|
|
127
|
+
* The breakpoints below are used to create responsive designs
|
|
128
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
129
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
130
|
+
* file, to create consistent styles.
|
|
131
|
+
*
|
|
132
|
+
* :::important
|
|
133
|
+
* In very rare cases you should used media queries!
|
|
134
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
135
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
136
|
+
* :::
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* Media query mixins for responsive design based on screen width.
|
|
140
|
+
* Note that these mixins do not detect the device type!
|
|
141
|
+
*/
|
|
126
142
|
:root {
|
|
127
143
|
--mdc-theme-primary: #26a69a;
|
|
128
144
|
--mdc-theme-secondary: #575756;
|
|
@@ -63,6 +63,22 @@
|
|
|
63
63
|
* to enable you to truncate a piece of text,
|
|
64
64
|
* after a certain number of lines.
|
|
65
65
|
*/
|
|
66
|
+
/**
|
|
67
|
+
* The breakpoints below are used to create responsive designs
|
|
68
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
69
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
70
|
+
* file, to create consistent styles.
|
|
71
|
+
*
|
|
72
|
+
* :::important
|
|
73
|
+
* In very rare cases you should used media queries!
|
|
74
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
75
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
76
|
+
* :::
|
|
77
|
+
*/
|
|
78
|
+
/**
|
|
79
|
+
* Media query mixins for responsive design based on screen width.
|
|
80
|
+
* Note that these mixins do not detect the device type!
|
|
81
|
+
*/
|
|
66
82
|
/*
|
|
67
83
|
* This file is imported into every component that uses MDC!
|
|
68
84
|
*
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/*
|
|
61
77
|
* This file is imported into every component!
|
|
62
78
|
*
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/*
|
|
61
77
|
* This file is imported into every component!
|
|
62
78
|
*
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/**
|
|
61
77
|
* @prop --icon-background-color: Background color of the icon. Defaults to `--contrast-400`.
|
|
62
78
|
* @prop --icon-color: Color of the icon. Defaults to `--contrast-1100`.
|
|
@@ -129,6 +129,22 @@
|
|
|
129
129
|
* to enable you to truncate a piece of text,
|
|
130
130
|
* after a certain number of lines.
|
|
131
131
|
*/
|
|
132
|
+
/**
|
|
133
|
+
* The breakpoints below are used to create responsive designs
|
|
134
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
135
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
136
|
+
* file, to create consistent styles.
|
|
137
|
+
*
|
|
138
|
+
* :::important
|
|
139
|
+
* In very rare cases you should used media queries!
|
|
140
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
141
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
142
|
+
* :::
|
|
143
|
+
*/
|
|
144
|
+
/**
|
|
145
|
+
* Media query mixins for responsive design based on screen width.
|
|
146
|
+
* Note that these mixins do not detect the device type!
|
|
147
|
+
*/
|
|
132
148
|
:host {
|
|
133
149
|
isolation: isolate;
|
|
134
150
|
position: relative;
|
|
@@ -702,6 +702,22 @@ limel-code-editor {
|
|
|
702
702
|
* to enable you to truncate a piece of text,
|
|
703
703
|
* after a certain number of lines.
|
|
704
704
|
*/
|
|
705
|
+
/**
|
|
706
|
+
* The breakpoints below are used to create responsive designs
|
|
707
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
708
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
709
|
+
* file, to create consistent styles.
|
|
710
|
+
*
|
|
711
|
+
* :::important
|
|
712
|
+
* In very rare cases you should used media queries!
|
|
713
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
714
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
715
|
+
* :::
|
|
716
|
+
*/
|
|
717
|
+
/**
|
|
718
|
+
* Media query mixins for responsive design based on screen width.
|
|
719
|
+
* Note that these mixins do not detect the device type!
|
|
720
|
+
*/
|
|
705
721
|
.limel-form-row--layout {
|
|
706
722
|
--limel-form-row-border-radius: 0.375rem;
|
|
707
723
|
--limel-form-row-icon-size: 1.75rem;
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
/*
|
|
61
77
|
* This file is imported into every component!
|
|
62
78
|
*
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
limel-popover {
|
|
61
77
|
display: flex;
|
|
62
78
|
--popover-surface-width: min(calc(100vw - 4rem), 22rem);
|
|
@@ -57,6 +57,22 @@
|
|
|
57
57
|
* to enable you to truncate a piece of text,
|
|
58
58
|
* after a certain number of lines.
|
|
59
59
|
*/
|
|
60
|
+
/**
|
|
61
|
+
* The breakpoints below are used to create responsive designs
|
|
62
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
63
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
64
|
+
* file, to create consistent styles.
|
|
65
|
+
*
|
|
66
|
+
* :::important
|
|
67
|
+
* In very rare cases you should used media queries!
|
|
68
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
69
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
70
|
+
* :::
|
|
71
|
+
*/
|
|
72
|
+
/**
|
|
73
|
+
* Media query mixins for responsive design based on screen width.
|
|
74
|
+
* Note that these mixins do not detect the device type!
|
|
75
|
+
*/
|
|
60
76
|
:host(limel-help-content) {
|
|
61
77
|
display: flex;
|
|
62
78
|
box-sizing: border-box;
|