-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from camalot/topic/header-fix
- removed the layout, it seemed to break things - added .editorconfig - Merge branch 'develop' into topic/header-fix
- Loading branch information
Showing
2 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = tab | ||
indent_size = 2 | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{less,css}] | ||
charset = utf-8 | ||
|
||
# Tab indentation (no size specified) | ||
[Vagrantfile] | ||
indent_style = tab | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
# Matches the exact files either package.json or .travis.yml | ||
[{package.json,*.yml}] | ||
indent_style = space | ||
indent_size = 2 |
6 changes: 1 addition & 5 deletions
6
plugin/src/main/resources/com/bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<?jelly escape-by-default='true'?> | ||
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form"> | ||
<l:layout> | ||
<l:header> | ||
<link type="text/css" rel="stylesheet" href="${rootURL}/plugin/jenkins-dark-theme/jenkins-dark.min.css" /> | ||
</l:header> | ||
</l:layout> | ||
<link type="text/css" rel="stylesheet" href="${rootURL}/plugin/jenkins-dark-theme/jenkins-dark.min.css" /> | ||
</j:jelly> |