Skip to content

Commit

Permalink
Merge pull request #271 from salcido/random-fixes
Browse files Browse the repository at this point in the history
Random Fixes
  • Loading branch information
salcido authored Feb 15, 2024
2 parents 474db0d + bb48c11 commit 86d0b8f
Show file tree
Hide file tree
Showing 10 changed files with 92 additions and 19 deletions.
22 changes: 22 additions & 0 deletions css/compact-artist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,28 @@ div[class*="facetsContainer_"] {
}
}

[class*="facetFilter_"] {
padding: 0px 12px 12px;
gap: 6px;

[class*="chips_"] {
gap: 6px;
padding-bottom: 4px;
height: 20px;

[class*="button_"] {

[class*="icon_"] {
line-height: 21px;
}
}
}

[class*="wrapper_"][role="progressbar"] {
height: 0.2rem;
}
}

// artist filters
[class*="dropdownsContainer_"] {
[class*="wrapper_"] {
Expand Down
54 changes: 46 additions & 8 deletions css/dark-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4455,10 +4455,6 @@
}
}

div[class*="noItems_"] {
background: var(--input-bg) !important;
}

nav[class*="profile_"] {
div[class*="user_"] nav[class*="dropdown_"] li a[class*="link_"] {
color: var(--text-normal) !important;
Expand Down Expand Up @@ -5838,9 +5834,6 @@
div[class*="_arrows_"] a {
border: 1px solid var(--headers) !important;
background: var(--headers) !important;
&[class*="_disabled_"] {
background: none !important;
}
}

// progress bar
Expand All @@ -5858,7 +5851,19 @@
}

[class*="addLabelReleaseButton_"] {
border: 1px solid var(--borders) !important;
background: var(--button-green) !important;

[class*="link_"] {
color: var(--white) !important;

&:hover {
color: var(--white) !important;
}

svg path {
fill: var(--white) !important;
}
}
}

[class*="filterButtonContainer_"] {
Expand Down Expand Up @@ -5971,4 +5976,37 @@
}
}


// List Explorer
[class*="listExplorerHeroContent_"] {
background-color: var(--box-shadow-dark) !important;

[class*="_link"] {
background: var(--button-green) !important;
color: var(--text-bold) !important;
}
}

[class*="listOfListsTable_"] {
thead {
background: var(--headers) !important;
}
}

[class*="listOfListsTable_"] {
tr:nth-child(2n) {
background-color: var(--row-even) !important;
}
}

[class*="paginationAndShow_"] {
[class*="selectContainer_"] {
border: 1px solid var(--borders) !important;

select {
color: var(--text-bold) !important;
}
}
}

}
5 changes: 5 additions & 0 deletions css/large-youtube-playlists.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@
max-height: 300px !important;
}

ul[class*="videos_"] button img {
width: 60px;
aspect-ratio: auto 60 / 45;
height: 45px;
}
12 changes: 11 additions & 1 deletion css/new-release-page-fixes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,18 @@
}
}

/* New Label Page */
/* Hide disabled pagination */
div[class*="_arrows_"] a {
&[class*="_disabled_"] {
background: none !important;
visibility: hidden;
}
}


/* Monolith Fixes */
/* Stars align on release stats page (A dark theme exclusive!) */
/* Stars align on release stats page */
/* https://www.discogs.com/release/stats/3432706 */
.release_stats_group_list ul li {
display: flex;
Expand Down
4 changes: 3 additions & 1 deletion html/learn.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ <h2 id="blockSellers">Block Sellers</h2>
<!-- Collection Box Fix -->
<div class="feature-block">
<h2 id="collectionBoxFix">Collection Box Fix</h2>
<p>Moves the green In Collection box back to it's original location on the Release Page.</p>
<p>Moves the In Collection / In Wantlist boxes back to their original locations on the Release Page.</p>
<img src="../img/learn/collection-box-after.png" class="max-width mt-3" />
<figcaption>Feature enabled</figcaption>
</div>

<!-- Compact Artist Page -->
Expand Down
Binary file added img/learn/collection-box-after.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 2 additions & 6 deletions js/popup/change-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,11 @@ module.exports = {
removedFeatures: [],
updates: [
{
name: 'Update',
description: 'Dashboard Link has been renamed to Original Dashboard Link'
},
{
name: 'Update',
name: 'Bug Fix',
description: 'Release Scanner has been updated to work with the new Artist and Label Pages. Let me know if you find any issues with it.'
},
],
thanks: ['Massive thank you to Thomas L. and Noah S. for the kind donations!'],
thanks: [],
},
],
previous: []
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Discogs Enhancer",
"short_name": "Discogs Enhancer",
"description": "Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!",
"version": "3.6.10",
"version": "3.6.11",
"author": "Matthew Salcido",
"homepage_url": "https://www.discogs-enhancer.com",
"action": {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discogs-enhancer",
"version": "3.6.10",
"version": "3.6.11",
"description": "A Chrome extension that adds useful functionality to Discogs.com! https://www.discogs-enhancer.com",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 86d0b8f

Please sign in to comment.