Skip to content

Commit

Permalink
placeholder text colors, game thumbnail hovers
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious committed Jan 24, 2024
1 parent 498aa4c commit 99dec68
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/stylesheets/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ div:hover > .hover-expand {
}

.Select-placeholder, .Select--single>.Select-control .Select-value {
color: $gray;
color: $input-color-placeholder;
}

.datetime-filter {
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/vortex/charts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}

.recharts-text.recharts-cartesian-axis-tick-value {
fill: $gray;
fill: $gray-dark;
}

.download-chart .recharts-area {
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/vortex/dashlet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
.dashlet-recently-managed {
.list-recently-managed {
display: flex;
overflow-x: auto;
//overflow-x: auto;
> * {
margin: 0 8px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/vortex/dropzone.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
svg {
width: 3em;
height: 3em;
color: $gray;
color: $gray-dark;
}
}
}
Expand Down
8 changes: 8 additions & 0 deletions src/stylesheets/vortex/gamepicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ $thumbnail-width: 256px;

> .game-thumbnail {
margin: $half-gutter !important;

}
}

Expand All @@ -31,6 +32,13 @@ $thumbnail-width: 256px;
height: auto;
border: 0;

box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.35);
transition: 100ms ease-out;

&:hover {
transform: scale(1.05);
}

&panel-primary {
border-color: $border-color;
}
Expand Down
7 changes: 5 additions & 2 deletions src/stylesheets/vortex/main-window.scss
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@

.main-nav-group-title {
font-size: $font-size-small;
margin-left: 10px;
margin-top: 8px;
margin: 8px 0 0 8px;
font-family: $headings-font-family;
text-transform: uppercase;
font-weight: 600;
color: $gray-dark;
// text-transform: uppercase;
}

Expand Down

0 comments on commit 99dec68

Please sign in to comment.