Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2018-10-22 15:29:36 +02:00
parent 7b0b73b6c1
commit e97d87f2d3
7 changed files with 193 additions and 6 deletions

View File

@@ -972,3 +972,38 @@ a.wh:hover {
width: auto !important;
max-width: 1px;
}
.mystyle {
font-size: 11pt;
font-family: Arial;
border-collapse: collapse;
border: 1px solid silver;
}
.pandastable tr {
display: block;
}
.pandastable th, table td {
width: 100px;
}
.pandastable tbody {
display: block;
height: 300px;
overflow: auto;
}
.pandastable td, th {
padding: 5px;
}
.pandastable tr:nth-child(even) {
background: #E0E0E0;
}
.pandastable tr:hover {
background: silver;
cursor: pointer;
}

View File

@@ -501,6 +501,18 @@
overflow: scroll;
}
.maxheightwidth {
position: relative;
max-height: 300px;
overflow: scroll;
}
.maxheightwidthcontent {
position: relative;
max-width: 700px;
overflow: scroll;
}
.main-content li.grid_4 {
grid-column-end: span 1;
}