gitprep / public / css / common.css /
Newer Older
3929 lines | 65.176kb
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1
/*!
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2
 *  This is originally Bootstrap v2.3.1, but I'v cleanuped many parts.
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
3
 *
4
 * Copyright 2012 Twitter, Inc
5
 * Licensed under the Apache License v2.0
6
 * http://www.apache.org/licenses/LICENSE-2.0
7
 *
8
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
 */
improve footer design
Yuki Kimoto authored on 2015-12-25
10
 
11
/*
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
12
  Default values
improve border color
Yuki Kimoto authored on 2016-09-14
13
    border:1px solid #e6e9e6;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
14
    border-radius: 3px;
improve login page design
Yuki Kimoto authored on 2016-01-16
15
  
16
  input[type=text] 
improve border color
Yuki Kimoto authored on 2016-09-14
17
    border:1px solid #e6e9e6;
improve login page design
Yuki Kimoto authored on 2016-01-16
18
    border-radius: 3px;
19
    padding:6px 5px;
20
    margin:5px 0;
21
    
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
22
    
23
    Text Gray
improve design
Yuki Kimoto authored on 2016-02-09
24
    color:#767676
improve footer design
Yuki Kimoto authored on 2015-12-25
25
*/
26

            
text color become green and ...
Yuki Kimoto authored on 2016-10-13
27
ul {
28
  padding: 0;
29
  margin: 0;;
30
}
31

            
32
ul li {
33
  list-style:none;
34
}
35

            
36
a {
37
  color: #33ce90;
38
  text-decoration: none;
39
}
40

            
41
a:hover {
42
  color: #004CCA;
43
  text-decoration: underline;
44
}
45

            
improve header title design
Yuki Kimoto authored on 2015-12-26
46
* {
47
  margin:0;
48
  padding:0;
49

            
50
  -webkit-box-sizing: border-box;
51
  -moz-box-sizing: border-box;
52
  -o-box-sizing: border-box;
53
  -ms-box-sizing: border-box;
54
  box-sizing: border-box;
55
}
56

            
improve project header color
Yuki Kimoto authored on 2016-09-14
57
.tree-description {
improve description design
Yuki Kimoto authored on 2016-10-12
58
  font-size:20px;
59
  padding-top:5px;
60
  padding-bottom:11px;
improve project header color
Yuki Kimoto authored on 2016-09-14
61
}
62
.tree-description a {
63
  font-size:18px;
64
  font-weight:normal;
65
}
66

            
cleanup css
Yuki Kimoto authored on 2016-08-23
67
.header-issue-count {
68
  background:#eee;
69
  color:#555;
70
  display:inline-block;
71
  width:18px;
72
  height:18px;
73
  border-radius:9px;
74
}
cleanup css
Yuki Kimoto authored on 2016-08-23
75
.commits-count {
76
  margin:0;
77
  border: 1px solid #ddd;
improve commit header design
Yuki Kimoto authored on 2016-09-14
78
  border-top:3px solid #6FBA2C;
79
  margin-bottom:12px;
80
  box-shadow: 0 1px 6px #d9d9d9;
cleanup css
Yuki Kimoto authored on 2016-08-23
81
}
82

            
83
.commits-count li {
84
  display:inline-block;
85
  width:25%;
86
  margin-left:0px;
87
  list-style-type: none;
88
  padding:0;
89
  text-align:center;
90
}
91
.commits-count li a {
92
  width:100%;
93
  display:block;
94
  padding:10px 0;
95
  color:#767676;
96
}
97
.commits-count li a:hover {
98
  color:#4078c0;
99
  text-decoration:none;
100
}
101

            
add issue labels btn
Yuki Kimoto authored on 2016-07-30
102
.issue-labels {
103
  padding:10px 0;
improve border color
Yuki Kimoto authored on 2016-09-14
104
  border-bottom:1px solid #e6e9e6;
add issue labels btn
Yuki Kimoto authored on 2016-07-30
105
}
106
.issue-labels-title-area {
107
  overflow:hidden;
108
}
109
.issue-labels-title {
110
  font-weight:bold;
111
  float:left;
112
  width:80%;
113
}
114
.issue-labels-setting-btn {
115
  float:left;
116
  width:20%;
117
  text-align:right;
118
}
show added labels
Yuki Kimoto authored on 2016-08-01
119
.issue-labels-setting-pallet li {
120
  border-radius:3px;
121
  margin-bottom:4px;
122
  margin-top:5px;
123
  padding:4px 5px;
124
  color:#333;
125
}
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
126
.labels-new-panel {
127
  text-align:right;
128
  margin-bottom:20px;
129
  margin-top:20px;
130
}
add create label form
Yuki Kimoto authored on 2016-07-27
131
.labels-create-panel {
132
  overflow:hidden;
133
  background:#fafafa;
134
  padding:10px;
135
  margin-bottom:20px;
136
}
add color pallette
Yuki Kimoto authored on 2016-07-28
137
.labels-edit-label-color-area {
138
  display:inline-block;
139
}
implement edit area
Yuki Kimoto authored on 2016-07-27
140
.labels-edit-label-id {
141
  width:400px;
add color pallette
Yuki Kimoto authored on 2016-07-28
142
  padding:6px;
implement edit area
Yuki Kimoto authored on 2016-07-27
143
  border-radius:3px;
144
  border: 1px solid #ddd;
145
}
146
.labels-edit-label-color {
147
  width:100px;
add color pallette
Yuki Kimoto authored on 2016-07-28
148
  padding:6px;
implement edit area
Yuki Kimoto authored on 2016-07-27
149
  border-radius:3px;
150
  border: 1px solid #ddd;
add color pallette
Yuki Kimoto authored on 2016-07-28
151
  padding-left:28px;
152
}
153
.labels-edit-label-color-palette {
154
  width:15px;
155
  height:15px;
156
  display:inline-block;
157
  position:relative;
158
  top:3px;
159
  left:-95px;
implement edit area
Yuki Kimoto authored on 2016-07-27
160
}
add create label form
Yuki Kimoto authored on 2016-07-27
161
.labels-create-label-id {
162
  width:400px;
163
  padding:6px;
164
  border-radius:3px;
165
  border: 1px solid #ddd;
166
}
add color pallette
Yuki Kimoto authored on 2016-07-28
167
.labels-create-label-color-area {
168
  display:inline-block;
169
}
add create label form
Yuki Kimoto authored on 2016-07-27
170
.labels-create-label-color {
171
  width:100px;
172
  padding:6px;
173
  border-radius:3px;
174
  border: 1px solid #ddd;
add color pallette
Yuki Kimoto authored on 2016-07-28
175
  padding-left:28px;
176
}
177
.labels-create-label-color-palette {
178
  width:15px;
179
  height:15px;
180
  display:inline-block;
181
  position:relative;
182
  top:3px;
183
  left:-95px;
add create label form
Yuki Kimoto authored on 2016-07-27
184
}
185
.labels-create-left {
186
  width:70%;
187
  float:left;
188
}
189
.labels-create-right {
190
  width:30%;
191
  float:right;
192
  text-align:right;
193
}
fix label update padding
Yuki Kimoto authored on 2016-07-28
194
.labels-edit-area {
195
  padding:3px 0 31px 0;
196
}
show labels
Yuki Kimoto authored on 2016-07-26
197
.labels {
198
  
199
}
200
.labels li {
201
  border:1px #e5e5e5 solid;
202
  border-top:none;
203
  padding:7px 10px;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
204
  overflow:hidden;
show labels
Yuki Kimoto authored on 2016-07-26
205
}
206
.labels li:first-child {
207
  padding:10px 10px;
208
  border-top:1px #e5e5e5 solid;
209
  border-radius:3px 3px 0 0;
210
  background:#f8f8f8;
211
}
212

            
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
213
.labels-left {
add label update
Yuki Kimoto authored on 2016-07-29
214
  width:75%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
215
  float:left;
216
}
217
.labels-tag {
218
  border-radius:5px;
219
  display:inline-block;
220
  padding:7px 12px;
221
  font-weight:bold;
222
  border:1px solid #dddddd;
223
}
224
.labels-right {
add label update
Yuki Kimoto authored on 2016-07-29
225
  width:25%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
226
  float:left;
227
  text-align:right;
228
}
229
.labels-delete {
230
  padding-top:9px;
231
  margin-right:10px;
232
  display:inline-block;
233
}
234
.labels-delete a, .labels-delete a:hover {
235
  color:#767676;
236
}
237
.labels-edit {
238
  padding-top:9px;
239
  margin-right:10px;
240
  display:inline-block;
241
}
242
.labels-edit a, .labels-edit a:hover {
243
  color:#767676;
244
}
245

            
add labels to issues
Yuki Kimoto authored on 2016-08-02
246
ul.issues-label-pallet {
247
  display:inline-block;
248
}
249
ul.issues-label-pallet li {
250
  display:inline-block;
251
  border-radius:3px;
252
  padding:1px 3px;
253
  font-size:95%;
254
}
add labels page
Yuki Kimoto authored on 2016-07-25
255
.issues-title a {
256
  color:black;
257
}
258
.issues-title a:hover {
259
  color:blue;
260
}
261

            
262
.issues-button-container {
263
  margin-bottom:10px;
264
  overflow:hidden;
265
}
266
.issues-button-container-left {
267
  float:left;
268
  width:50%;
269
}
270
.issues-button-container-right {
271
  text-align:right;
272
  float:left;
273
  width:50%;
274
}
275
.issues-labels {
improve border color
Yuki Kimoto authored on 2016-09-14
276
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
277
  border-radius:3px;
278
  display:inline-block;
279
}
280
.issues-labels a {
cleanup new label
Yuki Kimoto authored on 2016-07-27
281
  padding:7px 10px;
add labels page
Yuki Kimoto authored on 2016-07-25
282
  display:inline-block;
283
  width:100%;
284
}
285
.issues-labels a {
286
  color:inherit;
287
}
288
.issues-labels a:hover {
289
  color:inherit;
290
  text-decoration:none;
291
  background:#eeeeee
292
}
293

            
294
.issues-header {
improve border color
Yuki Kimoto authored on 2016-09-14
295
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
296
  background:#fafafa;
297
  padding:10px;
298
}
299
.issues-body {
improve border color
Yuki Kimoto authored on 2016-09-14
300
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
301
  border-top:none;
302
  background:#fafafa;
303
  background:white;
304
}
305
.issues-body li {
306
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
307
  border-top: 1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
308
}
309
.issues-body li:first-child {
310
  border-top:none;
311
}
312
.issues-no-request {
313
  padding:30px;
314
  margin:1px auto;
315
  width:600px;
316
  text-align:center;
317
}
318

            
319
.issues-description {
320
  color:#767676;
321
}
322

            
add label apply
Yuki Kimoto authored on 2016-08-01
323
.issue-labels-popup {
improve border color
Yuki Kimoto authored on 2016-09-14
324
  border:1px solid #e6e9e6;
add label apply
Yuki Kimoto authored on 2016-08-01
325
  border-radius:3px;
326
  box-shadow: 0 0 10px rgba(0,0,0,.1);
327
  width:350px;
complete label
Yuki Kimoto authored on 2016-08-01
328
  display:none;
329
  position:absolute;
add label apply
Yuki Kimoto authored on 2016-08-01
330
}
complete label
Yuki Kimoto authored on 2016-08-01
331
.issue-labels-popup-title-area {
add label apply
Yuki Kimoto authored on 2016-08-01
332
  background:#f7f7f7;
complete label
Yuki Kimoto authored on 2016-08-01
333
  overflow:hidden;
improve border color
Yuki Kimoto authored on 2016-09-14
334
  border-bottom:1px solid #e6e9e6;
complete label
Yuki Kimoto authored on 2016-08-01
335
}
336

            
337
.issue-labels-popup-title {
add label apply
Yuki Kimoto authored on 2016-08-01
338
  padding:10px;
complete label
Yuki Kimoto authored on 2016-08-01
339
  width:80%;
340
  float:left;
341
}
342
.issue-labels-popup-close-btn {
343
  width:20%;
344
  float:left;
345
  text-align:right;
346
  padding-top:10px;
347
  padding-right:10px;
add label apply
Yuki Kimoto authored on 2016-08-01
348
}
349
.issue-labels-popup-body {
complete label
Yuki Kimoto authored on 2016-08-01
350
  background:white;
add label apply
Yuki Kimoto authored on 2016-08-01
351
}
352
.issue-labels-popup-body li {
353
  padding:10px 10px;
improve border color
Yuki Kimoto authored on 2016-09-14
354
  border-top:1px solid #e6e9e6;
add label apply
Yuki Kimoto authored on 2016-08-01
355
  overflow:hidden;
356
  cursor:pointer;
357
}
358
.issue-labels-popup-body li:first-child {
359
  border-top:none;
360
}
361
.issue-labels-popup-check {
362
  float:left;
363
  width:20px;
364
  height:1px;
365
}
366
.issue-labels-popup-pallet {
367
  width:15px;
368
  height:15px;
369
  float:left;
370
  margin-left:2px;
371
}
372
.issue-labels-popup-pallet-id {
373
  float:left;
374
  margin-left:5px;
375
  width:50%;
376
}
imrpvoe new issue form
Yuki Kimoto authored on 2016-07-09
377
.issue-add-comment-title {
378
  margin-bottom:5px;
379
}
380

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
381
.issue-add-comment-header-tab a.disable {
382
  background:none;
383
  border:none;
384
}
385

            
add comment icon
Yuki Kimoto authored on 2016-07-23
386
.issue-add-comment-icon {
387
  display:inline-block;
388
  float:right;
389
  padding:6px;
390
}
391
.issue-add-comment-icon i {
392
  cursor:pointer;
393
}
394

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
395
.issue-add-comment-header-tab a {
396
  background:white;
397
  display:block;
398
  width:100%;
399
  padding:8px 13px;
400
  color:#333;
improve border color
Yuki Kimoto authored on 2016-09-14
401
  border:1px solid #e6e9e6;
add write prview tab
Yuki Kimoto authored on 2016-07-07
402
  border-bottom:none;
403
  border-radius:3px 3px 0 0;
404
  margin-bottom:-1px;
405
}
406
.issue-add-comment-header-tab a:hover {
407
  text-decoration:none;
408
  color:inherit;
409
}
410
.issue-add-comment-header-tab {
411
  display:inline-block;
412
}
413
.issue-add-comment-body {
414
  padding:10px;
415
}
416
.issue-add-comment-header {
417
  padding:7px 10px 0 10px;
418
  background:#f7f7f7;
improve border color
Yuki Kimoto authored on 2016-09-14
419
  border-bottom:1px solid #e6e9e6;
add write prview tab
Yuki Kimoto authored on 2016-07-07
420
}
add comment form
Yuki Kimoto authored on 2016-07-06
421
.issue-add-comment-bottom {
422
  overflow:hidden;
423
}
424
.issue-panel {
425
  padding-bottom:20px;
426
  border-bottom:2px solid #f7f7f7;
427
}
428

            
429
.issue-add-comment-button-left {
430
  float:left;
431
  width:50%;
432
  color:#767676;
433
  padding-top:15px;
434
}
435
.issue-add-comment-button {
436
  float:left;
437
  width:50%;
438
  padding:10px;
439
  text-align:right;
440
}
441
.issue-add-comment {
improve border color
Yuki Kimoto authored on 2016-09-14
442
  border:1px solid #e6e9e6;
add comment form
Yuki Kimoto authored on 2016-07-06
443
  border-radius: 3px;
444
  margin-top:10px;
445
}
446
.issue-add-comment-message {
447
}
448
.issue-add-comment [type=text] {
449
  width:100%;
450
}
451
.issue-add-comment textarea {
452
  width:100%;
453
  min-height:200px;
454
  padding:10px;
455
  border-radius:3px;
456
}
add previewã€area
Yuki Kimoto authored on 2016-07-08
457
.issue-add-comment-preview {
458
  min-height:203px;
459
  display:none;
460
}
add participates
Yuki Kimoto authored on 2016-07-16
461
.issue {
462
  overflow:hidden;
463
}
add comment form
Yuki Kimoto authored on 2016-07-06
464
.issue-left {
465
  width:80%;
add participates
Yuki Kimoto authored on 2016-07-16
466
  float:left;
467
}
468
.issue-right {
469
  width:20%;
470
  float:left;
471
  padding-left:15px;
472
  color:#767676;
473
}
474

            
475
.issue-right a {
476
  color:#767676;
477
}
478
.issue-right a:hover {
479
  color:inherit;
add comment form
Yuki Kimoto authored on 2016-07-06
480
}
481

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
482
.issue-message {
483
  border-radius:3px;
484
  border:1px solid #ddd;
can add new issue message an...
Yuki Kimoto authored on 2016-07-06
485
  margin-bottom:15px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
486
}
add owner label
Yuki Kimoto authored on 2016-07-14
487
.issue-message-owner {
improve diff design
Yuki Kimoto authored on 2016-10-12
488
  border:1px solid #e6e9e6;
add owner label
Yuki Kimoto authored on 2016-07-14
489
}
490

            
491
.issue-message-owner-label {
492
  display:inline-block;
493
  border:1px solid #bfccd1;
494
  padding: 2px 5px;
495
  border-radius: 3px;
496
  color:#767676;
add issue message delete fea...
Yuki Kimoto authored on 2016-07-14
497
  margin-right:5px;
add owner label
Yuki Kimoto authored on 2016-07-14
498
}
improve issue message design
Yuki Kimoto authored on 2016-07-05
499

            
500
.issue-message-header {
501
  background:#f7f7f7;
add owner label
Yuki Kimoto authored on 2016-07-14
502
  overflow:hidden;
503
}
504

            
505
.issue-message-header-left {
506
  width:50%;
507
  float:left;
improve issue message design
Yuki Kimoto authored on 2016-07-05
508
  padding:10px 15px;
509
}
510

            
add owner label
Yuki Kimoto authored on 2016-07-14
511
.issue-message-header-right {
512
  width:50%;
513
  float:left;
514
  text-align:right;
515
  padding:7px 15px;
516
}
517
.issue-message-header-owner {
improve diff design
Yuki Kimoto authored on 2016-10-12
518
  background:#f4fcef;
519
  border-bottom:1px solid #e6e9e6;
add owner label
Yuki Kimoto authored on 2016-07-14
520
}
521

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
522
.issue-message-body {
523
  padding:15px;
524
}
525

            
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
526
.issue-title-panel {
improve border color
Yuki Kimoto authored on 2016-09-14
527
  border-bottom: 1px solid #e6e9e6;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
528
  padding-bottom:15px;
529
  margin-bottom:15px;
530
}
531

            
532
.issue-title {
533
  font-size:27px;
534
  margin:30px 0 15px 0;
535
}
536

            
537
.issue-open {
538
  display:inline-block;
539
  border-radius:5px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
540
  padding:4px 8px;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
541
  color:white;
improve issue message design
Yuki Kimoto authored on 2016-07-05
542
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
543
  background:#6cc644;
544
}
545

            
546
.issue-close {
improve issue message design
Yuki Kimoto authored on 2016-07-05
547
  display:inline-block;
548
  border-radius:5px;
549
  padding:4px 8px;
550
  color:white;
551
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
552
  background:#bd2c00;
553
}
554

            
improve branches page open c...
Yuki Kimoto authored on 2016-04-23
555
.branches-open {
556
  color:white;
557
  background:#6cc644;
558
  padding:5px 8px;
559
  border-radius:3px;
560
  margin-right:4px;
561
  border-radius:3px;
562
  text-align:center;
563
}
564
.branches-open:hover {
565
  color:white;
566
  text-decoration:none;
567
}
568

            
cleanup merge and push logic
Yuki Kimoto authored on 2016-04-27
569
.branches-close {
570
  color:white;
571
  background:#bd2c00;
572
  padding:5px 8px;
573
  border-radius:3px;
574
  margin-right:4px;
575
  border-radius:3px;
576
  text-align:center;
577
}
578
.branches-close:hover {
579
  color:white;
580
  text-decoration:none;
581
}
582

            
add pull request message
Yuki Kimoto authored on 2016-04-23
583
.pull-comment {
584
  border:1px solid #eee;
585
  margin-top:15px;
586
  border-radius:3px;
587
}
588
.pull-comment-header {
589
  background:#f2f8fa;
590
  padding:7px 12px;
591
  border-bottom:1px solid #eee;
592
}
593
.pull-comment-body {
594
  padding:13px 12px;
595
  
596
}
add pull request command lin...
Yuki Kimoto authored on 2016-06-01
597

            
598
.pull-command-line {
599
  border:1px solid #95c97e;
600
  border-radius:3px;
601
}
602

            
improve pull page design
Yuki Kimoto authored on 2016-04-21
603
.pull-request-form {
604
  border:1px solid #95c97e;
605
  border-radius:3px;
606
}
607
.pull-request-form-title {
608
  padding:10px;
609
}
610
.pull-request-form-description {
611
  padding:10px;
612
  color:#767676;
613
}
614
.pull-request-form-button {
615
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
616
  border-top:1px solid #e6e9e6;
improve pull page design
Yuki Kimoto authored on 2016-04-21
617
}
618
.pulls-title a {
619
  color:black;
620
}
621
.pulls-title a:hover {
622
  color:blue;
623
}
624

            
create pull request list
Yuki Kimoto authored on 2016-04-20
625
.pulls-button-container {
626
  text-align:right;
627
  margin-bottom:10px;
628
}
629
.pulls-header {
improve border color
Yuki Kimoto authored on 2016-09-14
630
  border:1px solid #e6e9e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
631
  background:#fafafa;
632
  padding:10px;
633
}
634
.pulls-body {
improve border color
Yuki Kimoto authored on 2016-09-14
635
  border:1px solid #e6e9e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
636
  border-top:none;
637
  background:#fafafa;
638
  background:white;
639
}
640
.pulls-body li {
641
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
642
  border-top: 1px solid #e6e9e6;
don't show pull request on n...
Yuki Kimoto authored on 2016-04-27
643
}
644
.pulls-body li:first-child {
645
  border-top:none;
create pull request list
Yuki Kimoto authored on 2016-04-20
646
}
647
.pulls-no-request {
648
  padding:30px;
649
  margin:1px auto;
650
  width:600px;
651
  text-align:center;
652
}
653

            
654
.pulls-description {
655
  color:#767676;
656
}
add pull reqeust link button...
Yuki Kimoto authored on 2016-08-20
657
.compare-pull-request-link {
658
  font-size:20px;
659
  margin:20px 0;
660
}
add compare across forks btn...
Yuki Kimoto authored on 2016-08-18
661
.compare-desc {
662
  color:#767676;
663
  margin-bottom:10px;
664
}
add pull request form
Yuki Kimoto authored on 2016-04-12
665
.compare-open-pull-request {
improve border color
Yuki Kimoto authored on 2016-09-14
666
  border:1px solid #e6e9e6;
add pull request form
Yuki Kimoto authored on 2016-04-12
667
  border-radius: 3px;
668
  width:80%;
669
}
670
.compare-open-pull-request-title {
improve border color
Yuki Kimoto authored on 2016-09-14
671
  border-bottom:1px solid #e6e9e6;
add pull request form
Yuki Kimoto authored on 2016-04-12
672
  padding:10px;
673
}
674
.compare-open-pull-request-message {
675
  padding:10px;
676
}
677
.compare-open-pull-request [type=text] {
678
  width:100%;
679
}
680
.compare-open-pull-request textarea {
681
  width:100%;
682
  min-height:200px;
683
}
684
.compare-open-pull-request-button {
685
  padding:10px;
686
  text-align:right;
687
}
688

            
improve compare page
Yuki Kimoto authored on 2016-04-12
689
.compare-nothing {
improve border color
Yuki Kimoto authored on 2016-09-14
690
  border:1px solid #e6e9e6;
improve compare page
Yuki Kimoto authored on 2016-04-12
691
  border-radius: 3px;
692
  background:#fafafa;
693
  padding:25px 0 30px 0;
694
  text-align:center;
695
  line-height:150%;
696
}
697

            
improve search page design
Yuki Kimoto authored on 2016-01-23
698
.text-gray { color:#767676 }
699

            
700
input[type=text], input[type=password] {
improve border color
Yuki Kimoto authored on 2016-09-14
701
  border:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
702
  border-radius: 3px;
703
  padding:6px 5px;
704
}
705

            
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
706
.repositories-container {
707
  overflow:hidden;
708
}
709
.repositories-left {
710
  padding-left:10px;
711
  padding-right:25px;
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
712
  width:75%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
713
  float:left;
714
}
715
.repositories-right {
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
716
  width:25%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
717
  float:left;
718
}
719
.repositories-user-name {
720
  font-weight:bold;
721
  font-size:22px;
722
}
723
.repositories-user-id {
724
  padding:5px 0 7px 2px;
725
  font-size:18px;
726
  color:#767676;
improve border color
Yuki Kimoto authored on 2016-09-14
727
  border-bottom:1px solid #e6e9e6;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
728
}
729
.repositories-user-mail {
730
  padding:5px 0;
731
}
add code tab
Yuki Kimoto authored on 2016-01-25
732
.project-tabs {
improve tab design
Yuki Kimoto authored on 2016-01-26
733
  position:relative;
734
  z-index:1;
735
  top:1px;  
add code tab
Yuki Kimoto authored on 2016-01-25
736
}
737

            
738
.project-tabs ul {
739
  overflow:hidden;
740
}
741

            
742
.project-tabs li {
743
  display:block;
744
  float:left;
improve tab design
Yuki Kimoto authored on 2016-01-26
745
  margin-bottom:0px;
746
}
747

            
748
.project-tabs li.active {
749
  background:white;
improve border color
Yuki Kimoto authored on 2016-09-14
750
  border:1px solid #e6e9e6;
add code tab
Yuki Kimoto authored on 2016-01-25
751
  border-top:3px #d26911 solid;
improve tab design
Yuki Kimoto authored on 2016-01-26
752
  border-bottom:white;
add code tab
Yuki Kimoto authored on 2016-01-25
753
  border-radius:3px 3px 0 0;
754
}
755

            
756
.project-tabs li a {
757
  display:block;
758
  width:100%;
759
  text-decoration:none;
cleanup new label
Yuki Kimoto authored on 2016-07-27
760
  padding:10px 15px 8px 15px;
add code tab
Yuki Kimoto authored on 2016-01-25
761
  text-align:center;
762
  color:#565656;
763
}
764

            
improve tab design
Yuki Kimoto authored on 2016-01-26
765
.project-tabs li.active a {
766
}
767

            
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
768
.admin-users {
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
769
  border-collapse:collapse;
770
  width:100%;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
771
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
772
.admin-users th, .admin-users td {
improve border color
Yuki Kimoto authored on 2016-09-14
773
  border:1px solid #e6e9e6;
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
774
  padding:5px;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
775
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
776
.admin-users th {
777
  font-weight:bold;
778
  text-align:center;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
779
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
780
.admin-users td {
781
  
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
782
}
783

            
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
784
.admin-users form {
785
  display:inline-block;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
786
}
787

            
improve new page design
Yuki Kimoto authored on 2016-01-21
788
.container {
789
  width: 980px;
790
  margin:0 auto;
791
}
792

            
793
.new-container {
794
  width: 800px;
795
  margin:0 auto;
796
}
797

            
798
.new-title-container {
799
  border-bottom:1px solid #e5e5e5;
800
  margin-top:40px;
801
  margin-bottom:15px;
802
}
803

            
804
.new-readme {
805
  border-bottom:1px solid #e5e5e5;
806
  margin-bottom:16px;
807
}
808

            
809
.new-readme div:first-child {
810
  font-weight:bold;
811
}
812

            
813
.new-readme div:first-child span {
814
  padding-left:5px;
815
}
816

            
817
.new-readme > .last-child {
818
  padding:0px 0px 15px 17px;
819
  color:#767676;
820
}
821

            
822
.new-title {
823
  font-weight:bold;
824
  font-size:19px;
825
  color:#333;
826
  margin-bottom:5px;
827
}
828

            
829
.new-description {
830
  color:#666;
831
  margin-bottom:8px;
832
}
833

            
834
.new-private {
835
  border-bottom:1px solid #e5e5e5;
836
  margin-bottom:16px;
837
}
838

            
839
.new-private li {
840
  padding:5px 0;
841
}
842

            
843
.new-private span {
844
  font-weight:bold;
845
  padding-left:5px;
846
}
847

            
848
.new-private .last-child {
849
  color:#767676;
850
  padding-left:17px;
851
}
852

            
853
.new-repository {
854
  border-bottom:1px solid #e5e5e5;
855
  margin-bottom:5px;
856
}
857

            
858
.new-repository .2th-child {
859

            
860
}
861

            
862
.new-repository .last-child {
863
  margin-bottom:10px;
864
}
865

            
866
.new-repository .last-child input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
867
  border:1px solid #e6e9e6;
improve new page design
Yuki Kimoto authored on 2016-01-21
868
  border-radius: 3px;
869
  padding:6px 5px;
870
  margin:5px 0;
871
  width:100%;
872
}
873

            
874
.new-repository table {
875
  margin-bottom:10px;
876
}
877

            
878
.new-repository td {
879
  padding:0px 0;
880
}
881

            
882
.new-repository input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
883
  border:1px solid #e6e9e6;
improve new page design
Yuki Kimoto authored on 2016-01-21
884
  border-radius: 3px;
885
  padding:6px 5px;
886
  margin:5px 0;
887
  width:350px;
888
}
889

            
improve footer design
Yuki Kimoto authored on 2015-12-25
890
body {
891
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
892
  font-size: 14px;
893
  line-height: 130%;
894
  color: #333333;
895
}
896

            
improve footer design
Yuki Kimoto authored on 2016-01-04
897
.header {
header color become green
Yuki Kimoto authored on 2016-09-13
898
  background:#5AAE08;
improve footer design
Yuki Kimoto authored on 2016-01-04
899
  border-bottom:1px solid #e5e5e5;
900
  overflow:hidden;
improve h1 color
Yuki Kimoto authored on 2016-09-13
901
  border-bottom:3px solid #479A05;
improve footer design
Yuki Kimoto authored on 2016-01-04
902
}
903

            
904
.header-left {
905
  float:left;
906
  width:50%;
907
  overflow:hidden;
908
}
909

            
910
.header-right {
911
  width:50%;
912
  overflow:hidden;
913
}
914

            
915
.title {
916
  float:left;
917
  font-size:19px;
improve header design
Yuki Kimoto authored on 2016-10-12
918
  padding:10px 0 6px 0;
improve footer design
Yuki Kimoto authored on 2016-01-04
919
}
header color become green
Yuki Kimoto authored on 2016-09-13
920
.title a {
921
  color:white;
922
}
923
.title a:hover {
924
  color:white;
925
}
improve footer design
Yuki Kimoto authored on 2016-01-04
926

            
927
.header-search {
928
  float:left;
929
  margin-left:10px;
improve header design
Yuki Kimoto authored on 2016-10-12
930
  padding:6px 0 5px 0;
improve footer design
Yuki Kimoto authored on 2016-01-04
931
}
932

            
933
.header-search input {
934
  padding:4px 5px;
header color become green
Yuki Kimoto authored on 2016-09-13
935
  border:1px solid white;
improve footer design
Yuki Kimoto authored on 2016-01-04
936
}
937

            
938
.header-rigth-container {
939
  float:right;
940
  overflow:hidden;
941
}
942

            
943
.header-btn-container {
944
  float:left;
945
  margin-right:4px;
improve header design
Yuki Kimoto authored on 2016-10-12
946
  padding-top:4px;
improve footer design
Yuki Kimoto authored on 2016-01-04
947
}
948

            
949
.header-login-container {
950
  float:left;
951
}
952

            
header color become green
Yuki Kimoto authored on 2016-09-13
953
.header-login-container a {
954
  color:white;
955
}
956
.header-login-container a:hover {
957
  color:white;
958
}
959

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
960
/* Markdown */
cleanup markdown
Yuki Kimoto authored on 2016-02-13
961
.markdown-body{
962
  padding:40px 40px;
963
  
964
  font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
965
  font-size:16px;
966
  line-height:1.6;
967
  word-wrap:break-word
968
}
969
.markdown-body:before{
970
  display:table;
971
  content:"";
972
}
973
.markdown-body:after{
974
  display:table;
975
  clear:both;
976
  content:"";
977
}
978
.markdown-body>*:first-child{
979
  margin-top:0 !important
980
}
981
.markdown-body>*:last-child{
982
  margin-bottom:0 !important
983
}
984
.markdown-body a:not([href]){
985
  color:inherit;
986
  text-decoration:none;
987
}
988
.markdown-body .absent{
989
  color:#c00;
990
}
991
.markdown-body .anchor{
992
  display:inline-block;
993
  padding-right:2px;
994
  margin-left:-18px;
995
}
996
.markdown-body .anchor:focus{
997
  outline:none;
998
}
999
.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{
1000
  margin-top:1em;
1001
  margin-bottom:16px;
1002
  font-weight:bold;
1003
  line-height:1.4
1004
}
1005
.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{
1006
  color:#000;
1007
  vertical-align:middle;
1008
  visibility:hidden
1009
}
1010
.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{
1011
  text-decoration:none
1012
}
1013
.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{
1014
  visibility:visible
1015
}
1016
.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{
1017
  font-size:inherit
1018
}
1019
.markdown-body h1{
1020
  padding-bottom:0.3em;
1021
  font-size:2.25em;
1022
  line-height:1.2;
1023
  border-bottom:1px solid #eee
1024
}
1025
.markdown-body h1 .anchor{
1026
  line-height:1
1027
}
1028
.markdown-body h2{
1029
  padding-bottom:0.3em;
1030
  font-size:1.75em;
1031
  line-height:1.225;
1032
  border-bottom:1px solid #eee
1033
}
1034
.markdown-body h2 .anchor{
1035
  line-height:1
1036
}
1037
.markdown-body h3{
1038
  font-size:1.5em;
1039
  line-height:1.43
1040
}
1041
.markdown-body h3 .anchor{
1042
  line-height:1.2
1043
}
1044
.markdown-body h4{
1045
  font-size:1.25em
1046
}
1047
.markdown-body h4 .anchor{
1048
  line-height:1.2
1049
}
1050
.markdown-body h5{
1051
  font-size:1em
1052
}
1053
.markdown-body h5 .anchor{
1054
  line-height:1.1
1055
}
1056
.markdown-body h6{
1057
  font-size:1em;
1058
  color:#777
1059
}
1060
.markdown-body h6 .anchor{
1061
  line-height:1.1
1062
}
1063
.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{
1064
  margin-top:0;
1065
  margin-bottom:16px
1066
}
1067
.markdown-body hr{
1068
  height:4px;
1069
  padding:0;
1070
  margin:16px 0;
1071
  background-color:#e7e7e7;
1072
  border:0 none
1073
}
1074
.markdown-body ul,.markdown-body ol{
1075
  padding-left:2em
1076
}
1077
.markdown-body ul.no-list,.markdown-body ol.no-list{
1078
  padding:0;
1079
  list-style-type:none
1080
}
1081
.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{
1082
  margin-top:0;
1083
  margin-bottom:0
1084
}
fix list style
Yuki Kimoto authored on 2016-08-03
1085
.markdown-body ul li {
1086
  list-style:disc;
1087
}
1088

            
cleanup markdown
Yuki Kimoto authored on 2016-02-13
1089
.markdown-body li>p{
1090
  margin-top:16px
1091
}
1092
.markdown-body dl{
1093
  padding:0
1094
}
1095
.markdown-body dl dt{
1096
  padding:0;
1097
  margin-top:16px;
1098
  font-size:1em;
1099
  font-style:italic;
1100
  font-weight:bold
1101
}
1102
.markdown-body dl dd{
1103
  padding:0 16px;
1104
  margin-bottom:16px
1105
}
1106
.markdown-body blockquote{
1107
  padding:0 15px;
1108
  color:#777;
1109
  border-left:4px solid #ddd
1110
}
1111
.markdown-body blockquote>:first-child{
1112
  margin-top:0
1113
}
1114
.markdown-body blockquote>:last-child{
1115
  margin-bottom:0
1116
}
1117
.markdown-body table{
1118
  display:block;
1119
  width:100%;
1120
  overflow:auto;
1121
  word-break:normal;
1122
  word-break:keep-all
1123
}
1124
.markdown-body table th{
1125
  font-weight:bold
1126
}
1127
.markdown-body table th,.markdown-body table td{
1128
  padding:6px 13px;
1129
  border:1px solid #ddd
1130
}
1131
.markdown-body table tr{
1132
  background-color:#fff;
1133
  border-top:1px solid #ccc
1134
}
1135
.markdown-body table tr:nth-child(2n){
1136
  background-color:#f8f8f8
1137
}
1138
.markdown-body img{
1139
  max-width:100%;
1140
  box-sizing:content-box;
1141
  background-color:#fff
1142
}
1143
.markdown-body img[align=right]{
1144
  padding-left:20px
1145
}
1146
.markdown-body img[align=left]{
1147
  padding-right:20px
1148
}
1149
.markdown-body .emoji{
1150
  max-width:none
1151
}
1152
.markdown-body span.frame{
1153
  display:block;
1154
  overflow:hidden
1155
}
1156
.markdown-body span.frame>span{
1157
  display:block;
1158
  float:left;
1159
  width:auto;
1160
  padding:7px;
1161
  margin:13px 0 0;
1162
  overflow:hidden;
1163
  border:1px solid #ddd
1164
}
1165
.markdown-body span.frame span img{
1166
  display:block;
1167
  float:left
1168
}
1169
.markdown-body span.frame span span{
1170
  display:block;
1171
  padding:5px 0 0;
1172
  clear:both;
1173
  color:#333
1174
}
1175
.markdown-body span.align-center{
1176
  display:block;
1177
  overflow:hidden;
1178
  clear:both
1179
}
1180
.markdown-body span.align-center>span{
1181
  display:block;
1182
  margin:13px auto 0;
1183
  overflow:hidden;
1184
  text-align:center
1185
}
1186
.markdown-body span.align-center span img{
1187
  margin:0 auto;
1188
  text-align:center
1189
}
1190
.markdown-body span.align-right{
1191
  display:block;
1192
  overflow:hidden;
1193
  clear:both
1194
}
1195
.markdown-body span.align-right>span{
1196
  display:block;
1197
  margin:13px 0 0;
1198
  overflow:hidden;
1199
  text-align:right
1200
}
1201
.markdown-body span.align-right span img{
1202
  margin:0;
1203
  text-align:right
1204
}
1205
.markdown-body span.float-left{
1206
  display:block;
1207
  float:left;
1208
  margin-right:13px;
1209
  overflow:hidden
1210
}
1211
.markdown-body span.float-left span{
1212
  margin:13px 0 0
1213
}
1214
.markdown-body span.float-right{
1215
  display:block;
1216
  float:right;
1217
  margin-left:13px;
1218
  overflow:hidden
1219
}
1220
.markdown-body span.float-right>span{
1221
  display:block;
1222
  margin:13px auto 0;
1223
  overflow:hidden;
1224
  text-align:right
1225
}
1226
.markdown-body code,.markdown-body tt{
1227
  padding:0;
1228
  padding-top:0.2em;
1229
  padding-bottom:0.2em;
1230
  margin:0;
1231
  font-size:85%;
1232
  background-color:rgba(0,0,0,0.04);
1233
  border-radius:3px
1234
}
1235
.markdown-body code:before,.markdown-body code:after,.markdown-body tt:before,.markdown-body tt:after{
1236
  letter-spacing:-0.2em;
1237
  content:"\00a0"
1238
}
1239
.markdown-body code br,.markdown-body tt br{
1240
  display:none
1241
}
1242
.markdown-body del code{
1243
  text-decoration:inherit
1244
}
1245
.markdown-body pre>code{
1246
  padding:0;
1247
  margin:0;
1248
  font-size:100%;
1249
  word-break:normal;
1250
  white-space:pre;
1251
  background:transparent;
1252
  border:0
1253
}
1254
.markdown-body .highlight{
1255
  margin-bottom:16px
1256
}
1257
.markdown-body .highlight pre,.markdown-body pre{
1258
  padding:16px;
1259
  overflow:auto;
1260
  font-size:85%;
1261
  line-height:1.45;
1262
  background-color:#f7f7f7;
1263
  border-radius:3px
1264
}
1265
.markdown-body .highlight pre{
1266
  margin-bottom:0;
1267
  word-break:normal
1268
}
1269
.markdown-body pre{
1270
  word-wrap:normal
1271
}
1272
.markdown-body pre code,.markdown-body pre tt{
1273
  display:inline;
1274
  max-width:initial;
1275
  padding:0;
1276
  margin:0;
1277
  overflow:initial;
1278
  line-height:inherit;
1279
  word-wrap:normal;
1280
  background-color:transparent;
1281
  border:0
1282
}
1283
.markdown-body pre code:before,.markdown-body pre code:after,.markdown-body pre tt:before,.markdown-body pre tt:after{
1284
  content:normal
1285
}
1286
.markdown-body kbd{
1287
  display:inline-block;
1288
  padding:3px 5px;
1289
  font-size:11px;
1290
  line-height:10px;
1291
  color:#555;
1292
  vertical-align:middle;
1293
  background-color:#fcfcfc;
1294
  border:solid 1px #ccc;
1295
  border-bottom-color:#bbb;
1296
  border-radius:3px;
1297
  box-shadow:inset 0 -1px 0 #bbb
1298
}
1299
.markdown-body blockquote{
1300
  padding:0 0 0 40px;
1301
  border:0 none
1302
}
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
1303

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1304
/* icon */
1305
[class^="icon-"],
1306
[class*=" icon-"] {
cleanup bootstrap
Yuki Kimoto authored on 2015-12-24
1307
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1308
  width: 14px;
1309
  height: 14px;
1310
  margin-top: 1px;
1311
  *margin-right: .3em;
1312
  line-height: 14px;
1313
  vertical-align: text-top;
cleanup icon
Yuki Kimoto authored on 2016-01-06
1314
  background-image: url("../image/glyphicons-halflings.png");
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1315
  background-position: 14px 14px;
1316
  background-repeat: no-repeat;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1317
}
1318

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1319
.icon-glass {
1320
  background-position: 0      0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1321
}
1322

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1323
.icon-music {
1324
  background-position: -24px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1325
}
1326

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1327
.icon-search {
1328
  background-position: -48px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1329
}
1330

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1331
.icon-envelope {
1332
  background-position: -72px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1333
}
1334

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1335
.icon-heart {
1336
  background-position: -96px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1337
}
1338

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1339
.icon-star {
1340
  background-position: -120px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1341
}
1342

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1343
.icon-star-empty {
1344
  background-position: -144px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1345
}
1346

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1347
.icon-user {
1348
  background-position: -168px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1349
}
1350

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1351
.icon-film {
1352
  background-position: -192px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1353
}
1354

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1355
.icon-th-large {
1356
  background-position: -216px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1357
}
1358

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1359
.icon-th {
1360
  background-position: -240px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1361
}
1362

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1363
.icon-th-list {
1364
  background-position: -264px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1365
}
1366

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1367
.icon-ok {
1368
  background-position: -288px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1369
}
1370

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1371
.icon-remove {
1372
  background-position: -312px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1373
}
1374

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1375
.icon-zoom-in {
1376
  background-position: -336px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1377
}
1378

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1379
.icon-zoom-out {
1380
  background-position: -360px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1381
}
1382

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1383
.icon-off {
1384
  background-position: -384px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1385
}
1386

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1387
.icon-signal {
1388
  background-position: -408px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1389
}
1390

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1391
.icon-cog {
1392
  background-position: -432px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1393
}
1394

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1395
.icon-trash {
1396
  background-position: -456px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1397
}
1398

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1399
.icon-home {
1400
  background-position: 0 -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1401
}
1402

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1403
.icon-file {
1404
  background-position: -24px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1405
}
1406

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1407
.icon-time {
1408
  background-position: -48px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1409
}
1410

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1411
.icon-road {
1412
  background-position: -72px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1413
}
1414

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1415
.icon-download-alt {
1416
  background-position: -96px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1417
}
1418

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1419
.icon-download {
1420
  background-position: -120px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1421
}
1422

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1423
.icon-upload {
1424
  background-position: -144px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1425
}
1426

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1427
.icon-inbox {
1428
  background-position: -168px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1429
}
1430

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1431
.icon-play-circle {
1432
  background-position: -192px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1433
}
1434

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1435
.icon-repeat {
1436
  background-position: -216px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1437
}
1438

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1439
.icon-refresh {
1440
  background-position: -240px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1441
}
1442

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1443
.icon-list-alt {
1444
  background-position: -264px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1445
}
1446

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1447
.icon-lock {
1448
  background-position: -287px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1449
}
1450

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1451
.icon-flag {
1452
  background-position: -312px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1453
}
1454

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1455
.icon-headphones {
1456
  background-position: -336px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1457
}
1458

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1459
.icon-volume-off {
1460
  background-position: -360px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1461
}
1462

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1463
.icon-volume-down {
1464
  background-position: -384px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1465
}
1466

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1467
.icon-volume-up {
1468
  background-position: -408px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1469
}
1470

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1471
.icon-qrcode {
1472
  background-position: -432px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1473
}
1474

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1475
.icon-barcode {
1476
  background-position: -456px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1477
}
1478

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1479
.icon-tag {
1480
  background-position: 0 -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1481
}
1482

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1483
.icon-tags {
1484
  background-position: -25px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1485
}
1486

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1487
.icon-book {
1488
  background-position: -48px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1489
}
1490

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1491
.icon-bookmark {
1492
  background-position: -72px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1493
}
1494

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1495
.icon-print {
1496
  background-position: -96px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1497
}
1498

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1499
.icon-camera {
1500
  background-position: -120px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1501
}
1502

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1503
.icon-font {
1504
  background-position: -144px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1505
}
1506

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1507
.icon-bold {
1508
  background-position: -167px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1509
}
1510

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1511
.icon-italic {
1512
  background-position: -192px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1513
}
1514

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1515
.icon-text-height {
1516
  background-position: -216px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1517
}
1518

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1519
.icon-text-width {
1520
  background-position: -240px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1521
}
1522

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1523
.icon-align-left {
1524
  background-position: -264px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1525
}
1526

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1527
.icon-align-center {
1528
  background-position: -288px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1529
}
1530

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1531
.icon-align-right {
1532
  background-position: -312px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1533
}
1534

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1535
.icon-align-justify {
1536
  background-position: -336px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1537
}
1538

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1539
.icon-list {
1540
  background-position: -360px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1541
}
1542

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1543
.icon-indent-left {
1544
  background-position: -384px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1545
}
1546

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1547
.icon-indent-right {
1548
  background-position: -408px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1549
}
1550

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1551
.icon-facetime-video {
1552
  background-position: -432px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1553
}
1554

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1555
.icon-picture {
1556
  background-position: -456px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1557
}
1558

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1559
.icon-pencil {
1560
  background-position: 0 -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1561
}
1562

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1563
.icon-map-marker {
1564
  background-position: -24px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1565
}
1566

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1567
.icon-adjust {
1568
  background-position: -48px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1569
}
1570

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1571
.icon-tint {
1572
  background-position: -72px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1573
}
1574

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1575
.icon-edit {
1576
  background-position: -96px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1577
}
1578

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1579
.icon-share {
1580
  background-position: -120px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1581
}
1582

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1583
.icon-check {
1584
  background-position: -144px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1585
}
1586

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1587
.icon-move {
1588
  background-position: -168px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1589
}
1590

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1591
.icon-step-backward {
1592
  background-position: -192px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1593
}
1594

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1595
.icon-fast-backward {
1596
  background-position: -216px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1597
}
1598

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1599
.icon-backward {
1600
  background-position: -240px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1601
}
1602

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1603
.icon-play {
1604
  background-position: -264px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1605
}
1606

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1607
.icon-pause {
1608
  background-position: -288px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1609
}
1610

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1611
.icon-stop {
1612
  background-position: -312px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1613
}
1614

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1615
.icon-forward {
1616
  background-position: -336px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1617
}
1618

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1619
.icon-fast-forward {
1620
  background-position: -360px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1621
}
1622

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1623
.icon-step-forward {
1624
  background-position: -384px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1625
}
1626

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1627
.icon-eject {
1628
  background-position: -408px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1629
}
1630

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1631
.icon-chevron-left {
1632
  background-position: -432px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1633
}
1634

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1635
.icon-chevron-right {
1636
  background-position: -456px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1637
}
1638

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1639
.icon-plus-sign {
1640
  background-position: 0 -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1641
}
1642

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1643
.icon-minus-sign {
1644
  background-position: -24px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1645
}
1646

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1647
.icon-remove-sign {
1648
  background-position: -48px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1649
}
1650

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1651
.icon-ok-sign {
1652
  background-position: -72px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1653
}
1654

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1655
.icon-question-sign {
1656
  background-position: -96px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1657
}
1658

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1659
.icon-info-sign {
1660
  background-position: -120px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1661
}
1662

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1663
.icon-screenshot {
1664
  background-position: -144px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1665
}
1666

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1667
.icon-remove-circle {
1668
  background-position: -168px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1669
}
1670

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1671
.icon-ok-circle {
1672
  background-position: -192px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1673
}
1674

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1675
.icon-ban-circle {
1676
  background-position: -216px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1677
}
1678

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1679
.icon-arrow-left {
1680
  background-position: -240px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1681
}
1682

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1683
.icon-arrow-right {
1684
  background-position: -264px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1685
}
1686

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1687
.icon-arrow-up {
1688
  background-position: -289px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1689
}
1690

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1691
.icon-arrow-down {
1692
  background-position: -312px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1693
}
1694

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1695
.icon-share-alt {
1696
  background-position: -336px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1697
}
1698

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1699
.icon-resize-full {
1700
  background-position: -360px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1701
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1702

            
1703
.icon-resize-small {
1704
  background-position: -384px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1705
}
1706

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1707
.icon-plus {
1708
  background-position: -408px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1709
}
1710

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1711
.icon-minus {
1712
  background-position: -433px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1713
}
1714

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1715
.icon-asterisk {
1716
  background-position: -456px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1717
}
1718

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1719
.icon-exclamation-sign {
1720
  background-position: 0 -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1721
}
1722

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1723
.icon-gift {
1724
  background-position: -24px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1725
}
1726

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1727
.icon-leaf {
1728
  background-position: -48px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1729
}
1730

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1731
.icon-fire {
1732
  background-position: -72px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1733
}
1734

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1735
.icon-eye-open {
1736
  background-position: -96px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1737
}
1738

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1739
.icon-eye-close {
1740
  background-position: -120px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1741
}
1742

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1743
.icon-warning-sign {
1744
  background-position: -144px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1745
}
1746

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1747
.icon-plane {
1748
  background-position: -168px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1749
}
1750

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1751
.icon-calendar {
1752
  background-position: -192px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1753
}
1754

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1755
.icon-random {
1756
  width: 16px;
1757
  background-position: -216px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1758
}
1759

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1760
.icon-comment {
1761
  background-position: -240px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1762
}
1763

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1764
.icon-magnet {
1765
  background-position: -264px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1766
}
1767

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1768
.icon-chevron-up {
1769
  background-position: -288px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1770
}
1771

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1772
.icon-chevron-down {
1773
  background-position: -313px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1774
}
1775

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1776
.icon-retweet {
1777
  background-position: -336px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1778
}
1779

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1780
.icon-shopping-cart {
1781
  background-position: -360px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1782
}
1783

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1784
.icon-folder-close {
1785
  width: 16px;
1786
  background-position: -384px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1787
}
1788

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1789
.icon-folder-open {
1790
  width: 16px;
1791
  background-position: -408px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1792
}
1793

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1794
.icon-resize-vertical {
1795
  background-position: -432px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1796
}
1797

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1798
.icon-resize-horizontal {
1799
  background-position: -456px -118px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1800
}
1801

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1802
.icon-hdd {
1803
  background-position: 0 -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1804
}
1805

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1806
.icon-bullhorn {
1807
  background-position: -24px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1808
}
1809

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1810
.icon-bell {
1811
  background-position: -48px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1812
}
1813

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1814
.icon-certificate {
1815
  background-position: -72px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1816
}
1817

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1818
.icon-thumbs-up {
1819
  background-position: -96px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1820
}
1821

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1822
.icon-thumbs-down {
1823
  background-position: -120px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1824
}
1825

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1826
.icon-hand-right {
1827
  background-position: -144px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1828
}
1829

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1830
.icon-hand-left {
1831
  background-position: -168px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1832
}
1833

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1834
.icon-hand-up {
1835
  background-position: -192px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1836
}
1837

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1838
.icon-hand-down {
1839
  background-position: -216px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1840
}
1841

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1842
.icon-circle-arrow-right {
1843
  background-position: -240px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1844
}
1845

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1846
.icon-circle-arrow-left {
1847
  background-position: -264px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1848
}
1849

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1850
.icon-circle-arrow-up {
1851
  background-position: -288px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1852
}
1853

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1854
.icon-circle-arrow-down {
1855
  background-position: -312px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1856
}
1857

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1858
.icon-globe {
1859
  background-position: -336px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1860
}
1861

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1862
.icon-wrench {
1863
  background-position: -360px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1864
}
1865

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1866
.icon-tasks {
1867
  background-position: -384px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1868
}
1869

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1870
.icon-filter {
1871
  background-position: -408px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1872
}
1873

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1874
.icon-briefcase {
1875
  background-position: -432px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1876
}
1877

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1878
.icon-fullscreen {
1879
  background-position: -456px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1880
}
1881

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1882
/* button */
1883
.close {
1884
  float: right;
1885
  font-size: 20px;
1886
  font-weight: bold;
1887
  line-height: 20px;
1888
  color: #000000;
1889
  text-shadow: 0 1px 0 #ffffff;
1890
  opacity: 0.2;
1891
  filter: alpha(opacity=20);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1892
}
1893

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1894
.close:hover,
1895
.close:focus {
1896
  color: #000000;
1897
  text-decoration: none;
1898
  cursor: pointer;
1899
  opacity: 0.4;
1900
  filter: alpha(opacity=40);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1901
}
1902

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1903
button.close {
1904
  padding: 0;
1905
  cursor: pointer;
1906
  background: transparent;
1907
  border: 0;
1908
  -webkit-appearance: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1909
}
1910

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1911
.btn {
1912
  display: inline-block;
1913
  padding: 4px 12px;
1914
  margin-bottom: 0;
1915
  font-size: 14px;
1916
  line-height: 20px;
1917
  color: #333333;
1918
  text-align: center;
1919
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1920
  vertical-align: middle;
1921
  cursor: pointer;
1922
  background-color: #f5f5f5;
1923
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1924
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1925
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1926
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1927
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
1928
  background-repeat: repeat-x;
1929
  border: 1px solid #cccccc;
1930
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1931
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1932
  border-bottom-color: #b3b3b3;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1933
  border-radius: 4px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1934
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
1935
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1936
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1937
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1938
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1939
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1940
.btn:hover,
1941
.btn:focus,
1942
.btn:active,
1943
.btn.active,
1944
.btn.disabled,
1945
.btn[disabled] {
1946
  color: #333333;
1947
  background-color: #e6e6e6;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1948
}
1949

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1950
.btn:active,
1951
.btn.active {
1952
  background-color: #cccccc \9;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1953
}
1954

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1955
.btn:hover,
1956
.btn:focus {
1957
  color: #333333;
1958
  text-decoration: none;
1959
  background-position: 0 -15px;
1960
  -webkit-transition: background-position 0.1s linear;
1961
     -moz-transition: background-position 0.1s linear;
1962
       -o-transition: background-position 0.1s linear;
1963
          transition: background-position 0.1s linear;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1964
}
1965

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1966
.btn:focus {
1967
  outline: thin dotted #333;
1968
  outline: 5px auto -webkit-focus-ring-color;
1969
  outline-offset: -2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1970
}
1971

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1972
.btn.active,
1973
.btn:active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1974
  background-image: none;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1975
  outline: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1976
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1977
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1978
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1979
}
1980

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1981
.btn.disabled,
1982
.btn[disabled] {
1983
  cursor: default;
1984
  background-image: none;
1985
  opacity: 0.65;
1986
  filter: alpha(opacity=65);
1987
  -webkit-box-shadow: none;
1988
     -moz-box-shadow: none;
1989
          box-shadow: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1990
}
1991

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1992
.btn-large {
1993
  padding: 11px 19px;
1994
  font-size: 17.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1995
  border-radius: 6px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1996
}
1997

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1998
.btn-large [class^="icon-"],
1999
.btn-large [class*=" icon-"] {
2000
  margin-top: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2001
}
2002

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2003
.btn-small {
2004
  padding: 2px 10px;
2005
  font-size: 11.9px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2006
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2007
}
2008

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2009
.btn-small [class^="icon-"],
2010
.btn-small [class*=" icon-"] {
2011
  margin-top: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2012
}
2013

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2014
.btn-mini [class^="icon-"],
2015
.btn-mini [class*=" icon-"] {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2016
  margin-top: -1px;
2017
}
2018

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2019
.btn-mini {
2020
  padding: 0 6px;
2021
  font-size: 10.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2022
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2023
}
2024

            
improve branch select design
Yuki Kimoto authored on 2016-01-06
2025
.btn-primary {
2026
  color: #ffffff;
2027
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2028
  background-color: #006dcc;
2029
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
2030
  background-repeat: repeat-x;
2031
  border-color: #0044cc #0044cc #002a80;
2032
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2033
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
2034
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2035
}
2036

            
2037
.btn-primary:hover,
2038
.btn-primary:focus,
2039
.btn-primary:active,
2040
.btn-primary.active,
2041
.btn-primary.disabled,
2042
.btn-primary[disabled] {
2043
  color: #ffffff;
2044
  background-color: #0044cc;
2045
}
2046

            
2047
.btn-primary:active,
2048
.btn-primary.active {
2049
  background-color: #003399 \9;
2050
}
2051

            
2052
.btn-info {
2053
  color: #ffffff;
2054
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2055
  background-color: #49afcd;
2056
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
2057
  background-repeat: repeat-x;
2058
  border-color: #2f96b4 #2f96b4 #1f6377;
2059
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2060
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
2061
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2062
}
2063

            
2064
.btn-info:hover,
2065
.btn-info:focus,
2066
.btn-info:active,
2067
.btn-info.active,
2068
.btn-info.disabled,
2069
.btn-info[disabled] {
2070
  color: #ffffff;
2071
  background-color: #2f96b4;
2072
}
2073

            
improve login page design
Yuki Kimoto authored on 2016-01-16
2074
.btn-success {
2075
  color: #ffffff;
2076
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2077
  background-color: #5bb75b;
2078
  background-image: linear-gradient(to bottom, #62c462, #51a351);
2079
  background-repeat: repeat-x;
2080
  border-color: #51a351 #51a351 #387038;
2081
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2082
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
2083
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2084
}
2085

            
2086
.btn-success:hover,
2087
.btn-success:focus,
2088
.btn-success:active,
2089
.btn-success.active,
2090
.btn-success.disabled,
2091
.btn-success[disabled] {
2092
  color: #ffffff;
2093
  background-color: #51a351;
2094
}
2095

            
2096
.btn-success:active,
2097
.btn-success.active {
2098
  background-color: #408140 \9;
2099
}
2100

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
2101
.btn-danger {
2102
  color: #ffffff;
2103
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2104
  background-color: #da4f49;
2105
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
2106
  background-repeat: repeat-x;
2107
  border-color: #bd362f #bd362f #802420;
2108
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2109
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
2110
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2111
}
2112

            
2113
.btn-danger:hover,
2114
.btn-danger:focus,
2115
.btn-danger:active,
2116
.btn-danger.active,
2117
.btn-danger.disabled,
2118
.btn-danger[disabled] {
2119
  color: #ffffff;
2120
  background-color: #bd362f;
2121
}
2122

            
2123
.btn-danger:active,
2124
.btn-danger.active {
2125
  background-color: #942a25 \9;
2126
}
2127

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2128
/* alert */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2129
.alert {
2130
  padding: 8px 35px 8px 14px;
2131
  margin-bottom: 20px;
2132
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2133
  background-color: #fcf8e3;
2134
  border: 1px solid #fbeed5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2135
  border-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2136
}
2137

            
2138
.alert,
2139
.alert h4 {
2140
  color: #c09853;
2141
}
2142

            
2143
.alert h4 {
2144
  margin: 0;
2145
}
2146

            
2147
.alert .close {
2148
  position: relative;
2149
  top: -2px;
2150
  right: -21px;
2151
  line-height: 20px;
2152
}
2153

            
2154
.alert-success {
2155
  color: #468847;
2156
  background-color: #dff0d8;
2157
  border-color: #d6e9c6;
2158
}
2159

            
2160
.alert-success h4 {
2161
  color: #468847;
2162
}
2163

            
2164
.alert-danger,
2165
.alert-error {
2166
  color: #b94a48;
2167
  background-color: #f2dede;
2168
  border-color: #eed3d7;
2169
}
2170

            
2171
.alert-danger h4,
2172
.alert-error h4 {
2173
  color: #b94a48;
2174
}
2175

            
2176
.alert-info {
2177
  color: #3a87ad;
2178
  background-color: #d9edf7;
2179
  border-color: #bce8f1;
2180
}
2181

            
2182
.alert-info h4 {
2183
  color: #3a87ad;
2184
}
2185

            
2186
.alert-block {
2187
  padding-top: 14px;
2188
  padding-bottom: 14px;
2189
}
2190

            
2191
.alert-block > p,
2192
.alert-block > ul {
2193
  margin-bottom: 0;
2194
}
2195

            
2196
.alert-block p + p {
2197
  margin-top: 5px;
2198
}
2199

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2200
/* tab box */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2201
.nav {
2202
  margin-bottom: 20px;
2203
  margin-left: 0;
2204
  list-style: none;
2205
}
2206

            
2207
.nav > li > a {
2208
  display: block;
2209
}
2210

            
2211
.nav > li > a:hover,
2212
.nav > li > a:focus {
2213
  text-decoration: none;
2214
  background-color: #eeeeee;
2215
}
2216

            
2217
.nav > li > a > img {
2218
  max-width: none;
2219
}
2220

            
2221
.nav > .pull-right {
2222
  float: right;
2223
}
2224

            
2225
.nav-tabs:before,
cleanup css
Yuki Kimoto authored on 2016-01-27
2226
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2227
  display: table;
2228
  line-height: 0;
2229
  content: "";
2230
}
2231

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2232
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2233
  clear: both;
2234
}
2235

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2236
.nav-tabs > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2237
  float: left;
2238
}
2239

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2240
.nav-tabs > li > a {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2241
  padding-right: 12px;
2242
  padding-left: 12px;
2243
  margin-right: 2px;
2244
  line-height: 14px;
2245
}
2246

            
2247
.nav-tabs {
2248
  border-bottom: 1px solid #ddd;
2249
}
2250

            
2251
.nav-tabs > li {
2252
  margin-bottom: -1px;
2253
}
2254

            
2255
.nav-tabs > li > a {
2256
  padding-top: 8px;
2257
  padding-bottom: 8px;
2258
  line-height: 20px;
2259
  border: 1px solid transparent;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2260
  border-radius: 4px 4px 0 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2261
}
2262

            
2263
.nav-tabs > li > a:hover,
2264
.nav-tabs > li > a:focus {
2265
  border-color: #eeeeee #eeeeee #dddddd;
2266
}
2267

            
2268
.nav-tabs > .active > a,
2269
.nav-tabs > .active > a:hover,
2270
.nav-tabs > .active > a:focus {
2271
  color: #555555;
2272
  cursor: default;
2273
  background-color: #ffffff;
2274
  border: 1px solid #ddd;
2275
  border-bottom-color: transparent;
2276
}
2277

            
2278
.nav-stacked > li {
2279
  float: none;
2280
}
2281

            
2282
.nav-stacked > li > a {
2283
  margin-right: 0;
2284
}
2285

            
2286
.nav-tabs.nav-stacked {
2287
  border-bottom: 0;
2288
}
2289

            
2290
.nav-tabs.nav-stacked > li > a {
2291
  border: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2292
  border-radius: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2293
}
2294

            
2295
.nav-tabs.nav-stacked > li:first-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2296
  border-top-right-radius: 4px;
2297
  border-top-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2298
}
2299

            
2300
.nav-tabs.nav-stacked > li:last-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2301
  border-bottom-right-radius: 4px;
2302
  border-bottom-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2303
}
2304

            
2305
.nav-tabs.nav-stacked > li > a:hover,
2306
.nav-tabs.nav-stacked > li > a:focus {
2307
  z-index: 2;
2308
  border-color: #ddd;
2309
}
2310

            
2311
.nav-tabs .dropdown-menu {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2312
  border-radius: 0 0 6px 6px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2313
}
2314

            
2315

            
2316

            
2317
.nav > .dropdown.active > a:hover,
2318
.nav > .dropdown.active > a:focus {
2319
  cursor: pointer;
2320
}
2321

            
2322
.nav > li.dropdown.open.active > a:hover,
2323
.nav > li.dropdown.open.active > a:focus {
2324
  color: #ffffff;
2325
  background-color: #999999;
2326
  border-color: #999999;
2327
}
2328

            
2329
.nav li.dropdown.open .caret,
2330
.nav li.dropdown.open.active .caret,
2331
.nav li.dropdown.open a:hover .caret,
2332
.nav li.dropdown.open a:focus .caret {
2333
  border-top-color: #ffffff;
2334
  border-bottom-color: #ffffff;
2335
  opacity: 1;
2336
  filter: alpha(opacity=100);
2337
}
2338

            
2339
.tab-content {
2340
  overflow: auto;
2341
}
2342

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2343
.tab-content > .tab-pane {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2344
  display: none;
2345
}
2346

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2347
.tab-content > .active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2348
  display: block;
2349
}
2350

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2351
/* bread */
2352
.breadcrumb {
improve tab design
Yuki Kimoto authored on 2016-01-26
2353
  margin-bottom:10px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2354
  list-style: none;
2355
  background-color: #f5f5f5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2356
  border-radius: 4px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2357
  font-size:18px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2358
  background:none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2359
}
2360

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2361
.breadcrumb > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2362
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2363
  *display: inline;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2364
  text-shadow: 0 1px 0 #ffffff;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2365
  *zoom: 1;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2366
}
2367

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2368
.breadcrumb > li > .divider {
2369
  padding: 0 5px;
2370
  color: #ccc;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2371
}
2372

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2373
.breadcrumb > .active {
2374
  color: #999999;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2375
}
2376

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2377
/* mordal dialog box */
2378
.modal-backdrop {
2379
  position: fixed;
2380
  top: 0;
2381
  right: 0;
2382
  bottom: 0;
2383
  left: 0;
2384
  z-index: 1040;
2385
  background-color: #000000;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2386
}
2387

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2388
.modal-backdrop.fade {
2389
  opacity: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2390
}
2391

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2392
.modal-backdrop,
2393
.modal-backdrop.fade.in {
2394
  opacity: 0.8;
2395
  filter: alpha(opacity=80);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2396
}
2397

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2398
.modal {
2399
  position: fixed;
2400
  top: 10%;
2401
  left: 50%;
2402
  z-index: 1050;
2403
  width: 560px;
2404
  margin-left: -280px;
2405
  background-color: #ffffff;
2406
  border: 1px solid #999;
2407
  border: 1px solid rgba(0, 0, 0, 0.3);
improve branch select design
Yuki Kimoto authored on 2016-01-04
2408
  border-radius: 6px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2409
  outline: none;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2410
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2411
  background-clip: padding-box;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2412
}
2413

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2414
.modal.fade {
2415
  top: -25%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2416
  transition: opacity 0.3s linear, top 0.3s ease-out;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2417
}
2418

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2419
.modal.fade.in {
2420
  top: 10%;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2421
}
2422

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2423
.modal-header {
2424
  padding: 9px 15px;
2425
  border-bottom: 1px solid #eee;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2426
}
2427

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2428
.modal-header .close {
2429
  margin-top: 2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2430
}
2431

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2432
.modal-header h3 {
2433
  margin: 0;
2434
  line-height: 30px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2435
}
2436

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2437
.modal-body {
2438
  position: relative;
2439
  max-height: 400px;
2440
  padding: 15px;
2441
  overflow-y: auto;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2442
}
2443

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2444
.modal-form {
2445
  margin-bottom: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2446
}
2447

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2448
.modal-footer {
2449
  padding: 14px 15px 15px;
2450
  margin-bottom: 0;
2451
  text-align: right;
2452
  background-color: #f5f5f5;
2453
  border-top: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2454
  border-radius: 0 0 6px 6px;
2455
  box-shadow: inset 0 1px 0 #ffffff;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2456
}
2457

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2458
.modal-footer:before,
2459
.modal-footer:after {
2460
  display: table;
2461
  line-height: 0;
2462
  content: "";
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2463
}
2464

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2465
.modal-footer:after {
2466
  clear: both;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2467
}
2468

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2469
.modal-footer .btn + .btn {
2470
  margin-bottom: 0;
2471
  margin-left: 5px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2472
}
2473

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2474
.modal-footer .btn-group .btn + .btn {
2475
  margin-left: -1px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2476
}
2477

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2478
.modal-footer .btn-block + .btn-block {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2479
  margin-left: 0;
2480
}
2481

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2482
.hide {
2483
  display: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2484
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2485
.show {
2486
  display: block;
2487
}
2488
.invisible {
2489
  visibility: hidden;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2490
}
2491

            
cleanup css
Yuki Kimoto authored on 2015-12-26
2492
/* Plain text */
2493
.plain-text {
2494
  background             : white;
2495
  border-radius          : 1px;
2496
  border-top             : none;
2497
  border-top-left-radius : 0;
2498
  font-size              : 16px;
2499
  line-height            : 1.5em;
2500
  padding                : 27px;
2501
}
2502

            
improve top page design
Yuki Kimoto authored on 2015-12-26
2503

            
2504
.topic1 {
improve topic design
Yuki Kimoto authored on 2016-10-12
2505
  font-size:18px;
improve top page design
Yuki Kimoto authored on 2015-12-26
2506
  font-weight:bold;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2507
  margin:20px 0 15px 0;
improve h1 color
Yuki Kimoto authored on 2016-09-13
2508
  color:#358D23;
2509
  padding:4px 6px;
improve topic design
Yuki Kimoto authored on 2016-10-12
2510
  background:#F3F3ED;
improve header design
Yuki Kimoto authored on 2016-10-12
2511
  padding:10px 12px;
improve topic design
Yuki Kimoto authored on 2016-10-12
2512
  border: 1px solid #EBEEDC;
improve top page design
Yuki Kimoto authored on 2015-12-26
2513
}
improve markdown design
Yuki Kimoto authored on 2015-12-26
2514

            
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2515
.project-header {
improve project header color
Yuki Kimoto authored on 2016-09-14
2516
  background:#fafcfa;
add code tab
Yuki Kimoto authored on 2016-01-25
2517
  border-bottom: none;
improve tab design
Yuki Kimoto authored on 2016-01-26
2518
  margin-bottom:12px;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2519
  overflow:hidden;
add code tab
Yuki Kimoto authored on 2016-01-25
2520
  padding:14px 0 0 0;
improve header and footer de...
Yuki Kimoto authored on 2016-10-12
2521
  border-top:#CCCCCC 1px solid;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2522
}
2523

            
2524
.project-header-left {
2525
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2526
  width:80%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2527
  overflow:hidden;
2528
}
2529

            
2530
.project-header-right {
2531
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2532
  width:20%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2533
  overflow:hidden;
2534
}
2535

            
2536
.project-header-right-container {
2537
  float:right;
2538
  overflow:hidden;
2539
}
2540

            
2541
.project-header-btn-container {
2542
  float:left;
2543
  margin-right:4px;
2544
}
2545

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2546
.footer {
2547
  text-align:center;
improve header and footer de...
Yuki Kimoto authored on 2016-10-12
2548
  border-top:2px solid #479A05;
2549
  padding:8px 0 10px 0;
complete readme design
Yuki Kimoto authored on 2016-01-06
2550
  margin-top:30px;
improve footer design
Yuki Kimoto authored on 2016-09-14
2551
  background:#5AAE08;
2552
  color:white;
2553
  font-size:16px;
2554
}
2555
.footer a {
2556
  color:white;
2557
  text-decoration:underline;
2558
}
2559
.footer a:hover {
2560
  color:white;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2561
}
2562

            
2563
.repositories {
2564
  margin-bottom:30px;
2565
}
2566

            
2567
.repositories li {
improve border color
Yuki Kimoto authored on 2016-09-14
2568
  border-top: 1px solid #e6e9e6;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2569
  overflow:hidden;
2570
  padding:10px 0;
2571
}
2572

            
2573
.repositories a:hover {
2574
  text-decoration:underline;
2575
}
2576

            
2577
.repositories-name {
2578
  float:left;
2579
  width:25%;
2580
}
2581

            
2582
.repositories-description {
2583
  float:left;
2584
  width:45%;
2585
  color:#333;
2586
  min-height:1px;
2587
}
2588

            
2589
.repositories-age {
2590
  float:left;
2591
  width:30%;
2592
  color: #767676;
2593
}
improve branch select design
Yuki Kimoto authored on 2016-01-04
2594

            
2595
.branch-select-container {
2596
  overflow:hidden;
2597
}
2598

            
2599
.branch-select-left-container {
2600
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2601
  width:20%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2602
}
2603

            
2604
.branch-select-right-container {
2605
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2606
  width:80%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2607
}
2608

            
2609
.git-url-container {
2610
  float:right;
2611
  overflow:hidden;
2612
  display:inline-block;
2613
}
2614

            
2615
.git-url-container li {
2616
  float:left;
2617
}
2618

            
2619
.git-url-container .btn, .git-url-container .btn-small {
2620
  border-radius:0;
2621
}
2622

            
improve tab design
Yuki Kimoto authored on 2016-01-26
2623
.git-url-container input[type=text] {
improve branch select design
Yuki Kimoto authored on 2016-01-06
2624
  width:550px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2625
  padding:5px 0 5px 5px;
improve border color
Yuki Kimoto authored on 2016-09-14
2626
  border:1px solid #e6e9e6;
improve tab design
Yuki Kimoto authored on 2016-01-26
2627
  border-radius:0 3px 3px 0;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2628
}
2629

            
improve branch select design
Yuki Kimoto authored on 2016-01-04
2630
.page-path-container {
2631
  float:left;
2632
}
2633

            
2634
.donwload-zip {
2635
  margin-left:5px;
2636
  font-weight:bold;
2637
}
complete branch select desig...
Yuki Kimoto authored on 2016-01-06
2638

            
2639
.page-path {
2640
  display:inline-block;
2641
  margin-left:5px;
2642
}
2643

            
2644
.branch-select-left-container-page-path {
2645
  width:100%;
2646
}
complete readme design
Yuki Kimoto authored on 2016-01-06
2647

            
2648
.readme-header {
2649
  background-color: #f5f5f5;
2650
  border-radius: 3px 3px 0 0;
improve border color
Yuki Kimoto authored on 2016-09-14
2651
  border: 1px solid #e6e9e6;
complete readme design
Yuki Kimoto authored on 2016-01-06
2652
  border-bottom: 0;
2653
  padding: 9px 10px 10px;
2654
  font-size: 14px;
2655
  line-height: 17px;
2656
  font-weight:bold;
2657
}
2658

            
2659
.readme-frame {
improve border color
Yuki Kimoto authored on 2016-09-14
2660
  border: 1px solid #e6e9e6;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2661
}
2662

            
2663
.commit-summary {
2664
  overflow:hidden;
2665
  padding: 10px;
2666
  line-height: 20px;
improve project page design
Yuki Kimoto authored on 2016-10-12
2667
  background: #f4fcef;
2668
  border: 1px solid #d0ddc7;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2669
  border-radius: 3px;
2670
  border-bottom-right-radius: 0;
2671
  border-bottom-left-radius: 0;
2672
  margin-top:13px;
2673
}
2674

            
2675
.commit-summary-left-container {
2676
  float:left;
2677
  width:70%;
2678
}
2679

            
2680
.commit-summary-right-container {
2681
  float:right;
2682
  width:30%;
2683
  text-align:right;
2684
  color: #68777d;
2685
}
2686

            
2687
.commit-summary-author {
2688
  font-weight:bold;
2689
}
2690

            
2691
.commit-summary-left-container a {
2692
  color: #68777d;
2693
}
2694

            
2695
.commit-summary-right-container a {
2696
  color:#445055;
2697
}
improve tree design
Yuki Kimoto authored on 2016-01-07
2698

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
2699
.commit-contributor {
2700
  padding: 5px 10px;
2701
  background-color: #fff;
improve diff design
Yuki Kimoto authored on 2016-10-12
2702
  border: 1px solid #d0ddc7;
complete blob page design
Yuki Kimoto authored on 2016-01-09
2703
  border-top:none;
2704
  border-bottom-left-radius: 3px;
2705
  border-bottom-right-radius: 3px;
2706
  color:#68777d;
2707
}
2708

            
improve tree design
Yuki Kimoto authored on 2016-01-07
2709
.file-list li {
improve project page design
Yuki Kimoto authored on 2016-10-12
2710
  border: 1px solid #d0ddc7;
improve tree design
Yuki Kimoto authored on 2016-01-07
2711
  border-top:none;
2712
  padding:7px;
2713
  overflow:hidden;
2714
}
2715

            
2716
.file-list li:last-child {
improve project page design
Yuki Kimoto authored on 2016-10-12
2717
  border-radius:0 0 3px 3px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2718
}
2719

            
2720
.file-list-name {
2721
  width:25%;
2722
  float:left;
2723
}
2724

            
2725
.file-list-commit {
2726
  width:60%;
2727
  float:left;
2728
}
2729

            
2730
.file-list-commit a {
2731
  color:#888;
2732
}
2733

            
2734
.file-list-age {
2735
  width:15%;
2736
  float:left;
2737
  text-align:right;
2738
  color:#888
2739
}
complete blob page design
Yuki Kimoto authored on 2016-01-09
2740

            
2741
.file-header {
2742
  padding: 5px 10px;
2743
  background-color: #f7f7f7;
improve border color
Yuki Kimoto authored on 2016-09-14
2744
  border: 1px solid #e6e9e6;
complete blob page design
Yuki Kimoto authored on 2016-01-09
2745
  border-bottom:none;
2746
  border-top-left-radius: 2px;
2747
  border-top-right-radius: 2px;
2748
  margin-top:20px;
2749
  overflow:hidden;
2750
}
2751

            
2752
.file-header-left {
2753
  float:left;
2754
  width:50%;
2755
  padding-top:4px;
2756
}
2757

            
2758
.file-header-right {
2759
  float:left;
2760
  width:50%;
2761
  overflow:hidden;
2762
}
2763

            
2764
.file-header-right ul {
2765
  float:right;
2766
  overflow:hidden;
2767
}
2768

            
2769
.file-header-right li {
2770
  float:left;
2771
  margin-left:1px;
2772
  font-weight:bold;
2773
}
2774

            
2775
.blob-image {
2776
  background:#ddd;
2777
  text-align:center;
2778
  padding-top:30px;
2779
  padding-bottom:30px;
2780
  margin-bottom:30px;
2781
  border-radius: 0 0 2px 2px;
2782
}
2783

            
2784
.blob-image img {
2785
  max-width: 600px;
2786
  border: 1px solid #fff;
2787
}
2788

            
2789
.blob-raw {
2790
  font-size:16px;
2791
  background:#ddd;
2792
  text-align:center;
2793
  padding-top:30px;
2794
  padding-bottom:30px;
2795
  margin-bottom:30px;
2796
  border-radius: 0 0 2px 2px;
2797
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2798

            
2799
.commits {
2800
  margin-top:20px;
2801
}
2802

            
2803
.commits-date-container {
2804
  border-left:#f3f3f3 2px solid;
2805
  margin:3px 6px;
2806
  padding:10px 0;
2807
}
2808

            
2809
.commits-date-container li:first-child {
2810
  border-top: 1px solid #e5e5e5;
2811
}
2812

            
2813
.commits-date-container li {
2814
  margin-left:20px;
2815
  border: 1px solid #e5e5e5;
2816
  border-top:none;
2817
  padding:8px 20px 8px 15px;
2818
  overflow:hidden;
2819
}
2820

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
2821
.commit-date {
2822
  color: #767676;
2823
}
2824

            
2825
.commit-date i {
2826
  margin-right:15px;
2827
}
2828

            
improve commits page design
Yuki Kimoto authored on 2016-01-11
2829
.commit-left {
2830
  float:left;
2831
  width:70%;
2832
}
2833

            
2834
.commit-left-title a {
2835
  color:#333;
2836
}
2837

            
2838
.commit-left-author {
2839
  color: #767676;
2840
  margin-top:1px;
2841
}
add user page link from user...
Yuki Kimoto authored on 2016-04-11
2842
.commit-left-author a {
2843
  color:#767676;
2844
  font-weight:bold;
2845
  font-size:98%;
2846
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2847
.commit-right {
2848
  float:left;
2849
  width:30%;
2850
}
2851

            
2852
.commit-right-container {
2853
  float:right;
2854
}
2855

            
2856
.commit-right-commit-id {
2857
  float:left;
2858
  width:80px;
2859
}
2860

            
2861
.commit-right-commit-id a {
2862
  border: 1px solid #e5e5e5;
2863
  display:block;
2864
  width:100%;
2865
  padding:6px 10px;
2866
  text-align:center;
2867
  margin-top:3px;
2868
  border-radius:3px;
2869
}
2870

            
2871
.commit-right-commit-id a:hover {
2872
  text-decoration:none;
2873
  color:white;
2874
  background:#4169e1;
2875
}
2876

            
2877
.commit-right-browse-repository {
2878
  float:left;
2879
}
2880

            
2881
.commit-right-browse-repository a {
2882
  border: 1px solid #e5e5e5;
2883
  display:block;
2884
  width:100%;
2885
  padding:6px 5px;
2886
  margin-left:10px;
2887
  text-align:center;
2888
  font-weight:bold;
2889
  margin-top:3px;
2890
  border-radius:3px;
2891
}
2892

            
2893
.commit-right-browse-repository a:hover {
2894
  text-decoration:none;
2895
  color:white;
2896
  background:#4169e1;
2897
}
improve pagenation design
Yuki Kimoto authored on 2016-01-11
2898

            
2899
.pagenation {
2900
  overflow:hidden;
2901
  width:140px;
2902
  margin: 0 auto;
2903
}
2904

            
2905
.pagenation li {
2906
  float: left;
2907
  font-size: 13px;
2908
  font-weight: bold;
2909
  color: #4078c0;
2910
  background: #fff;
2911
  border: 1px solid #e5e5e5;
2912
  border-left:none;
2913
  width:50%;
2914
  text-align:center;
2915
}
2916

            
2917
.pagenation li a {
2918
  padding: 7px 12px;
2919
  display:block;
2920
  width:100%;
2921
}
2922

            
2923
.pagenation li span {
2924
  padding: 7px 12px;
2925
  display:block;
2926
  width:100%;
2927
  color:#d3d3d3;;
2928
  background:#fafafa;
2929
}
2930

            
2931
.pagenation li a:hover {
2932
  text-decoration:none;
2933
  background:#e5e5e5;
2934
}
2935

            
2936
.pagenation li:first-child {
2937
  border-left: 1px solid #e5e5e5;
2938
  border-radius:3px 0 0 3px;
2939
}
2940

            
2941
.pagenation li:last-child {
2942
  border-radius:0 3px 3px 0;
2943
}
improve blame page design
Yuki Kimoto authored on 2016-01-13
2944

            
2945
.blame-page-path {
2946
  overflow:hidden;
2947
}
2948

            
2949
.blame-page-path .page-path {
2950
  float:left;
2951
  margin-left:0;
2952
}
2953

            
2954
.blame-gradation {
2955
  float:right;
2956
  text-align:right:
2957
}
2958

            
2959
.blame-body-container {
2960
  overflow-x:scroll;
improve border color
Yuki Kimoto authored on 2016-09-14
2961
  border:1px solid #e6e9e6;
improve blame page design
Yuki Kimoto authored on 2016-01-13
2962
  border-radius:0 0 3px 3px;
2963
}
2964

            
2965
.blame-body {
2966
  width:100%;
2967
  border-collapse: collapse;
2968
}
2969

            
2970
.blame-body-left {
2971
  padding:3px 7px;
2972
  vertical-align:middle;
2973
  border-left:none;
2974
  border-bottom:none;
2975
}
2976

            
2977
.blame-body-center {
2978
  padding:5px 10px;
2979
  color:gray;
2980
  font-size:12px;
2981
  vertical-align:middle;
improve border color
Yuki Kimoto authored on 2016-09-14
2982
  border-right:1px solid #e6e9e6;
improve blame page design
Yuki Kimoto authored on 2016-01-13
2983
}
2984

            
2985
.blame-body-right {
2986
  padding:5px 10px;
2987
  vertical-align:middle;
2988
  white-space: nowrap;
2989
  border-right:none
2990
}
2991

            
2992
.blame-summary-container {
2993
  overflow:hidden;
2994
}
2995

            
2996
.blame-summary {
2997
  display:inline-block;
2998
  float:left;
2999
  font-weight:bold;
3000
}
3001

            
3002
.blame-commit-id {
3003
  display:inline-block;
3004
  float:right;
3005
  font-size:90%;
3006
}
3007

            
3008
.blame-author {
3009
  color:#767676;
3010
}
improve login page design
Yuki Kimoto authored on 2016-01-16
3011

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3012
.user-form {
improve border color
Yuki Kimoto authored on 2016-09-14
3013
  border:1px solid #e6e9e6;
improve login page design
Yuki Kimoto authored on 2016-01-16
3014
  border-radius: 3px;
improve login page design
Yuki Kimoto authored on 2016-01-16
3015
  padding:25px 0;
improve login page design
Yuki Kimoto authored on 2016-01-16
3016
  width:300px;
3017
  margin-left:auto;
3018
  margin-right:auto
3019
}
3020

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3021
.user-form-container {
improve login page design
Yuki Kimoto authored on 2016-01-16
3022
  width:70%;
3023
  margin:0 auto;
3024
}
3025

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3026
.user-form input[type=text], .user-form input[type=password] {
improve login page design
Yuki Kimoto authored on 2016-01-16
3027
  width:100%;
3028
  margin:5px 0;
3029
}
3030

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3031
.user-form input[type=checkbox] {
improve login page design
Yuki Kimoto authored on 2016-01-16
3032
  margin:6px 0 9px 0;
3033
}
3034

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3035
.user-form button {
improve login page design
Yuki Kimoto authored on 2016-01-16
3036
  width:100%;
3037
}
3038

            
improve login page design
Yuki Kimoto authored on 2016-01-16
3039
.header-bottom {
3040
  margin-bottom:15px;
3041
  min-height:1px;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3042
}
3043

            
improve search page design
Yuki Kimoto authored on 2016-01-23
3044
.search-top {
improve border color
Yuki Kimoto authored on 2016-09-14
3045
  border-bottom:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3046
  margin-bottom:20px;
3047
  padding-bottom:20px;
3048
}
3049

            
3050
.search-top input {
3051
  margin-left:5px;
3052
}
3053

            
3054
.search-top > div:first-child {
3055
  font-size:19px;
3056
  display:inline-block;
3057
}
3058

            
3059
.search-top form {
3060
  display:inline-block;
3061
}
3062

            
3063
.search-result {
3064
  overflow:hidden;
3065
}
3066

            
3067
.search-result .left {
3068
  float:left;
3069
  width:15%;
3070
  padding-right:10px;
3071
}
3072

            
3073
.search-result .left li {
improve border color
Yuki Kimoto authored on 2016-09-14
3074
  border:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3075
  border-top:none;
3076
  padding:7px 10px;
3077
}
3078

            
3079
.search-result .left li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3080
  border-top:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3081
}
3082

            
3083
.search-result .right {
3084
  float:left;
3085
  width:85%;
3086
  padding-left:15px;
3087
}
3088

            
3089
.search-result .right li {
improve border color
Yuki Kimoto authored on 2016-09-14
3090
  border-bottom: 1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3091
  padding:5px 0px;
3092
  margin-bottom:10px;
3093
}
3094

            
3095
.search-result .right li > div {
3096
  padding-bottom:1px;
3097
}
3098

            
3099
.search-result .right > div:first-child {
3100
   font-size:18px;
3101
   padding-bottom:10px;
3102
   margin-bottom:10px;
3103
   border-bottom:1px solid #EEEEEE;
3104
   font-weight:bold;
3105
}
3106

            
3107
.search-result .left li.active a {
3108
  color:black;
3109
  font-weight:bold;
3110
  text-decoration:none;
3111
}
3112

            
3113

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
3114
.project-settings {
3115
  overflow:hidden;
3116
}
3117

            
3118
.project-settings .left {
3119
  float:left;
3120
  width:15%;
3121
  padding-right:10px;
3122
}
3123

            
3124
.project-settings .left li {
improve border color
Yuki Kimoto authored on 2016-09-14
3125
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3126
  border-top:none;
3127
  padding:5px 10px;
3128
}
3129

            
3130
.project-settings .left li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3131
  border-top:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3132
}
3133

            
3134
.project-settings .right {
3135
  float:left;
3136
  width:85%;
3137
}
3138

            
3139
.project-settings-main {
3140
  margin-bottom:20px;
3141
}
3142

            
3143
.project-settings-main li {
improve border color
Yuki Kimoto authored on 2016-09-14
3144
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3145
  border-top:none;
3146
  padding:10px 10px;
3147
}
3148

            
3149
.project-settings-main li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3150
  border-top:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3151
  background: #eee;
3152
  border-radius:3px 3px 0 0;
3153
  font-size:17px;
3154
}
3155

            
3156
.project-settings-main input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3157
    border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3158
    border-radius: 3px;
3159
    padding:6px 5px;
3160
    width:100%;
3161
    margin:5px 0;
3162
}
3163

            
3164
.project-settings-main input[type=checkbox] {
3165
  margin:0 5px;
3166
}
3167

            
3168
.project-settings-main select {
improve border color
Yuki Kimoto authored on 2016-09-14
3169
    border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3170
    border-radius: 3px;
3171
    padding:6px 5px;
3172
    width:30%;
3173
    margin:5px 0;
3174
}
3175

            
3176
.project-settings-danger li {
improve border color
Yuki Kimoto authored on 2016-09-14
3177
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3178
  border-top:none;
3179
  padding:10px 10px;
3180
}
3181

            
3182
.project-settings-danger li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3183
  border-top:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3184
  background: #eee;
3185
  border-radius:3px 3px 0 0;
3186
  font-size:17px;
3187
  background:red;
3188
}
3189

            
3190
#delete-confirm input {
improve border color
Yuki Kimoto authored on 2016-09-14
3191
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3192
  border-radius: 3px;
3193
  padding:6px 5px;
3194
  margin:5px 0;
3195
  width:70%;
3196
}
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3197

            
3198
.collaboration > div:first-child {
3199
  font-size:17px;
3200
  padding:5px;
improve border color
Yuki Kimoto authored on 2016-09-14
3201
  border-bottom:1px solid #e6e9e6;
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3202
  font-weight:bold;
3203
  margin-bottom:10px;
3204
}
3205

            
3206
.collaboration input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3207
  border:1px solid #e6e9e6;
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3208
  border-radius: 3px;
3209
  padding:6px 5px;
3210
  margin:5px 0;
3211
  width:40%;
3212
}
3213

            
3214
.collaboration input[type=submit] {
3215
  padding:6px 5px;
3216
  margin:5px 0;
3217
  width:10%;
3218
}
improve settings design
Yuki Kimoto authored on 2016-01-19
3219

            
3220
.user-settings {
3221
  overflow:hidden;
3222
}
3223

            
3224
.user-settings .left {
3225
  float:left;
3226
  width:15%;
3227
  padding-right:10px;
3228
}
3229

            
3230
.user-settings .left li {
improve border color
Yuki Kimoto authored on 2016-09-14
3231
  border:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3232
  border-top:none;
3233
  padding:5px 10px;
3234
}
3235

            
3236
.user-settings .left li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3237
  border-top:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3238
}
3239

            
3240
.user-settings .left li.active a {
3241
  color:black;
3242
  font-weight:bold;
3243
  text-decoration:none;
3244
}
3245

            
3246
.user-settings .right {
3247
  float:left;
3248
  width:85%;
3249
}
3250

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3251
.user-settings-container > div {
improve border color
Yuki Kimoto authored on 2016-09-14
3252
  border:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3253
  padding:10px 10px;
3254
  font-size:120%;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3255
  margin-bottom:20px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3256
}
3257

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3258
.user-settings-container > div:first-child {
improve settings design
Yuki Kimoto authored on 2016-01-19
3259
  border-bottom:none;
3260
  background: #eee;
3261
  border-radius:3px 3px 0 0;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3262
  font-size:14px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3263
  font-weight:bold;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3264
  margin-bottom:0;
improve settings design
Yuki Kimoto authored on 2016-01-19
3265
}
3266

            
3267
.profile li {
3268
  padding:5px 5px;
3269
}
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3270

            
3271
.ssh-keys form {
3272
  margin:5px 0;
3273
}
3274

            
3275
.ssh-key-add input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3276
  border:1px solid #e6e9e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3277
  border-radius: 3px;
3278
  padding:6px 5px;
3279
  margin:5px 0;
3280
  width:60%;
3281
}
3282

            
3283
.ssh-key-add textarea {
improve border color
Yuki Kimoto authored on 2016-09-14
3284
  border:1px solid #e6e9e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3285
  border-radius: 3px;
3286
  padding:6px 5px;
3287
  margin:5px 0;
3288
  width:100%;
3289
  min-height:200px;
3290
}
improve search page design
Yuki Kimoto authored on 2016-01-23
3291

            
cleanup
Yuki Kimoto authored on 2016-01-27
3292
/* 番号つきページネーション */
3293
.pagination-num {
cleanup css
Yuki Kimoto authored on 2016-01-27
3294
  margin:20px 0
3295
}
cleanup
Yuki Kimoto authored on 2016-01-27
3296
.pagination-num ul {
cleanup css
Yuki Kimoto authored on 2016-01-27
3297
  display:inline-block;
3298
  margin-bottom:0;
3299
  margin-left:0;
3300
  border-radius:4px;
3301
  box-shadow:0 1px 2px rgba(0,0,0,0.05)
3302
}
3303
.pagination-num ul > li {
3304
  display:inline
3305
}
3306
.pagination-num ul > li > a,
3307
.pagination-num ul > li > span {
3308
  float:left;
3309
  padding:4px 12px;
3310
  line-height:20px;
3311
  text-decoration:none;
3312
  background-color:#fff;
3313
  border:1px solid #ddd;
3314
  border-left-width:0
3315
}
3316
.pagination-num ul > li > a:hover,
3317
.pagination-num ul > .active > a,
3318
.pagination-num ul > .active > span
3319
{
3320
  background-color:#f5f5f5;
3321
}
3322
.pagination-num ul > .active > a,
3323
.pagination-num ul > .active > span {
3324
  color:#999;
3325
  cursor:default;
3326
}
3327
.pagination-num ul > .disabled > span,
3328
.pagination-num ul > .disabled > a,
3329
.pagination-num ul > .disabled > a:hover,
3330
{
3331
  color:#999;
3332
  cursor:default;
3333
  background-color:transparent;
3334
}
3335
.pagination-num ul > li:first-child > a,
3336
.pagination-num ul > li:first-child > span
3337
{
3338
  border-left-width:1px;
3339
  border-bottom-left-radius:4px;
3340
  border-top-left-radius:4px;
3341
}
3342
.pagination-num ul > li:last-child > a,
3343
.pagination-num ul > li:last-child > span
3344
{
3345
  border-top-right-radius:4px;
3346
  border-bottom-right-radius:4px;
3347
}
improve branch design
Yuki Kimoto authored on 2016-01-27
3348

            
3349
/* Branches */
3350
.branches {
3351
  overflow:hidden;
3352
  margin-bottom:15px;
3353
}
3354
.branches > li {
improve border color
Yuki Kimoto authored on 2016-09-14
3355
  border:1px solid #e6e9e6;
improve branch design
Yuki Kimoto authored on 2016-01-27
3356
  border-top:none;
improve branches design
Yuki Kimoto authored on 2016-01-30
3357
  padding:8px 8px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3358
}
3359
.branches > li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3360
  border-top:1px solid #e6e9e6;
improve branch design
Yuki Kimoto authored on 2016-01-27
3361
}
3362
.branches > li > ul {
3363
  overflow:hidden;
3364
}
3365
.branches > li > ul > li:first-child {
3366
  float:left;
3367
  width:50%;
3368
  overflow:hidden;
improve branches design
Yuki Kimoto authored on 2016-01-30
3369
  padding-top:4px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3370
}
3371
.branches > li > ul > li.second-child{
3372
  float:left;
3373
  width:25%;
3374
}
3375
.branches > li > ul > li.last-child {
3376
  float:left;
3377
  width:25%;
3378
  text-align:right;
3379
}
3380

            
3381
.branches-name {
3382
  display:inline-block;
3383
}
3384
.branches-name a {
3385
  color: #4078c0;
3386
  border-radius:3px;
3387
  background:rgba(209,227,237,0.5);
3388
  padding:2px 6px;
3389
}
3390

            
3391
.branches-age {
3392
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
3393
  color:#aaa;;
improve branch design
Yuki Kimoto authored on 2016-01-27
3394
}
3395

            
3396
.branches-author {
3397
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
3398
  color:#767676;
improve branch design
Yuki Kimoto authored on 2016-01-27
3399
}
3400

            
improve branches design
Yuki Kimoto authored on 2016-01-30
3401
.branches-select {
3402
  overflow:hidden;
3403
  margin:20px 0;
3404
}
3405

            
3406
.branches-select li {
improve border color
Yuki Kimoto authored on 2016-09-14
3407
  border:1px solid #e6e9e6;
improve branches design
Yuki Kimoto authored on 2016-01-30
3408
  float:left;
3409
  border-left:none;
3410
}
3411

            
3412
.branches-select li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3413
  border-left:1px solid #e6e9e6;
improve branches design
Yuki Kimoto authored on 2016-01-30
3414
  border-radius:3px 0 0 3px;
3415
}
3416

            
3417
.branches-select li:last-child {
3418
  border-radius:0 3px 3px 0;
3419
}
3420

            
3421
.branches-select li a {
3422
  padding: 7px 14px;
3423
  font-weight: bold;
3424
  width:100%;
3425
  display:block;
3426
  color: #666;
3427
}
3428

            
3429
.branches-select li a:hover {
3430
  text-decoration:none;
3431
  background:#f5f5f5;
3432
}
3433

            
3434
.branches-select li.active a {
3435
  background-color: #4078c0;
3436
  color: #fff;
3437
}
3438
.branches-select li.active a {
3439
  background-color: #4078c0;
improve branches design
Yuki Kimoto authored on 2016-01-30
3440
}
3441

            
3442
.ahead-behind {
3443
  color:#767676;
3444
  font-size:12px;
3445
  border-collapse:collapse;
3446
}
3447

            
3448
.ahead-behind-behind-count {
3449
  text-align:right;
3450
  padding-right:3px;
3451
}
3452

            
3453
.ahead-behind-separate {
3454
  width:1px;
3455
  background:#c0c0c0;
3456
}
improve branch design
Yuki Kimoto authored on 2016-01-30
3457

            
3458
.branches-default {
3459
  font-size:12px;
3460
  text-align:center;
3461
  display:inline-block;
3462
  background-color: #767676;
3463
  color: #fff;
3464
  border-radius:3px;
3465
  padding:1px 3px;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3466
}
3467

            
3468
.branches .branches-overview-more {
3469
  text-align:center;
3470
  padding:0;
3471
}
3472
.branches-overview-more a {
3473
  width:100%;
3474
  display:block;
3475
  background: #f1f7fa;
3476
  padding:8px;
3477
}
3478

            
3479
.branches-overview-more a:hover {
improve tags page design
Yuki Kimoto authored on 2016-02-01
3480
  background:#e6e6fa;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3481
}
improve tags page design
Yuki Kimoto authored on 2016-02-01
3482

            
3483
.tags {
3484
  
3485
}
3486

            
3487
.tags > li {
improve border color
Yuki Kimoto authored on 2016-09-14
3488
  border-bottom:1px solid #e6e9e6;
improve tags page design
Yuki Kimoto authored on 2016-02-01
3489
  padding:10px 0;
3490
}
3491

            
3492
.tags > li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3493
  border-top:1px solid #e6e9e6;
improve tags page design
Yuki Kimoto authored on 2016-02-01
3494
}
3495

            
3496
.tags-item {
3497
  overflow:hidden;
3498
}
3499

            
3500
.tags-item > li:first-child {
3501
  display:block;
3502
  width:30%;
3503
  float:left;
3504
  color:#767676;
3505
}
3506

            
3507
.tags-item > li.last-child {
3508
  display:block;
3509
  width:70%;
3510
  float:left;
3511
}
3512

            
3513
.tags-name a {
3514
  color:#333;
3515
}
3516

            
3517
.tags-links {
3518
  padding-top:3px;
3519
}
3520

            
3521
.tags-links a {
3522
  color:#767676;
3523
  font-size:13px;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3524
}
3525

            
3526
.commits-summary > :first-child {
3527
  overflow:hidden;
3528
  padding: 10px;
3529
  line-height: 20px;
improve diff design
Yuki Kimoto authored on 2016-10-12
3530
  background-color: #f4fcef;
3531
  border: 1px solid #d0ddc7;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3532
  border-radius: 3px;
3533
  border-bottom-right-radius: 0;
3534
  border-bottom-left-radius: 0;
3535
  margin-top:13px;
3536
}
3537

            
3538
.commits-summary > .last-child {
3539
  padding: 5px 10px;
3540
  background-color: #fff;
improve diff design
Yuki Kimoto authored on 2016-10-12
3541
  border: 1px solid #d0ddc7;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3542
  border-top:none;
3543
  border-bottom-left-radius: 3px;
3544
  border-bottom-right-radius: 3px;
3545
}
3546

            
3547
.commits-summary-header {
3548
  overflow:hidden;
3549
}
3550
.commits-summary-header > :first-child {
3551
  float:left;
3552
  width:80%;
3553
}
3554
.commits-summary-header > .last-child {
3555
  float:right;
3556
  width:20%;
3557
  text-align:right;
3558
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3559
.commits-summary-body {
3560
  overflow:hidden;
3561
  padding:4px 0;
3562
}
3563
.commits-summary-body > :first-child {
3564
  width:40%;
3565
  float:left;
3566
}
3567
.commits-summary-body > .last-child {
3568
  width:60%;
3569
  float:left;
3570
  text-align:right;
3571
}
3572
.commits-summary-author {
3573
  font-weight:bold;
3574
}
3575
.commits-summary-parent {
3576
  display:inline-block;
3577
  color:#767676;
3578
  margin-right:10px;
3579
}
3580
.commits-summary-parent a {
3581
  color:#333333;
3582
  text-decoration:underline;
3583
}
3584
.commits-summary-commit-id {
3585
  display:inline-block;
3586
  color:#767676;
3587
}
3588
.commits-summary-commit-id > span {
3589
  color:#333333;
3590
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
3591

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
3592
.commit-changes {
3593
  margin:15px 0;
3594
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
3595

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
3596
.file-add {
3597
  color:#32CD32;
3598
  border:2px #32CD32 solid;
3599
  margin-left:3px;
3600
  font-weight:bold;
3601
  text-align:center;
3602
  font-size:13px;
3603
  padding:0;
3604
  line-height:100%;
3605
  padding:0 2px;
3606
}
3607

            
3608
.file-del {
3609
  color:red;
3610
  border:2px red solid;
3611
  margin-left:3px;
3612
  font-weight:bold;
3613
  text-align:center;
3614
  font-size:13px;
3615
  padding:0;
3616
  line-height:100%;
3617
  padding:0 2px;
3618
}
3619

            
3620
.file-modified {
3621
  color:#DAA520;
3622
  border:2px #DAA520 solid;
3623
  margin-left:3px;
3624
  font-weight:bold;
3625
  text-align:center;
3626
  font-size:13px;
3627
  padding:0;
3628
  line-height:100%;
3629
  padding:0 2px;
3630
}
3631

            
3632
.file-renamed {
3633
  color:#677a85;
3634
  border:2px #677a85 solid;
3635
  margin-left:3px;
3636
  font-weight:bold;
3637
  text-align:center;
3638
  font-size:13px;
3639
  padding:0;
3640
  line-height:100%;
3641
  padding:0 2px;
3642
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3643

            
improve commit page design
Yuki Kimoto authored on 2016-02-03
3644
.commit-diff {
3645
  margin-bottom:30px;
3646
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3647
.commit-diff > :first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3648
  border:1px solid #e6e9e6;
improve commit page design
Yuki Kimoto authored on 2016-02-02
3649
  border-radius:3px 3px 0 0;
3650
  padding:7px;
3651
  background-color: #f7f7f7;
3652
}
3653
.commit-diff-header {
3654
  overflow:hidden;
3655
}
3656
.commit-diff-header > :first-child {
3657
  float:left;
3658
  width:80%;
3659
  padding-top:6px;
3660
}
3661
.commit-diff-header > .last-child {
3662
  float:left;
3663
  width:20%;
3664
  text-align:right;
3665
}
improve commit page design
Yuki Kimoto authored on 2016-02-03
3666

            
3667
.commit-diff-body {
improve border color
Yuki Kimoto authored on 2016-09-14
3668
  border:1px solid #e6e9e6;
improve commit page design
Yuki Kimoto authored on 2016-02-03
3669
  border-top:none;
3670
  border-radius: 0 0 3px 3px;
3671
  margin-bottom:30px;
3672
}
3673
.commit-diff-body > table {
3674
  border-collapse:collapse;
3675
}
3676
.commit-diff-plain {
3677
  padding:10px;
3678
}
3679
.commit-diff-image {
3680
  background:#ddd;
3681
  text-align:center;
3682
  padding-top:40px;
3683
  padding-bottom:40px;
3684
}
improve compare page design
Yuki Kimoto authored on 2016-02-04
3685

            
3686
.compare-select {
3687
  padding:12px 10px;
3688
  margin-bottom:5px;
3689
  position:relative;
improve border color
Yuki Kimoto authored on 2016-09-14
3690
  border:1px solid #e6e9e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3691
  border-radius: 3px;
3692
  background-color: #fafafa;
3693
}
3694

            
improve compare page popup
Yuki Kimoto authored on 2016-04-28
3695
.compare-select button span {
3696
  color:#767676;
3697
}
3698

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
3699
.compare-header {
improve border color
Yuki Kimoto authored on 2016-09-14
3700
  border:1px solid #e6e9e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3701
  overflow:hidden;
3702
  border-radius: 3px;
3703
  padding:10px;
3704
  margin-top:10px;
3705
}
3706

            
3707
.compare-header li {
3708
  width:25%;
3709
  float:left;
3710
  text-align:center;
3711
}
3712
.compare-header li span {
3713
  color: #767676;
3714
}
3715
.compare-commits-date-container {
3716
  border-left:#f3f3f3 2px solid;
3717
  margin:3px 6px;
3718
  padding:10px 0;
3719
}
3720

            
3721
.compare-commits-date-container li:first-child {
3722
}
3723

            
3724
.compare-commits-date-container li {
3725
  margin-left:20px;
3726
  overflow:hidden;
3727
}
3728

            
3729
.compare-commits-author {
3730
  width:30%;
3731
  float:left;
3732
  font-weight:bold;
3733
  font-size:90%;
3734
}
3735

            
3736
.compare-commits-commit-title {
3737
  width:50%;
3738
  float:left;
3739
}
3740

            
3741
.compare-commits-commit-id {
3742
  width:20%;
3743
  float:left;
3744
  text-align:right;
3745
}
3746
.compare-commits-commit-id a {
3747
  color:#767676;
improve network page design
Yuki Kimoto authored on 2016-02-06
3748
}
3749

            
3750
.network-mybranch {
3751
  background-color: #f5f5f5;
3752
  border: 1px solid #e3e3e3;
3753
  padding:10px 10px 14px 10px;
3754
  margin-bottom:20px;
3755
  border-radius:3px;
3756
}
3757
.network-mybranch-label {
3758
  border-radius: 3px;
3759
  display: inline-block;
3760
  padding: 2px 4px;
3761
  font-size: 11.844px;
3762
  font-weight: bold;
3763
  line-height: 14px;
3764
  color: #fff;
3765
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3766
  white-space: nowrap;
3767
  vertical-align: baseline;
3768
  background-color: #3a87ad;
3769
  width:100px;
3770
  text-align:center;
3771
  margin-right:10px;
3772
}
3773

            
3774
.network-mybranch select, .network-member-branch select {
improve border color
Yuki Kimoto authored on 2016-09-14
3775
  border:1px solid #e6e9e6;
improve network page design
Yuki Kimoto authored on 2016-02-06
3776
  border-radius: 3px;
3777
  padding:6px 5px;
3778
  width:30%;
3779
}
3780

            
3781
.network-member-branch {
3782
  
3783
}
3784

            
3785
.network-member-branch li {
improve border color
Yuki Kimoto authored on 2016-09-14
3786
  border-bottom:1px solid #e6e9e6;
improve network page design
Yuki Kimoto authored on 2016-02-06
3787
  padding:10px 10px 14px 10px;
3788
  overflow:hidden;
3789
}
3790
.network-member-branch-label {
3791
  border-radius: 3px;
3792
  display: inline-block;
3793
  padding: 3px 4px;
3794
  font-size: 11.844px;
3795
  font-weight: bold;
3796
  line-height: 14px;
3797
  color: #fff;
3798
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3799
  white-space: nowrap;
3800
  vertical-align: baseline;
3801
  background-color: #468847;
3802
  width:100px;
3803
  text-align:center;
3804
  margin-right:10px;
3805
}
3806
.network-member-branch li > :first-child {
3807
  float:left;
3808
  width:80%;
3809
}
3810
.network-member-branch li > .last-child {
3811
  float:left;
3812
  width:20%;
3813
  text-align:right;
3814
}
improve graph page design
Yuki Kimoto authored on 2016-02-06
3815
.graph-diff {
3816
  width:800px;
3817
  overflow:auto;
3818
  padding-left:10px;
3819
  padding-right:10px;
3820

            
3821
  background-color: #f5f5f5;
3822
  border: 1px solid #e3e3e3;
3823
  padding:10px 10px 14px 10px;
3824
  margin-bottom:20px;
3825
  border-radius:3px;
3826
}
3827
.graph-document pre {
3828
  background:#333333;
3829
  color:white;
3830
  padding:20px 20px 0px 20px;
3831
  border-radius:3px;
3832
  margin-bottom:15px;
3833
  margin-top:3px;
3834
}
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3835

            
3836
.import-branch {
3837
  overflow:hidden;
3838
}
3839
.import-branch > .left {
3840
  float:left;
3841
  width:45%;
3842
}
3843
.import-branch > .center {
3844
  float:left;
3845
  width:10%;
3846
  text-align:center;
3847
  padding: 19px;
3848
  text-align:center;
3849
  font-size:26px;
3850
}
3851
.import-branch > .right {
3852
  float:left;
3853
  width:45%;
3854
}
3855
.import-branch select {
improve border color
Yuki Kimoto authored on 2016-09-14
3856
  border:1px solid #e6e9e6;
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3857
  border-radius: 3px;
3858
  padding:6px 5px;
3859
  width:30%;
3860
}
3861
.import-branch-from, .import-branch-to {
improve border color
Yuki Kimoto authored on 2016-09-14
3862
  border:1px solid #e6e9e6;
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3863
  border-radius:3px;
3864
  padding:25px 15px;
3865
}
3866
.import-branch-to > :first-child {
3867
  font-size:20px;
3868
  color:blue;
3869
  margin-bottom:10px;
3870
}
3871
.import-branch-from > :first-child {
3872
  font-size:20px;
3873
  color:green;
3874
  margin-bottom:10px;
3875
}
3876
.import-branch-button-panel {
3877
  margin-top:10px;
3878
}
3879
.import-branch-button-panel > div {
3880
  display:table-cell;
3881
  vertical-align:middle;
3882
  padding:0 3px;
3883
}
improve submodule design
Yuki Kimoto authored on 2016-02-08
3884

            
3885
.submodule {
3886
  
3887
}
3888
.submodule > :first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3889
  border:1px solid #e6e9e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3890
  border-radius: 3px 3px 0 0;
3891
  padding:8px 5px;
3892
  border-bottom:none;
3893
  background-color: #f7f7f7;
3894
}
3895
.submodule > .last-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3896
  border:1px solid #e6e9e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3897
  border-top:none;
3898
  font-size:16px;
3899
  padding:15px;
3900
  margin-bottom:30px;
3901
  border-radius: 0 0 3px 3px;
3902
}
improve design
Yuki Kimoto authored on 2016-02-09
3903

            
3904
pre.command-line {
3905
  background:#333333;
3906
  color:white;
3907
  padding:15px 20px 15px 20px;
3908
  border-radius:3px;
3909
  margin-bottom:15px;
3910
  margin-top:3px;
3911
}
3912
.private {
3913
  background:white;
3914
  text-align:center;
3915
  font-size:20px;
improve border color
Yuki Kimoto authored on 2016-09-14
3916
  border:1px solid #e6e9e6;
improve design
Yuki Kimoto authored on 2016-02-09
3917
  border-radius: 3px;
3918
  padding:20px 0;
3919
  color:#767676
3920
}
3921

            
3922
.not-yet-created {
3923
  background:white;
3924
  margin-bottom:30px;
improve border color
Yuki Kimoto authored on 2016-09-14
3925
  border:1px solid #e6e9e6;
improve design
Yuki Kimoto authored on 2016-02-09
3926
  border-radius: 3px;
3927
  color:#767676;
3928
  padding:15px 10px;
3929
}