Porównaj commity

...

4 Commity

Autor SHA1 Wiadomość Data
Nolan Lawson 750235cd8f 2.5.1 2022-12-26 11:35:49 -08:00
Nolan Lawson b5cad87aaf
fix: lighten button colors on some themes (#2331) 2022-12-26 11:29:12 -08:00
Nick Colley a85ff62d48
fix: pitchback svgs not being visible (#2328) 2022-12-26 11:27:53 -08:00
Nick Colley e06f63684e
fix: improve dark theme icons (#2327) 2022-12-26 11:26:58 -08:00
6 zmienionych plików z 31 dodań i 4 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
{
"name": "pinafore",
"description": "Alternative web client for Mastodon",
"version": "2.5.0",
"version": "2.5.1",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || ^16.0.0 || ^18.0.0"

Wyświetl plik

@ -12,3 +12,10 @@ $compose-background: lighten($main-theme-color, 17%);
@import "_base.scss";
@import "_light_scrollbars.scss";
:root {
// make the action buttons a bit lighter
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
}

Wyświetl plik

@ -11,4 +11,11 @@ $focus-outline: lighten($main-theme-color, 30%);
$compose-background: lighten($main-theme-color, 32%);
@import "_base.scss";
@import "_light_scrollbars.scss";
@import "_light_scrollbars.scss";
:root {
// make the action buttons a bit lighter
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
}

Wyświetl plik

@ -23,6 +23,11 @@ $compose-background: darken($main-theme-color, 12%);
--button-primary-bg-hover: #56a7e1;
--button-primary-border: transparent;
--action-button-fill-color: #{lighten($main-theme-color, 30%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 36%)};
--action-button-fill-color-active: #{lighten($main-theme-color, 42%)};
--action-button-fill-color-pressed: #2b90d9;
--action-button-fill-color-pressed-hover: #2b90d9;
--action-button-fill-color-pressed-hover: #{darken(#2b90d9, 6%)};
--action-button-fill-color-pressed-active: #{darken(#2b90d9, 12%)};
}

Wyświetl plik

@ -12,4 +12,10 @@ $compose-background: darken($main-theme-color, 12%);
@import "_base.scss";
@import "_dark.scss";
@import "_dark_scrollbars.scss";
@import "_dark_scrollbars.scss";
:root {
--action-button-fill-color-pressed: #{lighten(saturate($main-theme-color, 25%), 8%)};
--action-button-fill-color-pressed-hover: #{lighten(saturate($main-theme-color, 25%), 12%)};
--action-button-fill-color-pressed-active: #{lighten(saturate($main-theme-color, 25%), 15%)};
}

Wyświetl plik

@ -39,4 +39,6 @@ $compose-background: darken($main-theme-color, 12%);
--action-button-fill-color-pressed: #{lighten($main-theme-color, 85%)};
--action-button-fill-color-pressed-hover: #{lighten($main-theme-color, 100%)};
--action-button-fill-color-pressed-active: #{lighten($main-theme-color, 80%)};
--svg-fill: #{lighten($main-theme-color, 50%)};
}