Changed default color for meet.item text background + little UI changes
This commit is contained in:
parent
99423215b1
commit
35145b9677
|
@ -25,7 +25,12 @@
|
|||
vars: {
|
||||
app_dir: '<?php echo APP_DIR ?>',
|
||||
js_dir: '<?php echo APP_DIR ?>/js',
|
||||
default_icon: '/assets/images/default_profile.png',
|
||||
defaults: {
|
||||
icon: '/assets/images/default_profile.png',
|
||||
meet: {
|
||||
text_bgcolor: '#93227ce8',
|
||||
},
|
||||
},
|
||||
},
|
||||
}; </script>
|
||||
<?php tpl_scripts(['base', 'navmenu', 'carousel', 'app']) ?>
|
||||
|
|
|
@ -126,7 +126,7 @@ main {
|
|||
.meet.item .status { color: #fff }
|
||||
.meet.item .status-content {
|
||||
padding: 1em;
|
||||
box-shadow: 0px 0px 1em #0000008c;
|
||||
box-shadow: 0px 2px 1px #0000008c;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.meet.item .status-content .text {
|
||||
|
@ -135,8 +135,7 @@ main {
|
|||
font-size: 1.2em;
|
||||
word-break: break-word;
|
||||
}
|
||||
.meet.item .status-content pre {
|
||||
font-family: inherit !important;
|
||||
.meet.item .status-content .text p {
|
||||
margin: 0 !important;
|
||||
}
|
||||
.meet.item .status .profile { padding: 1em 2em; }
|
||||
|
|
|
@ -15,13 +15,13 @@ app.pages.meet = {
|
|||
if (k === 'date') return dayjs(parseInt(v)).fromNow(true);
|
||||
});
|
||||
var item = json[i];
|
||||
var icon = app.vars.default_icon;
|
||||
var icon = app.vars.defaults.icon;
|
||||
if (item.account.avatar !== undefined &&
|
||||
item.account.avatar.length > 0)
|
||||
icon = item.account.avatar[0].url[0];
|
||||
var textClr = item.text_color;
|
||||
if (textClr === undefined)
|
||||
textClr = '#00000094';
|
||||
textClr = app.vars.defaults.meet.text_bgcolor;
|
||||
tpl = tpl.replaceAll('{avatar}', htmlescape(icon));
|
||||
tpl = tpl.replaceAll('{actionsHeight}', '6em');
|
||||
tpl = tpl.replaceAll('{textColor}', htmlescape(textClr));
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
<div class="status-content center width-max"
|
||||
style="background: {textColor};">
|
||||
<div class="text"><pre>{.text}</pre></div>
|
||||
<div class="text"><p>{.text}</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="profile flex">
|
||||
|
|
Loading…
Reference in New Issue