mirror of https://github.com/jenkinsci/jenkins.git
Init
This commit is contained in:
parent
cabc8f67b9
commit
9657d460ac
|
|
@ -200,7 +200,7 @@ $semantics: (
|
|||
--link-dark-text-decoration: none;
|
||||
--link-dark-text-decoration--hover: underline;
|
||||
--link-dark-text-decoration--active: underline;
|
||||
--link-dark-font-weight: 600;
|
||||
--link-dark-font-weight: 500;
|
||||
|
||||
// Pane
|
||||
--pane-border-width: 1px;
|
||||
|
|
|
|||
|
|
@ -498,7 +498,7 @@ div.listview-jobs {
|
|||
}
|
||||
|
||||
td {
|
||||
padding: 8px;
|
||||
padding: 0 8px 8px 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,9 +10,6 @@
|
|||
padding: 8px 0;
|
||||
color: var(--pane-header-text-color);
|
||||
background: var(--pane-header-bg);
|
||||
border: var(--pane-border-width) solid var(--pane-header-border-color);
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.pane {
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
@use "../abstracts/mixins";
|
||||
|
||||
#side-panel .pane-frame {
|
||||
border-radius: 0;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-color: var(--panel-border-color);
|
||||
border-width: 1px;
|
||||
border-radius: 1rem;
|
||||
background: var(--card-background);
|
||||
border: var(--card-border-width) solid var(--card-border-color);
|
||||
margin-left: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#side-panel .pane-header {
|
||||
|
|
@ -20,16 +20,14 @@
|
|||
#side-panel .pane-header,
|
||||
#side-panel .pane-footer {
|
||||
color: var(--link-dark-color);
|
||||
background-color: var(--panel-header-bg-color);
|
||||
border-radius: 0;
|
||||
border-width: 1px;
|
||||
padding: 0.5rem 1.25rem;
|
||||
background: transparent;
|
||||
padding: 0.65rem 1rem;
|
||||
}
|
||||
|
||||
#side-panel .pane-header-title {
|
||||
display: inline-block;
|
||||
flex: 1;
|
||||
font-weight: bold;
|
||||
font-weight: 500;
|
||||
|
||||
& > div {
|
||||
font-weight: normal;
|
||||
|
|
@ -85,19 +83,11 @@
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#side-panel .pane-header a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#side-panel .pane-content a {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build Queue
|
||||
*/
|
||||
#buildQueue {
|
||||
margin-bottom: var(--section-padding);
|
||||
margin-bottom: calc(var(--section-padding) / 2);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -257,7 +247,7 @@
|
|||
.jenkins-pane__header--build-history {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr auto;
|
||||
font-weight: bold !important;
|
||||
font-weight: 500 !important;
|
||||
|
||||
.jenkins-table__cell--tight {
|
||||
width: auto;
|
||||
|
|
|
|||
Loading…
Reference in New Issue