gitprep / public / css / common.css /
Newer Older
3923 lines | 65.115kb
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-13
13
    border:1px solid #e6e6e6;
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-13
17
    border:1px solid #e6e6e6;
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

            
improve header title design
Yuki Kimoto authored on 2015-12-26
27
* {
28
  margin:0;
29
  padding:0;
30

            
31
  -webkit-box-sizing: border-box;
32
  -moz-box-sizing: border-box;
33
  -o-box-sizing: border-box;
34
  -ms-box-sizing: border-box;
35
  box-sizing: border-box;
36
}
37

            
cleanup css
Yuki Kimoto authored on 2016-08-23
38
.header-issue-count {
39
  background:#eee;
40
  color:#555;
41
  display:inline-block;
42
  width:18px;
43
  height:18px;
44
  border-radius:9px;
45
}
cleanup css
Yuki Kimoto authored on 2016-08-23
46
.commits-count {
47
  margin:0;
48
  border: 1px solid #ddd;
improve commit header design
Yuki Kimoto authored on 2016-09-14
49
  border-top:3px solid #6FBA2C;
50
  margin-bottom:12px;
51
  box-shadow: 0 1px 6px #d9d9d9;
cleanup css
Yuki Kimoto authored on 2016-08-23
52
}
53

            
54
.commits-count li {
55
  display:inline-block;
56
  width:25%;
57
  margin-left:0px;
58
  list-style-type: none;
59
  padding:0;
60
  text-align:center;
61
}
62
.commits-count li a {
63
  width:100%;
64
  display:block;
65
  padding:10px 0;
66
  color:#767676;
67
}
68
.commits-count li a:hover {
69
  color:#4078c0;
70
  text-decoration:none;
71
}
72

            
add issue labels btn
Yuki Kimoto authored on 2016-07-30
73
.issue-labels {
74
  padding:10px 0;
75
  border-bottom:1px solid #d8d8d8;
76
}
77
.issue-labels-title-area {
78
  overflow:hidden;
79
}
80
.issue-labels-title {
81
  font-weight:bold;
82
  float:left;
83
  width:80%;
84
}
85
.issue-labels-setting-btn {
86
  float:left;
87
  width:20%;
88
  text-align:right;
89
}
show added labels
Yuki Kimoto authored on 2016-08-01
90
.issue-labels-setting-pallet li {
91
  border-radius:3px;
92
  margin-bottom:4px;
93
  margin-top:5px;
94
  padding:4px 5px;
95
  color:#333;
96
}
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
97
.labels-new-panel {
98
  text-align:right;
99
  margin-bottom:20px;
100
  margin-top:20px;
101
}
add create label form
Yuki Kimoto authored on 2016-07-27
102
.labels-create-panel {
103
  overflow:hidden;
104
  background:#fafafa;
105
  padding:10px;
106
  margin-bottom:20px;
107
}
add color pallette
Yuki Kimoto authored on 2016-07-28
108
.labels-edit-label-color-area {
109
  display:inline-block;
110
}
implement edit area
Yuki Kimoto authored on 2016-07-27
111
.labels-edit-label-id {
112
  width:400px;
add color pallette
Yuki Kimoto authored on 2016-07-28
113
  padding:6px;
implement edit area
Yuki Kimoto authored on 2016-07-27
114
  border-radius:3px;
115
  border: 1px solid #ddd;
116
}
117
.labels-edit-label-color {
118
  width:100px;
add color pallette
Yuki Kimoto authored on 2016-07-28
119
  padding:6px;
implement edit area
Yuki Kimoto authored on 2016-07-27
120
  border-radius:3px;
121
  border: 1px solid #ddd;
add color pallette
Yuki Kimoto authored on 2016-07-28
122
  padding-left:28px;
123
}
124
.labels-edit-label-color-palette {
125
  width:15px;
126
  height:15px;
127
  display:inline-block;
128
  position:relative;
129
  top:3px;
130
  left:-95px;
implement edit area
Yuki Kimoto authored on 2016-07-27
131
}
add create label form
Yuki Kimoto authored on 2016-07-27
132
.labels-create-label-id {
133
  width:400px;
134
  padding:6px;
135
  border-radius:3px;
136
  border: 1px solid #ddd;
137
}
add color pallette
Yuki Kimoto authored on 2016-07-28
138
.labels-create-label-color-area {
139
  display:inline-block;
140
}
add create label form
Yuki Kimoto authored on 2016-07-27
141
.labels-create-label-color {
142
  width:100px;
143
  padding:6px;
144
  border-radius:3px;
145
  border: 1px solid #ddd;
add color pallette
Yuki Kimoto authored on 2016-07-28
146
  padding-left:28px;
147
}
148
.labels-create-label-color-palette {
149
  width:15px;
150
  height:15px;
151
  display:inline-block;
152
  position:relative;
153
  top:3px;
154
  left:-95px;
add create label form
Yuki Kimoto authored on 2016-07-27
155
}
156
.labels-create-left {
157
  width:70%;
158
  float:left;
159
}
160
.labels-create-right {
161
  width:30%;
162
  float:right;
163
  text-align:right;
164
}
fix label update padding
Yuki Kimoto authored on 2016-07-28
165
.labels-edit-area {
166
  padding:3px 0 31px 0;
167
}
show labels
Yuki Kimoto authored on 2016-07-26
168
.labels {
169
  
170
}
171
.labels li {
172
  border:1px #e5e5e5 solid;
173
  border-top:none;
174
  padding:7px 10px;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
175
  overflow:hidden;
show labels
Yuki Kimoto authored on 2016-07-26
176
}
177
.labels li:first-child {
178
  padding:10px 10px;
179
  border-top:1px #e5e5e5 solid;
180
  border-radius:3px 3px 0 0;
181
  background:#f8f8f8;
182
}
183

            
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
184
.labels-left {
add label update
Yuki Kimoto authored on 2016-07-29
185
  width:75%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
186
  float:left;
187
}
188
.labels-tag {
189
  border-radius:5px;
190
  display:inline-block;
191
  padding:7px 12px;
192
  font-weight:bold;
193
  border:1px solid #dddddd;
194
}
195
.labels-right {
add label update
Yuki Kimoto authored on 2016-07-29
196
  width:25%;
add labels delete edit new b...
Yuki Kimoto authored on 2016-07-27
197
  float:left;
198
  text-align:right;
199
}
200
.labels-delete {
201
  padding-top:9px;
202
  margin-right:10px;
203
  display:inline-block;
204
}
205
.labels-delete a, .labels-delete a:hover {
206
  color:#767676;
207
}
208
.labels-edit {
209
  padding-top:9px;
210
  margin-right:10px;
211
  display:inline-block;
212
}
213
.labels-edit a, .labels-edit a:hover {
214
  color:#767676;
215
}
216

            
add labels to issues
Yuki Kimoto authored on 2016-08-02
217
ul.issues-label-pallet {
218
  display:inline-block;
219
}
220
ul.issues-label-pallet li {
221
  display:inline-block;
222
  border-radius:3px;
223
  padding:1px 3px;
224
  font-size:95%;
225
}
add labels page
Yuki Kimoto authored on 2016-07-25
226
.issues-title a {
227
  color:black;
228
}
229
.issues-title a:hover {
230
  color:blue;
231
}
232

            
233
.issues-button-container {
234
  margin-bottom:10px;
235
  overflow:hidden;
236
}
237
.issues-button-container-left {
238
  float:left;
239
  width:50%;
240
}
241
.issues-button-container-right {
242
  text-align:right;
243
  float:left;
244
  width:50%;
245
}
246
.issues-labels {
improve border color
Yuki Kimoto authored on 2016-09-13
247
  border:1px solid #e6e6e6;
add labels page
Yuki Kimoto authored on 2016-07-25
248
  border-radius:3px;
249
  display:inline-block;
250
}
251
.issues-labels a {
cleanup new label
Yuki Kimoto authored on 2016-07-27
252
  padding:7px 10px;
add labels page
Yuki Kimoto authored on 2016-07-25
253
  display:inline-block;
254
  width:100%;
255
}
256
.issues-labels a {
257
  color:inherit;
258
}
259
.issues-labels a:hover {
260
  color:inherit;
261
  text-decoration:none;
262
  background:#eeeeee
263
}
264

            
265
.issues-header {
improve border color
Yuki Kimoto authored on 2016-09-13
266
  border:1px solid #e6e6e6;
add labels page
Yuki Kimoto authored on 2016-07-25
267
  background:#fafafa;
268
  padding:10px;
269
}
270
.issues-body {
improve border color
Yuki Kimoto authored on 2016-09-13
271
  border:1px solid #e6e6e6;
add labels page
Yuki Kimoto authored on 2016-07-25
272
  border-top:none;
273
  background:#fafafa;
274
  background:white;
275
}
276
.issues-body li {
277
  padding:10px;
278
  border-top: 1px solid #d8d8d8;
279
}
280
.issues-body li:first-child {
281
  border-top:none;
282
}
283
.issues-no-request {
284
  padding:30px;
285
  margin:1px auto;
286
  width:600px;
287
  text-align:center;
288
}
289

            
290
.issues-description {
291
  color:#767676;
292
}
293

            
add label apply
Yuki Kimoto authored on 2016-08-01
294
.issue-labels-popup {
improve border color
Yuki Kimoto authored on 2016-09-13
295
  border:1px solid #e6e6e6;
add label apply
Yuki Kimoto authored on 2016-08-01
296
  border-radius:3px;
297
  box-shadow: 0 0 10px rgba(0,0,0,.1);
298
  width:350px;
complete label
Yuki Kimoto authored on 2016-08-01
299
  display:none;
300
  position:absolute;
add label apply
Yuki Kimoto authored on 2016-08-01
301
}
complete label
Yuki Kimoto authored on 2016-08-01
302
.issue-labels-popup-title-area {
add label apply
Yuki Kimoto authored on 2016-08-01
303
  background:#f7f7f7;
complete label
Yuki Kimoto authored on 2016-08-01
304
  overflow:hidden;
305
  border-bottom:1px solid #d8d8d8;
306
}
307

            
308
.issue-labels-popup-title {
add label apply
Yuki Kimoto authored on 2016-08-01
309
  padding:10px;
complete label
Yuki Kimoto authored on 2016-08-01
310
  width:80%;
311
  float:left;
312
}
313
.issue-labels-popup-close-btn {
314
  width:20%;
315
  float:left;
316
  text-align:right;
317
  padding-top:10px;
318
  padding-right:10px;
add label apply
Yuki Kimoto authored on 2016-08-01
319
}
320
.issue-labels-popup-body {
complete label
Yuki Kimoto authored on 2016-08-01
321
  background:white;
add label apply
Yuki Kimoto authored on 2016-08-01
322
}
323
.issue-labels-popup-body li {
324
  padding:10px 10px;
325
  border-top:1px solid #d8d8d8;
326
  overflow:hidden;
327
  cursor:pointer;
328
}
329
.issue-labels-popup-body li:first-child {
330
  border-top:none;
331
}
332
.issue-labels-popup-check {
333
  float:left;
334
  width:20px;
335
  height:1px;
336
}
337
.issue-labels-popup-pallet {
338
  width:15px;
339
  height:15px;
340
  float:left;
341
  margin-left:2px;
342
}
343
.issue-labels-popup-pallet-id {
344
  float:left;
345
  margin-left:5px;
346
  width:50%;
347
}
imrpvoe new issue form
Yuki Kimoto authored on 2016-07-09
348
.issue-add-comment-title {
349
  margin-bottom:5px;
350
}
351

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
352
.issue-add-comment-header-tab a.disable {
353
  background:none;
354
  border:none;
355
}
356

            
add comment icon
Yuki Kimoto authored on 2016-07-23
357
.issue-add-comment-icon {
358
  display:inline-block;
359
  float:right;
360
  padding:6px;
361
}
362
.issue-add-comment-icon i {
363
  cursor:pointer;
364
}
365

            
add write prview tab
Yuki Kimoto authored on 2016-07-07
366
.issue-add-comment-header-tab a {
367
  background:white;
368
  display:block;
369
  width:100%;
370
  padding:8px 13px;
371
  color:#333;
improve border color
Yuki Kimoto authored on 2016-09-13
372
  border:1px solid #e6e6e6;
add write prview tab
Yuki Kimoto authored on 2016-07-07
373
  border-bottom:none;
374
  border-radius:3px 3px 0 0;
375
  margin-bottom:-1px;
376
}
377
.issue-add-comment-header-tab a:hover {
378
  text-decoration:none;
379
  color:inherit;
380
}
381
.issue-add-comment-header-tab {
382
  display:inline-block;
383
}
384
.issue-add-comment-body {
385
  padding:10px;
386
}
387
.issue-add-comment-header {
388
  padding:7px 10px 0 10px;
389
  background:#f7f7f7;
390
  border-bottom:1px solid #d8d8d8;
391
}
add comment form
Yuki Kimoto authored on 2016-07-06
392
.issue-add-comment-bottom {
393
  overflow:hidden;
394
}
395
.issue-panel {
396
  padding-bottom:20px;
397
  border-bottom:2px solid #f7f7f7;
398
}
399

            
400
.issue-add-comment-button-left {
401
  float:left;
402
  width:50%;
403
  color:#767676;
404
  padding-top:15px;
405
}
406
.issue-add-comment-button {
407
  float:left;
408
  width:50%;
409
  padding:10px;
410
  text-align:right;
411
}
412
.issue-add-comment {
improve border color
Yuki Kimoto authored on 2016-09-13
413
  border:1px solid #e6e6e6;
add comment form
Yuki Kimoto authored on 2016-07-06
414
  border-radius: 3px;
415
  margin-top:10px;
416
}
417
.issue-add-comment-message {
418
}
419
.issue-add-comment [type=text] {
420
  width:100%;
421
}
422
.issue-add-comment textarea {
423
  width:100%;
424
  min-height:200px;
425
  padding:10px;
426
  border-radius:3px;
427
}
add previewã€area
Yuki Kimoto authored on 2016-07-08
428
.issue-add-comment-preview {
429
  min-height:203px;
430
  display:none;
431
}
add participates
Yuki Kimoto authored on 2016-07-16
432
.issue {
433
  overflow:hidden;
434
}
add comment form
Yuki Kimoto authored on 2016-07-06
435
.issue-left {
436
  width:80%;
add participates
Yuki Kimoto authored on 2016-07-16
437
  float:left;
438
}
439
.issue-right {
440
  width:20%;
441
  float:left;
442
  padding-left:15px;
443
  color:#767676;
444
}
445

            
446
.issue-right a {
447
  color:#767676;
448
}
449
.issue-right a:hover {
450
  color:inherit;
add comment form
Yuki Kimoto authored on 2016-07-06
451
}
452

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
453
.issue-message {
454
  border-radius:3px;
455
  border:1px solid #ddd;
can add new issue message an...
Yuki Kimoto authored on 2016-07-06
456
  margin-bottom:15px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
457
}
add owner label
Yuki Kimoto authored on 2016-07-14
458
.issue-message-owner {
459
  border:1px solid #bfccd1;
460
}
461

            
462
.issue-message-owner-label {
463
  display:inline-block;
464
  border:1px solid #bfccd1;
465
  padding: 2px 5px;
466
  border-radius: 3px;
467
  color:#767676;
add issue message delete fea...
Yuki Kimoto authored on 2016-07-14
468
  margin-right:5px;
add owner label
Yuki Kimoto authored on 2016-07-14
469
}
improve issue message design
Yuki Kimoto authored on 2016-07-05
470

            
471
.issue-message-header {
472
  background:#f7f7f7;
add owner label
Yuki Kimoto authored on 2016-07-14
473
  overflow:hidden;
474
}
475

            
476
.issue-message-header-left {
477
  width:50%;
478
  float:left;
improve issue message design
Yuki Kimoto authored on 2016-07-05
479
  padding:10px 15px;
480
}
481

            
add owner label
Yuki Kimoto authored on 2016-07-14
482
.issue-message-header-right {
483
  width:50%;
484
  float:left;
485
  text-align:right;
486
  padding:7px 15px;
487
}
488
.issue-message-header-owner {
489
  background:#f2f8fa;
490
  border-bottom:1px solid #bfccd1;
491
}
492

            
improve issue message design
Yuki Kimoto authored on 2016-07-05
493
.issue-message-body {
494
  padding:15px;
495
}
496

            
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
497
.issue-title-panel {
498
  border-bottom: 1px solid #d8d8d8;
499
  padding-bottom:15px;
500
  margin-bottom:15px;
501
}
502

            
503
.issue-title {
504
  font-size:27px;
505
  margin:30px 0 15px 0;
506
}
507

            
508
.issue-open {
509
  display:inline-block;
510
  border-radius:5px;
improve issue message design
Yuki Kimoto authored on 2016-07-05
511
  padding:4px 8px;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
512
  color:white;
improve issue message design
Yuki Kimoto authored on 2016-07-05
513
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
514
  background:#6cc644;
515
}
516

            
517
.issue-close {
improve issue message design
Yuki Kimoto authored on 2016-07-05
518
  display:inline-block;
519
  border-radius:5px;
520
  padding:4px 8px;
521
  color:white;
522
  font-weight:bold;
improve issue page header de...
Yuki Kimoto authored on 2016-07-04
523
  background:#bd2c00;
524
}
525

            
improve branches page open c...
Yuki Kimoto authored on 2016-04-23
526
.branches-open {
527
  color:white;
528
  background:#6cc644;
529
  padding:5px 8px;
530
  border-radius:3px;
531
  margin-right:4px;
532
  border-radius:3px;
533
  text-align:center;
534
}
535
.branches-open:hover {
536
  color:white;
537
  text-decoration:none;
538
}
539

            
cleanup merge and push logic
Yuki Kimoto authored on 2016-04-27
540
.branches-close {
541
  color:white;
542
  background:#bd2c00;
543
  padding:5px 8px;
544
  border-radius:3px;
545
  margin-right:4px;
546
  border-radius:3px;
547
  text-align:center;
548
}
549
.branches-close:hover {
550
  color:white;
551
  text-decoration:none;
552
}
553

            
add pull request message
Yuki Kimoto authored on 2016-04-23
554
.pull-comment {
555
  border:1px solid #eee;
556
  margin-top:15px;
557
  border-radius:3px;
558
}
559
.pull-comment-header {
560
  background:#f2f8fa;
561
  padding:7px 12px;
562
  border-bottom:1px solid #eee;
563
}
564
.pull-comment-body {
565
  padding:13px 12px;
566
  
567
}
add pull request command lin...
Yuki Kimoto authored on 2016-06-01
568

            
569
.pull-command-line {
570
  border:1px solid #95c97e;
571
  border-radius:3px;
572
}
573

            
improve pull page design
Yuki Kimoto authored on 2016-04-21
574
.pull-request-form {
575
  border:1px solid #95c97e;
576
  border-radius:3px;
577
}
578
.pull-request-form-title {
579
  padding:10px;
580
}
581
.pull-request-form-description {
582
  padding:10px;
583
  color:#767676;
584
}
585
.pull-request-form-button {
586
  padding:10px;
587
  border-top:1px solid #d8d8d8;
588
}
589
.pulls-title a {
590
  color:black;
591
}
592
.pulls-title a:hover {
593
  color:blue;
594
}
595

            
create pull request list
Yuki Kimoto authored on 2016-04-20
596
.pulls-button-container {
597
  text-align:right;
598
  margin-bottom:10px;
599
}
600
.pulls-header {
improve border color
Yuki Kimoto authored on 2016-09-13
601
  border:1px solid #e6e6e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
602
  background:#fafafa;
603
  padding:10px;
604
}
605
.pulls-body {
improve border color
Yuki Kimoto authored on 2016-09-13
606
  border:1px solid #e6e6e6;
create pull request list
Yuki Kimoto authored on 2016-04-20
607
  border-top:none;
608
  background:#fafafa;
609
  background:white;
610
}
611
.pulls-body li {
612
  padding:10px;
don't show pull request on n...
Yuki Kimoto authored on 2016-04-27
613
  border-top: 1px solid #d8d8d8;
614
}
615
.pulls-body li:first-child {
616
  border-top:none;
create pull request list
Yuki Kimoto authored on 2016-04-20
617
}
618
.pulls-no-request {
619
  padding:30px;
620
  margin:1px auto;
621
  width:600px;
622
  text-align:center;
623
}
624

            
625
.pulls-description {
626
  color:#767676;
627
}
add pull reqeust link button...
Yuki Kimoto authored on 2016-08-20
628
.compare-pull-request-link {
629
  font-size:20px;
630
  margin:20px 0;
631
}
add compare across forks btn...
Yuki Kimoto authored on 2016-08-18
632
.compare-desc {
633
  color:#767676;
634
  margin-bottom:10px;
635
}
add pull request form
Yuki Kimoto authored on 2016-04-12
636
.compare-open-pull-request {
improve border color
Yuki Kimoto authored on 2016-09-13
637
  border:1px solid #e6e6e6;
add pull request form
Yuki Kimoto authored on 2016-04-12
638
  border-radius: 3px;
639
  width:80%;
640
}
641
.compare-open-pull-request-title {
642
  border-bottom:1px solid #d8d8d8;
643
  padding:10px;
644
}
645
.compare-open-pull-request-message {
646
  padding:10px;
647
}
648
.compare-open-pull-request [type=text] {
649
  width:100%;
650
}
651
.compare-open-pull-request textarea {
652
  width:100%;
653
  min-height:200px;
654
}
655
.compare-open-pull-request-button {
656
  padding:10px;
657
  text-align:right;
658
}
659

            
improve compare page
Yuki Kimoto authored on 2016-04-12
660
.compare-nothing {
improve border color
Yuki Kimoto authored on 2016-09-13
661
  border:1px solid #e6e6e6;
improve compare page
Yuki Kimoto authored on 2016-04-12
662
  border-radius: 3px;
663
  background:#fafafa;
664
  padding:25px 0 30px 0;
665
  text-align:center;
666
  line-height:150%;
667
}
668

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

            
671
input[type=text], input[type=password] {
improve border color
Yuki Kimoto authored on 2016-09-13
672
  border:1px solid #e6e6e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
673
  border-radius: 3px;
674
  padding:6px 5px;
675
}
676

            
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
677
.repositories-container {
678
  overflow:hidden;
679
}
680
.repositories-left {
681
  padding-left:10px;
682
  padding-right:25px;
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
683
  width:75%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
684
  float:left;
685
}
686
.repositories-right {
improve repository page desi...
Yuki Kimoto authored on 2016-09-14
687
  width:25%;
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
688
  float:left;
689
}
690
.repositories-user-name {
691
  font-weight:bold;
692
  font-size:22px;
693
}
694
.repositories-user-id {
695
  padding:5px 0 7px 2px;
696
  font-size:18px;
697
  color:#767676;
698
  border-bottom:1px solid #d8d8d8;
699
}
700
.repositories-user-mail {
701
  padding:5px 0;
702
}
add code tab
Yuki Kimoto authored on 2016-01-25
703
.project-tabs {
improve tab design
Yuki Kimoto authored on 2016-01-26
704
  position:relative;
705
  z-index:1;
706
  top:1px;  
add code tab
Yuki Kimoto authored on 2016-01-25
707
}
708

            
709
.project-tabs ul {
710
  overflow:hidden;
711
}
712

            
713
.project-tabs li {
714
  display:block;
715
  float:left;
improve tab design
Yuki Kimoto authored on 2016-01-26
716
  margin-bottom:0px;
717
}
718

            
719
.project-tabs li.active {
720
  background:white;
improve border color
Yuki Kimoto authored on 2016-09-13
721
  border:1px solid #e6e6e6;
add code tab
Yuki Kimoto authored on 2016-01-25
722
  border-top:3px #d26911 solid;
improve tab design
Yuki Kimoto authored on 2016-01-26
723
  border-bottom:white;
add code tab
Yuki Kimoto authored on 2016-01-25
724
  border-radius:3px 3px 0 0;
725
}
726

            
727
.project-tabs li a {
728
  display:block;
729
  width:100%;
730
  text-decoration:none;
cleanup new label
Yuki Kimoto authored on 2016-07-27
731
  padding:10px 15px 8px 15px;
add code tab
Yuki Kimoto authored on 2016-01-25
732
  text-align:center;
733
  color:#565656;
734
}
735

            
improve tab design
Yuki Kimoto authored on 2016-01-26
736
.project-tabs li.active a {
737
}
738

            
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
739
.admin-users {
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
740
  border-collapse:collapse;
741
  width:100%;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
742
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
743
.admin-users th, .admin-users td {
improve border color
Yuki Kimoto authored on 2016-09-13
744
  border:1px solid #e6e6e6;
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
745
  padding:5px;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
746
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
747
.admin-users th {
748
  font-weight:bold;
749
  text-align:center;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
750
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
751
.admin-users td {
752
  
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
753
}
754

            
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
755
.admin-users form {
756
  display:inline-block;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
757
}
758

            
improve new page design
Yuki Kimoto authored on 2016-01-21
759
.container {
760
  width: 980px;
761
  margin:0 auto;
762
}
763

            
764
.new-container {
765
  width: 800px;
766
  margin:0 auto;
767
}
768

            
769
.new-title-container {
770
  border-bottom:1px solid #e5e5e5;
771
  margin-top:40px;
772
  margin-bottom:15px;
773
}
774

            
775
.new-readme {
776
  border-bottom:1px solid #e5e5e5;
777
  margin-bottom:16px;
778
}
779

            
780
.new-readme div:first-child {
781
  font-weight:bold;
782
}
783

            
784
.new-readme div:first-child span {
785
  padding-left:5px;
786
}
787

            
788
.new-readme > .last-child {
789
  padding:0px 0px 15px 17px;
790
  color:#767676;
791
}
792

            
793
.new-title {
794
  font-weight:bold;
795
  font-size:19px;
796
  color:#333;
797
  margin-bottom:5px;
798
}
799

            
800
.new-description {
801
  color:#666;
802
  margin-bottom:8px;
803
}
804

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

            
810
.new-private li {
811
  padding:5px 0;
812
}
813

            
814
.new-private span {
815
  font-weight:bold;
816
  padding-left:5px;
817
}
818

            
819
.new-private .last-child {
820
  color:#767676;
821
  padding-left:17px;
822
}
823

            
824
.new-repository {
825
  border-bottom:1px solid #e5e5e5;
826
  margin-bottom:5px;
827
}
828

            
829
.new-repository .2th-child {
830

            
831
}
832

            
833
.new-repository .last-child {
834
  margin-bottom:10px;
835
}
836

            
837
.new-repository .last-child input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-13
838
  border:1px solid #e6e6e6;
improve new page design
Yuki Kimoto authored on 2016-01-21
839
  border-radius: 3px;
840
  padding:6px 5px;
841
  margin:5px 0;
842
  width:100%;
843
}
844

            
845
.new-repository table {
846
  margin-bottom:10px;
847
}
848

            
849
.new-repository td {
850
  padding:0px 0;
851
}
852

            
853
.new-repository input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-13
854
  border:1px solid #e6e6e6;
improve new page design
Yuki Kimoto authored on 2016-01-21
855
  border-radius: 3px;
856
  padding:6px 5px;
857
  margin:5px 0;
858
  width:350px;
859
}
860

            
improve footer design
Yuki Kimoto authored on 2015-12-25
861
body {
862
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
863
  font-size: 14px;
864
  line-height: 130%;
865
  color: #333333;
866
}
867

            
improve footer design
Yuki Kimoto authored on 2016-01-04
868
.header {
header color become green
Yuki Kimoto authored on 2016-09-13
869
  background:#5AAE08;
improve footer design
Yuki Kimoto authored on 2016-01-04
870
  border-bottom:1px solid #e5e5e5;
871
  overflow:hidden;
improve h1 color
Yuki Kimoto authored on 2016-09-13
872
  border-bottom:3px solid #479A05;
improve footer design
Yuki Kimoto authored on 2016-01-04
873
}
874

            
875
.header-left {
876
  float:left;
877
  width:50%;
878
  overflow:hidden;
879
}
880

            
881
.header-right {
882
  width:50%;
883
  overflow:hidden;
884
}
885

            
886
.title {
887
  float:left;
888
  font-size:19px;
889
  padding:14px 0 12px 0;
890
}
header color become green
Yuki Kimoto authored on 2016-09-13
891
.title a {
892
  color:white;
893
}
894
.title a:hover {
895
  color:white;
896
}
improve footer design
Yuki Kimoto authored on 2016-01-04
897

            
898
.header-search {
899
  float:left;
900
  margin-left:10px;
901
  padding:11px 0 8px 0;
902
}
903

            
904
.header-search input {
905
  padding:4px 5px;
header color become green
Yuki Kimoto authored on 2016-09-13
906
  border:1px solid white;
improve footer design
Yuki Kimoto authored on 2016-01-04
907
}
908

            
909
.header-rigth-container {
910
  float:right;
911
  overflow:hidden;
912
}
913

            
914
.header-btn-container {
915
  float:left;
916
  margin-right:4px;
917
  padding-top:9px;
918
}
919

            
920
.header-login-container {
921
  float:left;
922
  padding-top:13px;
923
}
924

            
header color become green
Yuki Kimoto authored on 2016-09-13
925
.header-login-container a {
926
  color:white;
927
}
928
.header-login-container a:hover {
929
  color:white;
930
}
931

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
932
/* Markdown */
cleanup markdown
Yuki Kimoto authored on 2016-02-13
933
.markdown-body{
934
  padding:40px 40px;
935
  
936
  font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
937
  font-size:16px;
938
  line-height:1.6;
939
  word-wrap:break-word
940
}
941
.markdown-body:before{
942
  display:table;
943
  content:"";
944
}
945
.markdown-body:after{
946
  display:table;
947
  clear:both;
948
  content:"";
949
}
950
.markdown-body>*:first-child{
951
  margin-top:0 !important
952
}
953
.markdown-body>*:last-child{
954
  margin-bottom:0 !important
955
}
956
.markdown-body a:not([href]){
957
  color:inherit;
958
  text-decoration:none;
959
}
960
.markdown-body .absent{
961
  color:#c00;
962
}
963
.markdown-body .anchor{
964
  display:inline-block;
965
  padding-right:2px;
966
  margin-left:-18px;
967
}
968
.markdown-body .anchor:focus{
969
  outline:none;
970
}
971
.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{
972
  margin-top:1em;
973
  margin-bottom:16px;
974
  font-weight:bold;
975
  line-height:1.4
976
}
977
.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{
978
  color:#000;
979
  vertical-align:middle;
980
  visibility:hidden
981
}
982
.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{
983
  text-decoration:none
984
}
985
.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{
986
  visibility:visible
987
}
988
.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{
989
  font-size:inherit
990
}
991
.markdown-body h1{
992
  padding-bottom:0.3em;
993
  font-size:2.25em;
994
  line-height:1.2;
995
  border-bottom:1px solid #eee
996
}
997
.markdown-body h1 .anchor{
998
  line-height:1
999
}
1000
.markdown-body h2{
1001
  padding-bottom:0.3em;
1002
  font-size:1.75em;
1003
  line-height:1.225;
1004
  border-bottom:1px solid #eee
1005
}
1006
.markdown-body h2 .anchor{
1007
  line-height:1
1008
}
1009
.markdown-body h3{
1010
  font-size:1.5em;
1011
  line-height:1.43
1012
}
1013
.markdown-body h3 .anchor{
1014
  line-height:1.2
1015
}
1016
.markdown-body h4{
1017
  font-size:1.25em
1018
}
1019
.markdown-body h4 .anchor{
1020
  line-height:1.2
1021
}
1022
.markdown-body h5{
1023
  font-size:1em
1024
}
1025
.markdown-body h5 .anchor{
1026
  line-height:1.1
1027
}
1028
.markdown-body h6{
1029
  font-size:1em;
1030
  color:#777
1031
}
1032
.markdown-body h6 .anchor{
1033
  line-height:1.1
1034
}
1035
.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{
1036
  margin-top:0;
1037
  margin-bottom:16px
1038
}
1039
.markdown-body hr{
1040
  height:4px;
1041
  padding:0;
1042
  margin:16px 0;
1043
  background-color:#e7e7e7;
1044
  border:0 none
1045
}
1046
.markdown-body ul,.markdown-body ol{
1047
  padding-left:2em
1048
}
1049
.markdown-body ul.no-list,.markdown-body ol.no-list{
1050
  padding:0;
1051
  list-style-type:none
1052
}
1053
.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{
1054
  margin-top:0;
1055
  margin-bottom:0
1056
}
fix list style
Yuki Kimoto authored on 2016-08-03
1057
.markdown-body ul li {
1058
  list-style:disc;
1059
}
1060

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

            
improve footer design
Yuki Kimoto authored on 2015-12-25
1276
ul {
1277
  padding: 0;
1278
  margin: 0;;
1279
}
1280

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
1281
ul li {
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
1282
  list-style:none;
1283
}
1284

            
improve footer design
Yuki Kimoto authored on 2015-12-25
1285
a {
improve link color
Yuki Kimoto authored on 2016-09-13
1286
  color: #004CCA;
improve footer design
Yuki Kimoto authored on 2015-12-25
1287
  text-decoration: none;
1288
}
1289

            
1290
a:hover {
improve link color
Yuki Kimoto authored on 2016-09-13
1291
  color: #004CCA;
improve footer design
Yuki Kimoto authored on 2015-12-25
1292
  text-decoration: underline;
1293
}
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1294

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1295
/* icon */
1296
[class^="icon-"],
1297
[class*=" icon-"] {
cleanup bootstrap
Yuki Kimoto authored on 2015-12-24
1298
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1299
  width: 14px;
1300
  height: 14px;
1301
  margin-top: 1px;
1302
  *margin-right: .3em;
1303
  line-height: 14px;
1304
  vertical-align: text-top;
cleanup icon
Yuki Kimoto authored on 2016-01-06
1305
  background-image: url("../image/glyphicons-halflings.png");
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1306
  background-position: 14px 14px;
1307
  background-repeat: no-repeat;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1308
}
1309

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1310
.icon-glass {
1311
  background-position: 0      0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1312
}
1313

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1314
.icon-music {
1315
  background-position: -24px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1316
}
1317

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1606
.icon-forward {
1607
  background-position: -336px -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-forward {
1611
  background-position: -360px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1612
}
1613

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1634
.icon-minus-sign {
1635
  background-position: -24px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1636
}
1637

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
1694
.icon-resize-small {
1695
  background-position: -384px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1696
}
1697

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1710
.icon-exclamation-sign {
1711
  background-position: 0 -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1712
}
1713

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

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

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1763
.icon-chevron-down {
1764
  background-position: -313px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1765
}
1766

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1771
.icon-shopping-cart {
1772
  background-position: -360px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1773
}
1774

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1775
.icon-folder-close {
1776
  width: 16px;
1777
  background-position: -384px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1778
}
1779

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1780
.icon-folder-open {
1781
  width: 16px;
1782
  background-position: -408px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1783
}
1784

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1785
.icon-resize-vertical {
1786
  background-position: -432px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1787
}
1788

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1789
.icon-resize-horizontal {
1790
  background-position: -456px -118px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1791
}
1792

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1793
.icon-hdd {
1794
  background-position: 0 -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1795
}
1796

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1797
.icon-bullhorn {
1798
  background-position: -24px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1799
}
1800

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1873
/* button */
1874
.close {
1875
  float: right;
1876
  font-size: 20px;
1877
  font-weight: bold;
1878
  line-height: 20px;
1879
  color: #000000;
1880
  text-shadow: 0 1px 0 #ffffff;
1881
  opacity: 0.2;
1882
  filter: alpha(opacity=20);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1883
}
1884

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1885
.close:hover,
1886
.close:focus {
1887
  color: #000000;
1888
  text-decoration: none;
1889
  cursor: pointer;
1890
  opacity: 0.4;
1891
  filter: alpha(opacity=40);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1892
}
1893

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1894
button.close {
1895
  padding: 0;
1896
  cursor: pointer;
1897
  background: transparent;
1898
  border: 0;
1899
  -webkit-appearance: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1900
}
1901

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1941
.btn:active,
1942
.btn.active {
1943
  background-color: #cccccc \9;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1944
}
1945

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1946
.btn:hover,
1947
.btn:focus {
1948
  color: #333333;
1949
  text-decoration: none;
1950
  background-position: 0 -15px;
1951
  -webkit-transition: background-position 0.1s linear;
1952
     -moz-transition: background-position 0.1s linear;
1953
       -o-transition: background-position 0.1s linear;
1954
          transition: background-position 0.1s linear;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1955
}
1956

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1957
.btn:focus {
1958
  outline: thin dotted #333;
1959
  outline: 5px auto -webkit-focus-ring-color;
1960
  outline-offset: -2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1961
}
1962

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1963
.btn.active,
1964
.btn:active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1965
  background-image: none;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1966
  outline: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1967
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1968
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1969
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1970
}
1971

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1972
.btn.disabled,
1973
.btn[disabled] {
1974
  cursor: default;
1975
  background-image: none;
1976
  opacity: 0.65;
1977
  filter: alpha(opacity=65);
1978
  -webkit-box-shadow: none;
1979
     -moz-box-shadow: none;
1980
          box-shadow: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1981
}
1982

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1983
.btn-large {
1984
  padding: 11px 19px;
1985
  font-size: 17.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1986
  border-radius: 6px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1987
}
1988

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1994
.btn-small {
1995
  padding: 2px 10px;
1996
  font-size: 11.9px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1997
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1998
}
1999

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2000
.btn-small [class^="icon-"],
2001
.btn-small [class*=" icon-"] {
2002
  margin-top: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2003
}
2004

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2005
.btn-mini [class^="icon-"],
2006
.btn-mini [class*=" icon-"] {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2007
  margin-top: -1px;
2008
}
2009

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2010
.btn-mini {
2011
  padding: 0 6px;
2012
  font-size: 10.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2013
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2014
}
2015

            
improve branch select design
Yuki Kimoto authored on 2016-01-06
2016
.btn-primary {
2017
  color: #ffffff;
2018
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2019
  background-color: #006dcc;
2020
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
2021
  background-repeat: repeat-x;
2022
  border-color: #0044cc #0044cc #002a80;
2023
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2024
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
2025
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2026
}
2027

            
2028
.btn-primary:hover,
2029
.btn-primary:focus,
2030
.btn-primary:active,
2031
.btn-primary.active,
2032
.btn-primary.disabled,
2033
.btn-primary[disabled] {
2034
  color: #ffffff;
2035
  background-color: #0044cc;
2036
}
2037

            
2038
.btn-primary:active,
2039
.btn-primary.active {
2040
  background-color: #003399 \9;
2041
}
2042

            
2043
.btn-info {
2044
  color: #ffffff;
2045
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2046
  background-color: #49afcd;
2047
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
2048
  background-repeat: repeat-x;
2049
  border-color: #2f96b4 #2f96b4 #1f6377;
2050
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2051
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
2052
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2053
}
2054

            
2055
.btn-info:hover,
2056
.btn-info:focus,
2057
.btn-info:active,
2058
.btn-info.active,
2059
.btn-info.disabled,
2060
.btn-info[disabled] {
2061
  color: #ffffff;
2062
  background-color: #2f96b4;
2063
}
2064

            
improve login page design
Yuki Kimoto authored on 2016-01-16
2065
.btn-success {
2066
  color: #ffffff;
2067
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2068
  background-color: #5bb75b;
2069
  background-image: linear-gradient(to bottom, #62c462, #51a351);
2070
  background-repeat: repeat-x;
2071
  border-color: #51a351 #51a351 #387038;
2072
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2073
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
2074
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2075
}
2076

            
2077
.btn-success:hover,
2078
.btn-success:focus,
2079
.btn-success:active,
2080
.btn-success.active,
2081
.btn-success.disabled,
2082
.btn-success[disabled] {
2083
  color: #ffffff;
2084
  background-color: #51a351;
2085
}
2086

            
2087
.btn-success:active,
2088
.btn-success.active {
2089
  background-color: #408140 \9;
2090
}
2091

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
2092
.btn-danger {
2093
  color: #ffffff;
2094
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2095
  background-color: #da4f49;
2096
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
2097
  background-repeat: repeat-x;
2098
  border-color: #bd362f #bd362f #802420;
2099
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2100
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
2101
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2102
}
2103

            
2104
.btn-danger:hover,
2105
.btn-danger:focus,
2106
.btn-danger:active,
2107
.btn-danger.active,
2108
.btn-danger.disabled,
2109
.btn-danger[disabled] {
2110
  color: #ffffff;
2111
  background-color: #bd362f;
2112
}
2113

            
2114
.btn-danger:active,
2115
.btn-danger.active {
2116
  background-color: #942a25 \9;
2117
}
2118

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2119
/* alert */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2120
.alert {
2121
  padding: 8px 35px 8px 14px;
2122
  margin-bottom: 20px;
2123
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2124
  background-color: #fcf8e3;
2125
  border: 1px solid #fbeed5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2126
  border-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2127
}
2128

            
2129
.alert,
2130
.alert h4 {
2131
  color: #c09853;
2132
}
2133

            
2134
.alert h4 {
2135
  margin: 0;
2136
}
2137

            
2138
.alert .close {
2139
  position: relative;
2140
  top: -2px;
2141
  right: -21px;
2142
  line-height: 20px;
2143
}
2144

            
2145
.alert-success {
2146
  color: #468847;
2147
  background-color: #dff0d8;
2148
  border-color: #d6e9c6;
2149
}
2150

            
2151
.alert-success h4 {
2152
  color: #468847;
2153
}
2154

            
2155
.alert-danger,
2156
.alert-error {
2157
  color: #b94a48;
2158
  background-color: #f2dede;
2159
  border-color: #eed3d7;
2160
}
2161

            
2162
.alert-danger h4,
2163
.alert-error h4 {
2164
  color: #b94a48;
2165
}
2166

            
2167
.alert-info {
2168
  color: #3a87ad;
2169
  background-color: #d9edf7;
2170
  border-color: #bce8f1;
2171
}
2172

            
2173
.alert-info h4 {
2174
  color: #3a87ad;
2175
}
2176

            
2177
.alert-block {
2178
  padding-top: 14px;
2179
  padding-bottom: 14px;
2180
}
2181

            
2182
.alert-block > p,
2183
.alert-block > ul {
2184
  margin-bottom: 0;
2185
}
2186

            
2187
.alert-block p + p {
2188
  margin-top: 5px;
2189
}
2190

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2191
/* tab box */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2192
.nav {
2193
  margin-bottom: 20px;
2194
  margin-left: 0;
2195
  list-style: none;
2196
}
2197

            
2198
.nav > li > a {
2199
  display: block;
2200
}
2201

            
2202
.nav > li > a:hover,
2203
.nav > li > a:focus {
2204
  text-decoration: none;
2205
  background-color: #eeeeee;
2206
}
2207

            
2208
.nav > li > a > img {
2209
  max-width: none;
2210
}
2211

            
2212
.nav > .pull-right {
2213
  float: right;
2214
}
2215

            
2216
.nav-tabs:before,
cleanup css
Yuki Kimoto authored on 2016-01-27
2217
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2218
  display: table;
2219
  line-height: 0;
2220
  content: "";
2221
}
2222

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2223
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2224
  clear: both;
2225
}
2226

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2227
.nav-tabs > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2228
  float: left;
2229
}
2230

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2231
.nav-tabs > li > a {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2232
  padding-right: 12px;
2233
  padding-left: 12px;
2234
  margin-right: 2px;
2235
  line-height: 14px;
2236
}
2237

            
2238
.nav-tabs {
2239
  border-bottom: 1px solid #ddd;
2240
}
2241

            
2242
.nav-tabs > li {
2243
  margin-bottom: -1px;
2244
}
2245

            
2246
.nav-tabs > li > a {
2247
  padding-top: 8px;
2248
  padding-bottom: 8px;
2249
  line-height: 20px;
2250
  border: 1px solid transparent;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2251
  border-radius: 4px 4px 0 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2252
}
2253

            
2254
.nav-tabs > li > a:hover,
2255
.nav-tabs > li > a:focus {
2256
  border-color: #eeeeee #eeeeee #dddddd;
2257
}
2258

            
2259
.nav-tabs > .active > a,
2260
.nav-tabs > .active > a:hover,
2261
.nav-tabs > .active > a:focus {
2262
  color: #555555;
2263
  cursor: default;
2264
  background-color: #ffffff;
2265
  border: 1px solid #ddd;
2266
  border-bottom-color: transparent;
2267
}
2268

            
2269
.nav-stacked > li {
2270
  float: none;
2271
}
2272

            
2273
.nav-stacked > li > a {
2274
  margin-right: 0;
2275
}
2276

            
2277
.nav-tabs.nav-stacked {
2278
  border-bottom: 0;
2279
}
2280

            
2281
.nav-tabs.nav-stacked > li > a {
2282
  border: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2283
  border-radius: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2284
}
2285

            
2286
.nav-tabs.nav-stacked > li:first-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2287
  border-top-right-radius: 4px;
2288
  border-top-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2289
}
2290

            
2291
.nav-tabs.nav-stacked > li:last-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
2292
  border-bottom-right-radius: 4px;
2293
  border-bottom-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2294
}
2295

            
2296
.nav-tabs.nav-stacked > li > a:hover,
2297
.nav-tabs.nav-stacked > li > a:focus {
2298
  z-index: 2;
2299
  border-color: #ddd;
2300
}
2301

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

            
2306

            
2307

            
2308
.nav > .dropdown.active > a:hover,
2309
.nav > .dropdown.active > a:focus {
2310
  cursor: pointer;
2311
}
2312

            
2313
.nav > li.dropdown.open.active > a:hover,
2314
.nav > li.dropdown.open.active > a:focus {
2315
  color: #ffffff;
2316
  background-color: #999999;
2317
  border-color: #999999;
2318
}
2319

            
2320
.nav li.dropdown.open .caret,
2321
.nav li.dropdown.open.active .caret,
2322
.nav li.dropdown.open a:hover .caret,
2323
.nav li.dropdown.open a:focus .caret {
2324
  border-top-color: #ffffff;
2325
  border-bottom-color: #ffffff;
2326
  opacity: 1;
2327
  filter: alpha(opacity=100);
2328
}
2329

            
2330
.tab-content {
2331
  overflow: auto;
2332
}
2333

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2334
.tab-content > .tab-pane {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2335
  display: none;
2336
}
2337

            
cleanup css
Yuki Kimoto authored on 2016-01-27
2338
.tab-content > .active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2339
  display: block;
2340
}
2341

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2342
/* bread */
2343
.breadcrumb {
improve tab design
Yuki Kimoto authored on 2016-01-26
2344
  margin-bottom:10px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2345
  list-style: none;
2346
  background-color: #f5f5f5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2347
  border-radius: 4px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2348
  font-size:18px;
improve tab design
Yuki Kimoto authored on 2016-01-26
2349
  background:none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2350
}
2351

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2352
.breadcrumb > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2353
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2354
  *display: inline;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2355
  text-shadow: 0 1px 0 #ffffff;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2356
  *zoom: 1;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2357
}
2358

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2359
.breadcrumb > li > .divider {
2360
  padding: 0 5px;
2361
  color: #ccc;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2362
}
2363

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2364
.breadcrumb > .active {
2365
  color: #999999;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2366
}
2367

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2368
/* mordal dialog box */
2369
.modal-backdrop {
2370
  position: fixed;
2371
  top: 0;
2372
  right: 0;
2373
  bottom: 0;
2374
  left: 0;
2375
  z-index: 1040;
2376
  background-color: #000000;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2377
}
2378

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2379
.modal-backdrop.fade {
2380
  opacity: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2381
}
2382

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2383
.modal-backdrop,
2384
.modal-backdrop.fade.in {
2385
  opacity: 0.8;
2386
  filter: alpha(opacity=80);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2387
}
2388

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2405
.modal.fade {
2406
  top: -25%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2407
  transition: opacity 0.3s linear, top 0.3s ease-out;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2408
}
2409

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2410
.modal.fade.in {
2411
  top: 10%;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2412
}
2413

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2414
.modal-header {
2415
  padding: 9px 15px;
2416
  border-bottom: 1px solid #eee;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2417
}
2418

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2419
.modal-header .close {
2420
  margin-top: 2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2421
}
2422

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2423
.modal-header h3 {
2424
  margin: 0;
2425
  line-height: 30px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2426
}
2427

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2428
.modal-body {
2429
  position: relative;
2430
  max-height: 400px;
2431
  padding: 15px;
2432
  overflow-y: auto;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2433
}
2434

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2435
.modal-form {
2436
  margin-bottom: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2437
}
2438

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2439
.modal-footer {
2440
  padding: 14px 15px 15px;
2441
  margin-bottom: 0;
2442
  text-align: right;
2443
  background-color: #f5f5f5;
2444
  border-top: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2445
  border-radius: 0 0 6px 6px;
2446
  box-shadow: inset 0 1px 0 #ffffff;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2447
}
2448

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2449
.modal-footer:before,
2450
.modal-footer:after {
2451
  display: table;
2452
  line-height: 0;
2453
  content: "";
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2454
}
2455

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2456
.modal-footer:after {
2457
  clear: both;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2458
}
2459

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2460
.modal-footer .btn + .btn {
2461
  margin-bottom: 0;
2462
  margin-left: 5px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2463
}
2464

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2465
.modal-footer .btn-group .btn + .btn {
2466
  margin-left: -1px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2467
}
2468

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2473
.hide {
2474
  display: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2475
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
2476
.show {
2477
  display: block;
2478
}
2479
.invisible {
2480
  visibility: hidden;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
2481
}
2482

            
cleanup css
Yuki Kimoto authored on 2015-12-26
2483
/* Plain text */
2484
.plain-text {
2485
  background             : white;
2486
  border-radius          : 1px;
2487
  border-top             : none;
2488
  border-top-left-radius : 0;
2489
  font-size              : 16px;
2490
  line-height            : 1.5em;
2491
  padding                : 27px;
2492
}
2493

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

            
2495
.topic1 {
2496
  font-size:19px;
2497
  font-weight:bold;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2498
  margin:20px 0 15px 0;
improve h1 color
Yuki Kimoto authored on 2016-09-13
2499
  color:#358D23;
2500
  border-left:5px solid #6FBA2C;
2501
  padding:4px 6px;
improve top page design
Yuki Kimoto authored on 2015-12-26
2502
}
improve markdown design
Yuki Kimoto authored on 2015-12-26
2503

            
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2504
.project-header {
2505
  background:#fafafa;
add code tab
Yuki Kimoto authored on 2016-01-25
2506
  border-bottom: none;
improve tab design
Yuki Kimoto authored on 2016-01-26
2507
  margin-bottom:12px;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2508
  overflow:hidden;
add code tab
Yuki Kimoto authored on 2016-01-25
2509
  padding:14px 0 0 0;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2510
}
2511

            
2512
.project-header-left {
2513
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2514
  width:80%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2515
  overflow:hidden;
2516
}
2517

            
2518
.project-header-right {
2519
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
2520
  width:20%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
2521
  overflow:hidden;
2522
}
2523

            
2524
.project-header-right-container {
2525
  float:right;
2526
  overflow:hidden;
2527
}
2528

            
2529
.project-header-btn-container {
2530
  float:left;
2531
  margin-right:4px;
2532
}
2533

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2534
.footer {
2535
  text-align:center;
improve header design
Yuki Kimoto authored on 2016-09-14
2536
  border-top:3px solid #479A05;
improve footer design
Yuki Kimoto authored on 2016-01-04
2537
  padding:15px 0;
complete readme design
Yuki Kimoto authored on 2016-01-06
2538
  margin-top:30px;
improve footer design
Yuki Kimoto authored on 2016-09-14
2539
  background:#5AAE08;
2540
  color:white;
2541
  font-size:16px;
2542
}
2543
.footer a {
2544
  color:white;
2545
  text-decoration:underline;
2546
}
2547
.footer a:hover {
2548
  color:white;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
2549
}
2550

            
2551
.repositories {
2552
  margin-bottom:30px;
2553
}
2554

            
2555
.repositories li {
2556
  border-top: 1px solid #d8d8d8;
2557
  overflow:hidden;
2558
  padding:10px 0;
2559
}
2560

            
2561
.repositories a:hover {
2562
  text-decoration:underline;
2563
}
2564

            
2565
.repositories-name {
2566
  float:left;
2567
  width:25%;
2568
}
2569

            
2570
.repositories-description {
2571
  float:left;
2572
  width:45%;
2573
  color:#333;
2574
  min-height:1px;
2575
}
2576

            
2577
.repositories-age {
2578
  float:left;
2579
  width:30%;
2580
  color: #767676;
2581
}
improve branch select design
Yuki Kimoto authored on 2016-01-04
2582

            
2583
.branch-select-container {
2584
  overflow:hidden;
2585
}
2586

            
2587
.branch-select-left-container {
2588
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2589
  width:20%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2590
}
2591

            
2592
.branch-select-right-container {
2593
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2594
  width:80%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
2595
}
2596

            
2597
.git-url-container {
2598
  float:right;
2599
  overflow:hidden;
2600
  display:inline-block;
2601
}
2602

            
2603
.git-url-container li {
2604
  float:left;
2605
}
2606

            
2607
.git-url-container .btn, .git-url-container .btn-small {
2608
  border-radius:0;
2609
}
2610

            
improve tab design
Yuki Kimoto authored on 2016-01-26
2611
.git-url-container input[type=text] {
improve branch select design
Yuki Kimoto authored on 2016-01-06
2612
  width:550px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2613
  padding:5px 0 5px 5px;
improve border color
Yuki Kimoto authored on 2016-09-13
2614
  border:1px solid #e6e6e6;
improve tab design
Yuki Kimoto authored on 2016-01-26
2615
  border-radius:0 3px 3px 0;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2616
}
2617

            
improve branch select design
Yuki Kimoto authored on 2016-01-04
2618
.page-path-container {
2619
  float:left;
2620
}
2621

            
2622
.donwload-zip {
2623
  margin-left:5px;
2624
  font-weight:bold;
2625
}
complete branch select desig...
Yuki Kimoto authored on 2016-01-06
2626

            
2627
.page-path {
2628
  display:inline-block;
2629
  margin-left:5px;
2630
}
2631

            
2632
.branch-select-left-container-page-path {
2633
  width:100%;
2634
}
complete readme design
Yuki Kimoto authored on 2016-01-06
2635

            
2636
.readme-header {
2637
  background-color: #f5f5f5;
2638
  border-radius: 3px 3px 0 0;
2639
  border: 1px solid #d8d8d8;
2640
  border-bottom: 0;
2641
  padding: 9px 10px 10px;
2642
  font-size: 14px;
2643
  line-height: 17px;
2644
  font-weight:bold;
2645
}
2646

            
2647
.readme-frame {
2648
  border: 1px solid #d8d8d8;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2649
}
2650

            
2651
.commit-summary {
2652
  overflow:hidden;
2653
  padding: 10px;
2654
  line-height: 20px;
2655
  background-color: #e6f1f6;
2656
  border: 1px solid #c1dce9;
2657
  border-radius: 3px;
2658
  border-bottom-right-radius: 0;
2659
  border-bottom-left-radius: 0;
2660
  margin-top:13px;
2661
}
2662

            
2663
.commit-summary-left-container {
2664
  float:left;
2665
  width:70%;
2666
}
2667

            
2668
.commit-summary-right-container {
2669
  float:right;
2670
  width:30%;
2671
  text-align:right;
2672
  color: #68777d;
2673
}
2674

            
2675
.commit-summary-author {
2676
  font-weight:bold;
2677
}
2678

            
2679
.commit-summary-left-container a {
2680
  color: #68777d;
2681
}
2682

            
2683
.commit-summary-right-container a {
2684
  color:#445055;
2685
}
improve tree design
Yuki Kimoto authored on 2016-01-07
2686

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
2687
.commit-contributor {
2688
  padding: 5px 10px;
2689
  background-color: #fff;
2690
  border: 1px solid #c1dce9;
2691
  border-top:none;
2692
  border-bottom-left-radius: 3px;
2693
  border-bottom-right-radius: 3px;
2694
  color:#68777d;
2695
}
2696

            
improve tree design
Yuki Kimoto authored on 2016-01-07
2697
.file-list li {
2698
  border: 1px solid #c1dce9;
2699
  border-top:none;
2700
  padding:7px;
2701
  overflow:hidden;
2702
}
2703

            
2704
.file-list li:last-child {
2705
  border-radius: 3px;
2706
}
2707

            
2708
.file-list-name {
2709
  width:25%;
2710
  float:left;
2711
}
2712

            
2713
.file-list-commit {
2714
  width:60%;
2715
  float:left;
2716
}
2717

            
2718
.file-list-commit a {
2719
  color:#888;
2720
}
2721

            
2722
.file-list-age {
2723
  width:15%;
2724
  float:left;
2725
  text-align:right;
2726
  color:#888
2727
}
complete blob page design
Yuki Kimoto authored on 2016-01-09
2728

            
2729
.file-header {
2730
  padding: 5px 10px;
2731
  background-color: #f7f7f7;
2732
  border: 1px solid #d8d8d8;
2733
  border-bottom:none;
2734
  border-top-left-radius: 2px;
2735
  border-top-right-radius: 2px;
2736
  margin-top:20px;
2737
  overflow:hidden;
2738
}
2739

            
2740
.file-header-left {
2741
  float:left;
2742
  width:50%;
2743
  padding-top:4px;
2744
}
2745

            
2746
.file-header-right {
2747
  float:left;
2748
  width:50%;
2749
  overflow:hidden;
2750
}
2751

            
2752
.file-header-right ul {
2753
  float:right;
2754
  overflow:hidden;
2755
}
2756

            
2757
.file-header-right li {
2758
  float:left;
2759
  margin-left:1px;
2760
  font-weight:bold;
2761
}
2762

            
2763
.blob-image {
2764
  background:#ddd;
2765
  text-align:center;
2766
  padding-top:30px;
2767
  padding-bottom:30px;
2768
  margin-bottom:30px;
2769
  border-radius: 0 0 2px 2px;
2770
}
2771

            
2772
.blob-image img {
2773
  max-width: 600px;
2774
  border: 1px solid #fff;
2775
}
2776

            
2777
.blob-raw {
2778
  font-size:16px;
2779
  background:#ddd;
2780
  text-align:center;
2781
  padding-top:30px;
2782
  padding-bottom:30px;
2783
  margin-bottom:30px;
2784
  border-radius: 0 0 2px 2px;
2785
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2786

            
2787
.commits {
2788
  margin-top:20px;
2789
}
2790

            
2791
.commits-date-container {
2792
  border-left:#f3f3f3 2px solid;
2793
  margin:3px 6px;
2794
  padding:10px 0;
2795
}
2796

            
2797
.commits-date-container li:first-child {
2798
  border-top: 1px solid #e5e5e5;
2799
}
2800

            
2801
.commits-date-container li {
2802
  margin-left:20px;
2803
  border: 1px solid #e5e5e5;
2804
  border-top:none;
2805
  padding:8px 20px 8px 15px;
2806
  overflow:hidden;
2807
}
2808

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
2809
.commit-date {
2810
  color: #767676;
2811
}
2812

            
2813
.commit-date i {
2814
  margin-right:15px;
2815
}
2816

            
improve commits page design
Yuki Kimoto authored on 2016-01-11
2817
.commit-left {
2818
  float:left;
2819
  width:70%;
2820
}
2821

            
2822
.commit-left-title a {
2823
  color:#333;
2824
}
2825

            
2826
.commit-left-author {
2827
  color: #767676;
2828
  margin-top:1px;
2829
}
add user page link from user...
Yuki Kimoto authored on 2016-04-11
2830
.commit-left-author a {
2831
  color:#767676;
2832
  font-weight:bold;
2833
  font-size:98%;
2834
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2835
.commit-right {
2836
  float:left;
2837
  width:30%;
2838
}
2839

            
2840
.commit-right-container {
2841
  float:right;
2842
}
2843

            
2844
.commit-right-commit-id {
2845
  float:left;
2846
  width:80px;
2847
}
2848

            
2849
.commit-right-commit-id a {
2850
  border: 1px solid #e5e5e5;
2851
  display:block;
2852
  width:100%;
2853
  padding:6px 10px;
2854
  text-align:center;
2855
  margin-top:3px;
2856
  border-radius:3px;
2857
}
2858

            
2859
.commit-right-commit-id a:hover {
2860
  text-decoration:none;
2861
  color:white;
2862
  background:#4169e1;
2863
}
2864

            
2865
.commit-right-browse-repository {
2866
  float:left;
2867
}
2868

            
2869
.commit-right-browse-repository a {
2870
  border: 1px solid #e5e5e5;
2871
  display:block;
2872
  width:100%;
2873
  padding:6px 5px;
2874
  margin-left:10px;
2875
  text-align:center;
2876
  font-weight:bold;
2877
  margin-top:3px;
2878
  border-radius:3px;
2879
}
2880

            
2881
.commit-right-browse-repository a:hover {
2882
  text-decoration:none;
2883
  color:white;
2884
  background:#4169e1;
2885
}
improve pagenation design
Yuki Kimoto authored on 2016-01-11
2886

            
2887
.pagenation {
2888
  overflow:hidden;
2889
  width:140px;
2890
  margin: 0 auto;
2891
}
2892

            
2893
.pagenation li {
2894
  float: left;
2895
  font-size: 13px;
2896
  font-weight: bold;
2897
  color: #4078c0;
2898
  background: #fff;
2899
  border: 1px solid #e5e5e5;
2900
  border-left:none;
2901
  width:50%;
2902
  text-align:center;
2903
}
2904

            
2905
.pagenation li a {
2906
  padding: 7px 12px;
2907
  display:block;
2908
  width:100%;
2909
}
2910

            
2911
.pagenation li span {
2912
  padding: 7px 12px;
2913
  display:block;
2914
  width:100%;
2915
  color:#d3d3d3;;
2916
  background:#fafafa;
2917
}
2918

            
2919
.pagenation li a:hover {
2920
  text-decoration:none;
2921
  background:#e5e5e5;
2922
}
2923

            
2924
.pagenation li:first-child {
2925
  border-left: 1px solid #e5e5e5;
2926
  border-radius:3px 0 0 3px;
2927
}
2928

            
2929
.pagenation li:last-child {
2930
  border-radius:0 3px 3px 0;
2931
}
improve blame page design
Yuki Kimoto authored on 2016-01-13
2932

            
2933
.blame-page-path {
2934
  overflow:hidden;
2935
}
2936

            
2937
.blame-page-path .page-path {
2938
  float:left;
2939
  margin-left:0;
2940
}
2941

            
2942
.blame-gradation {
2943
  float:right;
2944
  text-align:right:
2945
}
2946

            
2947
.blame-body-container {
2948
  overflow-x:scroll;
improve border color
Yuki Kimoto authored on 2016-09-13
2949
  border:1px solid #e6e6e6;
improve blame page design
Yuki Kimoto authored on 2016-01-13
2950
  border-radius:0 0 3px 3px;
2951
}
2952

            
2953
.blame-body {
2954
  width:100%;
2955
  border-collapse: collapse;
2956
}
2957

            
2958
.blame-body-left {
2959
  padding:3px 7px;
2960
  vertical-align:middle;
2961
  border-left:none;
2962
  border-bottom:none;
2963
}
2964

            
2965
.blame-body-center {
2966
  padding:5px 10px;
2967
  color:gray;
2968
  font-size:12px;
2969
  vertical-align:middle;
2970
  border-right:1px solid #d8d8d8;
2971
}
2972

            
2973
.blame-body-right {
2974
  padding:5px 10px;
2975
  vertical-align:middle;
2976
  white-space: nowrap;
2977
  border-right:none
2978
}
2979

            
2980
.blame-summary-container {
2981
  overflow:hidden;
2982
}
2983

            
2984
.blame-summary {
2985
  display:inline-block;
2986
  float:left;
2987
  font-weight:bold;
2988
}
2989

            
2990
.blame-commit-id {
2991
  display:inline-block;
2992
  float:right;
2993
  font-size:90%;
2994
}
2995

            
2996
.blame-author {
2997
  color:#767676;
2998
}
improve login page design
Yuki Kimoto authored on 2016-01-16
2999

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3000
.user-form {
improve border color
Yuki Kimoto authored on 2016-09-13
3001
  border:1px solid #e6e6e6;
improve login page design
Yuki Kimoto authored on 2016-01-16
3002
  border-radius: 3px;
improve login page design
Yuki Kimoto authored on 2016-01-16
3003
  padding:25px 0;
improve login page design
Yuki Kimoto authored on 2016-01-16
3004
  width:300px;
3005
  margin-left:auto;
3006
  margin-right:auto
3007
}
3008

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3009
.user-form-container {
improve login page design
Yuki Kimoto authored on 2016-01-16
3010
  width:70%;
3011
  margin:0 auto;
3012
}
3013

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3014
.user-form input[type=text], .user-form input[type=password] {
improve login page design
Yuki Kimoto authored on 2016-01-16
3015
  width:100%;
3016
  margin:5px 0;
3017
}
3018

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

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
3023
.user-form button {
improve login page design
Yuki Kimoto authored on 2016-01-16
3024
  width:100%;
3025
}
3026

            
improve login page design
Yuki Kimoto authored on 2016-01-16
3027
.header-bottom {
3028
  margin-bottom:15px;
3029
  min-height:1px;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3030
}
3031

            
improve search page design
Yuki Kimoto authored on 2016-01-23
3032
.search-top {
3033
  border-bottom:1px solid #d8d8d8;
3034
  margin-bottom:20px;
3035
  padding-bottom:20px;
3036
}
3037

            
3038
.search-top input {
3039
  margin-left:5px;
3040
}
3041

            
3042
.search-top > div:first-child {
3043
  font-size:19px;
3044
  display:inline-block;
3045
}
3046

            
3047
.search-top form {
3048
  display:inline-block;
3049
}
3050

            
3051
.search-result {
3052
  overflow:hidden;
3053
}
3054

            
3055
.search-result .left {
3056
  float:left;
3057
  width:15%;
3058
  padding-right:10px;
3059
}
3060

            
3061
.search-result .left li {
improve border color
Yuki Kimoto authored on 2016-09-13
3062
  border:1px solid #e6e6e6;
improve search page design
Yuki Kimoto authored on 2016-01-23
3063
  border-top:none;
3064
  padding:7px 10px;
3065
}
3066

            
3067
.search-result .left li:first-child {
3068
  border-top:1px solid #d8d8d8;
3069
}
3070

            
3071
.search-result .right {
3072
  float:left;
3073
  width:85%;
3074
  padding-left:15px;
3075
}
3076

            
3077
.search-result .right li {
3078
  border-bottom: 1px solid #d8d8d8;
3079
  padding:5px 0px;
3080
  margin-bottom:10px;
3081
}
3082

            
3083
.search-result .right li > div {
3084
  padding-bottom:1px;
3085
}
3086

            
3087
.search-result .right > div:first-child {
3088
   font-size:18px;
3089
   padding-bottom:10px;
3090
   margin-bottom:10px;
3091
   border-bottom:1px solid #EEEEEE;
3092
   font-weight:bold;
3093
}
3094

            
3095
.search-result .left li.active a {
3096
  color:black;
3097
  font-weight:bold;
3098
  text-decoration:none;
3099
}
3100

            
3101

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
3102
.project-settings {
3103
  overflow:hidden;
3104
}
3105

            
3106
.project-settings .left {
3107
  float:left;
3108
  width:15%;
3109
  padding-right:10px;
3110
}
3111

            
3112
.project-settings .left li {
improve border color
Yuki Kimoto authored on 2016-09-13
3113
  border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3114
  border-top:none;
3115
  padding:5px 10px;
3116
}
3117

            
3118
.project-settings .left li:first-child {
3119
  border-top:1px solid #d8d8d8;
3120
}
3121

            
3122
.project-settings .right {
3123
  float:left;
3124
  width:85%;
3125
}
3126

            
3127
.project-settings-main {
3128
  margin-bottom:20px;
3129
}
3130

            
3131
.project-settings-main li {
improve border color
Yuki Kimoto authored on 2016-09-13
3132
  border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3133
  border-top:none;
3134
  padding:10px 10px;
3135
}
3136

            
3137
.project-settings-main li:first-child {
3138
  border-top:1px solid #d8d8d8;
3139
  background: #eee;
3140
  border-radius:3px 3px 0 0;
3141
  font-size:17px;
3142
}
3143

            
3144
.project-settings-main input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-13
3145
    border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3146
    border-radius: 3px;
3147
    padding:6px 5px;
3148
    width:100%;
3149
    margin:5px 0;
3150
}
3151

            
3152
.project-settings-main input[type=checkbox] {
3153
  margin:0 5px;
3154
}
3155

            
3156
.project-settings-main select {
improve border color
Yuki Kimoto authored on 2016-09-13
3157
    border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3158
    border-radius: 3px;
3159
    padding:6px 5px;
3160
    width:30%;
3161
    margin:5px 0;
3162
}
3163

            
3164
.project-settings-danger li {
improve border color
Yuki Kimoto authored on 2016-09-13
3165
  border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3166
  border-top:none;
3167
  padding:10px 10px;
3168
}
3169

            
3170
.project-settings-danger li:first-child {
3171
  border-top:1px solid #d8d8d8;
3172
  background: #eee;
3173
  border-radius:3px 3px 0 0;
3174
  font-size:17px;
3175
  background:red;
3176
}
3177

            
3178
#delete-confirm input {
improve border color
Yuki Kimoto authored on 2016-09-13
3179
  border:1px solid #e6e6e6;
improve settings page design
Yuki Kimoto authored on 2016-01-18
3180
  border-radius: 3px;
3181
  padding:6px 5px;
3182
  margin:5px 0;
3183
  width:70%;
3184
}
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3185

            
3186
.collaboration > div:first-child {
3187
  font-size:17px;
3188
  padding:5px;
3189
  border-bottom:1px solid #d8d8d8;
3190
  font-weight:bold;
3191
  margin-bottom:10px;
3192
}
3193

            
3194
.collaboration input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-13
3195
  border:1px solid #e6e6e6;
improve collabaration design
Yuki Kimoto authored on 2016-01-19
3196
  border-radius: 3px;
3197
  padding:6px 5px;
3198
  margin:5px 0;
3199
  width:40%;
3200
}
3201

            
3202
.collaboration input[type=submit] {
3203
  padding:6px 5px;
3204
  margin:5px 0;
3205
  width:10%;
3206
}
improve settings design
Yuki Kimoto authored on 2016-01-19
3207

            
3208
.user-settings {
3209
  overflow:hidden;
3210
}
3211

            
3212
.user-settings .left {
3213
  float:left;
3214
  width:15%;
3215
  padding-right:10px;
3216
}
3217

            
3218
.user-settings .left li {
improve border color
Yuki Kimoto authored on 2016-09-13
3219
  border:1px solid #e6e6e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3220
  border-top:none;
3221
  padding:5px 10px;
3222
}
3223

            
3224
.user-settings .left li:first-child {
3225
  border-top:1px solid #d8d8d8;
3226
}
3227

            
3228
.user-settings .left li.active a {
3229
  color:black;
3230
  font-weight:bold;
3231
  text-decoration:none;
3232
}
3233

            
3234
.user-settings .right {
3235
  float:left;
3236
  width:85%;
3237
}
3238

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3239
.user-settings-container > div {
improve border color
Yuki Kimoto authored on 2016-09-13
3240
  border:1px solid #e6e6e6;
improve settings design
Yuki Kimoto authored on 2016-01-19
3241
  padding:10px 10px;
3242
  font-size:120%;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3243
  margin-bottom:20px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3244
}
3245

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3246
.user-settings-container > div:first-child {
improve settings design
Yuki Kimoto authored on 2016-01-19
3247
  border-bottom:none;
3248
  background: #eee;
3249
  border-radius:3px 3px 0 0;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3250
  font-size:14px;
improve settings design
Yuki Kimoto authored on 2016-01-19
3251
  font-weight:bold;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3252
  margin-bottom:0;
improve settings design
Yuki Kimoto authored on 2016-01-19
3253
}
3254

            
3255
.profile li {
3256
  padding:5px 5px;
3257
}
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3258

            
3259
.ssh-keys form {
3260
  margin:5px 0;
3261
}
3262

            
3263
.ssh-key-add input[type=text] {
improve border color
Yuki Kimoto authored on 2016-09-13
3264
  border:1px solid #e6e6e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3265
  border-radius: 3px;
3266
  padding:6px 5px;
3267
  margin:5px 0;
3268
  width:60%;
3269
}
3270

            
3271
.ssh-key-add textarea {
improve border color
Yuki Kimoto authored on 2016-09-13
3272
  border:1px solid #e6e6e6;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
3273
  border-radius: 3px;
3274
  padding:6px 5px;
3275
  margin:5px 0;
3276
  width:100%;
3277
  min-height:200px;
3278
}
improve search page design
Yuki Kimoto authored on 2016-01-23
3279

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

            
3337
/* Branches */
3338
.branches {
3339
  overflow:hidden;
3340
  margin-bottom:15px;
3341
}
3342
.branches > li {
improve border color
Yuki Kimoto authored on 2016-09-13
3343
  border:1px solid #e6e6e6;
improve branch design
Yuki Kimoto authored on 2016-01-27
3344
  border-top:none;
improve branches design
Yuki Kimoto authored on 2016-01-30
3345
  padding:8px 8px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3346
}
3347
.branches > li:first-child {
3348
  border-radius: 3px 3px 0 0;
3349
  border-top:1px solid #d8d8d8;
3350
  background: #f5f5f5;
3351
  text-shadow: 0 1px 0 #fff;
3352
}
3353
.branches > li:last-child {
3354
  border-radius: 0 0 3px 3px;
3355
}
3356
.branches > li > ul {
3357
  overflow:hidden;
3358
}
3359
.branches > li > ul > li:first-child {
3360
  float:left;
3361
  width:50%;
3362
  overflow:hidden;
improve branches design
Yuki Kimoto authored on 2016-01-30
3363
  padding-top:4px;
improve branch design
Yuki Kimoto authored on 2016-01-27
3364
}
3365
.branches > li > ul > li.second-child{
3366
  float:left;
3367
  width:25%;
3368
}
3369
.branches > li > ul > li.last-child {
3370
  float:left;
3371
  width:25%;
3372
  text-align:right;
3373
}
3374

            
3375
.branches-name {
3376
  display:inline-block;
3377
}
3378
.branches-name a {
3379
  color: #4078c0;
3380
  border-radius:3px;
3381
  background:rgba(209,227,237,0.5);
3382
  padding:2px 6px;
3383
}
3384

            
3385
.branches-age {
3386
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
3387
  color:#aaa;;
improve branch design
Yuki Kimoto authored on 2016-01-27
3388
}
3389

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

            
improve branches design
Yuki Kimoto authored on 2016-01-30
3395
.branches-select {
3396
  overflow:hidden;
3397
  margin:20px 0;
3398
}
3399

            
3400
.branches-select li {
improve border color
Yuki Kimoto authored on 2016-09-13
3401
  border:1px solid #e6e6e6;
improve branches design
Yuki Kimoto authored on 2016-01-30
3402
  float:left;
3403
  border-left:none;
3404
}
3405

            
3406
.branches-select li:first-child {
3407
  border-left:1px solid #d8d8d8;
3408
  border-radius:3px 0 0 3px;
3409
}
3410

            
3411
.branches-select li:last-child {
3412
  border-radius:0 3px 3px 0;
3413
}
3414

            
3415
.branches-select li a {
3416
  padding: 7px 14px;
3417
  font-weight: bold;
3418
  width:100%;
3419
  display:block;
3420
  color: #666;
3421
}
3422

            
3423
.branches-select li a:hover {
3424
  text-decoration:none;
3425
  background:#f5f5f5;
3426
}
3427

            
3428
.branches-select li.active a {
3429
  background-color: #4078c0;
3430
  color: #fff;
3431
}
3432
.branches-select li.active a {
3433
  background-color: #4078c0;
improve branches design
Yuki Kimoto authored on 2016-01-30
3434
}
3435

            
3436
.ahead-behind {
3437
  color:#767676;
3438
  font-size:12px;
3439
  border-collapse:collapse;
3440
}
3441

            
3442
.ahead-behind-behind-count {
3443
  text-align:right;
3444
  padding-right:3px;
3445
}
3446

            
3447
.ahead-behind-separate {
3448
  width:1px;
3449
  background:#c0c0c0;
3450
}
improve branch design
Yuki Kimoto authored on 2016-01-30
3451

            
3452
.branches-default {
3453
  font-size:12px;
3454
  text-align:center;
3455
  display:inline-block;
3456
  background-color: #767676;
3457
  color: #fff;
3458
  border-radius:3px;
3459
  padding:1px 3px;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3460
}
3461

            
3462
.branches .branches-overview-more {
3463
  text-align:center;
3464
  padding:0;
3465
}
3466
.branches-overview-more a {
3467
  width:100%;
3468
  display:block;
3469
  background: #f1f7fa;
3470
  padding:8px;
3471
}
3472

            
3473
.branches-overview-more a:hover {
improve tags page design
Yuki Kimoto authored on 2016-02-01
3474
  background:#e6e6fa;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
3475
}
improve tags page design
Yuki Kimoto authored on 2016-02-01
3476

            
3477
.tags {
3478
  
3479
}
3480

            
3481
.tags > li {
3482
  border-bottom:1px solid #d8d8d8;
3483
  padding:10px 0;
3484
}
3485

            
3486
.tags > li:first-child {
3487
  border-top:1px solid #d8d8d8;
3488
}
3489

            
3490
.tags-item {
3491
  overflow:hidden;
3492
}
3493

            
3494
.tags-item > li:first-child {
3495
  display:block;
3496
  width:30%;
3497
  float:left;
3498
  color:#767676;
3499
}
3500

            
3501
.tags-item > li.last-child {
3502
  display:block;
3503
  width:70%;
3504
  float:left;
3505
}
3506

            
3507
.tags-name a {
3508
  color:#333;
3509
}
3510

            
3511
.tags-links {
3512
  padding-top:3px;
3513
}
3514

            
3515
.tags-links a {
3516
  color:#767676;
3517
  font-size:13px;
improve commits page design
Yuki Kimoto authored on 2016-02-01
3518
}
3519

            
3520
.commits-summary > :first-child {
3521
  overflow:hidden;
3522
  padding: 10px;
3523
  line-height: 20px;
3524
  background-color: #e6f1f6;
3525
  border: 1px solid #c1dce9;
3526
  border-radius: 3px;
3527
  border-bottom-right-radius: 0;
3528
  border-bottom-left-radius: 0;
3529
  margin-top:13px;
3530
}
3531

            
3532
.commits-summary > .last-child {
3533
  padding: 5px 10px;
3534
  background-color: #fff;
3535
  border: 1px solid #c1dce9;
3536
  border-top:none;
3537
  border-bottom-left-radius: 3px;
3538
  border-bottom-right-radius: 3px;
3539
}
3540

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

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
3586
.commit-changes {
3587
  margin:15px 0;
3588
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
3589

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

            
3602
.file-del {
3603
  color:red;
3604
  border:2px red solid;
3605
  margin-left:3px;
3606
  font-weight:bold;
3607
  text-align:center;
3608
  font-size:13px;
3609
  padding:0;
3610
  line-height:100%;
3611
  padding:0 2px;
3612
}
3613

            
3614
.file-modified {
3615
  color:#DAA520;
3616
  border:2px #DAA520 solid;
3617
  margin-left:3px;
3618
  font-weight:bold;
3619
  text-align:center;
3620
  font-size:13px;
3621
  padding:0;
3622
  line-height:100%;
3623
  padding:0 2px;
3624
}
3625

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

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

            
3661
.commit-diff-body {
improve border color
Yuki Kimoto authored on 2016-09-13
3662
  border:1px solid #e6e6e6;
improve commit page design
Yuki Kimoto authored on 2016-02-03
3663
  border-top:none;
3664
  border-radius: 0 0 3px 3px;
3665
  margin-bottom:30px;
3666
}
3667
.commit-diff-body > table {
3668
  border-collapse:collapse;
3669
}
3670
.commit-diff-plain {
3671
  padding:10px;
3672
}
3673
.commit-diff-image {
3674
  background:#ddd;
3675
  text-align:center;
3676
  padding-top:40px;
3677
  padding-bottom:40px;
3678
}
improve compare page design
Yuki Kimoto authored on 2016-02-04
3679

            
3680
.compare-select {
3681
  padding:12px 10px;
3682
  margin-bottom:5px;
3683
  position:relative;
improve border color
Yuki Kimoto authored on 2016-09-13
3684
  border:1px solid #e6e6e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3685
  border-radius: 3px;
3686
  background-color: #fafafa;
3687
}
3688

            
improve compare page popup
Yuki Kimoto authored on 2016-04-28
3689
.compare-select button span {
3690
  color:#767676;
3691
}
3692

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
3693
.compare-header {
improve border color
Yuki Kimoto authored on 2016-09-13
3694
  border:1px solid #e6e6e6;
improve compare page design
Yuki Kimoto authored on 2016-02-04
3695
  overflow:hidden;
3696
  border-radius: 3px;
3697
  padding:10px;
3698
  margin-top:10px;
3699
}
3700

            
3701
.compare-header li {
3702
  width:25%;
3703
  float:left;
3704
  text-align:center;
3705
}
3706
.compare-header li span {
3707
  color: #767676;
3708
}
3709
.compare-commits-date-container {
3710
  border-left:#f3f3f3 2px solid;
3711
  margin:3px 6px;
3712
  padding:10px 0;
3713
}
3714

            
3715
.compare-commits-date-container li:first-child {
3716
}
3717

            
3718
.compare-commits-date-container li {
3719
  margin-left:20px;
3720
  overflow:hidden;
3721
}
3722

            
3723
.compare-commits-author {
3724
  width:30%;
3725
  float:left;
3726
  font-weight:bold;
3727
  font-size:90%;
3728
}
3729

            
3730
.compare-commits-commit-title {
3731
  width:50%;
3732
  float:left;
3733
}
3734

            
3735
.compare-commits-commit-id {
3736
  width:20%;
3737
  float:left;
3738
  text-align:right;
3739
}
3740
.compare-commits-commit-id a {
3741
  color:#767676;
improve network page design
Yuki Kimoto authored on 2016-02-06
3742
}
3743

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

            
3768
.network-mybranch select, .network-member-branch select {
improve border color
Yuki Kimoto authored on 2016-09-13
3769
  border:1px solid #e6e6e6;
improve network page design
Yuki Kimoto authored on 2016-02-06
3770
  border-radius: 3px;
3771
  padding:6px 5px;
3772
  width:30%;
3773
}
3774

            
3775
.network-member-branch {
3776
  
3777
}
3778

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

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

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

            
3879
.submodule {
3880
  
3881
}
3882
.submodule > :first-child {
improve border color
Yuki Kimoto authored on 2016-09-13
3883
  border:1px solid #e6e6e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3884
  border-radius: 3px 3px 0 0;
3885
  padding:8px 5px;
3886
  border-bottom:none;
3887
  background-color: #f7f7f7;
3888
}
3889
.submodule > .last-child {
improve border color
Yuki Kimoto authored on 2016-09-13
3890
  border:1px solid #e6e6e6;
improve submodule design
Yuki Kimoto authored on 2016-02-08
3891
  border-top:none;
3892
  font-size:16px;
3893
  padding:15px;
3894
  margin-bottom:30px;
3895
  border-radius: 0 0 3px 3px;
3896
}
improve design
Yuki Kimoto authored on 2016-02-09
3897

            
3898
pre.command-line {
3899
  background:#333333;
3900
  color:white;
3901
  padding:15px 20px 15px 20px;
3902
  border-radius:3px;
3903
  margin-bottom:15px;
3904
  margin-top:3px;
3905
}
3906
.private {
3907
  background:white;
3908
  text-align:center;
3909
  font-size:20px;
improve border color
Yuki Kimoto authored on 2016-09-13
3910
  border:1px solid #e6e6e6;
improve design
Yuki Kimoto authored on 2016-02-09
3911
  border-radius: 3px;
3912
  padding:20px 0;
3913
  color:#767676
3914
}
3915

            
3916
.not-yet-created {
3917
  background:white;
3918
  margin-bottom:30px;
improve border color
Yuki Kimoto authored on 2016-09-13
3919
  border:1px solid #e6e6e6;
improve design
Yuki Kimoto authored on 2016-02-09
3920
  border-radius: 3px;
3921
  color:#767676;
3922
  padding:15px 10px;
3923
}