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

Update for new header #396

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ THE SOFTWARE.
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>5.4</version>
<version>5.7</version>
<relativePath />
</parent>

Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/lib/samples/sidepanel.jelly
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout" xmlns:st="jelly:stapler">
<div class="app-sidepanel__jenkins-logo">Jenkins</div>

<l:app-bar title="Design Library" />

<l:tasks>
Expand Down
29 changes: 2 additions & 27 deletions src/main/resources/scss/abstracts/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,11 @@
}

#main-panel {
display: flex !important;
flex-direction: column;
width: 100%;
max-width: min(1200px, 60vw);
margin-top: 18px;
margin-left: auto;
margin-right: auto;

.tabBar {
align-self: start;
}

@media (max-width: 970px) {
max-width: none;
@media (min-width: 1200px) {
max-width: min(1200px, 60vw);
}
}

Expand All @@ -41,22 +32,6 @@ a {
}
}

#side-panel .jenkins-app-bar {
margin-top: 50px;
margin-bottom: -10px;
}

.app-sidepanel__jenkins-logo {
position: absolute;
top: 130px;
left: var(--section-padding);
font-size: 0.9375rem;
font-weight: 600;
font-family: "Georgia", serif;
color: var(--text-color-secondary);
margin: 0;
}

.app-sidepanel__heading {
font-size: 0.875rem;
color: var(--text-color-secondary);
Expand Down
Loading