Skip to content

Commit

Permalink
Update card-container.css
Browse files Browse the repository at this point in the history
Fixed #5
  • Loading branch information
amnweb authored Mar 4, 2024
1 parent cad4ca0 commit 54b5457
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions chrome/content/card-container.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
@media (prefers-color-scheme: dark) {
.card-container{
--fxview-primary-action-background:#47CBFF;
background-color: #33333e !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
details.card-container {
--fxview-primary-action-background: #47CBFF;
background-color: #33333e !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
}
@media (prefers-color-scheme: light) {
.card-container{
--fxview-primary-action-background:#3672e4;
background-color: #ebebee !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
details.card-container {
--fxview-primary-action-background: #3672e4;
background-color: #ebebee !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
}
.fxview-tab-row-url {
text-decoration: none !important;
color:var(--fxview-primary-action-background) !important
text-decoration: none !important;
color: var(--fxview-primary-action-background) !important
}
.sticky-container.bottom-fade {
background:linear-gradient( to bottom, var(--fxview-background-color) 0%, var(--fxview-background-color) 40%, transparent 100% )!important
}
background: linear-gradient(to bottom, var(--fxview-background-color) 0%, var(--fxview-background-color) 40%, transparent 100%) !important
}

0 comments on commit 54b5457

Please sign in to comment.