FreedomBox/plinth/modules/networks/templates/networks_configuration.html
Fioddor Superconcentrado c88acb36d0
networks: css: Make button wider in network list
testing:
- Might this impact somewhere else (same form-button combination)?
- Yapf: not applicable.
- Flake8: without errors or warnings for changed files.
- (Unit) tests: run without errors.

Signed-off-by: Fioddor Superconcentrado <fioddor@gmail.com>
[sunil: Use min width instead of fixed width]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2020-10-20 11:57:21 -07:00

58 lines
1.1 KiB
HTML

{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block page_head %}
<style type="text/css">
.connection-status-label {
display: inline-block;
width: 5.5em;
padding: 5px 0px;
text-align: center;
margin-right: 10px;
}
.connection-show-label {
display: inline-block;
width: 40%;
}
.connection-type-label {
display: inline-block;
}
.list-group-item .btn {
margin: -2px 0;
}
.form-action.pull-right {
margin-right: 20px;
}
.form-action button {
min-width: 7em;
}
</style>
{% endblock %}
{% block configuration %}
{% include "connections_list.html" %}
{% include "network_topology_main.html" %}
{% include "internet_connectivity_main.html" %}
<h3>{%trans "Advanced" %} </h3>
<p>
{% blocktrans trimmed %}
Advanced networking operations such as bonding, bridging and VLAN
management are provided by the <a href="/_cockpit/network">Cockpit</a>
app.
{% endblocktrans %}
</p>
{% endblock %}