Last active
August 29, 2017 21:32
-
-
Save rdsubhas/e4156472ab03a86152372a29d37ffbe1 to your computer and use it in GitHub Desktop.
Jenkins Material + Extras
This file contains hidden or 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
@import url("https://cdn.rawgit.com/afonsof/jenkins-material-theme/gh-pages/dist/material-light.css"); | |
body, table, form, input, td, th, p, textarea, select { | |
font-family: Roboto, sans-serif !important; | |
} | |
h1 { | |
margin: 5px 0; | |
} | |
/* Build console output */ | |
.console-output { | |
overflow: auto !important; | |
} | |
.console-output, .console-output pre, .console-output a, .console-output * { | |
white-space: pre !important; | |
font-size: 12px !important; | |
line-height: 1rem !important; | |
} | |
/* Header */ | |
#header { | |
height: 36px !important; | |
padding: 0px !important; | |
text-transform: none !important; | |
letter-spacing: normal !important; | |
} | |
#header #jenkins-home-link { | |
height: 32px !important; | |
} | |
#header #jenkins-head-icon, #header #jenkins-name-icon { | |
max-height: 28px !important; | |
width: auto !important; | |
} | |
#header #jenkins-name-icon { | |
bottom: 0px !important; | |
} | |
/* Sidebar */ | |
#side-panel .task-icon-link[href='/'] { | |
left: 0 !important; | |
top: 0 !important; | |
padding: 0 12px !important; | |
} | |
/* Footer */ | |
span.page_generated, .jenkins_ver:after { | |
display: none; | |
} | |
/* View tabs */ | |
.tabBar .tab { | |
margin-left: 1px !important; | |
} | |
.tabBar .tab a { | |
padding: 5px !important; | |
border-top-left-radius: 2px !important; | |
border-top-right-radius: 2px !important; | |
font-size: 85% !important; | |
} | |
/* Dashboard */ | |
#main-panel .dashboard table.pane.bigtable tr[class*="job-status-"] img[src] { | |
padding-left: 32px !important; | |
padding-top: 32px !important; | |
} | |
/* Folder/Pipeline header */ | |
body[data-model-type$=".BuildPipelineView"] #main-panel, | |
body[data-model-type$=".AllView"] #main-panel { | |
padding: 10px; | |
visibility: collapse; | |
} | |
body[data-model-type$=".BuildPipelineView"] #main-panel *, | |
body[data-model-type$=".AllView"] #main-panel * { | |
visibility: visible; | |
} | |
body[data-model-type$=".BuildPipelineView"] #main-panel #description, | |
body[data-model-type$=".AllView"] #main-panel #description, | |
body[data-model-type$=".ListView"] #main-panel #description-link, | |
body[data-model-type$=".BuildPipelineView"] #main-panel > h1:first-of-type, | |
body[data-model-type$=".AllView"] #main-panel > h1:first-of-type { | |
display: none; | |
} | |
/* PIPELINE MATERIAL THEME */ | |
#build-pipeline-plugin-content { | |
background-color: transparent !important; | |
padding: 0 10px !important; | |
} | |
#build-pipeline-plugin-content div.pipeline-wrapper { | |
background-color: transparent !important; | |
border-bottom: 1px solid #ccc; | |
padding: 10px 0 0 0; | |
} | |
#build-pipeline-plugin-content table.pipelines > tbody > tr > td { | |
padding: 0 0 10px 0 !important; | |
} | |
#build-pipeline-plugin-content div.pipeline-wrapper div.pipeline { | |
padding: 0; | |
} | |
#build-pipeline-plugin-content .build-card, | |
#build-pipeline-plugin-content .revision { | |
box-shadow: none !important; | |
display: inline-block; | |
position: relative; | |
width: 100%; height: 100%; min-height: 8rem; | |
background-color: #CFD8DC; | |
} | |
#build-pipeline-plugin-content .build-card .build-actions { | |
margin: 0 !important; | |
position: absolute; | |
left: 4px; right: 4px; bottom: 4px; | |
} | |
#build-pipeline-plugin-content .build-card .header, | |
#build-pipeline-plugin-content .revision .title { | |
background: transparent !important; | |
text-align: center; | |
border-bottom: 1px solid rgba(0,0,0,0.1); | |
} | |
#build-pipeline-plugin-content .SUCCESS { | |
background-color: #81C784; | |
} | |
#build-pipeline-plugin-content .FAILURE, | |
#build-pipeline-plugin-content .NOT_BUILT, | |
#build-pipeline-plugin-content .ABORT { | |
background-color: #FF9E80; | |
} | |
#build-pipeline-plugin-content .UNSTABLE { | |
background-color: #FFE082; | |
} | |
#build-pipeline-plugin-content .BUILDING { | |
background-color: #80D8FF; | |
} | |
#build-pipeline-plugin-content .PENDING, | |
#build-pipeline-plugin-content .MANUAL { | |
background-color: #EEEEEE; | |
} | |
#build-pipeline-plugin-content .PENDING { | |
background: repeating-linear-gradient(-45deg, #EEEEEE, #EEEEEE 10px, #FFFFFF 10px, #FFFFFF 20px); | |
} | |
/* BUILD MONITOR MATERIAL THEME */ | |
.build-monitor.dashboard #widgets > li { | |
margin: 0 0 4px 4px !important; | |
border-radius: 2px !important; | |
line-height: 1.2; | |
color: #E0E0E0; | |
} | |
.build-monitor .widget.basic.project .slots .slot { | |
opacity: 1; | |
} | |
.build-monitor .successful { | |
background-color: #2E7D32; | |
} | |
.build-monitor .failing { | |
background-color: #c62828; | |
} | |
.build-monitor .unstable { | |
background-color: #FF8F00; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment