Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
a00010bc
Commit
a00010bc
authored
Apr 18, 2025
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix action bar margin, menu text color and address name truncation
parent
8d48fe74
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
4 deletions
+6
-4
menu.recipe.ts
toolkit/theme/recipes/menu.recipe.ts
+1
-1
Marketplace.tsx
ui/pages/Marketplace.tsx
+2
-1
ActionBar.tsx
ui/shared/ActionBar.tsx
+1
-0
AddressEntity.tsx
ui/shared/entities/address/AddressEntity.tsx
+1
-1
AddressEntityContentProxy.tsx
ui/shared/entities/address/AddressEntityContentProxy.tsx
+1
-1
No files found.
toolkit/theme/recipes/menu.recipe.ts
View file @
a00010bc
...
@@ -25,7 +25,7 @@ export const recipe = defineSlotRecipe({
...
@@ -25,7 +25,7 @@ export const recipe = defineSlotRecipe({
},
},
item
:
{
item
:
{
textDecoration
:
'
none
'
,
textDecoration
:
'
none
'
,
color
:
'
initial
'
,
color
:
'
text.primary
'
,
userSelect
:
'
none
'
,
userSelect
:
'
none
'
,
borderRadius
:
'
none
'
,
borderRadius
:
'
none
'
,
width
:
'
100%
'
,
width
:
'
100%
'
,
...
...
ui/pages/Marketplace.tsx
View file @
a00010bc
...
@@ -170,7 +170,7 @@ const Marketplace = () => {
...
@@ -170,7 +170,7 @@ const Marketplace = () => {
<
IconSvg
name=
"dots"
/>
<
IconSvg
name=
"dots"
/>
</
IconButton
>
</
IconButton
>
</
MenuTrigger
>
</
MenuTrigger
>
<
MenuContent
>
<
MenuContent
zIndex=
"banner"
>
{
links
.
map
(({
label
,
href
,
icon
})
=>
(
{
links
.
map
(({
label
,
href
,
icon
})
=>
(
<
MenuItem
key=
{
label
}
value=
{
label
}
asChild
>
<
MenuItem
key=
{
label
}
value=
{
label
}
asChild
>
<
Link
external
href=
{
href
}
variant=
"menu"
gap=
{
0
}
>
<
Link
external
href=
{
href
}
variant=
"menu"
gap=
{
0
}
>
...
@@ -205,6 +205,7 @@ const Marketplace = () => {
...
@@ -205,6 +205,7 @@ const Marketplace = () => {
showShadow
showShadow
display=
"flex"
display=
"flex"
flexDirection=
"column"
flexDirection=
"column"
mt=
{
0
}
mx=
{
{
base
:
-
3
,
lg
:
-
12
}
}
mx=
{
{
base
:
-
3
,
lg
:
-
12
}
}
px=
{
{
base
:
3
,
lg
:
12
}
}
px=
{
{
base
:
3
,
lg
:
12
}
}
pt=
{
{
base
:
4
,
lg
:
6
}
}
pt=
{
{
base
:
4
,
lg
:
6
}
}
...
...
ui/shared/ActionBar.tsx
View file @
a00010bc
...
@@ -29,6 +29,7 @@ const ActionBar = ({ children, className, showShadow }: Props) => {
...
@@ -29,6 +29,7 @@ const ActionBar = ({ children, className, showShadow }: Props) => {
className=
{
className
}
className=
{
className
}
backgroundColor=
{
{
_light
:
'
white
'
,
_dark
:
'
black
'
}
}
backgroundColor=
{
{
_light
:
'
white
'
,
_dark
:
'
black
'
}
}
pt=
{
6
}
pt=
{
6
}
mt=
{
-
6
}
pb=
{
{
base
:
6
,
lg
:
3
}
}
pb=
{
{
base
:
6
,
lg
:
3
}
}
mx=
{
{
base
:
-
3
,
lg
:
0
}
}
mx=
{
{
base
:
-
3
,
lg
:
0
}
}
px=
{
{
base
:
3
,
lg
:
0
}
}
px=
{
{
base
:
3
,
lg
:
0
}
}
...
...
ui/shared/entities/address/AddressEntity.tsx
View file @
a00010bc
...
@@ -128,7 +128,7 @@ const Content = chakra((props: ContentProps) => {
...
@@ -128,7 +128,7 @@ const Content = chakra((props: ContentProps) => {
);
);
return
(
return
(
<
Tooltip
content=
{
label
}
contentProps=
{
{
maxW
:
{
base
:
'
calc(100vw - 8px)
'
,
lg
:
'
400px
'
}
}
}
>
<
Tooltip
content=
{
label
}
contentProps=
{
{
maxW
:
{
base
:
'
calc(100vw - 8px)
'
,
lg
:
'
400px
'
}
}
}
triggerProps=
{
{
minW
:
0
}
}
>
<
Skeleton
loading=
{
props
.
isLoading
}
overflow=
"hidden"
textOverflow=
"ellipsis"
whiteSpace=
"nowrap"
{
...
styles
}
>
<
Skeleton
loading=
{
props
.
isLoading
}
overflow=
"hidden"
textOverflow=
"ellipsis"
whiteSpace=
"nowrap"
{
...
styles
}
>
{
nameText
}
{
nameText
}
</
Skeleton
>
</
Skeleton
>
...
...
ui/shared/entities/address/AddressEntityContentProxy.tsx
View file @
a00010bc
...
@@ -49,7 +49,7 @@ const AddressEntityContentProxy = (props: ContentProps) => {
...
@@ -49,7 +49,7 @@ const AddressEntityContentProxy = (props: ContentProps) => {
);
);
return
(
return
(
<
Tooltip
content=
{
content
}
interactive
contentProps=
{
{
maxW
:
{
base
:
'
calc(100vw - 8px)
'
,
lg
:
'
410px
'
}
}
}
>
<
Tooltip
content=
{
content
}
interactive
contentProps=
{
{
maxW
:
{
base
:
'
calc(100vw - 8px)
'
,
lg
:
'
410px
'
}
}
}
triggerProps=
{
{
minW
:
0
}
}
>
<
Box
display=
"inline-flex"
w=
"100%"
>
<
Box
display=
"inline-flex"
w=
"100%"
>
<
EntityBase
.
Content
<
EntityBase
.
Content
{
...
props
}
{
...
props
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment