@linzjs/lui 22.9.2 → 22.10.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 +14 -0
- package/dist/components/LuiSelectMenu/LuiSelectMenu.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +8 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +2 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/ContextMenu/context-menu.scss +14 -5
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
3
|
-
@use
|
|
4
|
-
@use
|
|
1
|
+
@use '../../Foundation/Variables/ColorVars.scss' as colors;
|
|
2
|
+
@use '../../Foundation/Variables/FontVars.scss' as fonts;
|
|
3
|
+
@use '../../Foundation/Variables/SpacingVars.scss' as spacing;
|
|
4
|
+
@use '../../Foundation/Utilities' as *;
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Here is where we can override the styles of react-menu
|
|
@@ -68,6 +68,15 @@ li.lui-select-menuItem {
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
.new-tab-link {
|
|
72
|
+
margin-left: auto;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.lui-select-menuItem--interactive {
|
|
77
|
+
.LuiIcon {
|
|
78
|
+
fill: colors.$sea;
|
|
79
|
+
}
|
|
71
80
|
}
|
|
72
81
|
|
|
73
82
|
.lui-select-menuItem--error {
|
|
@@ -135,7 +144,7 @@ li.lui-select-menu-group {
|
|
|
135
144
|
flex: 1;
|
|
136
145
|
// width: 200px;
|
|
137
146
|
div[role='menuitem'] {
|
|
138
|
-
padding-left:
|
|
147
|
+
padding-left: 0;
|
|
139
148
|
text-decoration: none;
|
|
140
149
|
@include fonts.font-regular();
|
|
141
150
|
height: 40px;
|
package/package.json
CHANGED