roundabout,
created on Thursday, 11 July 2024, 12:14:07 (1720700047),
received on Wednesday, 31 July 2024, 06:54:50 (1722408890)
Author identity: vlad <vlad.muntoiu@gmail.com>
04123ba23d748483c264c3121cc6dad82f37589f
static/efficient-ui/dialogs.css
@@ -4,7 +4,6 @@ dialog::backdrop {
}
dialog:modal {
pointer-events: all;
opacity: 1;
visibility: visible;
}
@@ -30,7 +29,6 @@ dialog {
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
visibility: hidden;
}
@@ -52,12 +50,4 @@ dialog.sheet-top {
dialog.sheet-bottom {
justify-content: stretch;
align-items: flex-end;
}
dialog {
pointer-events: none !important;
}
dialog > * {
pointer-events: all;
}
static/style.css
@@ -197,7 +197,7 @@ dd {
}
}
@media screen and (min-width: 641px) {
@media screen and (min-width: 481px) {
#sidenav-trigger {
display: none;
}
@@ -206,8 +206,8 @@ dd {
}
}
@media screen and (max-width: 640px) {
#navbar-separator ~ a {
@media screen and (max-width: 480px) {
#main-nav-links-desktop {
display: none;
}
}
templates/default.html
@@ -111,7 +111,8 @@
{% block breadcrumbs %}{% endblock %}
</ul>
<div class="flexible-space" id="navbar-separator"></div>
<x-buttonbox style="align-items: center; gap: 12px;">
<x-buttonbox style="align-items: center; gap: 12px;" id="main-nav-links-desktop">
{% if logged_in_user %}
<a href="/{{ logged_in_user }}">
<x-hbox class="box-center" style="--gap-box: 1ch;">
templates/home.html
@@ -9,7 +9,7 @@
{% endblock %}
{% block content %}
<x-frame style="--width: 896px;">
<x-frame style="--width: 896px; --padding: 1em">
<h1>{{ config.site_name }}</h1>
<h2>{% trans %}Search{% endtrans %}</h2>
<form action="/search" method="get" role="search" class="buttonbox">
templates/login.html
@@ -17,7 +17,7 @@
}
}
</style>
<x-frame style="--width: 384px;">
<x-frame style="--width: 384px; --padding: 1em;">
<x-hbox id="login-forms">
<x-vbox>
<h2>{% trans %}Log in{% endtrans %}</h2>
templates/new-repo.html
@@ -6,7 +6,7 @@
{% endblock %}
{% block content %}
<x-frame style="--width: 384px;">
<x-frame style="--width: 384px; --padding: 1em;">
<x-vbox>
<h1>{% trans %}Create repository{% endtrans %}</h1>
<form method="post" id="create">
templates/user-profile-followers.html
@@ -2,7 +2,7 @@
{% set active_page = "followers" %}
{% block content %}
<x-frame style="--width: 768px;">
<x-frame style="--width: 768px; --padding: 1em;">
<x-hbox class="wrap homogenous">
{% if user.followers | length %}
{% for follower in user.followers %}
templates/user-profile-overview.html
@@ -2,7 +2,7 @@
{% set active_page = "profile" %}
{% block content %}
<x-frame style="--width: 768px;">
<x-frame style="--width: 768px; --padding: 1em;">
<x-vbox>
<x-hbox style="align-items: center;">
<img src="/info/{{ user.username }}/avatar" class="avatar" style="width: 128px; height: 128px;">
templates/user-profile-repositories.html
@@ -2,7 +2,7 @@
{% set active_page = "repositories" %}
{% block content %}
<x-frame style="--width: 768px;">
<x-frame style="--width: 768px; --padding: 1em;">
<ul style="list-style: none;" class="noindent">
{% if repos %}
{% for repo in repos %}