Compare commits

..

5 Commits

Author SHA1 Message Date
Frédéric Péters 5febe9a8b8 translation update
gitea/gadjo/pipeline/head This commit looks good Details
2023-04-14 07:56:40 +02:00
Frédéric Péters 7cf72da19c general: add reveal checkbox to password fields (#74652) 2023-04-14 07:56:39 +02:00
Frédéric Péters 76423b24c2 a11y: add skip to content link (#76470)
gitea/gadjo/pipeline/head This commit looks good Details
2023-04-11 10:17:30 +02:00
Frédéric Péters e2a1d668a5 templates: reorder field elements to have label/hint/control/error (#75808)
gitea/gadjo/pipeline/head This commit looks good Details
2023-04-04 18:02:28 +02:00
Frédéric Péters 22caa7a2d4 misc: do not generate unused png icon variants (#72513)
gitea/gadjo/pipeline/head This commit looks good Details
2023-04-04 17:59:16 +02:00
4 changed files with 39 additions and 19 deletions

View File

@ -1093,12 +1093,10 @@ ul#sidepage-menu li a {
border-radius: 2px;
}
$string-color: str-slice($primary-color + '', 2);
$appicons: add, agendas, announces, bankcard, book, calendar, cards, categories, clock, counter, data, facturier, forms, gis, grid, home, identity-management, lingo, mail, management, organizational-units, passerelle, password, phone, portal, portal-agent, porte-doc, roles, security, services, settings, statistics, studio, submission, system, texts, theme, users, workflows;
@each $appicon in $appicons {
ul#sidepage-menu li a.icon-#{$appicon} { background-image: url(icons/#{$appicon}.small.#{$string-color}.png); }
ul#sidepage-menu li a.icon-#{$appicon} { background-image: url(icons/#{$appicon}.small.png); }
ul.apps li.icon-#{$appicon} a { background-image: url(icons/#{$appicon}.large.png); }
ul.apps li.icon-#{$appicon} a:hover { background-image: url(icons/#{$appicon}.large-hover.png); }
}
@ -1377,6 +1375,29 @@ body .leaflet-attribution-flag {
white-space: pre-line;
}
#nav-skip {
position: absolute;
ul, li {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
a {
position: absolute;
line-height: calc(#{$header-height} - 20px);
height: calc(#{$header-height} - 20px);
top: 4px;
left: calc(#{$sidepage-width} + 60px);
width: 20rem;
z-index: 1000;
@extend %button;
}
a:not(:focus) {
@extend .sr-only;
}
}
@import 'grid';
@import 'fx-grid';
@import 'jqueryui';

View File

@ -24,6 +24,11 @@
{% endblock %}
</head>
<body data-gadjo="true" {% block bodyargs %}{% endblock %}>
<div id="nav-skip">
<ul>
<li><a href="#main-content">{% trans "Go to content" %}</a></li>
</ul>
</div>
<div id="top">
{% block sidepage %}
{% endblock %}

View File

@ -19,6 +19,14 @@
<div class="content"
{% if field.id_for_label %}aria-labelledby="{{ field.id_for_label }}_title"{% endif %}
{% block widget-attrs %}{% endblock %}>
{% block widget-hint %}
{% if field.help_text %}
<div class="hint">{{ field.help_text|safe }}</div>
{% endif %}
{% endblock %}
{% block widget-control %}
{{ field }}
{% endblock %}
{% block widget-error %}
{% if field.errors %}
<div class="error"><p>
@ -28,14 +36,6 @@
</p></div>
{% endif %}
{% endblock %}
{% block widget-control %}
{{ field }}
{% endblock %}
{% block widget-hint %}
{% if field.help_text %}
<div class="hint">{{ field.help_text|safe }}</div>
{% endif %}
{% endblock %}
{% block widget-bottom %}{% endblock %}
</div>
{% endblock %}

View File

@ -142,19 +142,13 @@ class build_icons(Command):
if not os.path.exists(destpath):
os.mkdir(destpath)
variants_applications = {
'small': {'colour': 'e7e7e7', 'width': '40'},
'small.white': {'colour': 'ffffff', 'width': '40'},
'small.386ede': {'colour': '386ede', 'width': '40'},
'small.ff375e': {'colour': 'ff375e', 'width': '40'},
'small.6f2b92': {'colour': '6f2b92', 'width': '40'},
'small': {'colour': '386ede', 'width': '40'},
'large': {'colour': 'e7e7e7', 'width': '80'},
'large-hover': {'colour': 'bebebe', 'width': '80'},
}
variants_actions = {
'small': {'colour': '386ede', 'width': '40'},
'small.white': {'colour': 'ffffff', 'width': '40'},
'small.386ede': {'colour': '386ede', 'width': '40'},
'small.ff375e': {'colour': 'ff375e', 'width': '40'},
'small.6f2b92': {'colour': '6f2b92', 'width': '40'},
'hover': {'colour': '2b2b2b', 'width': '40'},
}
for basepath, dirnames, filenames in os.walk('icons'):