@limetech/lime-elements 38.3.2 → 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.
Files changed (57) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/cjs/limel-dialog.cjs.entry.js.map +1 -1
  3. package/dist/cjs/limel-info-tile.cjs.entry.js +1 -1
  4. package/dist/cjs/limel-info-tile.cjs.entry.js.map +1 -1
  5. package/dist/collection/components/action-bar/action-bar-item/action-bar-item.css +16 -0
  6. package/dist/collection/components/badge/badge.css +16 -0
  7. package/dist/collection/components/breadcrumbs/breadcrumbs.css +16 -0
  8. package/dist/collection/components/button/button.css +16 -0
  9. package/dist/collection/components/button-group/button-group.css +16 -0
  10. package/dist/collection/components/card/card.css +16 -0
  11. package/dist/collection/components/chart/chart.css +32 -0
  12. package/dist/collection/components/checkbox/checkbox.css +16 -0
  13. package/dist/collection/components/chip/chip.css +16 -0
  14. package/dist/collection/components/chip-set/chip-set.css +32 -0
  15. package/dist/collection/components/circular-progress/circular-progress.css +16 -0
  16. package/dist/collection/components/code-editor/code-editor.css +16 -0
  17. package/dist/collection/components/collapsible-section/collapsible-section.css +16 -0
  18. package/dist/collection/components/color-picker/color-picker-palette.css +32 -0
  19. package/dist/collection/components/color-picker/color-picker.css +16 -0
  20. package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +16 -0
  21. package/dist/collection/components/dialog/dialog.css +16 -0
  22. package/dist/collection/components/dock/dock-button/dock-button.css +16 -0
  23. package/dist/collection/components/dock/dock.css +16 -0
  24. package/dist/collection/components/file/file.css +16 -0
  25. package/dist/collection/components/file-viewer/file-viewer.css +16 -0
  26. package/dist/collection/components/form/form.css +16 -0
  27. package/dist/collection/components/header/header.css +16 -0
  28. package/dist/collection/components/help/help.css +16 -0
  29. package/dist/collection/components/help/limel-help-content.css +16 -0
  30. package/dist/collection/components/icon-button/icon-button.css +16 -0
  31. package/dist/collection/components/info-tile/info-tile.css +16 -0
  32. package/dist/collection/components/input-field/input-field.css +16 -0
  33. package/dist/collection/components/list/list.css +80 -0
  34. package/dist/collection/components/markdown/markdown.css +32 -0
  35. package/dist/collection/components/menu-list/menu-list.css +80 -0
  36. package/dist/collection/components/popover-surface/popover-surface.css +16 -0
  37. package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +16 -0
  38. package/dist/collection/components/select/select.css +32 -0
  39. package/dist/collection/components/shortcut/shortcut.css +16 -0
  40. package/dist/collection/components/slider/slider.css +16 -0
  41. package/dist/collection/components/split-button/split-button.css +16 -0
  42. package/dist/collection/components/switch/switch.css +16 -0
  43. package/dist/collection/components/table/table.css +64 -0
  44. package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.css +48 -0
  45. package/dist/collection/components/text-editor/text-editor.css +16 -0
  46. package/dist/collection/style/mixins.scss +60 -0
  47. package/dist/esm/limel-dialog.entry.js.map +1 -1
  48. package/dist/esm/limel-info-tile.entry.js +1 -1
  49. package/dist/esm/limel-info-tile.entry.js.map +1 -1
  50. package/dist/lime-elements/lime-elements.esm.js +1 -1
  51. package/dist/lime-elements/p-89eaca66.entry.js.map +1 -1
  52. package/dist/lime-elements/p-ece3a0f5.entry.js +2 -0
  53. package/dist/lime-elements/{p-2963426c.entry.js.map → p-ece3a0f5.entry.js.map} +1 -1
  54. package/dist/lime-elements/style/mixins.scss +60 -0
  55. package/dist/scss/mixins.scss +60 -0
  56. package/package.json +1 -1
  57. package/dist/lime-elements/p-2963426c.entry.js +0 -2
@@ -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) {
@@ -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-split-button.has-menu) {
61
77
  --button-padding-right: 2rem;
62
78
  }
@@ -913,6 +913,22 @@ label {
913
913
  * to enable you to truncate a piece of text,
914
914
  * after a certain number of lines.
915
915
  */
916
+ /**
917
+ * The breakpoints below are used to create responsive designs
918
+ * in Lime's products. Therefore, they are here to get distributed
919
+ * to all components in other private repos, which rely on this `mixins`
920
+ * file, to create consistent styles.
921
+ *
922
+ * :::important
923
+ * In very rare cases you should used media queries!
924
+ * Nowadays, there are many better ways of achieving responsive design
925
+ * without media queries. For example, using CSS Grid, Flexbox, and their features.
926
+ * :::
927
+ */
928
+ /**
929
+ * Media query mixins for responsive design based on screen width.
930
+ * Note that these mixins do not detect the device type!
931
+ */
916
932
  :host(limel-switch:focus),
917
933
  :host(limel-switch:focus-visible),
918
934
  :host(limel-switch: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
  * This file is imported into every component!
62
78
  *
@@ -1300,6 +1316,22 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1300
1316
  * to enable you to truncate a piece of text,
1301
1317
  * after a certain number of lines.
1302
1318
  */
1319
+ /**
1320
+ * The breakpoints below are used to create responsive designs
1321
+ * in Lime's products. Therefore, they are here to get distributed
1322
+ * to all components in other private repos, which rely on this `mixins`
1323
+ * file, to create consistent styles.
1324
+ *
1325
+ * :::important
1326
+ * In very rare cases you should used media queries!
1327
+ * Nowadays, there are many better ways of achieving responsive design
1328
+ * without media queries. For example, using CSS Grid, Flexbox, and their features.
1329
+ * :::
1330
+ */
1331
+ /**
1332
+ * Media query mixins for responsive design based on screen width.
1333
+ * Note that these mixins do not detect the device type!
1334
+ */
1303
1335
  /*
1304
1336
  * This file is imported into every component!
1305
1337
  *
@@ -1508,6 +1540,22 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
1508
1540
  * to enable you to truncate a piece of text,
1509
1541
  * after a certain number of lines.
1510
1542
  */
1543
+ /**
1544
+ * The breakpoints below are used to create responsive designs
1545
+ * in Lime's products. Therefore, they are here to get distributed
1546
+ * to all components in other private repos, which rely on this `mixins`
1547
+ * file, to create consistent styles.
1548
+ *
1549
+ * :::important
1550
+ * In very rare cases you should used media queries!
1551
+ * Nowadays, there are many better ways of achieving responsive design
1552
+ * without media queries. For example, using CSS Grid, Flexbox, and their features.
1553
+ * :::
1554
+ */
1555
+ /**
1556
+ * Media query mixins for responsive design based on screen width.
1557
+ * Note that these mixins do not detect the device type!
1558
+ */
1511
1559
  /*
1512
1560
  * This file is imported into every component!
1513
1561
  *
@@ -1676,6 +1724,22 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
1676
1724
  * to enable you to truncate a piece of text,
1677
1725
  * after a certain number of lines.
1678
1726
  */
1727
+ /**
1728
+ * The breakpoints below are used to create responsive designs
1729
+ * in Lime's products. Therefore, they are here to get distributed
1730
+ * to all components in other private repos, which rely on this `mixins`
1731
+ * file, to create consistent styles.
1732
+ *
1733
+ * :::important
1734
+ * In very rare cases you should used media queries!
1735
+ * Nowadays, there are many better ways of achieving responsive design
1736
+ * without media queries. For example, using CSS Grid, Flexbox, and their features.
1737
+ * :::
1738
+ */
1739
+ /**
1740
+ * Media query mixins for responsive design based on screen width.
1741
+ * Note that these mixins do not detect the device type!
1742
+ */
1679
1743
  /*
1680
1744
  * This file is imported into every component!
1681
1745
  *