mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- Bootstrap 5 underlines all links by default. Allow this change without reverting as this is likely done to improve accessibility. - In Networks diagram and firewall page, provide exception and remove the underlining. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
70 lines
968 B
CSS
70 lines
968 B
CSS
/*
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
.connection-status-cell {
|
|
width: 4.125rem;
|
|
}
|
|
|
|
.connection-status-label {
|
|
width: 4.125rem;
|
|
padding: 0.3125rem 0;
|
|
text-align: center;
|
|
margin-right: 0.625rem;
|
|
}
|
|
|
|
.connection-actions {
|
|
width: 10rem;
|
|
}
|
|
|
|
.form-action {
|
|
display: inline;
|
|
}
|
|
|
|
.form-action button {
|
|
min-width: 6.25rem;
|
|
}
|
|
|
|
|
|
/* Connection diagram */
|
|
.connection-diagram {
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.connection-diagram a {
|
|
text-decoration: none; /* Not important so make them less noisy */
|
|
}
|
|
|
|
.col-image {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.network-entity {
|
|
max-width: 8rem;
|
|
}
|
|
|
|
.network-type-icon {
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
}
|
|
|
|
.network-connection {
|
|
height: 0.5rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.network-connection-vertical {
|
|
width: 0.5rem;
|
|
margin-left: 3.75rem;
|
|
}
|
|
|
|
.connection-list {
|
|
margin-left: 1.5rem;
|
|
}
|
|
|
|
.connection-list-heading {
|
|
font-weight: bold;
|
|
}
|