Code quality improvement on JS
This commit is contained in:
parent
ec332cf903
commit
7f7216be6e
|
@ -221,6 +221,26 @@
|
||||||
"strictMath": 0,
|
"strictMath": 0,
|
||||||
"strictUnits": 0
|
"strictUnits": 0
|
||||||
},
|
},
|
||||||
|
"\/less\/_editor.less": {
|
||||||
|
"allowInsecureImports": 0,
|
||||||
|
"createSourceMap": 0,
|
||||||
|
"disableJavascript": 0,
|
||||||
|
"fileType": 1,
|
||||||
|
"ieCompatibility": 1,
|
||||||
|
"ignore": 1,
|
||||||
|
"ignoreWasSetByUser": 0,
|
||||||
|
"inputAbbreviatedPath": "\/less\/_editor.less",
|
||||||
|
"outputAbbreviatedPath": "\/css\/_editor.css",
|
||||||
|
"outputPathIsOutsideProject": 0,
|
||||||
|
"outputPathIsSetByUser": 0,
|
||||||
|
"outputStyle": 0,
|
||||||
|
"relativeURLS": 0,
|
||||||
|
"shouldRunAutoprefixer": 0,
|
||||||
|
"shouldRunBless": 0,
|
||||||
|
"strictImports": 0,
|
||||||
|
"strictMath": 0,
|
||||||
|
"strictUnits": 0
|
||||||
|
},
|
||||||
"\/less\/_emojify.less": {
|
"\/less\/_emojify.less": {
|
||||||
"allowInsecureImports": 0,
|
"allowInsecureImports": 0,
|
||||||
"createSourceMap": 0,
|
"createSourceMap": 0,
|
||||||
|
|
|
@ -1376,10 +1376,6 @@ footer .ui.language .menu {
|
||||||
.repository.file.editor .tabular.menu .octicon {
|
.repository.file.editor .tabular.menu .octicon {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
.repository.file.editor .CodeMirror.cm-s-default {
|
|
||||||
border-radius: 3px;
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
.repository.file.editor .commit-form-wrapper {
|
.repository.file.editor .commit-form-wrapper {
|
||||||
padding-left: 64px;
|
padding-left: 64px;
|
||||||
}
|
}
|
||||||
|
@ -2500,6 +2496,16 @@ footer .ui.language .menu {
|
||||||
tab-size: 16 !important;
|
tab-size: 16 !important;
|
||||||
-moz-tab-size: 16 !important;
|
-moz-tab-size: 16 !important;
|
||||||
}
|
}
|
||||||
|
.CodeMirror {
|
||||||
|
font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||||
|
}
|
||||||
|
.CodeMirror.cm-s-default {
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.CodeMirror .cm-comment {
|
||||||
|
background: inherit !important;
|
||||||
|
}
|
||||||
.organization {
|
.organization {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,10 @@
|
||||||
|
.CodeMirror {
|
||||||
|
font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||||
|
&.cm-s-default {
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.cm-comment {
|
||||||
|
background: inherit !important;
|
||||||
|
}
|
||||||
|
}
|
|
@ -326,11 +326,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror.cm-s-default {
|
|
||||||
border-radius: 3px;
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commit-form-wrapper {
|
.commit-form-wrapper {
|
||||||
padding-left: 64px;
|
padding-left: 64px;
|
||||||
.commit-avatar {
|
.commit-avatar {
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
@import "_install";
|
@import "_install";
|
||||||
@import "_form";
|
@import "_form";
|
||||||
@import "_repository";
|
@import "_repository";
|
||||||
|
@import "_editor";
|
||||||
@import "_organization";
|
@import "_organization";
|
||||||
@import "_user";
|
@import "_user";
|
||||||
@import "_dashboard";
|
@import "_dashboard";
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="quick-pull-branch-name">
|
<div class="quick-pull-branch-name {{if not (eq .commit_choice "commit-to-new-branch")}}hide{{end}}">
|
||||||
<div class="new-branch-name-input{{if .Err_Branchname}} error{{end}}">
|
<div class="new-branch-name-input{{if .Err_Branchname}} error{{end}}">
|
||||||
<i class="octicon octicon-git-branch" height="16" width="10"></i>
|
<i class="octicon octicon-git-branch" height="16" width="10"></i>
|
||||||
<input type="text" name="new_branch_name" value="{{.new_branch_name}}" class="form-control input-contrast mr-2 js-quick-pull-new-branch-name" placeholder="New branch name…">
|
<input type="text" name="new_branch_name" value="{{.new_branch_name}}" class="form-control input-contrast mr-2 js-quick-pull-new-branch-name" placeholder="New branch name…">
|
||||||
|
|
Loading…
Reference in New Issue