@limetech/lime-elements 38.3.2 → 38.4.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.md +16 -0
- package/dist/cjs/limel-badge_3.cjs.entry.js +1 -1
- package/dist/cjs/limel-badge_3.cjs.entry.js.map +1 -1
- 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/collection/components/action-bar/action-bar-item/action-bar-item.css +16 -0
- package/dist/collection/components/badge/badge.css +18 -1
- 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/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-badge_3.entry.js +1 -1
- package/dist/esm/limel-badge_3.entry.js.map +1 -1
- 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/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-66501d69.entry.js +2 -0
- package/dist/lime-elements/p-66501d69.entry.js.map +1 -0
- package/dist/lime-elements/p-89eaca66.entry.js.map +1 -1
- 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/package.json +1 -1
- package/dist/lime-elements/p-2963426c.entry.js +0 -2
- package/dist/lime-elements/p-aad274aa.entry.js +0 -2
- package/dist/lime-elements/p-aad274aa.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
|
*
|
|
@@ -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;
|
|
@@ -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 button.
|
|
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 --info-tile-border-radius: defines the radius of corners of the info-tile. Defaults to `1rem`
|
|
62
78
|
* @prop --info-tile-icon-color: defines the fill color of the info-tile icon. Defaults to `--contrast-1000`
|
|
@@ -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;
|
|
@@ -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
|
*
|
|
@@ -944,6 +960,22 @@ limel-dynamic-label {
|
|
|
944
960
|
* to enable you to truncate a piece of text,
|
|
945
961
|
* after a certain number of lines.
|
|
946
962
|
*/
|
|
963
|
+
/**
|
|
964
|
+
* The breakpoints below are used to create responsive designs
|
|
965
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
966
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
967
|
+
* file, to create consistent styles.
|
|
968
|
+
*
|
|
969
|
+
* :::important
|
|
970
|
+
* In very rare cases you should used media queries!
|
|
971
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
972
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
973
|
+
* :::
|
|
974
|
+
*/
|
|
975
|
+
/**
|
|
976
|
+
* Media query mixins for responsive design based on screen width.
|
|
977
|
+
* Note that these mixins do not detect the device type!
|
|
978
|
+
*/
|
|
947
979
|
:host(limel-checkbox:focus),
|
|
948
980
|
:host(limel-checkbox:focus-visible),
|
|
949
981
|
:host(limel-checkbox:focus-within) {
|
|
@@ -5427,6 +5459,22 @@ limel-dynamic-label {
|
|
|
5427
5459
|
* to enable you to truncate a piece of text,
|
|
5428
5460
|
* after a certain number of lines.
|
|
5429
5461
|
*/
|
|
5462
|
+
/**
|
|
5463
|
+
* The breakpoints below are used to create responsive designs
|
|
5464
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
5465
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
5466
|
+
* file, to create consistent styles.
|
|
5467
|
+
*
|
|
5468
|
+
* :::important
|
|
5469
|
+
* In very rare cases you should used media queries!
|
|
5470
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
5471
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
5472
|
+
* :::
|
|
5473
|
+
*/
|
|
5474
|
+
/**
|
|
5475
|
+
* Media query mixins for responsive design based on screen width.
|
|
5476
|
+
* Note that these mixins do not detect the device type!
|
|
5477
|
+
*/
|
|
5430
5478
|
:host(limel-checkbox:focus),
|
|
5431
5479
|
:host(limel-checkbox:focus-visible),
|
|
5432
5480
|
:host(limel-checkbox:focus-within) {
|
|
@@ -5941,6 +5989,22 @@ limel-dynamic-label {
|
|
|
5941
5989
|
* to enable you to truncate a piece of text,
|
|
5942
5990
|
* after a certain number of lines.
|
|
5943
5991
|
*/
|
|
5992
|
+
/**
|
|
5993
|
+
* The breakpoints below are used to create responsive designs
|
|
5994
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
5995
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
5996
|
+
* file, to create consistent styles.
|
|
5997
|
+
*
|
|
5998
|
+
* :::important
|
|
5999
|
+
* In very rare cases you should used media queries!
|
|
6000
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
6001
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
6002
|
+
* :::
|
|
6003
|
+
*/
|
|
6004
|
+
/**
|
|
6005
|
+
* Media query mixins for responsive design based on screen width.
|
|
6006
|
+
* Note that these mixins do not detect the device type!
|
|
6007
|
+
*/
|
|
5944
6008
|
:host(.has-striped-rows) .mdc-deprecated-list {
|
|
5945
6009
|
border: 1px solid rgb(var(--contrast-400));
|
|
5946
6010
|
}
|
|
@@ -6045,6 +6109,22 @@ limel-dynamic-label {
|
|
|
6045
6109
|
* to enable you to truncate a piece of text,
|
|
6046
6110
|
* after a certain number of lines.
|
|
6047
6111
|
*/
|
|
6112
|
+
/**
|
|
6113
|
+
* The breakpoints below are used to create responsive designs
|
|
6114
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
6115
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
6116
|
+
* file, to create consistent styles.
|
|
6117
|
+
*
|
|
6118
|
+
* :::important
|
|
6119
|
+
* In very rare cases you should used media queries!
|
|
6120
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
6121
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
6122
|
+
* :::
|
|
6123
|
+
*/
|
|
6124
|
+
/**
|
|
6125
|
+
* Media query mixins for responsive design based on screen width.
|
|
6126
|
+
* Note that these mixins do not detect the device type!
|
|
6127
|
+
*/
|
|
6048
6128
|
:host {
|
|
6049
6129
|
--line-height-of-secondary-text: 1rem;
|
|
6050
6130
|
}
|
|
@@ -61,6 +61,22 @@
|
|
|
61
61
|
* to enable you to truncate a piece of text,
|
|
62
62
|
* after a certain number of lines.
|
|
63
63
|
*/
|
|
64
|
+
/**
|
|
65
|
+
* The breakpoints below are used to create responsive designs
|
|
66
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
67
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
68
|
+
* file, to create consistent styles.
|
|
69
|
+
*
|
|
70
|
+
* :::important
|
|
71
|
+
* In very rare cases you should used media queries!
|
|
72
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
73
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
74
|
+
* :::
|
|
75
|
+
*/
|
|
76
|
+
/**
|
|
77
|
+
* Media query mixins for responsive design based on screen width.
|
|
78
|
+
* Note that these mixins do not detect the device type!
|
|
79
|
+
*/
|
|
64
80
|
/*
|
|
65
81
|
* This file is imported into every component!
|
|
66
82
|
*
|
|
@@ -414,6 +430,22 @@ img {
|
|
|
414
430
|
* to enable you to truncate a piece of text,
|
|
415
431
|
* after a certain number of lines.
|
|
416
432
|
*/
|
|
433
|
+
/**
|
|
434
|
+
* The breakpoints below are used to create responsive designs
|
|
435
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
436
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
437
|
+
* file, to create consistent styles.
|
|
438
|
+
*
|
|
439
|
+
* :::important
|
|
440
|
+
* In very rare cases you should used media queries!
|
|
441
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
442
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
443
|
+
* :::
|
|
444
|
+
*/
|
|
445
|
+
/**
|
|
446
|
+
* Media query mixins for responsive design based on screen width.
|
|
447
|
+
* Note that these mixins do not detect the device type!
|
|
448
|
+
*/
|
|
417
449
|
kbd {
|
|
418
450
|
font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
|
419
451
|
font-weight: 600;
|
|
@@ -69,6 +69,22 @@
|
|
|
69
69
|
* to enable you to truncate a piece of text,
|
|
70
70
|
* after a certain number of lines.
|
|
71
71
|
*/
|
|
72
|
+
/**
|
|
73
|
+
* The breakpoints below are used to create responsive designs
|
|
74
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
75
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
76
|
+
* file, to create consistent styles.
|
|
77
|
+
*
|
|
78
|
+
* :::important
|
|
79
|
+
* In very rare cases you should used media queries!
|
|
80
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
81
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
82
|
+
* :::
|
|
83
|
+
*/
|
|
84
|
+
/**
|
|
85
|
+
* Media query mixins for responsive design based on screen width.
|
|
86
|
+
* Note that these mixins do not detect the device type!
|
|
87
|
+
*/
|
|
72
88
|
/*
|
|
73
89
|
* This file is imported into every component that uses MDC!
|
|
74
90
|
*
|
|
@@ -1014,6 +1030,22 @@ limel-dynamic-label {
|
|
|
1014
1030
|
* to enable you to truncate a piece of text,
|
|
1015
1031
|
* after a certain number of lines.
|
|
1016
1032
|
*/
|
|
1033
|
+
/**
|
|
1034
|
+
* The breakpoints below are used to create responsive designs
|
|
1035
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
1036
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
1037
|
+
* file, to create consistent styles.
|
|
1038
|
+
*
|
|
1039
|
+
* :::important
|
|
1040
|
+
* In very rare cases you should used media queries!
|
|
1041
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
1042
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
1043
|
+
* :::
|
|
1044
|
+
*/
|
|
1045
|
+
/**
|
|
1046
|
+
* Media query mixins for responsive design based on screen width.
|
|
1047
|
+
* Note that these mixins do not detect the device type!
|
|
1048
|
+
*/
|
|
1017
1049
|
:host(limel-checkbox:focus),
|
|
1018
1050
|
:host(limel-checkbox:focus-visible),
|
|
1019
1051
|
:host(limel-checkbox:focus-within) {
|
|
@@ -5497,6 +5529,22 @@ limel-dynamic-label {
|
|
|
5497
5529
|
* to enable you to truncate a piece of text,
|
|
5498
5530
|
* after a certain number of lines.
|
|
5499
5531
|
*/
|
|
5532
|
+
/**
|
|
5533
|
+
* The breakpoints below are used to create responsive designs
|
|
5534
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
5535
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
5536
|
+
* file, to create consistent styles.
|
|
5537
|
+
*
|
|
5538
|
+
* :::important
|
|
5539
|
+
* In very rare cases you should used media queries!
|
|
5540
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
5541
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
5542
|
+
* :::
|
|
5543
|
+
*/
|
|
5544
|
+
/**
|
|
5545
|
+
* Media query mixins for responsive design based on screen width.
|
|
5546
|
+
* Note that these mixins do not detect the device type!
|
|
5547
|
+
*/
|
|
5500
5548
|
:host(limel-checkbox:focus),
|
|
5501
5549
|
:host(limel-checkbox:focus-visible),
|
|
5502
5550
|
:host(limel-checkbox:focus-within) {
|
|
@@ -6011,6 +6059,22 @@ limel-dynamic-label {
|
|
|
6011
6059
|
* to enable you to truncate a piece of text,
|
|
6012
6060
|
* after a certain number of lines.
|
|
6013
6061
|
*/
|
|
6062
|
+
/**
|
|
6063
|
+
* The breakpoints below are used to create responsive designs
|
|
6064
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
6065
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
6066
|
+
* file, to create consistent styles.
|
|
6067
|
+
*
|
|
6068
|
+
* :::important
|
|
6069
|
+
* In very rare cases you should used media queries!
|
|
6070
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
6071
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
6072
|
+
* :::
|
|
6073
|
+
*/
|
|
6074
|
+
/**
|
|
6075
|
+
* Media query mixins for responsive design based on screen width.
|
|
6076
|
+
* Note that these mixins do not detect the device type!
|
|
6077
|
+
*/
|
|
6014
6078
|
:host(.has-striped-rows) .mdc-deprecated-list {
|
|
6015
6079
|
border: 1px solid rgb(var(--contrast-400));
|
|
6016
6080
|
}
|
|
@@ -6115,6 +6179,22 @@ limel-dynamic-label {
|
|
|
6115
6179
|
* to enable you to truncate a piece of text,
|
|
6116
6180
|
* after a certain number of lines.
|
|
6117
6181
|
*/
|
|
6182
|
+
/**
|
|
6183
|
+
* The breakpoints below are used to create responsive designs
|
|
6184
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
6185
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
6186
|
+
* file, to create consistent styles.
|
|
6187
|
+
*
|
|
6188
|
+
* :::important
|
|
6189
|
+
* In very rare cases you should used media queries!
|
|
6190
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
6191
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
6192
|
+
* :::
|
|
6193
|
+
*/
|
|
6194
|
+
/**
|
|
6195
|
+
* Media query mixins for responsive design based on screen width.
|
|
6196
|
+
* Note that these mixins do not detect the device type!
|
|
6197
|
+
*/
|
|
6118
6198
|
:host {
|
|
6119
6199
|
--line-height-of-secondary-text: 1rem;
|
|
6120
6200
|
}
|
|
@@ -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
|
:host(limel-popover-surface) {
|
|
67
83
|
isolation: isolate;
|
|
68
84
|
position: relative;
|
|
@@ -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
|
.mdc-floating-label {
|
|
127
143
|
-moz-osx-font-smoothing: grayscale;
|
|
128
144
|
-webkit-font-smoothing: antialiased;
|
|
@@ -1874,6 +1890,22 @@ select.limel-select__native-control {
|
|
|
1874
1890
|
* to enable you to truncate a piece of text,
|
|
1875
1891
|
* after a certain number of lines.
|
|
1876
1892
|
*/
|
|
1893
|
+
/**
|
|
1894
|
+
* The breakpoints below are used to create responsive designs
|
|
1895
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
1896
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
1897
|
+
* file, to create consistent styles.
|
|
1898
|
+
*
|
|
1899
|
+
* :::important
|
|
1900
|
+
* In very rare cases you should used media queries!
|
|
1901
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
1902
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
1903
|
+
* :::
|
|
1904
|
+
*/
|
|
1905
|
+
/**
|
|
1906
|
+
* Media query mixins for responsive design based on screen width.
|
|
1907
|
+
* Note that these mixins do not detect the device type!
|
|
1908
|
+
*/
|
|
1877
1909
|
:host(limel-select:focus),
|
|
1878
1910
|
:host(limel-select:focus-visible),
|
|
1879
1911
|
:host(limel-select: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 --shortcut-border-radius: defines the radius of corners of the shortcut. Defaults to `1rem`
|
|
62
78
|
* @prop --shortcut-icon-color: defines the fill color of the shortcut icon. Defaults to `--contrast-1000`
|
|
@@ -979,6 +979,22 @@
|
|
|
979
979
|
* to enable you to truncate a piece of text,
|
|
980
980
|
* after a certain number of lines.
|
|
981
981
|
*/
|
|
982
|
+
/**
|
|
983
|
+
* The breakpoints below are used to create responsive designs
|
|
984
|
+
* in Lime's products. Therefore, they are here to get distributed
|
|
985
|
+
* to all components in other private repos, which rely on this `mixins`
|
|
986
|
+
* file, to create consistent styles.
|
|
987
|
+
*
|
|
988
|
+
* :::important
|
|
989
|
+
* In very rare cases you should used media queries!
|
|
990
|
+
* Nowadays, there are many better ways of achieving responsive design
|
|
991
|
+
* without media queries. For example, using CSS Grid, Flexbox, and their features.
|
|
992
|
+
* :::
|
|
993
|
+
*/
|
|
994
|
+
/**
|
|
995
|
+
* Media query mixins for responsive design based on screen width.
|
|
996
|
+
* Note that these mixins do not detect the device type!
|
|
997
|
+
*/
|
|
982
998
|
:host(limel-slider:focus),
|
|
983
999
|
:host(limel-slider:focus-visible),
|
|
984
1000
|
:host(limel-slider:focus-within) {
|