Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
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
LuckySwap
interface
Commits
ac4e64db
Unverified
Commit
ac4e64db
authored
Oct 28, 2022
by
lynn
Committed by
GitHub
Oct 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Web 1544 filter bar remove transparent bg on nft collection pages (#5034)
* remove blur effect * init
parent
3a0c9301
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
CollectionNfts.tsx
src/nft/components/collection/CollectionNfts.tsx
+1
-2
sprinkles.css.ts
src/nft/css/sprinkles.css.ts
+1
-0
darkTheme.ts
src/nft/themes/darkTheme.ts
+1
-0
lightTheme.ts
src/nft/themes/lightTheme.ts
+1
-0
No files found.
src/nft/components/collection/CollectionNfts.tsx
View file @
ac4e64db
...
...
@@ -62,7 +62,6 @@ const rarityStatusCache = new Map<string, boolean>()
const
ActionsContainer
=
styled
.
div
`
display: flex;
margin-top: 12px;
justify-content: space-between;
`
...
...
@@ -402,7 +401,7 @@ export const CollectionNfts = ({ contractAddress, collectionStats, rarityVerifie
return
(
<>
<
AnimatedBox
position=
"sticky"
top=
"72"
width=
"full"
zIndex=
"3"
marginBottom=
"20"
>
<
Box
backgroundColor=
"background
Floating"
width=
"full"
style=
{
{
backdropFilter
:
'
blur(24px)
'
}
}
>
<
Box
backgroundColor=
"background
Backdrop"
width=
"full"
padding=
"16"
>
<
ActionsContainer
>
<
Row
gap=
"12"
>
<
TraceEvent
...
...
src/nft/css/sprinkles.css.ts
View file @
ac4e64db
...
...
@@ -18,6 +18,7 @@ const themeContractValues = {
backgroundModule
:
''
,
backgroundOutline
:
''
,
backgroundSurface
:
''
,
backgroundBackdrop
:
''
,
modalBackdrop
:
''
,
...
...
src/nft/themes/darkTheme.ts
View file @
ac4e64db
...
...
@@ -17,6 +17,7 @@ export const darkTheme: Theme = {
backgroundModule
:
vars
.
color
.
grey800
,
backgroundOutline
:
`rgba(153,161,189,0.24)`
,
backgroundSurface
:
vars
.
color
.
grey900
,
backgroundBackdrop
:
'
#000
'
,
modalBackdrop
:
'
linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
'
,
...
...
src/nft/themes/lightTheme.ts
View file @
ac4e64db
...
...
@@ -14,6 +14,7 @@ export const lightTheme: Theme = {
backgroundModule
:
vars
.
color
.
grey50
,
backgroundOutline
:
`rgba(94,104,135,0.24)`
,
backgroundSurface
:
'
#FFFFFF
'
,
backgroundBackdrop
:
'
#FFF
'
,
modalBackdrop
:
'
rgba(0, 0, 0, 0.3)
'
,
...
...
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