Skip to content

Commit

Permalink
Fixed horizonal scroll in the site admin pages
Browse files Browse the repository at this point in the history
  • Loading branch information
milospp committed Oct 2, 2023
1 parent 14d627a commit cdd7bc1
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion webapp/src/main/webapp/themes/wilma/css/wilma.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,23 @@ p.submit {
.editingForm table {
border-color: #dfe6e6;
}

.editingForm td {
padding: 3px;
}

.editingForm tr > td:first-child {
width: 40%;
}


@media (min-width: 768px) {
.editingForm tr > td:first-child {
width: 15%;
}
}


.editingForm .entryFormHead {
background-color: #f1f2ee;
border-color: #dfe6e6;
Expand Down Expand Up @@ -1819,6 +1833,7 @@ a {
}
input[type="submit"] {
cursor: pointer;
text-wrap: balance;
}
input[type="search" i] {
margin: 2px;
Expand Down Expand Up @@ -2270,7 +2285,7 @@ section#container div {

.proxy-profile .profile {
width: 50%;
padding-left: 30px;
padding-left: 12px;
}
}

Expand Down Expand Up @@ -2310,4 +2325,16 @@ section#floatRight {

.classHierarchy {
word-break: break-all;
}

#startup-trace h4, #startup-trace li{
overflow-wrap: anywhere;
}

#indexer {
overflow-x: auto;
}

form li {
overflow-wrap: break-word;
}

0 comments on commit cdd7bc1

Please sign in to comment.