projects.css.scss 14.4 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1
/** MIXINS **/
N
Nihad Abbasov 已提交
2
@mixin round-borders-bottom($radius) {
G
gitlabhq 已提交
3 4 5 6 7 8 9 10 11
  border-top: 1px solid #eaeaea;
  -moz-border-radius-bottomright: $radius;
  -moz-border-radius-bottomleft: $radius;
  border-bottom-right-radius: $radius;
  border-bottom-left-radius: $radius;
  -webkit-border-bottom-left-radius: $radius;
  -webkit-border-bottom-right-radius: $radius;
}

N
Nihad Abbasov 已提交
12
@mixin round-borders-top($radius) {
G
gitlabhq 已提交
13 14 15 16 17 18 19 20 21
  border-top: 1px solid #eaeaea;
  -moz-border-radius-topright: $radius;
  -moz-border-radius-topleft: $radius;
  border-top-right-radius: $radius;
  border-top-left-radius: $radius;
  -webkit-border-top-left-radius: $radius;
  -webkit-border-top-right-radius: $radius;
}

N
Nihad Abbasov 已提交
22
@mixin round-borders-all($radius) {
G
gitlabhq 已提交
23 24 25 26 27 28
  border: 1px solid #eaeaea;
  -moz-border-radius: $radius;
  -webkit-border-radius: $radius;
  border-radius: $radius;
}

D
Dmitriy Zaporozhets 已提交
29
/** File stat **/
N
Nihad Abbasov 已提交
30 31 32
.file_stats {
  span {
    img {
G
gitlabhq 已提交
33
      width:14px;
G
gitlabhq 已提交
34 35
      float:left;
      margin-right: 6px;
G
gitlabhq 已提交
36
      padding:2px 0;
G
gitlabhq 已提交
37 38 39 40
    }
  }
}

N
Nihad Abbasov 已提交
41
.round-borders {
G
gitlabhq 已提交
42 43 44
  @include round-borders-all(4px);
  padding: 4px 0px;
}
D
Dmitriy Zaporozhets 已提交
45

N
Nihad Abbasov 已提交
46
table.round-borders {
G
gitlabhq 已提交
47
  float:left;
A
Alexander Randa 已提交
48
  text-align: left;
G
gitlabhq 已提交
49 50 51 52 53 54
}

a {
  color: #111;
}

D
Dmitriy Zaporozhets 已提交
55
/** FILE CONTENT VIEW **/
G
gitlabhq 已提交
56
.view_file_content{
N
Nihad Abbasov 已提交
57
  .old_line, .new_line {
G
gitlabhq 已提交
58 59 60 61 62 63 64 65 66 67 68 69
    background:#ECECEC;
    color:#777;
    width:15px;
    float:left;
    padding: 0px 10px;
    border-right: 1px solid #ccc;
  }
  .old_line{
    display:none;
  }
}

S
Saito 已提交
70 71
.view_file .view_file_header,
.diff_file .diff_file_header {
G
gitlabhq 已提交
72 73 74 75 76 77 78 79 80 81
    background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.076, #fefefe), to(#F6F7F8));
    background-image: -webkit-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -moz-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -o-linear-gradient(#fefefe 7.6%, #F6F7F8);
    margin: 0;
    font-weight: normal;
    font-weight: bold;
    text-align: left;
    color: #666;
    border-bottom: 1px solid #DEE2E3;
82 83 84 85 86 87 88
    padding: 7px 10px;
}

.view_file {
  border:1px solid #CCC;
  margin-bottom:1em;

N
Nihad Abbasov 已提交
89
  .view_file_content {
G
gitlabhq 已提交
90 91 92 93
    background:#fff;
    color:#514721;
    font-size: 11px;
  }
N
Nihad Abbasov 已提交
94
  .view_file_content_image {
G
gitlabhq 已提交
95 96
    background:#eee;
    text-align:center;
N
Nihad Abbasov 已提交
97
    img {
G
gitlabhq 已提交
98 99 100 101 102 103
      padding:100px;
      max-width:300px;
    }
  }
}

N
Nihad Abbasov 已提交
104
td.code {
D
Dmitriy Zaporozhets 已提交
105
  width: 100%;
N
Nihad Abbasov 已提交
106
  .highlight {
D
Dmitriy Zaporozhets 已提交
107 108 109
    margin-left: 55px;
    overflow:auto;
    overflow-y:hidden;
G
gitlabhq 已提交
110 111
    border-left: 1px solid #DEE2E3;
    background: white;
D
Dmitriy Zaporozhets 已提交
112 113
  }
}
N
Nihad Abbasov 已提交
114
.highlight pre {
D
Dmitriy Zaporozhets 已提交
115 116 117
  white-space: pre;
  word-wrap:normal;
}
G
gitlabhq 已提交
118

S
Saito 已提交
119
table.highlighttable {
G
gitlabhq 已提交
120 121
  border: none;
  background: #F7F7F7;
D
Dmitriy Zaporozhets 已提交
122
}
G
gitlabhq 已提交
123 124 125
body.project-page table.highlighttable td { border: none }
table.highlighttable tr:hover { background:none;}

N
Nihad Abbasov 已提交
126
table.highlighttable pre{
D
Dmitriy Zaporozhets 已提交
127 128
  line-height:16px !important;
  font-size:12px !important;
G
gitlabhq 已提交
129 130
}

D
Dmitriy Zaporozhets 已提交
131 132 133
table.highlighttable .linenodiv pre {
  text-align: right;
  padding-right: 4px;
G
gitlabhq 已提交
134 135
}

D
Dmitriy Zaporozhets 已提交
136
/** PROJECTS **/
N
Nihad Abbasov 已提交
137
input.ssh_project_url {
G
gitlabhq 已提交
138 139 140 141 142 143 144
  padding:5px;
  margin:0px;
  float:right;
  width:400px;
  text-align:center;
}

N
Nihad Abbasov 已提交
145
#projects-list .project {
G
gitlabhq 已提交
146 147 148
  height:50px;
}

D
Dmitriy Zaporozhets 已提交
149
#tree-slider .tree-item,
G
gitlabhq 已提交
150
#projects-list .project,
G
gitlabhq 已提交
151
#snippets-table .snippet,
N
Nihad Abbasov 已提交
152
#issues-table .issue{
G
gitlabhq 已提交
153 154 155
  cursor:pointer;
}

N
Nihad Abbasov 已提交
156
.clear {
G
gitlabhq 已提交
157 158 159 160
  clear: both;
}

/** FORM INPUTS **/
D
Dmitriy Zaporozhets 已提交
161 162
.new_merge_request,
.edit_merge_request,
G
gitlabhq 已提交
163
.user_new,
D
Dmitriy Zaporozhets 已提交
164 165 166
.new_key,
.new_issue,
.new_note,
G
gitlabhq 已提交
167
.edit_user,
G
gitlabhq 已提交
168
.edit_issue,
G
gitlabhq 已提交
169
.new_project,
G
gitlabhq 已提交
170 171
.new_snippet,
.edit_snippet,
N
Nihad Abbasov 已提交
172
.edit_project {
G
gitlabhq 已提交
173 174 175
  input[type='text'],
  input[type='email'],
  input[type='password'],
N
Nihad Abbasov 已提交
176
  textarea {
G
gitlabhq 已提交
177 178 179 180 181 182 183
    width:400px;
    padding:8px;
    font-size:14px;
    @include round-borders-all(4px);
  }
}

N
Nihad Abbasov 已提交
184
.input_button {
G
gitlabhq 已提交
185 186 187 188 189 190 191 192 193 194
  padding:8px;
  font-size:14px;
  cursor:pointer;
  background-color: #F5F5F5;
  border-color: #EEEEEE #DEDEDE #DEDEDE #EEEEEE;
  border-right: 1px solid #DEDEDE;
  border-style: solid;
  border-width: 1px;
}

N
Nihad Abbasov 已提交
195
/** FLASH **/
N
Nihad Abbasov 已提交
196
#flash_container {
D
Dmitriy Zaporozhets 已提交
197
  height:45px;
G
gitlabhq 已提交
198
  position:fixed;
D
Dmitriy Zaporozhets 已提交
199
  z-index:10001;
G
gitlabhq 已提交
200
  top:0px;
201
  width:100%;
D
Dmitriy Zaporozhets 已提交
202
  margin-bottom:15px;
G
gitlabhq 已提交
203 204 205 206 207
  overflow:hidden;
  background:white;
  cursor:pointer;
  border-bottom:1px solid #777;

N
Nihad Abbasov 已提交
208
  h4 {
G
gitlabhq 已提交
209 210 211
    color:#444;
    font-size:22px;
    padding-top:5px;
G
gitlabhq 已提交
212
    margin:2px;
G
gitlabhq 已提交
213 214 215 216 217 218 219 220
  }
}

/** Buttons **/
.lbutton,
.lite_button {
  display:block;
  float:left;
A
Alexander Randa 已提交
221
  margin: 0px 5px 0px 0px;
G
gitlabhq 已提交
222 223 224 225 226
  padding:5px 10px;

  font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
  border:1px solid #D3D3D3;
  background:white;
G
css fix  
gitlabhq 已提交
227
  font-size:12px !important;
G
gitlabhq 已提交
228 229 230 231 232 233 234 235 236 237 238
  line-height:130%;
  text-decoration:none;
  font-weight:bold;
  color:#565656;
  cursor:pointer;

  &:hover {
    border:1px solid #C2E1EF;
    color: #0099FF;
  }

N
Nihad Abbasov 已提交
239
  &.hm {
G
gitlabhq 已提交
240 241 242
    margin: 0px 0px;
  }

N
Nihad Abbasov 已提交
243
  &.vm {
G
gitlabhq 已提交
244 245 246 247
    margin: 5px 0px;
  }
}

V
Valera Sizov 已提交
248
#user_projects_limit{
N
Nihad Abbasov 已提交
249
  width: 60px;
V
Valera Sizov 已提交
250
}
G
gitlabhq 已提交
251

V
VSizov 已提交
252 253 254
.handle:hover{
  cursor: move;
}
V
VSizov 已提交
255

N
Nihad Abbasov 已提交
256
.project-refs-form {
G
gitlabhq 已提交
257 258 259 260 261 262 263 264 265 266 267
  span {
    background: none !important;
    position:static !important;
    width:auto !important;
    height: auto !important;
  }
}

.project-refs-select {
  width:200px;
}
G
gitlabhq 已提交
268

D
Dmitriy Zaporozhets 已提交
269
.filter .left { margin-right:15px; }
N
Nihad Abbasov 已提交
270 271 272

body.project-page table .commit {
  a.tree-commit-link {
273
    color:gray;
N
Nihad Abbasov 已提交
274
    &:hover {
275 276 277 278 279
      text-decoration:underline;
    }
  }
}

G
gitlabhq 已提交
280
/** NEW PROJECT **/
N
Nihad Abbasov 已提交
281
.new-project-hodler {
D
Dmitriy Zaporozhets 已提交
282 283
  .icon span { background-position: -31px -70px; }
  td { border-bottom: 1px solid #DEE2E3; }
G
gitlabhq 已提交
284
}
D
Dmitriy Zaporozhets 已提交
285

D
Dmitriy Zaporozhets 已提交
286
/** Feed entry **/
G
gitlabhq 已提交
287
.commit,
D
Dmitriy Zaporozhets 已提交
288
.snippet,
N
Nihad Abbasov 已提交
289 290
.message {
  .title {
G
gitlabhq 已提交
291
    color:#666;
D
Dmitriy Zaporozhets 已提交
292 293
    a { color:#666 !important; }
    p { margin-top:0px; }
G
gitlabhq 已提交
294
  }
D
Dmitriy Zaporozhets 已提交
295
  .author { color: #999 }
G
gitlabhq 已提交
296
}
G
gitlabhq 已提交
297

D
Dmitriy Zaporozhets 已提交
298
/** JQuery UI **/
D
Dmitriy Zaporozhets 已提交
299 300
.ui-autocomplete { @include round-borders-all(5px); }
.ui-menu-item { cursor: pointer }
D
Dmitriy Zaporozhets 已提交
301 302 303 304 305 306
.ui-selectmenu{
  @include round-borders-all(4px);
  margin-right:10px;
  font-size:1.5em;
  height:auto;
  font-weight:bold;
N
Nihad Abbasov 已提交
307
  .ui-selectmenu-status {
D
Dmitriy Zaporozhets 已提交
308 309 310
    padding:3px 10px;
  }
}
N
Nihad Abbasov 已提交
311

D
Dmitriy Zaporozhets 已提交
312
/** Snippets **/
N
Nihad Abbasov 已提交
313 314
.new_snippet textarea,
.edit_snippet textarea {
D
Dmitriy Zaporozhets 已提交
315 316 317 318 319
  height:300px;
  padding: 8px;
  width: 95%;
}
.snippet .action-links {
N
Nihad Abbasov 已提交
320 321
  display:none;
  a {
G
gitlabhq 已提交
322 323 324
    margin-left:10px;
  }
}
D
Dmitriy Zaporozhets 已提交
325 326
.snippet:hover .action-links { display:block; }

D
Dmitriy Zaporozhets 已提交
327 328 329 330 331 332
/** ISSUES TAGS **/
.tag {
  @include round-borders-all(4px);
  padding:2px 4px;
  border:none;
  text-shadow:none;
G
gitlabhq 已提交
333

S
Saito 已提交
334
  &.inline {
D
Dmitriy Zaporozhets 已提交
335 336 337 338
    display:inline;
  }

  &.high, &.closed {
D
Dmitriy Zaporozhets 已提交
339 340
    background: #D12F19;
    color:white;
G
gitlabhq 已提交
341
  }
G
gitlabhq 已提交
342

D
Dmitriy Zaporozhets 已提交
343
  &.today, &.open {
D
Dmitriy Zaporozhets 已提交
344 345
    background: #44aa22;
    color:white;
G
gitlabhq 已提交
346 347
  }

D
Dmitriy Zaporozhets 已提交
348 349 350 351 352 353 354 355 356 357 358 359
  &.yours {
    background: #4466cc;
    color:white;
  }
  &.normal {
    background: #2c5ca6;
    color:white;
  }
  &.notes {
    background: #2c5c66;
    color:white;
  }
D
Dmitriy Zaporozhets 已提交
360
  &.note {
361 362 363 364 365 366
    background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.076, #fefefe), to(#F6F7F8));
    background-image: -webkit-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -moz-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -o-linear-gradient(#fefefe 7.6%, #F6F7F8);
    color: #777;
    border: 1px solid #DEDFE1;
D
Dmitriy Zaporozhets 已提交
367
  }
N
Nihad Abbasov 已提交
368
  &.issue {
369 370 371
    background: #D12F19;
    color:white;
  }
N
Nihad Abbasov 已提交
372
  &.commit {
D
Dmitriy Zaporozhets 已提交
373 374 375 376 377 378
    background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.076, #fefefe), to(#F6F7F8));
    background-image: -webkit-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -moz-linear-gradient(#fefefe 7.6%, #F6F7F8);
    background-image: -o-linear-gradient(#fefefe 7.6%, #F6F7F8);
    color: #777;
    border: 1px solid #DEDFE1;
G
gitlabhq 已提交
379 380
  }
}
D
Dmitriy Zaporozhets 已提交
381

V
Valery Sizov 已提交
382 383 384 385
#holder {
  border: solid 1px #999;
  cursor: move;
  height: 70%;
V
Valery Sizov 已提交
386
  overflow: hidden;
V
Valery Sizov 已提交
387
}
D
Dmitriy Zaporozhets 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402

/* Project Dashboard Page */
html, body { height: 100%; }

body.dashboard.project-page .news-feed h2{float: left;}
body.dashboard.project-page .news-feed .project-updates  {margin-bottom: 20px; display: block; width: 100%;}
body.dashboard.project-page .news-feed .project-updates .data{ padding: 0}
body.dashboard.project-page .news-feed .project-updates a.project-update {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
body.dashboard.project-page .news-feed .project-updates a.project-update:last-child{border-bottom: 0}
body.dashboard.project-page .news-feed .project-updates a.project-update img{float: left; margin-right: 10px;}
body.dashboard.project-page .news-feed .project-updates a.project-update span.update-title, .dashboard-page .news-feed .project-updates li a span.update-author{display: block;}
body.dashboard.project-page .news-feed .project-updates a.project-update span.update-title{margin-bottom: 10px}
body.dashboard.project-page .news-feed .project-updates a.project-update span.update-author{color: #999; font-weight: normal; font-style: italic;}
body.dashboard.project-page .news-feed .project-updates a.project-update span.update-author strong{font-weight: bold; font-style: normal;}
/* eo Dashboard Page */
403

D
Dmitriy Zaporozhets 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416

/** Merge requests */
body.project-page .merge-request-commits  {margin-bottom: 20px; display: block; width: 100%;}
body.project-page .merge-request-commits .data{ padding: 0}
body.project-page .merge-request-commits a.commit {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
body.project-page .merge-request-commits a.commit:last-child{border-bottom: 0}
body.project-page .merge-request-commits a.commit img{float: left; margin-right: 10px;}
body.project-page .merge-request-commits a.commit span.update-title, .dashboard-page .news-feed .project-updates li a span.update-author{display: block;}
body.project-page .merge-request-commits a.commit span.update-title{margin-bottom: 10px}
body.project-page .merge-request-commits a.commit span.update-author{color: #999; font-weight: normal; font-style: italic;}
body.project-page .merge-request-commits a.commit span.update-author strong{font-weight: bold; font-style: normal;}


D
Dmitriy Zaporozhets 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429
/** Update entry **/
.update-data { padding: 0 }
.update-data { width:100%; }
.update-data.ui-box .data { padding:0; }
a.update-item {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
a.update-item:last-child{border-bottom: 0}
a.update-item img{float: left; margin-right: 10px;}
a.update-item span.update-title, .dashboard-page .news-feed .project-updates li a span.update-author{display: block;}
a.update-item span.update-title{margin-bottom: 10px}
a.update-item span.update-author{color: #999; font-weight: normal; font-style: italic;}
a.update-item span.update-author strong{font-weight: bold; font-style: normal;}


430 431
body.project-page .team_member_new .span-6, .team_member_edit .span-6{ padding:10px 0; }

G
gitlabhq 已提交
432
body.projects-page input.text.git-url.project_list_url { width:165px; }
433 434 435 436



body.project-page table.no-borders tr,
S
Saito 已提交
437
body.project-page table.no-borders td{
438 439
  border:none;
}
440

S
Saito 已提交
441
.ajax-tab-loading {
D
Dmitriy Zaporozhets 已提交
442 443 444
  padding:40px;
  display:none;
}
G
gitlabhq 已提交
445 446

#tree-content-holder { float:left; width:100%; }
447

S
Saito 已提交
448 449 450 451 452 453 454 455 456 457 458
#tree-readme-holder {
  float:left;
  width:100%;

  .readme {
    @include round-borders-all(4px);
    padding: 4px 15px;
    background:#F7F7F7;
  }
}

459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487


/* Commit Page */
.entity-info {float: right;}
.entity-button{
  background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.192, #fff), to(#f4f4f4));
  background-image: -webkit-linear-gradient(#fff 19.2%, #f4f4f4);
  background-image: -moz-linear-gradient(#fff 19.2%, #f4f4f4);
  background-image: -o-linear-gradient(#fff 19.2%, #f4f4f4);
  box-shadow: 0 -1px 0 white inset;
  display: block;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 2px;
  position: relative;
  padding: 4px 10px;
  font-size: 11px;
  padding-right: 20px;
}

.entity-button i{
  background: url('images.png') no-repeat -138px -27px;
  width: 6px;
  height: 9px;
  float: right;
  position: absolute;
  top: 6px;
  right: 5px;
}
D
Dmitriy Zaporozhets 已提交
488
.box-arrow{float: right; background: #E3E5EA; padding: 10px; border-radius: 5px; margin-top: 2px; text-shadow: none; color: #999; margin: 1.5em 0;}
D
Dmitriy Zaporozhets 已提交
489 490 491 492 493 494 495 496 497 498

h4.dash-tabs { 
  margin: 0; 
  border-bottom: 1px solid #ccc; 
  padding: 10px 10px;
  font-size: 11px;
  padding-left:20px;
  font-weight: bold; text-transform: uppercase;
  background: #F7F7F7;
  margin-bottom:20px;
499 500
  height:13px;

D
Dmitriy Zaporozhets 已提交
501 502 503
}

.dash-button { 
504
  border-right: 1px solid #ddd;
D
Dmitriy Zaporozhets 已提交
505
  background:none;
506 507 508 509 510 511
  padding: 10px 15px;
  float:left;
  position:relative;
  top:-10px;
  left:0px;
  height:13px;
D
Dmitriy Zaporozhets 已提交
512

513 514 515
  &:first-child { 
    border-left: 1px solid #ddd;
  }
D
Dmitriy Zaporozhets 已提交
516 517 518 519
  &.active { 
    background: #eaeaea;
  }
}
D
Dmitriy Zaporozhets 已提交
520 521 522 523

h4.middle-panel { 
  margin: 0; 
  border-bottom: 1px solid #ccc; 
D
Dmitriy Zaporozhets 已提交
524
  padding: 10px 20px;
D
Dmitriy Zaporozhets 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
  font-size: 11px;
  background: #F7F7F7;
  height:30px;

  .project_name {
    float:left;
    width:160px;
    margin-right:30px;
    font-size:16px;
    font-weight:bold;
    padding:5px 7px;
    color:#777;
  }

  .git_url_wrapper {
    padding:0px;
    margin:0px;
    float:left;

    .git-url {
      padding:0px;
      margin:0px;
      font-size: 12px;
      border-radius: 5px;
      color: #666; 
      box-shadow: 0 1px 2px rgba(0,0,0,.2) inset;
      padding:  7px 0 5px 30px;
      background: white url('images.png') no-repeat 8px -40px; 
      width: 250px;
    }
  }
}
D
Dmitriy Zaporozhets 已提交
557 558 559 560 561 562

.dashboard-loader { 
  float:right;
  margin-right:30px;
  display:none;
}
D
Dmitriy Zaporozhets 已提交
563

564

565
.merge-tabs { 
D
Dmitriy Zaporozhets 已提交
566 567
  margin: 0; 
  border: 1px solid #ccc; 
568 569
  padding: 5px;
  font-size: 12px;
D
Dmitriy Zaporozhets 已提交
570 571
  background: #F7F7F7;
  margin-bottom:20px;
572
  height:26px;
D
Dmitriy Zaporozhets 已提交
573

574 575 576
  .tab { 
    font-weight: bold;
    border-right: 1px solid #ddd;
D
Dmitriy Zaporozhets 已提交
577
    background:none;
578
    padding: 10px;
579
    min-width:60px;
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
    float:left;
    position:relative;
    top:-5px;
    left:-5px;
    height:16px;
    padding-left:34px;

    span { 
      width: 20px;
      height: 20px;
      display: inline-block;
      position: absolute;
      left: 8px;
      top: 8px;
    }
D
Dmitriy Zaporozhets 已提交
595 596 597 598 599 600

    &.active {
      background: #eaeaea;
    }
  }
}
601
.activities-tab span {  background: url("images.png") no-repeat -161px -1px; } 
D
Dmitriy Zaporozhets 已提交
602 603 604
.stat-tab span,
.team-tab span,
.snippets-tab span {  background: url("images.png") no-repeat -38px -77px; } 
605
.files-tab span {  background: url("images.png") no-repeat -112px -23px; } 
606

607 608 609 610
.merge-notes-tab span {  background: url("images.png") no-repeat -161px -1px; } 
.merge-commits-tab span {  background: url("images.png") no-repeat -86px 1px; } 
.merge-diffs-tab span {  background: url("images.png") no-repeat -118px 1px; } 
.merge-tabs .dashboard-loader { padding:8px; }
611 612 613 614 615

.user-mention { 
  color: #2FA0BB;
  font-weight: bold;
}
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646

.author { 
  color: #999;
}


.red-button{
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 17px;
  border: 1px solid #999;
  color: #666;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
  background: #D12F19;
  color: white;
}

.positive-button{
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 17px;
  border: 1px solid #999;
  color: #666;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
  background: #4A2;
  color: white;
}
647 648 649 650 651 652 653 654

.rss-icon { 
  margin:0 15px;
  padding:5px;
  border:1px solid #ccc;
  border-radius:3px;
  float:left;
}
D
Dmitriy Zaporozhets 已提交
655 656 657 658 659 660 661

body.project-page h2.icon.loading { 
  span { 
    background-position: 0px 0px;
    background: url("ajax-loader-tree.gif") no-repeat;
  }
}
662 663 664 665 666 667 668 669 670 671 672 673

.dark_scheme_box { 
  padding:20px 0;

  label { 
    float:left;
    box-shadow: 0 0px 5px rgba(0,0,0,.3);

    img { 
    }
  }
}