Added request body

This commit is contained in:
2023-05-18 14:05:55 +02:00
parent a411613f27
commit 1f5087b929
7 changed files with 124 additions and 20 deletions

View File

@@ -7,6 +7,7 @@
@import url('r11modal.css');
@import url('r11flexbox.css');
@import url('r11popup.css');
@import url('../../highlight.css');
@font-face {
font-family: 'Material Icons';

View File

@@ -16,6 +16,9 @@
.popup-body{
min-width: 33%;
max-width: 60%;
max-height: 70%;
overflow: scroll;
background-color: white;
box-shadow: 10px 10px 5px lightblue;
min-height: 45%;
@@ -47,6 +50,14 @@
display:none;
}
.hidden-popup-type{
display: none;
}
#history-request-body{
text-align: justify;
}
@keyframes blur {
0% {
backdrop-filter: blur(0px);

View File

@@ -70,15 +70,23 @@
color: white;
}
.table-default td{
text-align: center;
}
#header-table tr td {
border: 1px black solid;
padding: 1%;
padding: 1.5%;
}
#header-table{
border-collapse: collapse;
width: 100%;
height: 100%;
}
#historyTable, td{
padding: 1%;
overflow-x: scroll;
}