Skip to content

Commit

Permalink
Merge pull request jenkinsci#4764 from StefanSpieker/style_cleanup
Browse files Browse the repository at this point in the history
Fixed some code style issues in CSS and Javascript
  • Loading branch information
res0nance authored Jun 5, 2020
2 parents 6485c83 + 8c76e76 commit 7cded8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion war/src/main/js/util/behavior-shim.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function specify(selector, id, priority, behavior) {
// eslint-ignore-next-line
Behaviour.specify(selector, id, priority, behavior);
};
}

export default { specify };
14 changes: 7 additions & 7 deletions war/src/main/less/pluginSetupWizard.less
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
bottom: 0;
left: 0;
z-index: 1000;
background: rgba(0,0,0,.2);
background: rgba(0, 0, 0, 0.2);
text-align: initial;
font-size: 13px;

Expand Down Expand Up @@ -107,7 +107,7 @@
display: block;
bottom: 0px;
right: 50px;
color: rgba(0,0,0,.05);
color: rgba(0, 0, 0, 0.05);
}

.installing-panel{
Expand All @@ -117,7 +117,7 @@
height:33.3%;
position:relative;
z-index:9;
box-shadow:rgba(0,0,0,.5) 0 1px 5px;
box-shadow:rgba(0, 0, 0, 0.5) 0 1px 5px;

@media screen and (max-width: 992px) {
padding:5%;
Expand Down Expand Up @@ -185,7 +185,7 @@
.plugins {
padding-top: 2.75em;
position: relative;
border-left:1px solid rgba(0,0,0,.2);
border-left:1px solid rgba(0, 0, 0, 0.2);

@media screen and (min-width: 768px) {
height: 100%;
Expand Down Expand Up @@ -259,8 +259,8 @@
padding: 0 10px;
height: 2.75em;
z-index: 100;
background:rgba(0,0,0,.03);
border-bottom:1px solid rgba(0,0,0,.2);
background:rgba(0, 0, 0, 0.03);
border-bottom:1px solid rgba(0, 0, 0, 0.2);


.form-control{
Expand Down Expand Up @@ -519,7 +519,7 @@
margin: 5px 3px 0 0;
background: @badge-background;
color: @badge-color;
box-shadow: 0 0 1px 0 rgba(0,0,0,.25);
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);

&:after {
content: '\f14c';
Expand Down

0 comments on commit 7cded8e

Please sign in to comment.