forked from isotope11/jenkins-isotope-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins-isotope-style.scss
122 lines (118 loc) · 2.3 KB
/
jenkins-isotope-style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
$headings-color: #4f7b94;
$body-background: #63818A;
$body-background-bottom: #73939B;
$candy-stripe1: #fff;
$candy-stripe2: #e5e5e5;
$candy-stripe-hover: #f0f0f0;
$logo: "http://xrono.isotope11.com/system/site_logos/1/original/isotope_logo.png?1330143115";
body {
background: $body-background;
background: -moz-linear-gradient(top, $body-background 0%, $body-background-bottom 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$body-background), color-stop(100%,$body-background-bottom));
background: -webkit-linear-gradient(top, $body-background 0%,$body-background-bottom 100%);
background: -o-linear-gradient(top, $body-background 0%,$body-background-bottom 100%);
background: -ms-linear-gradient(top, $body-background 0%,$body-background-bottom 100%);
background: linear-gradient(top, $body-background 0%,$body-background-bottom 100%);
}
h1, h2, h3, h4, h5, h6{
color: $headings-color;
}
#top-panel{
background: none;
td#login-field {
span {
a {
background:none;
}
}
}
td {
#searchform {
a {
background:none;
height: auto;
width: auto;
}
}
&>a {
background:url($logo) 0 0 no-repeat;
display:block;
width: 130px;
height: 40px;
margin: 10px 0 10px 10px;
img {
display:none;
}
}
}
}
#projectstatus {
background: #fff;
tr{
&:nth-of-type(odd) {
background-color:$candy-stripe2;
&:hover{
background-color: $candy-stripe-hover;
}
}
&:nth-of-type(even) {
background-color:$candy-stripe1;
&:hover{
background-color: $candy-stripe-hover;
}
}
}
}
#left-top-nav {
border-left: none;
}
#side-panel{
background-color: #fff;
>div:not(#navigation){
display: none;
}
.task{
a{
display: inline-block;
text-decoration: none;
width: 10%;
&+a{
width: 83%;
padding: 4px;
&:hover{
background-color: $candy-stripe2;
}
}
&:hover{
text-decoration: underline
}
}
}
}
#main-panel {
background:#fff;
&>h1{
margin-top: 0;
}
}
#main-table {
border-top:0;
border-bottom:0;
}
#description {
div {
font-size: 1.3em;
}
}
#footer {
border-top:1px solid #ccc;
}
#view-message{
#description{
a{
img{
padding-right: 4px;
}
}
}
}