Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Feb 25, 2019
2 parents 302bb50 + f2bc597 commit ec44617
Show file tree
Hide file tree
Showing 62 changed files with 1,121 additions and 144 deletions.
16 changes: 2 additions & 14 deletions app/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'class': 'loggging.StreamHandler',
'formatter': 'verbose',
},
'watchtower': {
Expand Down Expand Up @@ -336,19 +336,7 @@
LOGGING = {}

if SENTRY_DSN:
if LOGGING:
LOGGING['handlers']['sentry'] = {
'level': 'ERROR', # To capture more than ERROR, change to WARNING, INFO, etc.
'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler',
}
LOGGING['loggers']['root']['handlers'].append('sentry');
for logger in ['raven', 'sentry.errors']:
LOGGING['loggers'][logger] = {
'level': 'DEBUG',
'handlers': ['console'],
'propagate': False,
}
else:
if ENV == 'prod':
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
Expand Down
42 changes: 26 additions & 16 deletions app/assets/v2/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,12 @@ input.is-invalid {
width: 100%;
}

.results .bounty_status .yellow_box, .green_box, .blue_box, .pink_box, .lblue_box {
.results .bounty_status .box_1,
.box_2,
.box_3,
.box_4,
.box_5,
.box_6 {
float: left;
width: 1rem;
height: 1rem;
Expand All @@ -1450,29 +1455,34 @@ input.is-invalid {
background-color: #eee;
}

.yellow_box {
color: #FFCE08;
border: 10px solid #FFCE08;
.box_1 {
color: #011f4b;
border: 10px solid #011f4b;
}

.green_box {
color: #F2F6F9;
border: 10px solid #25E899;
.box_2 {
color: #03396c;
border: 10px solid #03396c;
}

.blue_box {
color: #3E00FF;
border: 10px solid #3E00FF;
.box_3 {
color: #005b96;
border: 10px solid #005b96;
}

.box_4 {
color: #6497b1;
border: 10px solid #6497b1;
}

.lblue_box {
color: #fbd0e6;
border: 10px solid #fbd0e6;
.box_5 {
color: #b3cde0;
border: 10px solid #b3cde0;
}

.pink_box {
color: #F9006C;
border: 10px solid #F9006C;
.box_6 {
color: #d3ddf0;
border: 10px solid #d3ddf0;
}

.results .icon {
Expand Down
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/abstract.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/bokeh6.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/city.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/city2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/code.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/code2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/code3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/flowers.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/mountains.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/mountains2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/trees.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/trees2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/avatar/Wallpaper/trees3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/v2/images/kudos/ShowMeWhatYouGot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/v2/images/kudos/ethdenver_2019_final_table.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ec44617

Please sign in to comment.