add display of existing peerings+check if supplied ips are in allowed ip ranges

This commit is contained in:
lare 2022-11-27 00:00:01 +01:00
parent a71132d8a5
commit 4c38c0975f
5 changed files with 138 additions and 20 deletions

View file

@ -71,4 +71,49 @@ footer.flex {
form > div > * {
margin: 10px;
}
.peering {
border-color: var(--other-background);
border-radius: 10px;
padding: 10px;
border-style: inset;
display: grid;
grid-auto-flow: column;
flex-direction: row;
width: 100%;
}
.peering > div {
display: flex;
flex-direction: column;
}
.peering > div > * {
padding: 10px;
}
button {
background-color: #00000020;
border-color: var(--text-color);
border-width: 5px;
padding: 10px;
}
.peering>* {
width:auto;
align-items: center;
}
.peering-edit {
border-color: lightblue;
}
.peering-edit:hover {
background-color: #87cefaaa;
}
.peering-delete {
border-color: darkred;
}
.peering-delete:hover {
background-color: #ff0000aa;
}