Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Dark Theme #763

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c84ba02
Add settings dialog to set the theme
joelfischerr Feb 27, 2019
83c415c
Add a light and a dark theme
joelfischerr Feb 27, 2019
db681a7
Rename runTheme() to loadTheme()
joelfischerr Feb 27, 2019
12a927f
Fixed formatting
joelfischerr Feb 28, 2019
46cda86
Fixed formatting error
joelfischerr Feb 28, 2019
894b7c7
Battery icon needs vendor prefixes
joelfischerr Feb 28, 2019
80066de
Minor formatting fixes
joelfischerr Feb 28, 2019
0100297
Tests should use one or both of the themes
joelfischerr Feb 28, 2019
2bd3134
Fixed typo
joelfischerr Feb 28, 2019
231b518
Removed unecessary comment
joelfischerr Feb 28, 2019
0971c34
Theme css files are now in public/css instead of public/css/themes
joelfischerr Feb 28, 2019
e136b19
Update styling of voice-call state messages
joelfischerr Mar 12, 2019
650bb75
Update colors of material icons
joelfischerr Mar 12, 2019
937d178
Dialogs should now be colored correctly 🥳
joelfischerr Mar 12, 2019
dda92f6
Temporarily disable lint for dialogs placeholder styling
joelfischerr Mar 12, 2019
a86fc44
Disable no-mergeable-selectors in _dialogs.scss
joelfischerr Mar 12, 2019
a472bda
Cleanup border colours
joelfischerr Mar 12, 2019
ea2ea22
Colour cleanup
joelfischerr Mar 12, 2019
3c0eea7
Fix typo
joelfischerr Mar 12, 2019
424b7e9
Light theme updates
joelfischerr Apr 28, 2019
102c693
Fix button coloring in light theme
joelfischerr Apr 28, 2019
3b383af
Started color cleanup
joelfischerr Apr 28, 2019
cf5f501
Dark version of the spinner
joelfischerr Apr 28, 2019
04ea757
Create dark version of spinner.gif
joelfischerr May 2, 2019
c08468a
Fix navigation colors
joelfischerr May 2, 2019
246150b
Do not use the contact color given by the iOS App
joelfischerr May 2, 2019
d3e15b8
Button color updates
joelfischerr May 2, 2019
ed6219d
Triple =
joelfischerr May 2, 2019
6263104
Created themed version of some icons
joelfischerr May 2, 2019
80af745
Scrollbar color update
joelfischerr May 2, 2019
65b5a3d
Tried to improve theme.ts
joelfischerr May 2, 2019
dfe3d51
Update package-lock.json
joelfischerr May 2, 2019
add2aed
[Theme Fix] Navigation separator colors, video indicator in conversat…
joelfischerr May 3, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dist/*.js.map
dist/*.tar.gz
public/css/*.css
public/css/*.map
public/css/themes/*
release/

# Node stuff
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<link rel="stylesheet" href="fonts/material.css?v=[[VERSION]]" type="text/css">

<!-- Own stylesheets -->
<link rel="stylesheet" href="css/app.css?v=[[VERSION]]">
<link rel="stylesheet" href="{{ 'css/' + ctrl.themeService.getCSSForThemeID(ctrl.themeService.currentTheme) + '?v=[[VERSION]]' }}">
</head>

<body class="{{ ctrl.statusClass }}" ng-class="{expanded: ctrl.expandStatusBar}">
Expand Down
Loading