Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Fixing Wilma responsive theme update" #3964

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 21 additions & 15 deletions webapp/src/main/webapp/themes/wilma/css/wilma.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ input.block {
label {
margin-top: .5em;
margin-bottom: .5em;
display: block;
}
label.inline {
display: inline;
Expand Down Expand Up @@ -289,17 +288,17 @@ p.submit {
border-color: #dfe6e6;
}

.editingForm > table > tbody > tr > td.verticalfieldlabel {
.editingForm td {
padding: 3px;
}

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


@media (min-width: 768px) {
.editingForm > table > tbody > tr > td.verticalfieldlabel:first-child {
.editingForm tr > td:first-child {
width: 15%;
}
}
Expand Down Expand Up @@ -724,13 +723,13 @@ ul.individual-urls-people li a {
/* LOG IN------> */
#login {
/* float: right; */
max-width: 332px;
/* width: 314px; */
border: 1px solid #e8ece9;
/* margin-right: 25px; */
padding-bottom: 30px;
margin-bottom: 30px;
overflow: hidden;
margin-top: 30px;
margin-top: 20px;
padding: 15px;
}
body.login #login {
Expand Down Expand Up @@ -768,7 +767,7 @@ h3.internal-auth:hover {
}

#login-form > div {
padding: 10px 28px;
padding: 38px;
}

#login-form label {
Expand Down Expand Up @@ -860,10 +859,13 @@ p.password-note {
padding: .25em;
margin-bottom: 8px;
}
#flash-msg-container,
/* #flash-msg-container,
#welcome-msg-container {
padding: 10px;
}
margin-bottom: 8px;
margin-top: -10px;
margin-right:-10px;
height:34px;
} */
p.external-auth {
margin: 0 auto;
}
Expand Down Expand Up @@ -1866,6 +1868,10 @@ p.address-line {
/* -------------------------------------------------> */
/* SITE ADMIN DASHBOARD ----------------------------> */
/* -------------------------------------------------> */
#adminDashboard {
display: flex;
flex-wrap: wrap;
}

#adminDashboard .pageBodyGroup {
padding: 0 1em .5em 1em;
Expand Down Expand Up @@ -2315,10 +2321,10 @@ span.subclassExpandMinus {
line-height: unset;
}

/* table.form-background tr td {
table.form-background tr td {
width: 100%;
display: block;
} */
}

#wrapper-content > div > div > div > div > table > tbody > tr > td > div > form > div {
display: flex;
Expand All @@ -2334,9 +2340,9 @@ span.subclassExpandMinus {
}

table.classHierarchy {
min-width: initial;
max-width: initial;
width: calc(100% - 25);
min-width: auto;
width: 100%;
margin-left: 0;
}

section#container div {
Expand Down
Loading