Skip to content

Commit

Permalink
Dark version of the spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
joelfischerr committed Apr 28, 2019
1 parent 3b383af commit cf5f501
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 16 deletions.
Binary file added public/img/spinner_dark.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 18 additions & 14 deletions src/sass/components/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,27 @@ md-select {
}
}

md-select-menu md-content {
background-color: $background-light-color !important;
}
md-select-menu {
md-content {
background-color: $background-light-color !important;

md-select-menu md-content md-option {
background-color: $background-light-color !important;
color: $text-dark-color;
}
md-option {
background-color: $background-light-color !important;
color: $text-dark-color;

md-select-menu md-content md-option:not([disabled]):hover {
background-color: $button-hover-color !important;
color: $text-dark-color;
}
&:not([disabled]) {
&:hover {
background-color: $button-hover-color !important;
color: $text-dark-color;
}
}

md-select-menu md-content md-option[selected] {
background-color: $button-selected-color !important;
color: $text-dark-color !important;
&[selected] {
background-color: $button-selected-color !important;
color: $text-dark-color !important;
}
}
}
}

md-menu-content md-menu-item {
Expand Down
2 changes: 1 addition & 1 deletion src/sass/components/_emoji_picker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@
z-index: 1;
}
}
}
}
2 changes: 1 addition & 1 deletion tools/spinner/1-export.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def create_png(rotation: int) -> None:
f.name,
])
result.check_returncode()

# All paths must be absolute in macOS

if __name__ == '__main__':
with open('spinner.svg', 'r') as f:
Expand Down
Binary file added tools/spinner/spinner_dark.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 82 additions & 0 deletions tools/spinner/spinner_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cf5f501

Please sign in to comment.