summaryrefslogtreecommitdiff
path: root/pages/assets/redmine/application.css
blob: 5f5a2d6067c21c28c4cd5c479df3affe577afd40 (plain)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@import url(../../../stylesheets/application.css);

/**
 * This is the custom LEAP theme for redmine.
 * This file should be linked to "redmine/public/themes/leap/stylesheets/application.css"
 * It is a based on the "default" redmine theme, with some minor changes.
 **/

body, #wrapper {
  background-color:#e0e0e0;
}
#header, #top-menu {
  margin: 0px;
}
#top-menu {
  padding: 8px 15px 4px 15px;
  background-color: #000;
}
#top-menu a {
  color: #ccc;
  font-weight: normal;
}
#main {
  background-color: #e0e0e0;
  margin: 15px 15px 0px 15px;
}
#content, #main.nosidebar #content {
  background: #fff;
}
#footer {
  background-color: #e0e0e0;
  border: 0px;
}
#content, #sidebar {
  box-sizing: border-box;
  padding: 15px;
}
#sidebar {
  width: 25%;
}

/*
 * HEADER
 */
#header {
  padding: 15px;
  padding-left: 120px;
  min-height: 100%;
  background-color: #606060;
  background: #606060 url(/img/leap180.png) no-repeat -30px 8px;
}
#header h1 {
  margin: 0px;
  padding: 0px;
  line-height: 70px;
}
#main-menu {
  left: 120px;
}
#main-menu li {
  margin: 0px;
}
#main-menu li a {
  background-color: #2b2b2b;
  font-weight: bold;
  padding: 6px 12px;
}
#main-menu li a:hover {
  background: #333;
  text-decoration: underline;
}
#main-menu li a.selected, #main-menu li a.selected:hover {
  background-color: #e0e0e0;
  color: black;
}

/*
 * HOME PAGE
 */
#content > .splitcontentleft {width: 100%;}
#content > .splitcontentright {display: none;}

p.button {
  border-radius: 4px;
  padding: 10px;
  display: inline-block;
  margin-right: 8px;
  background: #eee;
}
p.button:hover {
  background: #ddd;
}

/*
 * TABLES
 */
table.list tbody tr td, table.list tbody tr:hover td {
  border-top: solid 1px #d7d7d7;
  padding: 5px !important;
  vertical-align: middle;
}
table.list thead th {
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-top-color: #d7d7d7;
  border-right-color: #d7d7d7;
  border-left-color: #d7d7d7;
  border-bottom-color: #999999;
}

/*
 * agile board
 */

table.list.issues-board tbody tr td, table.list.issues-board tbody tr:hover td {
	  vertical-align: top;
  }

/*
 * ISSUES
 */
.subject h3 {
  font-size: 24px;
}
div.issue {
  padding: 15px;
  background-color: #def1f4;
  border: none;
}
#history h4 {
  border: none;
  padding: 8px 15px 8px 0px;
  background: #eee;
  display: inline-block;
}
#history h4 a.journal-link {
  float: none;
  padding: 8px;
  background: #999;
  color: white;
  margin-right: 5px;
}
#history .journal {
  margin: 10px 0;
  padding: 5px 0;
}
div.wiki pre {
  margin: 1em 0px;
  border: 1px solid #eee;
}

/*
 * MISC
 */
.box {
  background-color: #fff;
  border: none;
}

h3.version {
  margin-top: 30px;
}