forked from indymedia/epicyon
Clear person options background if file doesn't exist
parent
3777364459
commit
ef96c3b471
|
@ -7936,6 +7936,13 @@ def htmlPersonOptions(cssCache: {}, translate: {}, baseDir: str,
|
||||||
profileStyle.replace('--follow-text-entry-width: 90%;',
|
profileStyle.replace('--follow-text-entry-width: 90%;',
|
||||||
'--follow-text-entry-width: 20%;')
|
'--follow-text-entry-width: 20%;')
|
||||||
|
|
||||||
|
if not os.path.isfile(baseDir + '/accounts/' +
|
||||||
|
'options-background.jpg'):
|
||||||
|
profileStyle = \
|
||||||
|
profileStyle.replace('background-image: ' + \
|
||||||
|
'url("options-background.jpg");',
|
||||||
|
'background-image: none;')
|
||||||
|
|
||||||
# To snooze, or not to snooze? That is the question
|
# To snooze, or not to snooze? That is the question
|
||||||
snoozeButtonStr = 'Snooze'
|
snoozeButtonStr = 'Snooze'
|
||||||
if nickname:
|
if nickname:
|
||||||
|
|
Loading…
Reference in New Issue