gitprep / public / css / common.css /
Newer Older
3948 lines | 65.44kb
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 {
improve index page design
Yuki Kimoto authored on 2016-10-13
42
  color: #33ce90;
text color become green and ...
Yuki Kimoto authored on 2016-10-13
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 index page design
Yuki Kimoto authored on 2016-10-13
57
.users {
58
  margin-bottom:30px;
59
}
60

            
61
.users li {
62
  border-bottom: 1px solid #e6e9e6;
63
  overflow:hidden;
64
  padding:10px 0;
65
}
66
.users li:first-child {
67
  border-top: 1px solid #e6e9e6;
68
}
69
.users a:hover {
70
  text-decoration:underline;
71
}
72

            
improve project header color
Yuki Kimoto authored on 2016-09-14
73
.tree-description {
improve description design
Yuki Kimoto authored on 2016-10-12
74
  font-size:20px;
75
  padding-top:5px;
76
  padding-bottom:11px;
improve project header color
Yuki Kimoto authored on 2016-09-14
77
}
78
.tree-description a {
79
  font-size:18px;
80
  font-weight:normal;
81
}
82

            
cleanup css
Yuki Kimoto authored on 2016-08-23
83
.header-issue-count {
84
  background:#eee;
85
  color:#555;
86
  display:inline-block;
87
  width:18px;
88
  height:18px;
89
  border-radius:9px;
90
}
cleanup css
Yuki Kimoto authored on 2016-08-23
91
.commits-count {
92
  margin:0;
93
  border: 1px solid #ddd;
improve commit header design
Yuki Kimoto authored on 2016-09-14
94
  border-top:3px solid #6FBA2C;
95
  margin-bottom:12px;
96
  box-shadow: 0 1px 6px #d9d9d9;
cleanup css
Yuki Kimoto authored on 2016-08-23
97
}
98

            
99
.commits-count li {
100
  display:inline-block;
101
  width:25%;
102
  margin-left:0px;
103
  list-style-type: none;
104
  padding:0;
105
  text-align:center;
106
}
107
.commits-count li a {
108
  width:100%;
109
  display:block;
110
  padding:10px 0;
111
  color:#767676;
112
}
113
.commits-count li a:hover {
114
  color:#4078c0;
115
  text-decoration:none;
116
}
117

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

            
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
229
.labels-left {
add label update
Yuki Kimoto authored on 2016-07-29
230
  width:75%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
231
  float:left;
232
}
233
.labels-tag {
234
  border-radius:5px;
235
  display:inline-block;
236
  padding:7px 12px;
237
  font-weight:bold;
238
  border:1px solid #dddddd;
239
}
240
.labels-right {
add label update
Yuki Kimoto authored on 2016-07-29
241
  width:25%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
242
  float:left;
243
  text-align:right;
244
}
245
.labels-delete {
246
  padding-top:9px;
247
  margin-right:10px;
248
  display:inline-block;
249
}
250
.labels-delete a, .labels-delete a:hover {
251
  color:#767676;
252
}
253
.labels-edit {
254
  padding-top:9px;
255
  margin-right:10px;
256
  display:inline-block;
257
}
258
.labels-edit a, .labels-edit a:hover {
259
  color:#767676;
260
}
261

            
add labels to issues
Yuki Kimoto authored on 2016-08-02
262
ul.issues-label-pallet {
263
  display:inline-block;
264
}
265
ul.issues-label-pallet li {
266
  display:inline-block;
267
  border-radius:3px;
268
  padding:1px 3px;
269
  font-size:95%;
270
}
add labels page
Yuki Kimoto authored on 2016-07-25
271
.issues-title a {
272
  color:black;
273
}
274
.issues-title a:hover {
275
  color:blue;
276
}
277

            
278
.issues-button-container {
279
  margin-bottom:10px;
280
  overflow:hidden;
281
}
282
.issues-button-container-left {
283
  float:left;
284
  width:50%;
285
}
286
.issues-button-container-right {
287
  text-align:right;
288
  float:left;
289
  width:50%;
290
}
291
.issues-labels {
improve border color
Yuki Kimoto authored on 2016-09-14
292
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
293
  border-radius:3px;
294
  display:inline-block;
295
}
296
.issues-labels a {
cleanup new label
Yuki Kimoto authored on 2016-07-27
297
  padding:7px 10px;
add labels page
Yuki Kimoto authored on 2016-07-25
298
  display:inline-block;
299
  width:100%;
300
}
301
.issues-labels a {
302
  color:inherit;
303
}
304
.issues-labels a:hover {
305
  color:inherit;
306
  text-decoration:none;
307
  background:#eeeeee
308
}
309

            
310
.issues-header {
improve border color
Yuki Kimoto authored on 2016-09-14
311
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
312
  background:#fafafa;
313
  padding:10px;
314
}
315
.issues-body {
improve border color
Yuki Kimoto authored on 2016-09-14
316
  border:1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
317
  border-top:none;
318
  background:#fafafa;
319
  background:white;
320
}
321
.issues-body li {
322
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
323
  border-top: 1px solid #e6e9e6;
add labels page
Yuki Kimoto authored on 2016-07-25
324
}
325
.issues-body li:first-child {
326
  border-top:none;
327
}
328
.issues-no-request {
329
  padding:30px;
330
  margin:1px auto;
331
  width:600px;
332
  text-align:center;
333
}
334

            
335
.issues-description {
336
  color:#767676;
337
}
338

            
add label apply
Yuki Kimoto authored on 2016-08-01
339
.issue-labels-popup {
improve border color
Yuki Kimoto authored on 2016-09-14
340
  border:1px solid #e6e9e6;
add label apply
Yuki Kimoto authored on 2016-08-01
341
  border-radius:3px;
342
  box-shadow: 0 0 10px rgba(0,0,0,.1);
343
  width:350px;
complete label
Yuki Kimoto authored on 2016-08-01
344
  display:none;
345
  position:absolute;
add label apply
Yuki Kimoto authored on 2016-08-01
346
}
complete label
Yuki Kimoto authored on 2016-08-01
347
.issue-labels-popup-title-area {
add label apply
Yuki Kimoto authored on 2016-08-01
348
  background:#f7f7f7;
complete label
Yuki Kimoto authored on 2016-08-01
349
  overflow:hidden;
improve border color
Yuki Kimoto authored on 2016-09-14
350
  border-bottom:1px solid #e6e9e6;
complete label
Yuki Kimoto authored on 2016-08-01
351
}
352

            
353
.issue-labels-popup-title {
add label apply
Yuki Kimoto authored on 2016-08-01
354
  padding:10px;
complete label
Yuki Kimoto authored on 2016-08-01
355
  width:80%;
356
  float:left;
357
}
358
.issue-labels-popup-close-btn {
359
  width:20%;
360
  float:left;
361
  text-align:right;
362
  padding-top:10px;
363
  padding-right:10px;
add label apply
Yuki Kimoto authored on 2016-08-01
364
}
365
.issue-labels-popup-body {
complete label
Yuki Kimoto authored on 2016-08-01
366
  background:white;
add label apply
Yuki Kimoto authored on 2016-08-01
367
}
368
.issue-labels-popup-body li {
369
  padding:10px 10px;
improve border color
Yuki Kimoto authored on 2016-09-14
370
  border-top:1px solid #e6e9e6;
add label apply
Yuki Kimoto authored on 2016-08-01
371
  overflow:hidden;
372
  cursor:pointer;
373
}
374
.issue-labels-popup-body li:first-child {
375
  border-top:none;
376
}
377
.issue-labels-popup-check {
378
  float:left;
379
  width:20px;
380
  height:1px;
381
}
382
.issue-labels-popup-pallet {
383
  width:15px;
384
  height:15px;
385
  float:left;
386
  margin-left:2px;
387
}
388
.issue-labels-popup-pallet-id {
389
  float:left;
390
  margin-left:5px;
391
  width:50%;
392
}
imrpvoe new issue form
Yuki Kimoto authored on 2016-07-09
393
.issue-add-comment-title {
394
  margin-bottom:5px;
395
}
396

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
397
.issue-add-comment-header-tab a.disable {
398
  background:none;
399
  border:none;
400
}
401

            
add comment icon
Yuki Kimoto authored on 2016-07-23
402
.issue-add-comment-icon {
403
  display:inline-block;
404
  float:right;
405
  padding:6px;
406
}
407
.issue-add-comment-icon i {
408
  cursor:pointer;
409
}
410

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
411
.issue-add-comment-header-tab a {
412
  background:white;
413
  display:block;
414
  width:100%;
415
  padding:8px 13px;
416
  color:#333;
improve border color
Yuki Kimoto authored on 2016-09-14
417
  border:1px solid #e6e9e6;
add write prview tab
Yuki Kimoto authored on 2016-07-07
418
  border-bottom:none;
419
  border-radius:3px 3px 0 0;
420
  margin-bottom:-1px;
421
}
422
.issue-add-comment-header-tab a:hover {
423
  text-decoration:none;
424
  color:inherit;
425
}
426
.issue-add-comment-header-tab {
427
  display:inline-block;
428
}
429
.issue-add-comment-body {
430
  padding:10px;
431
}
432
.issue-add-comment-header {
433
  padding:7px 10px 0 10px;
434
  background:#f7f7f7;
improve border color
Yuki Kimoto authored on 2016-09-14
435
  border-bottom:1px solid #e6e9e6;
add write prview tab
Yuki Kimoto authored on 2016-07-07
436
}
add comment form
Yuki Kimoto authored on 2016-07-06
437
.issue-add-comment-bottom {
438
  overflow:hidden;
439
}
440
.issue-panel {
441
  padding-bottom:20px;
442
  border-bottom:2px solid #f7f7f7;
443
}
444

            
445
.issue-add-comment-button-left {
446
  float:left;
447
  width:50%;
448
  color:#767676;
449
  padding-top:15px;
450
}
451
.issue-add-comment-button {
452
  float:left;
453
  width:50%;
454
  padding:10px;
455
  text-align:right;
456
}
457
.issue-add-comment {
improve border color
Yuki Kimoto authored on 2016-09-14
458
  border:1px solid #e6e9e6;
add comment form
Yuki Kimoto authored on 2016-07-06
459
  border-radius: 3px;
460
  margin-top:10px;
461
}
462
.issue-add-comment-message {
463
}
464
.issue-add-comment [type=text] {
465
  width:100%;
466
}
467
.issue-add-comment textarea {
468
  width:100%;
469
  min-height:200px;
470
  padding:10px;
471
  border-radius:3px;
472
}
add previewã€area
Yuki Kimoto authored on 2016-07-08
473
.issue-add-comment-preview {
474
  min-height:203px;
475
  display:none;
476
}
add participates
Yuki Kimoto authored on 2016-07-16
477
.issue {
478
  overflow:hidden;
479
}
add comment form
Yuki Kimoto authored on 2016-07-06
480
.issue-left {
481
  width:80%;
add participates
Yuki Kimoto authored on 2016-07-16
482
  float:left;
483
}
484
.issue-right {
485
  width:20%;
486
  float:left;
487
  padding-left:15px;
488
  color:#767676;
489
}
490

            
491
.issue-right a {
492
  color:#767676;
493
}
494
.issue-right a:hover {
495
  color:inherit;
add comment form
Yuki Kimoto authored on 2016-07-06
496
}
497

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
498
.issue-message {
499
  border-radius:3px;
500
  border:1px solid #ddd;
can add new issue message an...
Yuki Kimoto authored on 2016-07-06
501
  margin-bottom:15px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
502
}
add owner label
Yuki Kimoto authored on 2016-07-14
503
.issue-message-owner {
improve diff design
Yuki Kimoto authored on 2016-10-12
504
  border:1px solid #e6e9e6;
add owner label
Yuki Kimoto authored on 2016-07-14
505
}
506

            
507
.issue-message-owner-label {
508
  display:inline-block;
509
  border:1px solid #bfccd1;
510
  padding: 2px 5px;
511
  border-radius: 3px;
512
  color:#767676;
add issue message delete fea...
Yuki Kimoto authored on 2016-07-14
513
  margin-right:5px;
add owner label
Yuki Kimoto authored on 2016-07-14
514
}
improve issue message design
Yuki Kimoto authored on 2016-07-05
515

            
516
.issue-message-header {
517
  background:#f7f7f7;
add owner label
Yuki Kimoto authored on 2016-07-14
518
  overflow:hidden;
519
}
520

            
521
.issue-message-header-left {
522
  width:50%;
523
  float:left;
improve issue message design
Yuki Kimoto authored on 2016-07-05
524
  padding:10px 15px;
525
}
526

            
add owner label
Yuki Kimoto authored on 2016-07-14
527
.issue-message-header-right {
528
  width:50%;
529
  float:left;
530
  text-align:right;
531
  padding:7px 15px;
532
}
533
.issue-message-header-owner {
improve diff design
Yuki Kimoto authored on 2016-10-12
534
  background:#f4fcef;
535
  border-bottom:1px solid #e6e9e6;
add owner label
Yuki Kimoto authored on 2016-07-14
536
}
537

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
538
.issue-message-body {
539
  padding:15px;
540
}
541

            
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
542
.issue-title-panel {
improve border color
Yuki Kimoto authored on 2016-09-14
543
  border-bottom: 1px solid #e6e9e6;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
544
  padding-bottom:15px;
545
  margin-bottom:15px;
546
}
547

            
548
.issue-title {
549
  font-size:27px;
550
  margin:30px 0 15px 0;
551
}
552

            
553
.issue-open {
554
  display:inline-block;
555
  border-radius:5px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
556
  padding:4px 8px;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
557
  color:white;
improve issue message design
Yuki Kimoto authored on 2016-07-05
558
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
559
  background:#6cc644;
560
}
561

            
562
.issue-close {
improve issue message design
Yuki Kimoto authored on 2016-07-05
563
  display:inline-block;
564
  border-radius:5px;
565
  padding:4px 8px;
566
  color:white;
567
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
568
  background:#bd2c00;
569
}
570

            
improve branches page open c...
Yuki Kimoto authored on 2016-04-23
571
.branches-open {
572
  color:white;
573
  background:#6cc644;
574
  padding:5px 8px;
575
  border-radius:3px;
576
  margin-right:4px;
577
  border-radius:3px;
578
  text-align:center;
579
}
580
.branches-open:hover {
581
  color:white;
582
  text-decoration:none;
583
}
584

            
cleanup merge and push logic
Yuki Kimoto authored on 2016-04-27
585
.branches-close {
586
  color:white;
587
  background:#bd2c00;
588
  padding:5px 8px;
589
  border-radius:3px;
590
  margin-right:4px;
591
  border-radius:3px;
592
  text-align:center;
593
}
594
.branches-close:hover {
595
  color:white;
596
  text-decoration:none;
597
}
598

            
add pull request message
Yuki Kimoto authored on 2016-04-23
599
.pull-comment {
600
  border:1px solid #eee;
601
  margin-top:15px;
602
  border-radius:3px;
603
}
604
.pull-comment-header {
605
  background:#f2f8fa;
606
  padding:7px 12px;
607
  border-bottom:1px solid #eee;
608
}
609
.pull-comment-body {
610
  padding:13px 12px;
611
  
612
}
add pull request command lin...
Yuki Kimoto authored on 2016-06-01
613

            
614
.pull-command-line {
615
  border:1px solid #95c97e;
616
  border-radius:3px;
617
}
618

            
improve pull page design
Yuki Kimoto authored on 2016-04-21
619
.pull-request-form {
620
  border:1px solid #95c97e;
621
  border-radius:3px;
622
}
623
.pull-request-form-title {
624
  padding:10px;
625
}
626
.pull-request-form-description {
627
  padding:10px;
628
  color:#767676;
629
}
630
.pull-request-form-button {
631
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
632
  border-top:1px solid #e6e9e6;
improve pull page design
Yuki Kimoto authored on 2016-04-21
633
}
634
.pulls-title a {
635
  color:black;
636
}
637
.pulls-title a:hover {
638
  color:blue;
639
}
640

            
create pull request list
Yuki Kimoto authored on 2016-04-20
641
.pulls-button-container {
642
  text-align:right;
643
  margin-bottom:10px;
644
}
645
.pulls-header {
improve border color
Yuki Kimoto authored on 2016-09-14
646
  border:1px solid #e6e9e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
647
  background:#fafafa;
648
  padding:10px;
649
}
650
.pulls-body {
improve border color
Yuki Kimoto authored on 2016-09-14
651
  border:1px solid #e6e9e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
652
  border-top:none;
653
  background:#fafafa;
654
  background:white;
655
}
656
.pulls-body li {
657
  padding:10px;
improve border color
Yuki Kimoto authored on 2016-09-14
658
  border-top: 1px solid #e6e9e6;
don't show pull request on n...
Yuki Kimoto authored on 2016-04-27
659
}
660
.pulls-body li:first-child {
661
  border-top:none;
create pull request list
Yuki Kimoto authored on 2016-04-20
662
}
663
.pulls-no-request {
664
  padding:30px;
665
  margin:1px auto;
666
  width:600px;
667
  text-align:center;
668
}
669

            
670
.pulls-description {
671
  color:#767676;
672
}
add pull reqeust link button...
Yuki Kimoto authored on 2016-08-20
673
.compare-pull-request-link {
674
  font-size:20px;
675
  margin:20px 0;
676
}
add compare across forks btn...
Yuki Kimoto authored on 2016-08-18
677
.compare-desc {
678
  color:#767676;
679
  margin-bottom:10px;
680
}
add pull request form
Yuki Kimoto authored on 2016-04-12
681
.compare-open-pull-request {
improve border color
Yuki Kimoto authored on 2016-09-14
682
  border:1px solid #e6e9e6;
add pull request form
Yuki Kimoto authored on 2016-04-12
683
  border-radius: 3px;
684
  width:80%;
685
}
686
.compare-open-pull-request-title {
improve border color
Yuki Kimoto authored on 2016-09-14
687
  border-bottom:1px solid #e6e9e6;
add pull request form
Yuki Kimoto authored on 2016-04-12
688
  padding:10px;
689
}
690
.compare-open-pull-request-message {
691
  padding:10px;
692
}
693
.compare-open-pull-request [type=text] {
694
  width:100%;
695
}
696
.compare-open-pull-request textarea {
697
  width:100%;
698
  min-height:200px;
699
}
700
.compare-open-pull-request-button {
701
  padding:10px;
702
  text-align:right;
703
}
704

            
improve compare page
Yuki Kimoto authored on 2016-04-12
705
.compare-nothing {
improve border color
Yuki Kimoto authored on 2016-09-14
706
  border:1px solid #e6e9e6;
improve compare page
Yuki Kimoto authored on 2016-04-12
707
  border-radius: 3px;
708
  background:#fafafa;
709
  padding:25px 0 30px 0;
710
  text-align:center;
711
  line-height:150%;
712
}
713

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

            
716
input[type=text], input[type=password] {
improve border color
Yuki Kimoto authored on 2016-09-14
717
  border:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
718
  border-radius: 3px;
719
  padding:6px 5px;
720
}
721

            
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
722
.repositories-container {
723
  overflow:hidden;
724
}
725
.repositories-left {
726
  padding-left:10px;
727
  padding-right:25px;
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
728
  width:75%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
729
  float:left;
730
}
731
.repositories-right {
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
732
  width:25%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
733
  float:left;
734
}
735
.repositories-user-name {
736
  font-weight:bold;
737
  font-size:22px;
738
}
739
.repositories-user-id {
740
  padding:5px 0 7px 2px;
741
  font-size:18px;
742
  color:#767676;
improve border color
Yuki Kimoto authored on 2016-09-14
743
  border-bottom:1px solid #e6e9e6;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
744
}
745
.repositories-user-mail {
746
  padding:5px 0;
747
}
add code tab
Yuki Kimoto authored on 2016-01-25
748
.project-tabs {
improve tab design
Yuki Kimoto authored on 2016-01-26
749
  position:relative;
750
  z-index:1;
751
  top:1px;  
add code tab
Yuki Kimoto authored on 2016-01-25
752
}
753

            
754
.project-tabs ul {
755
  overflow:hidden;
756
}
757

            
758
.project-tabs li {
759
  display:block;
760
  float:left;
improve tab design
Yuki Kimoto authored on 2016-01-26
761
  margin-bottom:0px;
762
}
763

            
764
.project-tabs li.active {
765
  background:white;
improve border color
Yuki Kimoto authored on 2016-09-14
766
  border:1px solid #e6e9e6;
add code tab
Yuki Kimoto authored on 2016-01-25
767
  border-top:3px #d26911 solid;
improve tab design
Yuki Kimoto authored on 2016-01-26
768
  border-bottom:white;
add code tab
Yuki Kimoto authored on 2016-01-25
769
  border-radius:3px 3px 0 0;
770
}
771

            
772
.project-tabs li a {
773
  display:block;
774
  width:100%;
775
  text-decoration:none;
cleanup new label
Yuki Kimoto authored on 2016-07-27
776
  padding:10px 15px 8px 15px;
add code tab
Yuki Kimoto authored on 2016-01-25
777
  text-align:center;
778
  color:#565656;
779
}
780

            
improve tab design
Yuki Kimoto authored on 2016-01-26
781
.project-tabs li.active a {
782
}
783

            
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
784
.admin-users {
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
785
  border-collapse:collapse;
786
  width:100%;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
787
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
788
.admin-users th, .admin-users td {
improve border color
Yuki Kimoto authored on 2016-09-14
789
  border:1px solid #e6e9e6;
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
790
  padding:5px;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
791
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
792
.admin-users th {
793
  font-weight:bold;
794
  text-align:center;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
795
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
796
.admin-users td {
797
  
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
798
}
799

            
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
800
.admin-users form {
801
  display:inline-block;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
802
}
803

            
improve new page design
Yuki Kimoto authored on 2016-01-21
804
.container {
805
  width: 980px;
806
  margin:0 auto;
807
}
808

            
809
.new-container {
810
  width: 800px;
811
  margin:0 auto;
812
}
813

            
814
.new-title-container {
815
  border-bottom:1px solid #e5e5e5;
816
  margin-top:40px;
817
  margin-bottom:15px;
818
}
819

            
820
.new-readme {
821
  border-bottom:1px solid #e5e5e5;
822
  margin-bottom:16px;
823
}
824

            
825
.new-readme div:first-child {
826
  font-weight:bold;
827
}
828

            
829
.new-readme div:first-child span {
830
  padding-left:5px;
831
}
832

            
833
.new-readme > .last-child {
834
  padding:0px 0px 15px 17px;
835
  color:#767676;
836
}
837

            
838
.new-title {
839
  font-weight:bold;
840
  font-size:19px;
841
  color:#333;
842
  margin-bottom:5px;
843
}
844

            
845
.new-description {
846
  color:#666;
847
  margin-bottom:8px;
848
}
849

            
850
.new-private {
851
  border-bottom:1px solid #e5e5e5;
852
  margin-bottom:16px;
853
}
854

            
855
.new-private li {
856
  padding:5px 0;
857
}
858

            
859
.new-private span {
860
  font-weight:bold;
861
  padding-left:5px;
862
}
863

            
864
.new-private .last-child {
865
  color:#767676;
866
  padding-left:17px;
867
}
868

            
869
.new-repository {
870
  border-bottom:1px solid #e5e5e5;
871
  margin-bottom:5px;
872
}
873

            
874
.new-repository .2th-child {
875

            
876
}
877

            
878
.new-repository .last-child {
879
  margin-bottom:10px;
880
}
881

            
882
.new-repository .last-child 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:100%;
888
}
889

            
890
.new-repository table {
891
  margin-bottom:10px;
892
}
893

            
894
.new-repository td {
895
  padding:0px 0;
896
}
897

            
898
.new-repository input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
899
  border:1px solid #e6e9e6;
improve new page design
Yuki Kimoto authored on 2016-01-21
900
  border-radius: 3px;
901
  padding:6px 5px;
902
  margin:5px 0;
903
  width:350px;
904
}
905

            
improve footer design
Yuki Kimoto authored on 2015-12-25
906
body {
907
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
908
  font-size: 14px;
909
  line-height: 130%;
910
  color: #333333;
911
}
912

            
improve footer design
Yuki Kimoto authored on 2016-01-04
913
.header {
header color become green
Yuki Kimoto authored on 2016-09-13
914
  background:#5AAE08;
improve footer design
Yuki Kimoto authored on 2016-01-04
915
  overflow:hidden;
improve index page design
Yuki Kimoto authored on 2016-10-13
916
  border-bottom:2px solid #479A05;
improve footer design
Yuki Kimoto authored on 2016-01-04
917
}
918

            
919
.header-left {
920
  float:left;
921
  width:50%;
922
  overflow:hidden;
923
}
924

            
925
.header-right {
926
  width:50%;
927
  overflow:hidden;
928
}
929

            
930
.title {
931
  float:left;
932
  font-size:19px;
improve header design
Yuki Kimoto authored on 2016-10-12
933
  padding:10px 0 6px 0;
improve footer design
Yuki Kimoto authored on 2016-01-04
934
}
header color become green
Yuki Kimoto authored on 2016-09-13
935
.title a {
936
  color:white;
937
}
938
.title a:hover {
939
  color:white;
940
}
improve footer design
Yuki Kimoto authored on 2016-01-04
941

            
942
.header-search {
943
  float:left;
944
  margin-left:10px;
improve header design
Yuki Kimoto authored on 2016-10-12
945
  padding:6px 0 5px 0;
improve footer design
Yuki Kimoto authored on 2016-01-04
946
}
947

            
948
.header-search input {
949
  padding:4px 5px;
header color become green
Yuki Kimoto authored on 2016-09-13
950
  border:1px solid white;
improve footer design
Yuki Kimoto authored on 2016-01-04
951
}
952

            
953
.header-rigth-container {
954
  float:right;
955
  overflow:hidden;
956
}
957

            
958
.header-btn-container {
959
  float:left;
960
  margin-right:4px;
improve header design
Yuki Kimoto authored on 2016-10-12
961
  padding-top:4px;
improve footer design
Yuki Kimoto authored on 2016-01-04
962
}
963

            
964
.header-login-container {
965
  float:left;
966
}
967

            
header color become green
Yuki Kimoto authored on 2016-09-13
968
.header-login-container a {
969
  color:white;
970
}
971
.header-login-container a:hover {
972
  color:white;
973
}
974

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1319
/* icon */
1320
[class^="icon-"],
1321
[class*=" icon-"] {
cleanup bootstrap
Yuki Kimoto authored on 2015-12-24
1322
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1323
  width: 14px;
1324
  height: 14px;
1325
  margin-top: 1px;
1326
  *margin-right: .3em;
1327
  line-height: 14px;
1328
  vertical-align: text-top;
cleanup icon
Yuki Kimoto authored on 2016-01-06
1329
  background-image: url("../image/glyphicons-halflings.png");
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1330
  background-position: 14px 14px;
1331
  background-repeat: no-repeat;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1332
}
1333

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

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1378
.icon-th-list {
1379
  background-position: -264px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1380
}
1381

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1402
.icon-signal {
1403
  background-position: -408px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1404
}
1405

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1406
.icon-cog {
1407
  background-position: -432px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1408
}
1409

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1410
.icon-trash {
1411
  background-position: -456px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1412
}
1413

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1430
.icon-download-alt {
1431
  background-position: -96px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1432
}
1433

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1458
.icon-list-alt {
1459
  background-position: -264px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1460
}
1461

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1478
.icon-volume-down {
1479
  background-position: -384px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1480
}
1481

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1482
.icon-volume-up {
1483
  background-position: -408px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1484
}
1485

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1486
.icon-qrcode {
1487
  background-position: -432px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1488
}
1489

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1490
.icon-barcode {
1491
  background-position: -456px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1492
}
1493

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1530
.icon-text-height {
1531
  background-position: -216px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1532
}
1533

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1534
.icon-text-width {
1535
  background-position: -240px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1536
}
1537

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1542
.icon-align-center {
1543
  background-position: -288px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1544
}
1545

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1550
.icon-align-justify {
1551
  background-position: -336px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1552
}
1553

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1558
.icon-indent-left {
1559
  background-position: -384px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1560
}
1561

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1562
.icon-indent-right {
1563
  background-position: -408px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1564
}
1565

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1570
.icon-picture {
1571
  background-position: -456px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1572
}
1573

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1634
.icon-fast-forward {
1635
  background-position: -360px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1636
}
1637

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1638
.icon-step-forward {
1639
  background-position: -384px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1640
}
1641

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1642
.icon-eject {
1643
  background-position: -408px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1644
}
1645

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1646
.icon-chevron-left {
1647
  background-position: -432px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1648
}
1649

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1650
.icon-chevron-right {
1651
  background-position: -456px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1652
}
1653

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1666
.icon-ok-sign {
1667
  background-position: -72px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1668
}
1669

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1674
.icon-info-sign {
1675
  background-position: -120px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1676
}
1677

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1682
.icon-remove-circle {
1683
  background-position: -168px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1684
}
1685

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1686
.icon-ok-circle {
1687
  background-position: -192px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1688
}
1689

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1690
.icon-ban-circle {
1691
  background-position: -216px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1692
}
1693

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1694
.icon-arrow-left {
1695
  background-position: -240px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1696
}
1697

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1698
.icon-arrow-right {
1699
  background-position: -264px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1700
}
1701

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1702
.icon-arrow-up {
1703
  background-position: -289px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1704
}
1705

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

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

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

            
1718
.icon-resize-small {
1719
  background-position: -384px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1720
}
1721

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1722
.icon-plus {
1723
  background-position: -408px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1724
}
1725

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1726
.icon-minus {
1727
  background-position: -433px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1728
}
1729

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1730
.icon-asterisk {
1731
  background-position: -456px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1732
}
1733

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1734
.icon-exclamation-sign {
1735
  background-position: 0 -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1736
}
1737

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1754
.icon-eye-close {
1755
  background-position: -120px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1756
}
1757

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1758
.icon-warning-sign {
1759
  background-position: -144px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1760
}
1761

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1762
.icon-plane {
1763
  background-position: -168px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1764
}
1765

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1766
.icon-calendar {
1767
  background-position: -192px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1768
}
1769

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1770
.icon-random {
1771
  width: 16px;
1772
  background-position: -216px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1773
}
1774

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1783
.icon-chevron-up {
1784
  background-position: -288px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1785
}
1786

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1787
.icon-chevron-down {
1788
  background-position: -313px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1789
}
1790

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1791
.icon-retweet {
1792
  background-position: -336px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1793
}
1794

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1795
.icon-shopping-cart {
1796
  background-position: -360px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1797
}
1798

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1799
.icon-folder-close {
1800
  width: 16px;
1801
  background-position: -384px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1802
}
1803

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1804
.icon-folder-open {
1805
  width: 16px;
1806
  background-position: -408px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1807
}
1808

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1809
.icon-resize-vertical {
1810
  background-position: -432px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1811
}
1812

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1813
.icon-resize-horizontal {
1814
  background-position: -456px -118px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1815
}
1816

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1857
.icon-circle-arrow-right {
1858
  background-position: -240px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1859
}
1860

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1861
.icon-circle-arrow-left {
1862
  background-position: -264px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1863
}
1864

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1865
.icon-circle-arrow-up {
1866
  background-position: -288px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1867
}
1868

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1869
.icon-circle-arrow-down {
1870
  background-position: -312px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1871
}
1872

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1881
.icon-tasks {
1882
  background-position: -384px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1883
}
1884

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1885
.icon-filter {
1886
  background-position: -408px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1887
}
1888

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1889
.icon-briefcase {
1890
  background-position: -432px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1891
}
1892

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1893
.icon-fullscreen {
1894
  background-position: -456px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1895
}
1896

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1897
/* button */
1898
.close {
1899
  float: right;
1900
  font-size: 20px;
1901
  font-weight: bold;
1902
  line-height: 20px;
1903
  color: #000000;
1904
  text-shadow: 0 1px 0 #ffffff;
1905
  opacity: 0.2;
1906
  filter: alpha(opacity=20);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1907
}
1908

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1909
.close:hover,
1910
.close:focus {
1911
  color: #000000;
1912
  text-decoration: none;
1913
  cursor: pointer;
1914
  opacity: 0.4;
1915
  filter: alpha(opacity=40);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1916
}
1917

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1918
button.close {
1919
  padding: 0;
1920
  cursor: pointer;
1921
  background: transparent;
1922
  border: 0;
1923
  -webkit-appearance: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1924
}
1925

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1926
.btn {
1927
  display: inline-block;
1928
  padding: 4px 12px;
1929
  margin-bottom: 0;
1930
  font-size: 14px;
1931
  line-height: 20px;
1932
  color: #333333;
1933
  text-align: center;
1934
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1935
  vertical-align: middle;
1936
  cursor: pointer;
1937
  background-color: #f5f5f5;
1938
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1939
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1940
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1941
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1942
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
1943
  background-repeat: repeat-x;
1944
  border: 1px solid #cccccc;
1945
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1946
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1947
  border-bottom-color: #b3b3b3;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1948
  border-radius: 4px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1949
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
1950
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1951
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1952
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1953
          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
1954
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1955
.btn:hover,
1956
.btn:focus,
1957
.btn:active,
1958
.btn.active,
1959
.btn.disabled,
1960
.btn[disabled] {
1961
  color: #333333;
1962
  background-color: #e6e6e6;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1963
}
1964

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1965
.btn:active,
1966
.btn.active {
1967
  background-color: #cccccc \9;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1968
}
1969

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1970
.btn:hover,
1971
.btn:focus {
1972
  color: #333333;
1973
  text-decoration: none;
1974
  background-position: 0 -15px;
1975
  -webkit-transition: background-position 0.1s linear;
1976
     -moz-transition: background-position 0.1s linear;
1977
       -o-transition: background-position 0.1s linear;
1978
          transition: background-position 0.1s linear;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1979
}
1980

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1981
.btn:focus {
1982
  outline: thin dotted #333;
1983
  outline: 5px auto -webkit-focus-ring-color;
1984
  outline-offset: -2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1985
}
1986

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1987
.btn.active,
1988
.btn:active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1989
  background-image: none;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1990
  outline: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1991
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1992
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1993
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1994
}
1995

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1996
.btn.disabled,
1997
.btn[disabled] {
1998
  cursor: default;
1999
  background-image: none;
2000
  opacity: 0.65;
2001
  filter: alpha(opacity=65);
2002
  -webkit-box-shadow: none;
2003
     -moz-box-shadow: none;
2004
          box-shadow: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2005
}
2006

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2007
.btn-large {
2008
  padding: 11px 19px;
2009
  font-size: 17.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2010
  border-radius: 6px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2011
}
2012

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2024
.btn-small [class^="icon-"],
2025
.btn-small [class*=" icon-"] {
2026
  margin-top: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2027
}
2028

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2029
.btn-mini [class^="icon-"],
2030
.btn-mini [class*=" icon-"] {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2031
  margin-top: -1px;
2032
}
2033

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2034
.btn-mini {
2035
  padding: 0 6px;
2036
  font-size: 10.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2037
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2038
}
2039

            
improve branch select design
Yuki Kimoto authored on 2016-01-06
2040
.btn-primary {
2041
  color: #ffffff;
2042
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2043
  background-color: #006dcc;
2044
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
2045
  background-repeat: repeat-x;
2046
  border-color: #0044cc #0044cc #002a80;
2047
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2048
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
2049
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2050
}
2051

            
2052
.btn-primary:hover,
2053
.btn-primary:focus,
2054
.btn-primary:active,
2055
.btn-primary.active,
2056
.btn-primary.disabled,
2057
.btn-primary[disabled] {
2058
  color: #ffffff;
2059
  background-color: #0044cc;
2060
}
2061

            
2062
.btn-primary:active,
2063
.btn-primary.active {
2064
  background-color: #003399 \9;
2065
}
2066

            
2067
.btn-info {
2068
  color: #ffffff;
2069
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2070
  background-color: #49afcd;
2071
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
2072
  background-repeat: repeat-x;
2073
  border-color: #2f96b4 #2f96b4 #1f6377;
2074
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2075
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
2076
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2077
}
2078

            
2079
.btn-info:hover,
2080
.btn-info:focus,
2081
.btn-info:active,
2082
.btn-info.active,
2083
.btn-info.disabled,
2084
.btn-info[disabled] {
2085
  color: #ffffff;
2086
  background-color: #2f96b4;
2087
}
2088

            
improve login page design
Yuki Kimoto authored on 2016-01-16
2089
.btn-success {
2090
  color: #ffffff;
2091
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2092
  background-color: #5bb75b;
2093
  background-image: linear-gradient(to bottom, #62c462, #51a351);
2094
  background-repeat: repeat-x;
2095
  border-color: #51a351 #51a351 #387038;
2096
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2097
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
2098
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2099
}
2100

            
2101
.btn-success:hover,
2102
.btn-success:focus,
2103
.btn-success:active,
2104
.btn-success.active,
2105
.btn-success.disabled,
2106
.btn-success[disabled] {
2107
  color: #ffffff;
2108
  background-color: #51a351;
2109
}
2110

            
2111
.btn-success:active,
2112
.btn-success.active {
2113
  background-color: #408140 \9;
2114
}
2115

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
2116
.btn-danger {
2117
  color: #ffffff;
2118
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2119
  background-color: #da4f49;
2120
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
2121
  background-repeat: repeat-x;
2122
  border-color: #bd362f #bd362f #802420;
2123
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2124
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
2125
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2126
}
2127

            
2128
.btn-danger:hover,
2129
.btn-danger:focus,
2130
.btn-danger:active,
2131
.btn-danger.active,
2132
.btn-danger.disabled,
2133
.btn-danger[disabled] {
2134
  color: #ffffff;
2135
  background-color: #bd362f;
2136
}
2137

            
2138
.btn-danger:active,
2139
.btn-danger.active {
2140
  background-color: #942a25 \9;
2141
}
2142

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2143
/* alert */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2144
.alert {
2145
  padding: 8px 35px 8px 14px;
2146
  margin-bottom: 20px;
2147
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2148
  background-color: #fcf8e3;
2149
  border: 1px solid #fbeed5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2150
  border-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2151
}
2152

            
2153
.alert,
2154
.alert h4 {
2155
  color: #c09853;
2156
}
2157

            
2158
.alert h4 {
2159
  margin: 0;
2160
}
2161

            
2162
.alert .close {
2163
  position: relative;
2164
  top: -2px;
2165
  right: -21px;
2166
  line-height: 20px;
2167
}
2168

            
2169
.alert-success {
2170
  color: #468847;
2171
  background-color: #dff0d8;
2172
  border-color: #d6e9c6;
2173
}
2174

            
2175
.alert-success h4 {
2176
  color: #468847;
2177
}
2178

            
2179
.alert-danger,
2180
.alert-error {
2181
  color: #b94a48;
2182
  background-color: #f2dede;
2183
  border-color: #eed3d7;
2184
}
2185

            
2186
.alert-danger h4,
2187
.alert-error h4 {
2188
  color: #b94a48;
2189
}
2190

            
2191
.alert-info {
2192
  color: #3a87ad;
2193
  background-color: #d9edf7;
2194
  border-color: #bce8f1;
2195
}
2196

            
2197
.alert-info h4 {
2198
  color: #3a87ad;
2199
}
2200

            
2201
.alert-block {
2202
  padding-top: 14px;
2203
  padding-bottom: 14px;
2204
}
2205

            
2206
.alert-block > p,
2207
.alert-block > ul {
2208
  margin-bottom: 0;
2209
}
2210

            
2211
.alert-block p + p {
2212
  margin-top: 5px;
2213
}
2214

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2215
/* tab box */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2216
.nav {
2217
  margin-bottom: 20px;
2218
  margin-left: 0;
2219
  list-style: none;
2220
}
2221

            
2222
.nav > li > a {
2223
  display: block;
2224
}
2225

            
2226
.nav > li > a:hover,
2227
.nav > li > a:focus {
2228
  text-decoration: none;
2229
  background-color: #eeeeee;
2230
}
2231

            
2232
.nav > li > a > img {
2233
  max-width: none;
2234
}
2235

            
2236
.nav > .pull-right {
2237
  float: right;
2238
}
2239

            
2240
.nav-tabs:before,
cleanup css
Yuki Kimoto authored on 2016-01-27
2241
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2242
  display: table;
2243
  line-height: 0;
2244
  content: "";
2245
}
2246

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2247
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2248
  clear: both;
2249
}
2250

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2251
.nav-tabs > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2252
  float: left;
2253
}
2254

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2255
.nav-tabs > li > a {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2256
  padding-right: 12px;
2257
  padding-left: 12px;
2258
  margin-right: 2px;
2259
  line-height: 14px;
2260
}
2261

            
2262
.nav-tabs {
2263
  border-bottom: 1px solid #ddd;
2264
}
2265

            
2266
.nav-tabs > li {
2267
  margin-bottom: -1px;
2268
}
2269

            
2270
.nav-tabs > li > a {
2271
  padding-top: 8px;
2272
  padding-bottom: 8px;
2273
  line-height: 20px;
2274
  border: 1px solid transparent;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2275
  border-radius: 4px 4px 0 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2276
}
2277

            
2278
.nav-tabs > li > a:hover,
2279
.nav-tabs > li > a:focus {
2280
  border-color: #eeeeee #eeeeee #dddddd;
2281
}
2282

            
2283
.nav-tabs > .active > a,
2284
.nav-tabs > .active > a:hover,
2285
.nav-tabs > .active > a:focus {
2286
  color: #555555;
2287
  cursor: default;
2288
  background-color: #ffffff;
2289
  border: 1px solid #ddd;
2290
  border-bottom-color: transparent;
2291
}
2292

            
2293
.nav-stacked > li {
2294
  float: none;
2295
}
2296

            
2297
.nav-stacked > li > a {
2298
  margin-right: 0;
2299
}
2300

            
2301
.nav-tabs.nav-stacked {
2302
  border-bottom: 0;
2303
}
2304

            
2305
.nav-tabs.nav-stacked > li > a {
2306
  border: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2307
  border-radius: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2308
}
2309

            
2310
.nav-tabs.nav-stacked > li:first-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2311
  border-top-right-radius: 4px;
2312
  border-top-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2313
}
2314

            
2315
.nav-tabs.nav-stacked > li:last-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2316
  border-bottom-right-radius: 4px;
2317
  border-bottom-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2318
}
2319

            
2320
.nav-tabs.nav-stacked > li > a:hover,
2321
.nav-tabs.nav-stacked > li > a:focus {
2322
  z-index: 2;
2323
  border-color: #ddd;
2324
}
2325

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

            
2330

            
2331

            
2332
.nav > .dropdown.active > a:hover,
2333
.nav > .dropdown.active > a:focus {
2334
  cursor: pointer;
2335
}
2336

            
2337
.nav > li.dropdown.open.active > a:hover,
2338
.nav > li.dropdown.open.active > a:focus {
2339
  color: #ffffff;
2340
  background-color: #999999;
2341
  border-color: #999999;
2342
}
2343

            
2344
.nav li.dropdown.open .caret,
2345
.nav li.dropdown.open.active .caret,
2346
.nav li.dropdown.open a:hover .caret,
2347
.nav li.dropdown.open a:focus .caret {
2348
  border-top-color: #ffffff;
2349
  border-bottom-color: #ffffff;
2350
  opacity: 1;
2351
  filter: alpha(opacity=100);
2352
}
2353

            
2354
.tab-content {
2355
  overflow: auto;
2356
}
2357

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2358
.tab-content > .tab-pane {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2359
  display: none;
2360
}
2361

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2362
.tab-content > .active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2363
  display: block;
2364
}
2365

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2366
/* bread */
2367
.breadcrumb {
improve tab design
Yuki Kimoto authored on 2016-01-26
2368
  margin-bottom:10px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2369
  list-style: none;
2370
  background-color: #f5f5f5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2371
  border-radius: 4px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2372
  font-size:18px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2373
  background:none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2374
}
2375

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2376
.breadcrumb > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2377
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2378
  *display: inline;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2379
  text-shadow: 0 1px 0 #ffffff;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2380
  *zoom: 1;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2381
}
2382

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2383
.breadcrumb > li > .divider {
2384
  padding: 0 5px;
2385
  color: #ccc;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2386
}
2387

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2388
.breadcrumb > .active {
2389
  color: #999999;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2390
}
2391

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2392
/* mordal dialog box */
2393
.modal-backdrop {
2394
  position: fixed;
2395
  top: 0;
2396
  right: 0;
2397
  bottom: 0;
2398
  left: 0;
2399
  z-index: 1040;
2400
  background-color: #000000;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2401
}
2402

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2403
.modal-backdrop.fade {
2404
  opacity: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2405
}
2406

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2407
.modal-backdrop,
2408
.modal-backdrop.fade.in {
2409
  opacity: 0.8;
2410
  filter: alpha(opacity=80);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2411
}
2412

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2413
.modal {
2414
  position: fixed;
2415
  top: 10%;
2416
  left: 50%;
2417
  z-index: 1050;
2418
  width: 560px;
2419
  margin-left: -280px;
2420
  background-color: #ffffff;
2421
  border: 1px solid #999;
2422
  border: 1px solid rgba(0, 0, 0, 0.3);
improve branch select design
Yuki Kimoto authored on 2016-01-04
2423
  border-radius: 6px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2424
  outline: none;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2425
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2426
  background-clip: padding-box;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2427
}
2428

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2429
.modal.fade {
2430
  top: -25%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2431
  transition: opacity 0.3s linear, top 0.3s ease-out;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2432
}
2433

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2434
.modal.fade.in {
2435
  top: 10%;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2436
}
2437

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2438
.modal-header {
2439
  padding: 9px 15px;
2440
  border-bottom: 1px solid #eee;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2441
}
2442

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2443
.modal-header .close {
2444
  margin-top: 2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2445
}
2446

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2447
.modal-header h3 {
2448
  margin: 0;
2449
  line-height: 30px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2450
}
2451

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2452
.modal-body {
2453
  position: relative;
2454
  max-height: 400px;
2455
  padding: 15px;
2456
  overflow-y: auto;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2457
}
2458

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2459
.modal-form {
2460
  margin-bottom: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2461
}
2462

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2463
.modal-footer {
2464
  padding: 14px 15px 15px;
2465
  margin-bottom: 0;
2466
  text-align: right;
2467
  background-color: #f5f5f5;
2468
  border-top: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2469
  border-radius: 0 0 6px 6px;
2470
  box-shadow: inset 0 1px 0 #ffffff;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2471
}
2472

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2473
.modal-footer:before,
2474
.modal-footer:after {
2475
  display: table;
2476
  line-height: 0;
2477
  content: "";
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2478
}
2479

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2480
.modal-footer:after {
2481
  clear: both;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2482
}
2483

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2484
.modal-footer .btn + .btn {
2485
  margin-bottom: 0;
2486
  margin-left: 5px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2487
}
2488

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2489
.modal-footer .btn-group .btn + .btn {
2490
  margin-left: -1px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2491
}
2492

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2493
.modal-footer .btn-block + .btn-block {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2494
  margin-left: 0;
2495
}
2496

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2497
.hide {
2498
  display: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2499
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2500
.show {
2501
  display: block;
2502
}
2503
.invisible {
2504
  visibility: hidden;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2505
}
2506

            
cleanup css
Yuki Kimoto authored on 2015-12-26
2507
/* Plain text */
2508
.plain-text {
2509
  background             : white;
2510
  border-radius          : 1px;
2511
  border-top             : none;
2512
  border-top-left-radius : 0;
2513
  font-size              : 16px;
2514
  line-height            : 1.5em;
2515
  padding                : 27px;
2516
}
2517

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

            
2519
.topic1 {
improve topic design
Yuki Kimoto authored on 2016-10-12
2520
  font-size:18px;
improve top page design
Yuki Kimoto authored on 2015-12-26
2521
  font-weight:bold;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2522
  margin:20px 0 15px 0;
improve h1 color
Yuki Kimoto authored on 2016-09-13
2523
  color:#358D23;
2524
  padding:4px 6px;
improve topic design
Yuki Kimoto authored on 2016-10-12
2525
  background:#F3F3ED;
improve header design
Yuki Kimoto authored on 2016-10-12
2526
  padding:10px 12px;
improve topic design
Yuki Kimoto authored on 2016-10-12
2527
  border: 1px solid #EBEEDC;
improve top page design
Yuki Kimoto authored on 2015-12-26
2528
}
improve markdown design
Yuki Kimoto authored on 2015-12-26
2529

            
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2530
.project-header {
improve project header color
Yuki Kimoto authored on 2016-09-14
2531
  background:#fafcfa;
add code tab
Yuki Kimoto authored on 2016-01-25
2532
  border-bottom: none;
improve tab design
Yuki Kimoto authored on 2016-01-26
2533
  margin-bottom:12px;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2534
  overflow:hidden;
add code tab
Yuki Kimoto authored on 2016-01-25
2535
  padding:14px 0 0 0;
improve header and footer de...
Yuki Kimoto authored on 2016-10-12
2536
  border-top:#CCCCCC 1px solid;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2537
}
2538

            
2539
.project-header-left {
2540
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2541
  width:80%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2542
  overflow:hidden;
2543
}
2544

            
2545
.project-header-right {
2546
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2547
  width:20%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2548
  overflow:hidden;
2549
}
2550

            
2551
.project-header-right-container {
2552
  float:right;
2553
  overflow:hidden;
2554
}
2555

            
2556
.project-header-btn-container {
2557
  float:left;
2558
  margin-right:4px;
2559
}
2560

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2561
.footer {
2562
  text-align:center;
improve header and footer de...
Yuki Kimoto authored on 2016-10-12
2563
  border-top:2px solid #479A05;
2564
  padding:8px 0 10px 0;
complete readme design
Yuki Kimoto authored on 2016-01-06
2565
  margin-top:30px;
improve footer design
Yuki Kimoto authored on 2016-09-14
2566
  background:#5AAE08;
2567
  color:white;
2568
  font-size:16px;
2569
}
2570
.footer a {
2571
  color:white;
2572
  text-decoration:underline;
2573
}
2574
.footer a:hover {
2575
  color:white;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2576
}
2577

            
2578
.repositories {
2579
  margin-bottom:30px;
2580
}
2581

            
2582
.repositories li {
improve index page design
Yuki Kimoto authored on 2016-10-13
2583
  border-bottom: 1px solid #e6e9e6;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2584
  overflow:hidden;
2585
  padding:10px 0;
2586
}
2587

            
improve index page design
Yuki Kimoto authored on 2016-10-13
2588
.repositories li:first-child {
2589
  border-top: 1px solid #e6e9e6;
2590
}
2591

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2592
.repositories a:hover {
2593
  text-decoration:underline;
2594
}
2595

            
2596
.repositories-name {
2597
  float:left;
2598
  width:25%;
2599
}
2600

            
2601
.repositories-description {
2602
  float:left;
2603
  width:45%;
2604
  color:#333;
2605
  min-height:1px;
2606
}
2607

            
2608
.repositories-age {
2609
  float:left;
2610
  width:30%;
2611
  color: #767676;
2612
}
improve branch select design
Yuki Kimoto authored on 2016-01-04
2613

            
2614
.branch-select-container {
2615
  overflow:hidden;
2616
}
2617

            
2618
.branch-select-left-container {
2619
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2620
  width:20%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2621
}
2622

            
2623
.branch-select-right-container {
2624
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2625
  width:80%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2626
}
2627

            
2628
.git-url-container {
2629
  float:right;
2630
  overflow:hidden;
2631
  display:inline-block;
2632
}
2633

            
2634
.git-url-container li {
2635
  float:left;
2636
}
2637

            
2638
.git-url-container .btn, .git-url-container .btn-small {
2639
  border-radius:0;
2640
}
2641

            
improve tab design
Yuki Kimoto authored on 2016-01-26
2642
.git-url-container input[type=text] {
improve branch select design
Yuki Kimoto authored on 2016-01-06
2643
  width:550px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2644
  padding:5px 0 5px 5px;
improve border color
Yuki Kimoto authored on 2016-09-14
2645
  border:1px solid #e6e9e6;
improve tab design
Yuki Kimoto authored on 2016-01-26
2646
  border-radius:0 3px 3px 0;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2647
}
2648

            
improve branch select design
Yuki Kimoto authored on 2016-01-04
2649
.page-path-container {
2650
  float:left;
2651
}
2652

            
2653
.donwload-zip {
2654
  margin-left:5px;
2655
  font-weight:bold;
2656
}
complete branch select desig...
Yuki Kimoto authored on 2016-01-06
2657

            
2658
.page-path {
2659
  display:inline-block;
2660
  margin-left:5px;
2661
}
2662

            
2663
.branch-select-left-container-page-path {
2664
  width:100%;
2665
}
complete readme design
Yuki Kimoto authored on 2016-01-06
2666

            
2667
.readme-header {
2668
  background-color: #f5f5f5;
2669
  border-radius: 3px 3px 0 0;
improve border color
Yuki Kimoto authored on 2016-09-14
2670
  border: 1px solid #e6e9e6;
complete readme design
Yuki Kimoto authored on 2016-01-06
2671
  border-bottom: 0;
2672
  padding: 9px 10px 10px;
2673
  font-size: 14px;
2674
  line-height: 17px;
2675
  font-weight:bold;
2676
}
2677

            
2678
.readme-frame {
improve border color
Yuki Kimoto authored on 2016-09-14
2679
  border: 1px solid #e6e9e6;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2680
}
2681

            
2682
.commit-summary {
2683
  overflow:hidden;
2684
  padding: 10px;
2685
  line-height: 20px;
improve project page design
Yuki Kimoto authored on 2016-10-12
2686
  background: #f4fcef;
2687
  border: 1px solid #d0ddc7;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2688
  border-radius: 3px;
2689
  border-bottom-right-radius: 0;
2690
  border-bottom-left-radius: 0;
2691
  margin-top:13px;
2692
}
2693

            
2694
.commit-summary-left-container {
2695
  float:left;
2696
  width:70%;
2697
}
2698

            
2699
.commit-summary-right-container {
2700
  float:right;
2701
  width:30%;
2702
  text-align:right;
2703
  color: #68777d;
2704
}
2705

            
2706
.commit-summary-author {
2707
  font-weight:bold;
2708
}
2709

            
2710
.commit-summary-left-container a {
2711
  color: #68777d;
2712
}
2713

            
2714
.commit-summary-right-container a {
2715
  color:#445055;
2716
}
improve tree design
Yuki Kimoto authored on 2016-01-07
2717

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
2718
.commit-contributor {
2719
  padding: 5px 10px;
2720
  background-color: #fff;
improve diff design
Yuki Kimoto authored on 2016-10-12
2721
  border: 1px solid #d0ddc7;
complete blob page design
Yuki Kimoto authored on 2016-01-09
2722
  border-top:none;
2723
  border-bottom-left-radius: 3px;
2724
  border-bottom-right-radius: 3px;
2725
  color:#68777d;
2726
}
2727

            
improve tree design
Yuki Kimoto authored on 2016-01-07
2728
.file-list li {
improve project page design
Yuki Kimoto authored on 2016-10-12
2729
  border: 1px solid #d0ddc7;
improve tree design
Yuki Kimoto authored on 2016-01-07
2730
  border-top:none;
2731
  padding:7px;
2732
  overflow:hidden;
2733
}
2734

            
2735
.file-list li:last-child {
improve project page design
Yuki Kimoto authored on 2016-10-12
2736
  border-radius:0 0 3px 3px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2737
}
2738

            
2739
.file-list-name {
2740
  width:25%;
2741
  float:left;
2742
}
2743

            
2744
.file-list-commit {
2745
  width:60%;
2746
  float:left;
2747
}
2748

            
2749
.file-list-commit a {
2750
  color:#888;
2751
}
2752

            
2753
.file-list-age {
2754
  width:15%;
2755
  float:left;
2756
  text-align:right;
2757
  color:#888
2758
}
complete blob page design
Yuki Kimoto authored on 2016-01-09
2759

            
2760
.file-header {
2761
  padding: 5px 10px;
2762
  background-color: #f7f7f7;
improve border color
Yuki Kimoto authored on 2016-09-14
2763
  border: 1px solid #e6e9e6;
complete blob page design
Yuki Kimoto authored on 2016-01-09
2764
  border-bottom:none;
2765
  border-top-left-radius: 2px;
2766
  border-top-right-radius: 2px;
2767
  margin-top:20px;
2768
  overflow:hidden;
2769
}
2770

            
2771
.file-header-left {
2772
  float:left;
2773
  width:50%;
2774
  padding-top:4px;
2775
}
2776

            
2777
.file-header-right {
2778
  float:left;
2779
  width:50%;
2780
  overflow:hidden;
2781
}
2782

            
2783
.file-header-right ul {
2784
  float:right;
2785
  overflow:hidden;
2786
}
2787

            
2788
.file-header-right li {
2789
  float:left;
2790
  margin-left:1px;
2791
  font-weight:bold;
2792
}
2793

            
2794
.blob-image {
2795
  background:#ddd;
2796
  text-align:center;
2797
  padding-top:30px;
2798
  padding-bottom:30px;
2799
  margin-bottom:30px;
2800
  border-radius: 0 0 2px 2px;
2801
}
2802

            
2803
.blob-image img {
2804
  max-width: 600px;
2805
  border: 1px solid #fff;
2806
}
2807

            
2808
.blob-raw {
2809
  font-size:16px;
2810
  background:#ddd;
2811
  text-align:center;
2812
  padding-top:30px;
2813
  padding-bottom:30px;
2814
  margin-bottom:30px;
2815
  border-radius: 0 0 2px 2px;
2816
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2817

            
2818
.commits {
2819
  margin-top:20px;
2820
}
2821

            
2822
.commits-date-container {
2823
  border-left:#f3f3f3 2px solid;
2824
  margin:3px 6px;
2825
  padding:10px 0;
2826
}
2827

            
2828
.commits-date-container li:first-child {
2829
  border-top: 1px solid #e5e5e5;
2830
}
2831

            
2832
.commits-date-container li {
2833
  margin-left:20px;
2834
  border: 1px solid #e5e5e5;
2835
  border-top:none;
2836
  padding:8px 20px 8px 15px;
2837
  overflow:hidden;
2838
}
2839

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
2840
.commit-date {
2841
  color: #767676;
2842
}
2843

            
2844
.commit-date i {
2845
  margin-right:15px;
2846
}
2847

            
improve commits page design
Yuki Kimoto authored on 2016-01-11
2848
.commit-left {
2849
  float:left;
2850
  width:70%;
2851
}
2852

            
2853
.commit-left-title a {
2854
  color:#333;
2855
}
2856

            
2857
.commit-left-author {
2858
  color: #767676;
2859
  margin-top:1px;
2860
}
add user page link from user...
Yuki Kimoto authored on 2016-04-11
2861
.commit-left-author a {
2862
  color:#767676;
2863
  font-weight:bold;
2864
  font-size:98%;
2865
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2866
.commit-right {
2867
  float:left;
2868
  width:30%;
2869
}
2870

            
2871
.commit-right-container {
2872
  float:right;
2873
}
2874

            
2875
.commit-right-commit-id {
2876
  float:left;
2877
  width:80px;
2878
}
2879

            
2880
.commit-right-commit-id a {
2881
  border: 1px solid #e5e5e5;
2882
  display:block;
2883
  width:100%;
2884
  padding:6px 10px;
2885
  text-align:center;
2886
  margin-top:3px;
2887
  border-radius:3px;
2888
}
2889

            
2890
.commit-right-commit-id a:hover {
2891
  text-decoration:none;
2892
  color:white;
2893
  background:#4169e1;
2894
}
2895

            
2896
.commit-right-browse-repository {
2897
  float:left;
2898
}
2899

            
2900
.commit-right-browse-repository a {
2901
  border: 1px solid #e5e5e5;
2902
  display:block;
2903
  width:100%;
2904
  padding:6px 5px;
2905
  margin-left:10px;
2906
  text-align:center;
2907
  font-weight:bold;
2908
  margin-top:3px;
2909
  border-radius:3px;
2910
}
2911

            
2912
.commit-right-browse-repository a:hover {
2913
  text-decoration:none;
2914
  color:white;
2915
  background:#4169e1;
2916
}
improve pagenation design
Yuki Kimoto authored on 2016-01-11
2917

            
2918
.pagenation {
2919
  overflow:hidden;
2920
  width:140px;
2921
  margin: 0 auto;
2922
}
2923

            
2924
.pagenation li {
2925
  float: left;
2926
  font-size: 13px;
2927
  font-weight: bold;
2928
  color: #4078c0;
2929
  background: #fff;
2930
  border: 1px solid #e5e5e5;
2931
  border-left:none;
2932
  width:50%;
2933
  text-align:center;
2934
}
2935

            
2936
.pagenation li a {
2937
  padding: 7px 12px;
2938
  display:block;
2939
  width:100%;
2940
}
2941

            
2942
.pagenation li span {
2943
  padding: 7px 12px;
2944
  display:block;
2945
  width:100%;
2946
  color:#d3d3d3;;
2947
  background:#fafafa;
2948
}
2949

            
2950
.pagenation li a:hover {
2951
  text-decoration:none;
2952
  background:#e5e5e5;
2953
}
2954

            
2955
.pagenation li:first-child {
2956
  border-left: 1px solid #e5e5e5;
2957
  border-radius:3px 0 0 3px;
2958
}
2959

            
2960
.pagenation li:last-child {
2961
  border-radius:0 3px 3px 0;
2962
}
improve blame page design
Yuki Kimoto authored on 2016-01-13
2963

            
2964
.blame-page-path {
2965
  overflow:hidden;
2966
}
2967

            
2968
.blame-page-path .page-path {
2969
  float:left;
2970
  margin-left:0;
2971
}
2972

            
2973
.blame-gradation {
2974
  float:right;
2975
  text-align:right:
2976
}
2977

            
2978
.blame-body-container {
2979
  overflow-x:scroll;
improve border color
Yuki Kimoto authored on 2016-09-14
2980
  border:1px solid #e6e9e6;
improve blame page design
Yuki Kimoto authored on 2016-01-13
2981
  border-radius:0 0 3px 3px;
2982
}
2983

            
2984
.blame-body {
2985
  width:100%;
2986
  border-collapse: collapse;
2987
}
2988

            
2989
.blame-body-left {
2990
  padding:3px 7px;
2991
  vertical-align:middle;
2992
  border-left:none;
2993
  border-bottom:none;
2994
}
2995

            
2996
.blame-body-center {
2997
  padding:5px 10px;
2998
  color:gray;
2999
  font-size:12px;
3000
  vertical-align:middle;
improve border color
Yuki Kimoto authored on 2016-09-14
3001
  border-right:1px solid #e6e9e6;
improve blame page design
Yuki Kimoto authored on 2016-01-13
3002
}
3003

            
3004
.blame-body-right {
3005
  padding:5px 10px;
3006
  vertical-align:middle;
3007
  white-space: nowrap;
3008
  border-right:none
3009
}
3010

            
3011
.blame-summary-container {
3012
  overflow:hidden;
3013
}
3014

            
3015
.blame-summary {
3016
  display:inline-block;
3017
  float:left;
3018
  font-weight:bold;
3019
}
3020

            
3021
.blame-commit-id {
3022
  display:inline-block;
3023
  float:right;
3024
  font-size:90%;
3025
}
3026

            
3027
.blame-author {
3028
  color:#767676;
3029
}
improve login page design
Yuki Kimoto authored on 2016-01-16
3030

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3031
.user-form {
improve user form design
Yuki Kimoto authored on 2016-10-13
3032
  border:1px solid #D0DDC7;
improve login page design
Yuki Kimoto authored on 2016-01-16
3033
  border-radius: 3px;
improve login page design
Yuki Kimoto authored on 2016-01-16
3034
  padding:25px 0;
improve login page design
Yuki Kimoto authored on 2016-01-16
3035
  width:300px;
3036
  margin-left:auto;
3037
  margin-right:auto
3038
}
3039

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3040
.user-form-container {
improve login page design
Yuki Kimoto authored on 2016-01-16
3041
  width:70%;
3042
  margin:0 auto;
3043
}
3044

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3045
.user-form input[type=text], .user-form input[type=password] {
improve login page design
Yuki Kimoto authored on 2016-01-16
3046
  width:100%;
3047
  margin:5px 0;
3048
}
3049

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

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3054
.user-form button {
improve login page design
Yuki Kimoto authored on 2016-01-16
3055
  width:100%;
3056
}
3057

            
improve login page design
Yuki Kimoto authored on 2016-01-16
3058
.header-bottom {
3059
  margin-bottom:15px;
3060
  min-height:1px;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3061
}
3062

            
improve search page design
Yuki Kimoto authored on 2016-01-23
3063
.search-top {
improve border color
Yuki Kimoto authored on 2016-09-14
3064
  border-bottom:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3065
  margin-bottom:20px;
3066
  padding-bottom:20px;
3067
}
3068

            
3069
.search-top input {
3070
  margin-left:5px;
3071
}
3072

            
3073
.search-top > div:first-child {
3074
  font-size:19px;
3075
  display:inline-block;
3076
}
3077

            
3078
.search-top form {
3079
  display:inline-block;
3080
}
3081

            
3082
.search-result {
3083
  overflow:hidden;
3084
}
3085

            
3086
.search-result .left {
3087
  float:left;
3088
  width:15%;
3089
  padding-right:10px;
3090
}
3091

            
3092
.search-result .left li {
improve border color
Yuki Kimoto authored on 2016-09-14
3093
  border:1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3094
  border-top:none;
3095
  padding:7px 10px;
3096
}
3097

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

            
3102
.search-result .right {
3103
  float:left;
3104
  width:85%;
3105
  padding-left:15px;
3106
}
3107

            
3108
.search-result .right li {
improve border color
Yuki Kimoto authored on 2016-09-14
3109
  border-bottom: 1px solid #e6e9e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3110
  padding:5px 0px;
3111
  margin-bottom:10px;
3112
}
3113

            
3114
.search-result .right li > div {
3115
  padding-bottom:1px;
3116
}
3117

            
3118
.search-result .right > div:first-child {
3119
   font-size:18px;
3120
   padding-bottom:10px;
3121
   margin-bottom:10px;
3122
   border-bottom:1px solid #EEEEEE;
3123
   font-weight:bold;
3124
}
3125

            
3126
.search-result .left li.active a {
3127
  color:black;
3128
  font-weight:bold;
3129
  text-decoration:none;
3130
}
3131

            
3132

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
3133
.project-settings {
3134
  overflow:hidden;
3135
}
3136

            
3137
.project-settings .left {
3138
  float:left;
3139
  width:15%;
3140
  padding-right:10px;
3141
}
3142

            
3143
.project-settings .left 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:5px 10px;
3147
}
3148

            
3149
.project-settings .left 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
}
3152

            
3153
.project-settings .right {
3154
  float:left;
3155
  width:85%;
3156
}
3157

            
3158
.project-settings-main {
3159
  margin-bottom:20px;
3160
}
3161

            
3162
.project-settings-main li {
improve border color
Yuki Kimoto authored on 2016-09-14
3163
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3164
  border-top:none;
3165
  padding:10px 10px;
3166
}
3167

            
3168
.project-settings-main li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3169
  border-top:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3170
  background: #eee;
3171
  border-radius:3px 3px 0 0;
3172
  font-size:17px;
3173
}
3174

            
3175
.project-settings-main input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3176
    border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3177
    border-radius: 3px;
3178
    padding:6px 5px;
3179
    width:100%;
3180
    margin:5px 0;
3181
}
3182

            
3183
.project-settings-main input[type=checkbox] {
3184
  margin:0 5px;
3185
}
3186

            
3187
.project-settings-main select {
improve border color
Yuki Kimoto authored on 2016-09-14
3188
    border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3189
    border-radius: 3px;
3190
    padding:6px 5px;
3191
    width:30%;
3192
    margin:5px 0;
3193
}
3194

            
3195
.project-settings-danger li {
improve border color
Yuki Kimoto authored on 2016-09-14
3196
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3197
  border-top:none;
3198
  padding:10px 10px;
3199
}
3200

            
3201
.project-settings-danger li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3202
  border-top:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3203
  background: #eee;
3204
  border-radius:3px 3px 0 0;
3205
  font-size:17px;
3206
  background:red;
3207
}
3208

            
3209
#delete-confirm input {
improve border color
Yuki Kimoto authored on 2016-09-14
3210
  border:1px solid #e6e9e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3211
  border-radius: 3px;
3212
  padding:6px 5px;
3213
  margin:5px 0;
3214
  width:70%;
3215
}
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3216

            
3217
.collaboration > div:first-child {
3218
  font-size:17px;
3219
  padding:5px;
improve border color
Yuki Kimoto authored on 2016-09-14
3220
  border-bottom:1px solid #e6e9e6;
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3221
  font-weight:bold;
3222
  margin-bottom:10px;
3223
}
3224

            
3225
.collaboration input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3226
  border:1px solid #e6e9e6;
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3227
  border-radius: 3px;
3228
  padding:6px 5px;
3229
  margin:5px 0;
3230
  width:40%;
3231
}
3232

            
3233
.collaboration input[type=submit] {
3234
  padding:6px 5px;
3235
  margin:5px 0;
3236
  width:10%;
3237
}
improve settings design
Yuki Kimoto authored on 2016-01-19
3238

            
3239
.user-settings {
3240
  overflow:hidden;
3241
}
3242

            
3243
.user-settings .left {
3244
  float:left;
3245
  width:15%;
3246
  padding-right:10px;
3247
}
3248

            
3249
.user-settings .left li {
improve border color
Yuki Kimoto authored on 2016-09-14
3250
  border:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3251
  border-top:none;
3252
  padding:5px 10px;
3253
}
3254

            
3255
.user-settings .left li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3256
  border-top:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3257
}
3258

            
3259
.user-settings .left li.active a {
3260
  color:black;
3261
  font-weight:bold;
3262
  text-decoration:none;
3263
}
3264

            
3265
.user-settings .right {
3266
  float:left;
3267
  width:85%;
3268
}
3269

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3270
.user-settings-container > div {
improve border color
Yuki Kimoto authored on 2016-09-14
3271
  border:1px solid #e6e9e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3272
  padding:10px 10px;
3273
  font-size:120%;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3274
  margin-bottom:20px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3275
}
3276

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3277
.user-settings-container > div:first-child {
improve settings design
Yuki Kimoto authored on 2016-01-19
3278
  border-bottom:none;
3279
  background: #eee;
3280
  border-radius:3px 3px 0 0;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3281
  font-size:14px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3282
  font-weight:bold;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3283
  margin-bottom:0;
improve settings design
Yuki Kimoto authored on 2016-01-19
3284
}
3285

            
3286
.profile li {
3287
  padding:5px 5px;
3288
}
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3289

            
3290
.ssh-keys form {
3291
  margin:5px 0;
3292
}
3293

            
3294
.ssh-key-add input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-14
3295
  border:1px solid #e6e9e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3296
  border-radius: 3px;
3297
  padding:6px 5px;
3298
  margin:5px 0;
3299
  width:60%;
3300
}
3301

            
3302
.ssh-key-add textarea {
improve border color
Yuki Kimoto authored on 2016-09-14
3303
  border:1px solid #e6e9e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3304
  border-radius: 3px;
3305
  padding:6px 5px;
3306
  margin:5px 0;
3307
  width:100%;
3308
  min-height:200px;
3309
}
improve search page design
Yuki Kimoto authored on 2016-01-23
3310

            
cleanup
Yuki Kimoto authored on 2016-01-27
3311
/* 番号つきページネーション */
3312
.pagination-num {
cleanup css
Yuki Kimoto authored on 2016-01-27
3313
  margin:20px 0
3314
}
cleanup
Yuki Kimoto authored on 2016-01-27
3315
.pagination-num ul {
cleanup css
Yuki Kimoto authored on 2016-01-27
3316
  display:inline-block;
3317
  margin-bottom:0;
3318
  margin-left:0;
3319
  border-radius:4px;
3320
  box-shadow:0 1px 2px rgba(0,0,0,0.05)
3321
}
3322
.pagination-num ul > li {
3323
  display:inline
3324
}
3325
.pagination-num ul > li > a,
3326
.pagination-num ul > li > span {
3327
  float:left;
3328
  padding:4px 12px;
3329
  line-height:20px;
3330
  text-decoration:none;
3331
  background-color:#fff;
3332
  border:1px solid #ddd;
3333
  border-left-width:0
3334
}
3335
.pagination-num ul > li > a:hover,
3336
.pagination-num ul > .active > a,
3337
.pagination-num ul > .active > span
3338
{
3339
  background-color:#f5f5f5;
3340
}
3341
.pagination-num ul > .active > a,
3342
.pagination-num ul > .active > span {
3343
  color:#999;
3344
  cursor:default;
3345
}
3346
.pagination-num ul > .disabled > span,
3347
.pagination-num ul > .disabled > a,
3348
.pagination-num ul > .disabled > a:hover,
3349
{
3350
  color:#999;
3351
  cursor:default;
3352
  background-color:transparent;
3353
}
3354
.pagination-num ul > li:first-child > a,
3355
.pagination-num ul > li:first-child > span
3356
{
3357
  border-left-width:1px;
3358
  border-bottom-left-radius:4px;
3359
  border-top-left-radius:4px;
3360
}
3361
.pagination-num ul > li:last-child > a,
3362
.pagination-num ul > li:last-child > span
3363
{
3364
  border-top-right-radius:4px;
3365
  border-bottom-right-radius:4px;
3366
}
improve branch design
Yuki Kimoto authored on 2016-01-27
3367

            
3368
/* Branches */
3369
.branches {
3370
  overflow:hidden;
3371
  margin-bottom:15px;
3372
}
3373
.branches > li {
improve border color
Yuki Kimoto authored on 2016-09-14
3374
  border:1px solid #e6e9e6;
improve branch design
Yuki Kimoto authored on 2016-01-27
3375
  border-top:none;
improve branches design
Yuki Kimoto authored on 2016-01-30
3376
  padding:8px 8px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3377
}
3378
.branches > li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3379
  border-top:1px solid #e6e9e6;
improve branch design
Yuki Kimoto authored on 2016-01-27
3380
}
3381
.branches > li > ul {
3382
  overflow:hidden;
3383
}
3384
.branches > li > ul > li:first-child {
3385
  float:left;
3386
  width:50%;
3387
  overflow:hidden;
improve branches design
Yuki Kimoto authored on 2016-01-30
3388
  padding-top:4px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3389
}
3390
.branches > li > ul > li.second-child{
3391
  float:left;
3392
  width:25%;
3393
}
3394
.branches > li > ul > li.last-child {
3395
  float:left;
3396
  width:25%;
3397
  text-align:right;
3398
}
3399

            
3400
.branches-name {
3401
  display:inline-block;
3402
}
3403
.branches-name a {
3404
  color: #4078c0;
3405
  border-radius:3px;
3406
  background:rgba(209,227,237,0.5);
3407
  padding:2px 6px;
3408
}
3409

            
3410
.branches-age {
3411
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
3412
  color:#aaa;;
improve branch design
Yuki Kimoto authored on 2016-01-27
3413
}
3414

            
3415
.branches-author {
3416
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
3417
  color:#767676;
improve branch design
Yuki Kimoto authored on 2016-01-27
3418
}
3419

            
improve branches design
Yuki Kimoto authored on 2016-01-30
3420
.branches-select {
3421
  overflow:hidden;
3422
  margin:20px 0;
3423
}
3424

            
3425
.branches-select li {
improve border color
Yuki Kimoto authored on 2016-09-14
3426
  border:1px solid #e6e9e6;
improve branches design
Yuki Kimoto authored on 2016-01-30
3427
  float:left;
3428
  border-left:none;
3429
}
3430

            
3431
.branches-select li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3432
  border-left:1px solid #e6e9e6;
improve branches design
Yuki Kimoto authored on 2016-01-30
3433
  border-radius:3px 0 0 3px;
3434
}
3435

            
3436
.branches-select li:last-child {
3437
  border-radius:0 3px 3px 0;
3438
}
3439

            
3440
.branches-select li a {
3441
  padding: 7px 14px;
3442
  font-weight: bold;
3443
  width:100%;
3444
  display:block;
3445
  color: #666;
3446
}
3447

            
3448
.branches-select li a:hover {
3449
  text-decoration:none;
3450
  background:#f5f5f5;
3451
}
3452

            
3453
.branches-select li.active a {
3454
  background-color: #4078c0;
3455
  color: #fff;
3456
}
3457
.branches-select li.active a {
3458
  background-color: #4078c0;
improve branches design
Yuki Kimoto authored on 2016-01-30
3459
}
3460

            
3461
.ahead-behind {
3462
  color:#767676;
3463
  font-size:12px;
3464
  border-collapse:collapse;
3465
}
3466

            
3467
.ahead-behind-behind-count {
3468
  text-align:right;
3469
  padding-right:3px;
3470
}
3471

            
3472
.ahead-behind-separate {
3473
  width:1px;
3474
  background:#c0c0c0;
3475
}
improve branch design
Yuki Kimoto authored on 2016-01-30
3476

            
3477
.branches-default {
3478
  font-size:12px;
3479
  text-align:center;
3480
  display:inline-block;
3481
  background-color: #767676;
3482
  color: #fff;
3483
  border-radius:3px;
3484
  padding:1px 3px;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3485
}
3486

            
3487
.branches .branches-overview-more {
3488
  text-align:center;
3489
  padding:0;
3490
}
3491
.branches-overview-more a {
3492
  width:100%;
3493
  display:block;
3494
  background: #f1f7fa;
3495
  padding:8px;
3496
}
3497

            
3498
.branches-overview-more a:hover {
improve tags page design
Yuki Kimoto authored on 2016-02-01
3499
  background:#e6e6fa;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3500
}
improve tags page design
Yuki Kimoto authored on 2016-02-01
3501

            
3502
.tags {
3503
  
3504
}
3505

            
3506
.tags > li {
improve border color
Yuki Kimoto authored on 2016-09-14
3507
  border-bottom:1px solid #e6e9e6;
improve tags page design
Yuki Kimoto authored on 2016-02-01
3508
  padding:10px 0;
3509
}
3510

            
3511
.tags > li:first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3512
  border-top:1px solid #e6e9e6;
improve tags page design
Yuki Kimoto authored on 2016-02-01
3513
}
3514

            
3515
.tags-item {
3516
  overflow:hidden;
3517
}
3518

            
3519
.tags-item > li:first-child {
3520
  display:block;
3521
  width:30%;
3522
  float:left;
3523
  color:#767676;
3524
}
3525

            
3526
.tags-item > li.last-child {
3527
  display:block;
3528
  width:70%;
3529
  float:left;
3530
}
3531

            
3532
.tags-name a {
3533
  color:#333;
3534
}
3535

            
3536
.tags-links {
3537
  padding-top:3px;
3538
}
3539

            
3540
.tags-links a {
3541
  color:#767676;
3542
  font-size:13px;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3543
}
3544

            
3545
.commits-summary > :first-child {
3546
  overflow:hidden;
3547
  padding: 10px;
3548
  line-height: 20px;
improve diff design
Yuki Kimoto authored on 2016-10-12
3549
  background-color: #f4fcef;
3550
  border: 1px solid #d0ddc7;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3551
  border-radius: 3px;
3552
  border-bottom-right-radius: 0;
3553
  border-bottom-left-radius: 0;
3554
  margin-top:13px;
3555
}
3556

            
3557
.commits-summary > .last-child {
3558
  padding: 5px 10px;
3559
  background-color: #fff;
improve diff design
Yuki Kimoto authored on 2016-10-12
3560
  border: 1px solid #d0ddc7;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3561
  border-top:none;
3562
  border-bottom-left-radius: 3px;
3563
  border-bottom-right-radius: 3px;
3564
}
3565

            
3566
.commits-summary-header {
3567
  overflow:hidden;
3568
}
3569
.commits-summary-header > :first-child {
3570
  float:left;
3571
  width:80%;
3572
}
3573
.commits-summary-header > .last-child {
3574
  float:right;
3575
  width:20%;
3576
  text-align:right;
3577
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3578
.commits-summary-body {
3579
  overflow:hidden;
3580
  padding:4px 0;
3581
}
3582
.commits-summary-body > :first-child {
3583
  width:40%;
3584
  float:left;
3585
}
3586
.commits-summary-body > .last-child {
3587
  width:60%;
3588
  float:left;
3589
  text-align:right;
3590
}
3591
.commits-summary-author {
3592
  font-weight:bold;
3593
}
3594
.commits-summary-parent {
3595
  display:inline-block;
3596
  color:#767676;
3597
  margin-right:10px;
3598
}
3599
.commits-summary-parent a {
3600
  color:#333333;
3601
  text-decoration:underline;
3602
}
3603
.commits-summary-commit-id {
3604
  display:inline-block;
3605
  color:#767676;
3606
}
3607
.commits-summary-commit-id > span {
3608
  color:#333333;
3609
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
3610

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
3611
.commit-changes {
3612
  margin:15px 0;
3613
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
3614

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
3615
.file-add {
3616
  color:#32CD32;
3617
  border:2px #32CD32 solid;
3618
  margin-left:3px;
3619
  font-weight:bold;
3620
  text-align:center;
3621
  font-size:13px;
3622
  padding:0;
3623
  line-height:100%;
3624
  padding:0 2px;
3625
}
3626

            
3627
.file-del {
3628
  color:red;
3629
  border:2px red solid;
3630
  margin-left:3px;
3631
  font-weight:bold;
3632
  text-align:center;
3633
  font-size:13px;
3634
  padding:0;
3635
  line-height:100%;
3636
  padding:0 2px;
3637
}
3638

            
3639
.file-modified {
3640
  color:#DAA520;
3641
  border:2px #DAA520 solid;
3642
  margin-left:3px;
3643
  font-weight:bold;
3644
  text-align:center;
3645
  font-size:13px;
3646
  padding:0;
3647
  line-height:100%;
3648
  padding:0 2px;
3649
}
3650

            
3651
.file-renamed {
3652
  color:#677a85;
3653
  border:2px #677a85 solid;
3654
  margin-left:3px;
3655
  font-weight:bold;
3656
  text-align:center;
3657
  font-size:13px;
3658
  padding:0;
3659
  line-height:100%;
3660
  padding:0 2px;
3661
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3662

            
improve commit page design
Yuki Kimoto authored on 2016-02-03
3663
.commit-diff {
3664
  margin-bottom:30px;
3665
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3666
.commit-diff > :first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3667
  border:1px solid #e6e9e6;
improve commit page design
Yuki Kimoto authored on 2016-02-02
3668
  border-radius:3px 3px 0 0;
3669
  padding:7px;
3670
  background-color: #f7f7f7;
3671
}
3672
.commit-diff-header {
3673
  overflow:hidden;
3674
}
3675
.commit-diff-header > :first-child {
3676
  float:left;
3677
  width:80%;
3678
  padding-top:6px;
3679
}
3680
.commit-diff-header > .last-child {
3681
  float:left;
3682
  width:20%;
3683
  text-align:right;
3684
}
improve commit page design
Yuki Kimoto authored on 2016-02-03
3685

            
3686
.commit-diff-body {
improve border color
Yuki Kimoto authored on 2016-09-14
3687
  border:1px solid #e6e9e6;
improve commit page design
Yuki Kimoto authored on 2016-02-03
3688
  border-top:none;
3689
  border-radius: 0 0 3px 3px;
3690
  margin-bottom:30px;
3691
}
3692
.commit-diff-body > table {
3693
  border-collapse:collapse;
3694
}
3695
.commit-diff-plain {
3696
  padding:10px;
3697
}
3698
.commit-diff-image {
3699
  background:#ddd;
3700
  text-align:center;
3701
  padding-top:40px;
3702
  padding-bottom:40px;
3703
}
improve compare page design
Yuki Kimoto authored on 2016-02-04
3704

            
3705
.compare-select {
3706
  padding:12px 10px;
3707
  margin-bottom:5px;
3708
  position:relative;
improve border color
Yuki Kimoto authored on 2016-09-14
3709
  border:1px solid #e6e9e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3710
  border-radius: 3px;
3711
  background-color: #fafafa;
3712
}
3713

            
improve compare page popup
Yuki Kimoto authored on 2016-04-28
3714
.compare-select button span {
3715
  color:#767676;
3716
}
3717

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
3718
.compare-header {
improve border color
Yuki Kimoto authored on 2016-09-14
3719
  border:1px solid #e6e9e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3720
  overflow:hidden;
3721
  border-radius: 3px;
3722
  padding:10px;
3723
  margin-top:10px;
3724
}
3725

            
3726
.compare-header li {
3727
  width:25%;
3728
  float:left;
3729
  text-align:center;
3730
}
3731
.compare-header li span {
3732
  color: #767676;
3733
}
3734
.compare-commits-date-container {
3735
  border-left:#f3f3f3 2px solid;
3736
  margin:3px 6px;
3737
  padding:10px 0;
3738
}
3739

            
3740
.compare-commits-date-container li:first-child {
3741
}
3742

            
3743
.compare-commits-date-container li {
3744
  margin-left:20px;
3745
  overflow:hidden;
3746
}
3747

            
3748
.compare-commits-author {
3749
  width:30%;
3750
  float:left;
3751
  font-weight:bold;
3752
  font-size:90%;
3753
}
3754

            
3755
.compare-commits-commit-title {
3756
  width:50%;
3757
  float:left;
3758
}
3759

            
3760
.compare-commits-commit-id {
3761
  width:20%;
3762
  float:left;
3763
  text-align:right;
3764
}
3765
.compare-commits-commit-id a {
3766
  color:#767676;
improve network page design
Yuki Kimoto authored on 2016-02-06
3767
}
3768

            
3769
.network-mybranch {
3770
  background-color: #f5f5f5;
3771
  border: 1px solid #e3e3e3;
3772
  padding:10px 10px 14px 10px;
3773
  margin-bottom:20px;
3774
  border-radius:3px;
3775
}
3776
.network-mybranch-label {
3777
  border-radius: 3px;
3778
  display: inline-block;
3779
  padding: 2px 4px;
3780
  font-size: 11.844px;
3781
  font-weight: bold;
3782
  line-height: 14px;
3783
  color: #fff;
3784
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3785
  white-space: nowrap;
3786
  vertical-align: baseline;
3787
  background-color: #3a87ad;
3788
  width:100px;
3789
  text-align:center;
3790
  margin-right:10px;
3791
}
3792

            
3793
.network-mybranch select, .network-member-branch select {
improve border color
Yuki Kimoto authored on 2016-09-14
3794
  border:1px solid #e6e9e6;
improve network page design
Yuki Kimoto authored on 2016-02-06
3795
  border-radius: 3px;
3796
  padding:6px 5px;
3797
  width:30%;
3798
}
3799

            
3800
.network-member-branch {
3801
  
3802
}
3803

            
3804
.network-member-branch li {
improve border color
Yuki Kimoto authored on 2016-09-14
3805
  border-bottom:1px solid #e6e9e6;
improve network page design
Yuki Kimoto authored on 2016-02-06
3806
  padding:10px 10px 14px 10px;
3807
  overflow:hidden;
3808
}
3809
.network-member-branch-label {
3810
  border-radius: 3px;
3811
  display: inline-block;
3812
  padding: 3px 4px;
3813
  font-size: 11.844px;
3814
  font-weight: bold;
3815
  line-height: 14px;
3816
  color: #fff;
3817
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3818
  white-space: nowrap;
3819
  vertical-align: baseline;
3820
  background-color: #468847;
3821
  width:100px;
3822
  text-align:center;
3823
  margin-right:10px;
3824
}
3825
.network-member-branch li > :first-child {
3826
  float:left;
3827
  width:80%;
3828
}
3829
.network-member-branch li > .last-child {
3830
  float:left;
3831
  width:20%;
3832
  text-align:right;
3833
}
improve graph page design
Yuki Kimoto authored on 2016-02-06
3834
.graph-diff {
3835
  width:800px;
3836
  overflow:auto;
3837
  padding-left:10px;
3838
  padding-right:10px;
3839

            
3840
  background-color: #f5f5f5;
3841
  border: 1px solid #e3e3e3;
3842
  padding:10px 10px 14px 10px;
3843
  margin-bottom:20px;
3844
  border-radius:3px;
3845
}
3846
.graph-document pre {
3847
  background:#333333;
3848
  color:white;
3849
  padding:20px 20px 0px 20px;
3850
  border-radius:3px;
3851
  margin-bottom:15px;
3852
  margin-top:3px;
3853
}
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3854

            
3855
.import-branch {
3856
  overflow:hidden;
3857
}
3858
.import-branch > .left {
3859
  float:left;
3860
  width:45%;
3861
}
3862
.import-branch > .center {
3863
  float:left;
3864
  width:10%;
3865
  text-align:center;
3866
  padding: 19px;
3867
  text-align:center;
3868
  font-size:26px;
3869
}
3870
.import-branch > .right {
3871
  float:left;
3872
  width:45%;
3873
}
3874
.import-branch select {
improve border color
Yuki Kimoto authored on 2016-09-14
3875
  border:1px solid #e6e9e6;
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3876
  border-radius: 3px;
3877
  padding:6px 5px;
3878
  width:30%;
3879
}
3880
.import-branch-from, .import-branch-to {
improve border color
Yuki Kimoto authored on 2016-09-14
3881
  border:1px solid #e6e9e6;
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3882
  border-radius:3px;
3883
  padding:25px 15px;
3884
}
3885
.import-branch-to > :first-child {
3886
  font-size:20px;
3887
  color:blue;
3888
  margin-bottom:10px;
3889
}
3890
.import-branch-from > :first-child {
3891
  font-size:20px;
3892
  color:green;
3893
  margin-bottom:10px;
3894
}
3895
.import-branch-button-panel {
3896
  margin-top:10px;
3897
}
3898
.import-branch-button-panel > div {
3899
  display:table-cell;
3900
  vertical-align:middle;
3901
  padding:0 3px;
3902
}
improve submodule design
Yuki Kimoto authored on 2016-02-08
3903

            
3904
.submodule {
3905
  
3906
}
3907
.submodule > :first-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3908
  border:1px solid #e6e9e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3909
  border-radius: 3px 3px 0 0;
3910
  padding:8px 5px;
3911
  border-bottom:none;
3912
  background-color: #f7f7f7;
3913
}
3914
.submodule > .last-child {
improve border color
Yuki Kimoto authored on 2016-09-14
3915
  border:1px solid #e6e9e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3916
  border-top:none;
3917
  font-size:16px;
3918
  padding:15px;
3919
  margin-bottom:30px;
3920
  border-radius: 0 0 3px 3px;
3921
}
improve design
Yuki Kimoto authored on 2016-02-09
3922

            
3923
pre.command-line {
3924
  background:#333333;
3925
  color:white;
3926
  padding:15px 20px 15px 20px;
3927
  border-radius:3px;
3928
  margin-bottom:15px;
3929
  margin-top:3px;
3930
}
3931
.private {
3932
  background:white;
3933
  text-align:center;
3934
  font-size:20px;
improve border color
Yuki Kimoto authored on 2016-09-14
3935
  border:1px solid #e6e9e6;
improve design
Yuki Kimoto authored on 2016-02-09
3936
  border-radius: 3px;
3937
  padding:20px 0;
3938
  color:#767676
3939
}
3940

            
3941
.not-yet-created {
3942
  background:white;
3943
  margin-bottom:30px;
improve border color
Yuki Kimoto authored on 2016-09-14
3944
  border:1px solid #e6e9e6;
improve design
Yuki Kimoto authored on 2016-02-09
3945
  border-radius: 3px;
3946
  color:#767676;
3947
  padding:15px 10px;
3948
}