Skip to content

Commit cc1ba25

Browse files
committed
Lists restyled, blue link colors added
1 parent bc37350 commit cc1ba25

22 files changed

+125
-82
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0
1+
2.2.0pre

app/assets/images/blueprint_add.png

-341 Bytes
Loading
-174 Bytes
Loading

app/assets/stylesheets/common.scss

Lines changed: 49 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
a {
2+
color: $link_color;
3+
&:hover {
4+
text-decoration:none;
5+
color: $style_color;
6+
}
7+
}
8+
9+
.pills .active a {
10+
background-color: #474D57;
11+
}
12+
13+
.label {
14+
background-color: #474D57;
15+
}
16+
17+
.tabs > li > a, .pills > li > a {
18+
color:$style_color;
19+
}
20+
21+
.diff_file_header a,
22+
.file_stats a {
23+
color:$style_color;
24+
}
25+
126
/** COLORS **/
227
.cgray { color:gray; }
328
.cred { color:#D12F19; }
@@ -70,7 +95,7 @@
7095
margin:10px 0 0 0;
7196
font-size:13px;
7297
font-weight:bold;
73-
color:#444;
98+
color:$style_color;
7499
}
75100
}
76101

@@ -112,19 +137,30 @@ img.lil_av {
112137

113138
.wll {
114139
background-color: #FFF;
115-
margin-bottom: 10px;
116-
padding: 5px;
140+
padding: 10px 5px;
117141
min-height: 20px;
118142
border-bottom: 1px solid #eee;
119143
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
120-
.author { color: #999; }
144+
cursor:pointer;
145+
&:hover {
146+
background:$hover;
147+
}
121148
&:last-child { border:none }
122-
p { padding-top:5px;}
149+
p { padding-top:5px; margin:0; color:$style_color;}
150+
.author { color: #999; }
151+
p {
152+
color:$style_color;
153+
margin-bottom: 0;
154+
img {
155+
position:relative;
156+
top:3px;
157+
}
158+
}
123159
}
124160

125161
.visible_link,
126162
.author_link {
127-
color: $active_link_color;
163+
color: $link_color;
128164
}
129165
.entry {
130166
position: relative;
@@ -147,7 +183,9 @@ img.lil_av {
147183
background:#F1F1F1;
148184
border: 1px solid #ccc;
149185

186+
150187
p {
188+
color:$style_color;
151189
margin-bottom: 0;
152190
img {
153191
position:relative;
@@ -156,6 +194,11 @@ img.lil_av {
156194
}
157195
}
158196

197+
.well {
198+
a h3 {
199+
color:$link_color;
200+
}
201+
}
159202
.widget {
160203
padding:20px;
161204
margin-bottom:20px;

app/assets/stylesheets/main.scss

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/** GITLAB colors **/
44
$text_color:#222;
55
$lite_text_color: #666;
6-
$link_color:#111;
6+
$link_color:#2A79A3;
77
$active_link_color:#2FA0BB;
88
$active_bg_color:#79C3E0;
99
$active_bd_color: #2FA0BB;
@@ -17,6 +17,12 @@ $styled_border_color: #2FA0BB;
1717
$color: "#4BB8D2";
1818
$blue_link: "#2fa0bb";
1919

20+
21+
/** Style colors **/
22+
$style_color: #474D57;
23+
$hover: #FDF5D9;
24+
25+
2026
/** MIXINS **/
2127
@mixin round-borders-bottom($radius) {
2228
border-top: 1px solid #eaeaea;
@@ -46,14 +52,12 @@ $blue_link: "#2fa0bb";
4652
}
4753

4854

49-
@import "reset_bootstrap.scss";
5055
@import "common.scss";
5156
@import "top_panel.scss";
5257

5358
@import "projects.css.scss";
5459
@import "commits.css.scss";
5560
@import "tree.scss";
56-
@import "merge_requests.css.scss";
5761
@import "notes.css.scss";
5862
@import "login.scss";
5963

app/assets/stylesheets/merge_requests.css.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

app/assets/stylesheets/projects.css.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@ input.git_clone_url {
202202
}
203203
}
204204

205+
.merge-request-form-holder {
206+
select {
207+
width:300px;
208+
}
209+
}
210+
211+
/** Issues **/
205212
#issue_assignee_id {
206213
width:300px;
207214
}

app/assets/stylesheets/reset_bootstrap.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

app/assets/stylesheets/top_panel.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ body header {
3030
font-size:20px;
3131
line-height:34px;
3232
font-weight:bold;
33-
color:#666;
33+
color:$style_color;
3434
text-shadow: 0 1px 1px #FFF;
3535
}
3636

@@ -76,7 +76,7 @@ body header {
7676
text-shadow: 0 1px 1px #FFF;
7777

7878
&:hover {
79-
color:$active_link_color;
79+
color:$style_color;
8080
}
8181
}
8282

app/assets/stylesheets/tree.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,15 @@ table.highlighttable .linenodiv pre {
113113

114114
.tree-item {
115115
&:hover {
116-
background: #FFFFCF;
116+
background: $hover;
117117
cursor:pointer;
118118
}
119119

120120
.tree-item-file-name {
121121
font-weight:bold;
122+
a {
123+
color:$style_color;
124+
}
122125

123126
img {
124127
position: relative;

0 commit comments

Comments
 (0)