Skip to content

Commit

Permalink
Merge pull request #2711 from ClearlyClaire/glitch-soc/merge-upstream
Browse files Browse the repository at this point in the history
Port upstream changes up to b2388be
  • Loading branch information
ClearlyClaire committed May 17, 2024
2 parents 87b5cfc + 7b078b4 commit 9668ac5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/javascript/flavours/glitch/actions/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function changeSetting(path, value) {
}

const debouncedSave = debounce((dispatch, getState) => {
if (getState().getIn(['settings', 'saved'])) {
if (getState().getIn(['settings', 'saved']) || !getState().getIn(['meta', 'me'])) {
return;
}

Expand Down
8 changes: 4 additions & 4 deletions app/javascript/flavours/glitch/styles/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4602,10 +4602,6 @@ a.status-card {
outline: $ui-button-focus-outline;
}

.no-reduce-motion .icon {
transition: transform 0.15s ease-in-out;
}

&.active {
color: $primary-text-color;

Expand Down Expand Up @@ -4663,6 +4659,10 @@ a.status-card {
padding: 0;
}

.no-reduce-motion .column-header__button .icon {
transition: transform 150ms ease-in-out;
}

.column-header__collapsible {
max-height: 70vh;
overflow: hidden;
Expand Down

0 comments on commit 9668ac5

Please sign in to comment.