mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Tests performed: - Visit networks page, observe that activate/de-activatge buttons have similar width of 7em (as per inspector). Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
49 lines
896 B
HTML
49 lines
896 B
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 {
|
|
width: 7em;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
{% include "connections_list.html" %}
|
|
|
|
{% include "network_topology_main.html" %}
|
|
|
|
{% include "internet_connectivity_main.html" %}
|
|
{% endblock %}
|