Fix firefox address bar height issue
This commit is contained in:
parent
62f46f9562
commit
81072c6bc9
|
@ -24,7 +24,7 @@ $width = '40em';
|
|||
<div class="center size-max"
|
||||
style="max-width: <?php echo $width ?>">
|
||||
<div id="content" class="size-max"></div>
|
||||
<div id="actions" class="fixed-bottom width-max"
|
||||
<div id="actions" class="absolute-bottom width-max"
|
||||
style="max-width: <?php echo $width ?>"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -107,8 +107,6 @@ main {
|
|||
|
||||
.meet.item {
|
||||
max-width: 40em;
|
||||
margin-bottom: 1em;
|
||||
border-radius: .2em;
|
||||
}
|
||||
.meet.item .back-avatar {
|
||||
display: grid;
|
||||
|
@ -125,8 +123,6 @@ main {
|
|||
@media (max-width: 700px) {
|
||||
.meet.item .status-avatar img {
|
||||
max-width: 20em !important;
|
||||
position: relative;
|
||||
top: -3em;
|
||||
}
|
||||
}
|
||||
.meet.item .black {
|
||||
|
@ -189,9 +185,6 @@ main {
|
|||
padding-bottom: .8em;
|
||||
}
|
||||
|
||||
.meet.item .content {
|
||||
display: grid;
|
||||
}
|
||||
.item .acct {
|
||||
font-size: .8em;
|
||||
opacity: .7;
|
||||
|
|
|
@ -323,9 +323,3 @@ window.onhashchange = function(e) {
|
|||
return cfg.callback(args);
|
||||
}
|
||||
}
|
||||
|
||||
window.addEventListener('resize', function(e) {
|
||||
document.querySelectorAll('.overlay').forEach(function(node) {
|
||||
node.style.height = window.innerHeight;
|
||||
});
|
||||
})
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
<div class="meet item fixed-top width-max" data-id="{._id}" style="display:none">
|
||||
<div class="back-avatar" style="background-image:url({.account.avatar.url})"></div>
|
||||
<div class="absolute-top width-max height-max black" style="display: ruby">
|
||||
<div class="absolute-top size-max black" style="display: ruby">
|
||||
<div style="height: 100vh;width: 3em;background: black;position: relative;left: -3em;"></div>
|
||||
<div style="height: 100vh;width: 3em;background: black;float: right;position: relative;left: 3em;"></div>
|
||||
</div>
|
||||
<div class="absolute-top width-max height-max content">
|
||||
<div class="status-avatar flex">
|
||||
<div class="absolute-top size-max content" style="overflow: auto">
|
||||
<div style="height: 60%" class="status-avatar flex">
|
||||
<a class="center" href="javascript:app.media.view('{.account.avatar.url}')"/>
|
||||
<img src="{.account.avatar.url}"/>
|
||||
<img class="width-max" src="{.account.avatar.url}"/>
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<div style="height: 40%">
|
||||
<div class="status fixed-bottom width-max"
|
||||
style="bottom: {actionsHeight}; max-width: 40em">
|
||||
style="margin-bottom: {actionsHeight}; max-width: 40em">
|
||||
<div class="flex width-max">
|
||||
<div class="absolute width-max">
|
||||
<div class="date">
|
||||
|
|
Loading…
Reference in New Issue