Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed May 16, 2022
1 parent 62fbc3a commit 43e4f5c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 22 deletions.
46 changes: 27 additions & 19 deletions war/src/main/less/modules/section.less
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@
&::after {
position: absolute;
content: "";
top: -10px;
left: -10px;
bottom: -10px;
right: -10px;
inset: -10px;
z-index: -1;
border-radius: 10px;
transition: var(--standard-transition);
Expand Down Expand Up @@ -110,30 +107,35 @@
align-items: center;
justify-content: center;
margin: 0 1rem 0 0;
width: 48px;
height: 48px;
margin: 0 1rem 0 0;
width: 3rem;
height: 3rem;
flex-shrink: 0;
color: var(--text-color);

&::before {
&::before,
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
inset: 0;
border-radius: 100%;
pointer-events: none;
}

&::before {
background: currentColor;
opacity: 0.1;
pointer-events: none;
}

&::after {
border: 1px solid currentColor;
opacity: 0.015;
}

img,
svg {
position: relative;
width: 24px !important;
height: 24px !important;
width: 50% !important;
height: 50% !important;
color: currentColor;
}

Expand All @@ -152,6 +154,7 @@
padding: 0 0.4rem;
box-shadow: 0 1px 1px rgba(black, 0.1);
color: white;
animation: animate-in-badge var(--elastic-transition) 0.1s both;

&::after {
content: "";
Expand All @@ -171,15 +174,20 @@
dt {
font-size: 0.95rem;
font-weight: 600;
margin: 0 0 2px 0;
margin: 0 0 0.25rem 0;
color: var(--text-color);
}

dd {
color: var(--text-color-secondary);
font-weight: 500;
margin: 0;
line-height: 1.66;
margin-right: 10px;
line-height: 1.6;
margin: 0 10px 0 0;
}
}

@keyframes animate-in-badge {
from {
transform: scale(0);
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* ----------- Manage Jenkins page ----------- */

.manage-messages a,
.manage-messages a:visited {
color: inherit !important;
Expand Down
2 changes: 1 addition & 1 deletion war/src/main/less/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ html {
@import './modules/content-blocks';
@import './modules/icon-size';
@import './modules/icons';
@import './modules/manage-jenkins';
@import './modules/page-footer';
@import './modules/page-header';
@import './modules/panes-and-bigtable';
Expand All @@ -55,5 +54,6 @@ html {
@import './modules/tooltips';

@import './pages/about';
@import './pages/manage-jenkins';
@import './pages/plugin-manager';
@import './pages/setupWizardFirstUser';

0 comments on commit 43e4f5c

Please sign in to comment.