gitprep / public / css / common.css /
Newer Older
3315 lines | 55.435kb
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 blame page design
Yuki Kimoto authored on 2016-01-13
13
    border:1px solid #d8d8d8;
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] 
17
    border:1px solid #d8d8d8;
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

            
add pull request form
Yuki Kimoto authored on 2016-04-12
38
.compare-open-pull-request {
39
  border:1px solid #d8d8d8;
40
  border-radius: 3px;
41
  width:80%;
42
}
43
.compare-open-pull-request-title {
44
  border-bottom:1px solid #d8d8d8;
45
  padding:10px;
46
}
47
.compare-open-pull-request-message {
48
  padding:10px;
49
}
50
.compare-open-pull-request [type=text] {
51
  width:100%;
52
}
53
.compare-open-pull-request textarea {
54
  width:100%;
55
  min-height:200px;
56
}
57
.compare-open-pull-request-button {
58
  padding:10px;
59
  text-align:right;
60
}
61

            
improve compare page
Yuki Kimoto authored on 2016-04-12
62
.compare-nothing {
63
  border:1px solid #d8d8d8;
64
  border-radius: 3px;
65
  background:#fafafa;
66
  padding:25px 0 30px 0;
67
  text-align:center;
68
  line-height:150%;
69
}
70

            
add pulls page
Yuki Kimoto authored on 2016-04-12
71
.pulls-button-container {
72
  text-align:right;
73
  margin-bottom:10px;
74
}
75
.pulls-header {
76
  border:1px solid #d8d8d8;
77
  background:#fafafa;
78
  padding:10px;
79
}
80
.pulls-body {
81
  border:1px solid #d8d8d8;
82
  border-top:none;
83
  background:#fafafa;
84
  text-align:center;
85
}
86
.pulls-no-request {
87
  padding:30px;
88
  margin:1px auto;
89
  width:600px;
90
}
91

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

            
94
input[type=text], input[type=password] {
95
  border:1px solid #d8d8d8;
96
  border-radius: 3px;
97
  padding:6px 5px;
98
}
99

            
add user name, id, mail to u...
Yuki Kimoto authored on 2016-04-07
100
.repositories-container {
101
  overflow:hidden;
102
}
103
.repositories-left {
104
  padding-top:20px;
105
  padding-left:10px;
106
  padding-right:25px;
107
  width:25%;
108
  float:left;
109
}
110
.repositories-right {
111
  width:75%;
112
  float:left;
113
}
114
.repositories-user-name {
115
  font-weight:bold;
116
  font-size:22px;
117
}
118
.repositories-user-id {
119
  padding:5px 0 7px 2px;
120
  font-size:18px;
121
  color:#767676;
122
  border-bottom:1px solid #d8d8d8;
123
}
124
.repositories-user-mail {
125
  padding:5px 0;
126
}
add code tab
Yuki Kimoto authored on 2016-01-25
127
.project-tabs {
improve tab design
Yuki Kimoto authored on 2016-01-26
128
  position:relative;
129
  z-index:1;
130
  top:1px;  
add code tab
Yuki Kimoto authored on 2016-01-25
131
}
132

            
133
.project-tabs ul {
134
  overflow:hidden;
135
}
136

            
137
.project-tabs li {
138
  display:block;
139
  float:left;
improve tab design
Yuki Kimoto authored on 2016-01-26
140
  margin-bottom:0px;
141
}
142

            
143
.project-tabs li.active {
144
  background:white;
add code tab
Yuki Kimoto authored on 2016-01-25
145
  border:1px solid #d8d8d8;
146
  border-top:3px #d26911 solid;
improve tab design
Yuki Kimoto authored on 2016-01-26
147
  border-bottom:white;
add code tab
Yuki Kimoto authored on 2016-01-25
148
  border-radius:3px 3px 0 0;
149
}
150

            
151
.project-tabs li a {
152
  display:block;
153
  width:100%;
154
  text-decoration:none;
add pulls page
Yuki Kimoto authored on 2016-04-12
155
  padding:8px 11px 7px 11px;
add code tab
Yuki Kimoto authored on 2016-01-25
156
  text-align:center;
157
  color:#565656;
158
}
159

            
improve tab design
Yuki Kimoto authored on 2016-01-26
160
.project-tabs li.active a {
add pulls page
Yuki Kimoto authored on 2016-04-12
161
  padding:5px 11px 7px 11px;
improve tab design
Yuki Kimoto authored on 2016-01-26
162
}
163

            
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
164
.admin-users {
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
165
  border-collapse:collapse;
166
  width:100%;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
167
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
168
.admin-users th, .admin-users td {
169
  border:1px solid #d8d8d8;
170
  padding:5px;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
171
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
172
.admin-users th {
173
  font-weight:bold;
174
  text-align:center;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
175
}
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
176
.admin-users td {
177
  
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
178
}
179

            
display user name and mail i...
Yuki Kimoto authored on 2016-04-07
180
.admin-users form {
181
  display:inline-block;
improve admin users page des...
Yuki Kimoto authored on 2016-01-23
182
}
183

            
improve new page design
Yuki Kimoto authored on 2016-01-21
184
.container {
185
  width: 980px;
186
  margin:0 auto;
187
}
188

            
189
.new-container {
190
  width: 800px;
191
  margin:0 auto;
192
}
193

            
194
.new-title-container {
195
  border-bottom:1px solid #e5e5e5;
196
  margin-top:40px;
197
  margin-bottom:15px;
198
}
199

            
200
.new-readme {
201
  border-bottom:1px solid #e5e5e5;
202
  margin-bottom:16px;
203
}
204

            
205
.new-readme div:first-child {
206
  font-weight:bold;
207
}
208

            
209
.new-readme div:first-child span {
210
  padding-left:5px;
211
}
212

            
213
.new-readme > .last-child {
214
  padding:0px 0px 15px 17px;
215
  color:#767676;
216
}
217

            
218
.new-title {
219
  font-weight:bold;
220
  font-size:19px;
221
  color:#333;
222
  margin-bottom:5px;
223
}
224

            
225
.new-description {
226
  color:#666;
227
  margin-bottom:8px;
228
}
229

            
230
.new-private {
231
  border-bottom:1px solid #e5e5e5;
232
  margin-bottom:16px;
233
}
234

            
235
.new-private li {
236
  padding:5px 0;
237
}
238

            
239
.new-private span {
240
  font-weight:bold;
241
  padding-left:5px;
242
}
243

            
244
.new-private .last-child {
245
  color:#767676;
246
  padding-left:17px;
247
}
248

            
249
.new-repository {
250
  border-bottom:1px solid #e5e5e5;
251
  margin-bottom:5px;
252
}
253

            
254
.new-repository .2th-child {
255

            
256
}
257

            
258
.new-repository .last-child {
259
  margin-bottom:10px;
260
}
261

            
262
.new-repository .last-child input[type=text] {
263
  border:1px solid #d8d8d8;
264
  border-radius: 3px;
265
  padding:6px 5px;
266
  margin:5px 0;
267
  width:100%;
268
}
269

            
270
.new-repository table {
271
  margin-bottom:10px;
272
}
273

            
274
.new-repository td {
275
  padding:0px 0;
276
}
277

            
278
.new-repository input[type=text] {
279
  border:1px solid #d8d8d8;
280
  border-radius: 3px;
281
  padding:6px 5px;
282
  margin:5px 0;
283
  width:350px;
284
}
285

            
improve footer design
Yuki Kimoto authored on 2015-12-25
286
body {
287
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
288
  font-size: 14px;
289
  line-height: 130%;
290
  color: #333333;
291
}
292

            
improve footer design
Yuki Kimoto authored on 2016-01-04
293
.header {
294
  background:#f5f5f5;
295
  border-bottom:1px solid #e5e5e5;
296
  overflow:hidden;
297
}
298

            
299
.header-left {
300
  float:left;
301
  width:50%;
302
  overflow:hidden;
303
}
304

            
305
.header-right {
306
  width:50%;
307
  overflow:hidden;
308
}
309

            
310
.title {
311
  float:left;
312
  font-size:19px;
313
  padding:14px 0 12px 0;
314
}
315

            
316
.header-search {
317
  float:left;
318
  margin-left:10px;
319
  padding:11px 0 8px 0;
320
}
321

            
322
.header-search input {
323
  padding:4px 5px;
324
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
325
  border: 1px solid #ccc;
326
  border-radius: 3px;
327
}
328

            
329
.header-rigth-container {
330
  float:right;
331
  overflow:hidden;
332
}
333

            
334
.header-btn-container {
335
  float:left;
336
  margin-right:4px;
337
  padding-top:9px;
338
}
339

            
340
.header-login-container {
341
  float:left;
342
  padding-top:13px;
343
}
344

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
345
/* Markdown */
cleanup markdown
Yuki Kimoto authored on 2016-02-13
346
.markdown-body{
347
  padding:40px 40px;
348
  
349
  font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
350
  font-size:16px;
351
  line-height:1.6;
352
  word-wrap:break-word
353
}
354
.markdown-body:before{
355
  display:table;
356
  content:"";
357
}
358
.markdown-body:after{
359
  display:table;
360
  clear:both;
361
  content:"";
362
}
363
.markdown-body>*:first-child{
364
  margin-top:0 !important
365
}
366
.markdown-body>*:last-child{
367
  margin-bottom:0 !important
368
}
369
.markdown-body a:not([href]){
370
  color:inherit;
371
  text-decoration:none;
372
}
373
.markdown-body .absent{
374
  color:#c00;
375
}
376
.markdown-body .anchor{
377
  display:inline-block;
378
  padding-right:2px;
379
  margin-left:-18px;
380
}
381
.markdown-body .anchor:focus{
382
  outline:none;
383
}
384
.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{
385
  margin-top:1em;
386
  margin-bottom:16px;
387
  font-weight:bold;
388
  line-height:1.4
389
}
390
.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{
391
  color:#000;
392
  vertical-align:middle;
393
  visibility:hidden
394
}
395
.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{
396
  text-decoration:none
397
}
398
.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{
399
  visibility:visible
400
}
401
.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{
402
  font-size:inherit
403
}
404
.markdown-body h1{
405
  padding-bottom:0.3em;
406
  font-size:2.25em;
407
  line-height:1.2;
408
  border-bottom:1px solid #eee
409
}
410
.markdown-body h1 .anchor{
411
  line-height:1
412
}
413
.markdown-body h2{
414
  padding-bottom:0.3em;
415
  font-size:1.75em;
416
  line-height:1.225;
417
  border-bottom:1px solid #eee
418
}
419
.markdown-body h2 .anchor{
420
  line-height:1
421
}
422
.markdown-body h3{
423
  font-size:1.5em;
424
  line-height:1.43
425
}
426
.markdown-body h3 .anchor{
427
  line-height:1.2
428
}
429
.markdown-body h4{
430
  font-size:1.25em
431
}
432
.markdown-body h4 .anchor{
433
  line-height:1.2
434
}
435
.markdown-body h5{
436
  font-size:1em
437
}
438
.markdown-body h5 .anchor{
439
  line-height:1.1
440
}
441
.markdown-body h6{
442
  font-size:1em;
443
  color:#777
444
}
445
.markdown-body h6 .anchor{
446
  line-height:1.1
447
}
448
.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{
449
  margin-top:0;
450
  margin-bottom:16px
451
}
452
.markdown-body hr{
453
  height:4px;
454
  padding:0;
455
  margin:16px 0;
456
  background-color:#e7e7e7;
457
  border:0 none
458
}
459
.markdown-body ul,.markdown-body ol{
460
  padding-left:2em
461
}
462
.markdown-body ul.no-list,.markdown-body ol.no-list{
463
  padding:0;
464
  list-style-type:none
465
}
466
.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{
467
  margin-top:0;
468
  margin-bottom:0
469
}
470
.markdown-body li>p{
471
  margin-top:16px
472
}
473
.markdown-body dl{
474
  padding:0
475
}
476
.markdown-body dl dt{
477
  padding:0;
478
  margin-top:16px;
479
  font-size:1em;
480
  font-style:italic;
481
  font-weight:bold
482
}
483
.markdown-body dl dd{
484
  padding:0 16px;
485
  margin-bottom:16px
486
}
487
.markdown-body blockquote{
488
  padding:0 15px;
489
  color:#777;
490
  border-left:4px solid #ddd
491
}
492
.markdown-body blockquote>:first-child{
493
  margin-top:0
494
}
495
.markdown-body blockquote>:last-child{
496
  margin-bottom:0
497
}
498
.markdown-body table{
499
  display:block;
500
  width:100%;
501
  overflow:auto;
502
  word-break:normal;
503
  word-break:keep-all
504
}
505
.markdown-body table th{
506
  font-weight:bold
507
}
508
.markdown-body table th,.markdown-body table td{
509
  padding:6px 13px;
510
  border:1px solid #ddd
511
}
512
.markdown-body table tr{
513
  background-color:#fff;
514
  border-top:1px solid #ccc
515
}
516
.markdown-body table tr:nth-child(2n){
517
  background-color:#f8f8f8
518
}
519
.markdown-body img{
520
  max-width:100%;
521
  box-sizing:content-box;
522
  background-color:#fff
523
}
524
.markdown-body img[align=right]{
525
  padding-left:20px
526
}
527
.markdown-body img[align=left]{
528
  padding-right:20px
529
}
530
.markdown-body .emoji{
531
  max-width:none
532
}
533
.markdown-body span.frame{
534
  display:block;
535
  overflow:hidden
536
}
537
.markdown-body span.frame>span{
538
  display:block;
539
  float:left;
540
  width:auto;
541
  padding:7px;
542
  margin:13px 0 0;
543
  overflow:hidden;
544
  border:1px solid #ddd
545
}
546
.markdown-body span.frame span img{
547
  display:block;
548
  float:left
549
}
550
.markdown-body span.frame span span{
551
  display:block;
552
  padding:5px 0 0;
553
  clear:both;
554
  color:#333
555
}
556
.markdown-body span.align-center{
557
  display:block;
558
  overflow:hidden;
559
  clear:both
560
}
561
.markdown-body span.align-center>span{
562
  display:block;
563
  margin:13px auto 0;
564
  overflow:hidden;
565
  text-align:center
566
}
567
.markdown-body span.align-center span img{
568
  margin:0 auto;
569
  text-align:center
570
}
571
.markdown-body span.align-right{
572
  display:block;
573
  overflow:hidden;
574
  clear:both
575
}
576
.markdown-body span.align-right>span{
577
  display:block;
578
  margin:13px 0 0;
579
  overflow:hidden;
580
  text-align:right
581
}
582
.markdown-body span.align-right span img{
583
  margin:0;
584
  text-align:right
585
}
586
.markdown-body span.float-left{
587
  display:block;
588
  float:left;
589
  margin-right:13px;
590
  overflow:hidden
591
}
592
.markdown-body span.float-left span{
593
  margin:13px 0 0
594
}
595
.markdown-body span.float-right{
596
  display:block;
597
  float:right;
598
  margin-left:13px;
599
  overflow:hidden
600
}
601
.markdown-body span.float-right>span{
602
  display:block;
603
  margin:13px auto 0;
604
  overflow:hidden;
605
  text-align:right
606
}
607
.markdown-body code,.markdown-body tt{
608
  padding:0;
609
  padding-top:0.2em;
610
  padding-bottom:0.2em;
611
  margin:0;
612
  font-size:85%;
613
  background-color:rgba(0,0,0,0.04);
614
  border-radius:3px
615
}
616
.markdown-body code:before,.markdown-body code:after,.markdown-body tt:before,.markdown-body tt:after{
617
  letter-spacing:-0.2em;
618
  content:"\00a0"
619
}
620
.markdown-body code br,.markdown-body tt br{
621
  display:none
622
}
623
.markdown-body del code{
624
  text-decoration:inherit
625
}
626
.markdown-body pre>code{
627
  padding:0;
628
  margin:0;
629
  font-size:100%;
630
  word-break:normal;
631
  white-space:pre;
632
  background:transparent;
633
  border:0
634
}
635
.markdown-body .highlight{
636
  margin-bottom:16px
637
}
638
.markdown-body .highlight pre,.markdown-body pre{
639
  padding:16px;
640
  overflow:auto;
641
  font-size:85%;
642
  line-height:1.45;
643
  background-color:#f7f7f7;
644
  border-radius:3px
645
}
646
.markdown-body .highlight pre{
647
  margin-bottom:0;
648
  word-break:normal
649
}
650
.markdown-body pre{
651
  word-wrap:normal
652
}
653
.markdown-body pre code,.markdown-body pre tt{
654
  display:inline;
655
  max-width:initial;
656
  padding:0;
657
  margin:0;
658
  overflow:initial;
659
  line-height:inherit;
660
  word-wrap:normal;
661
  background-color:transparent;
662
  border:0
663
}
664
.markdown-body pre code:before,.markdown-body pre code:after,.markdown-body pre tt:before,.markdown-body pre tt:after{
665
  content:normal
666
}
667
.markdown-body kbd{
668
  display:inline-block;
669
  padding:3px 5px;
670
  font-size:11px;
671
  line-height:10px;
672
  color:#555;
673
  vertical-align:middle;
674
  background-color:#fcfcfc;
675
  border:solid 1px #ccc;
676
  border-bottom-color:#bbb;
677
  border-radius:3px;
678
  box-shadow:inset 0 -1px 0 #bbb
679
}
680
.markdown-body blockquote{
681
  padding:0 0 0 40px;
682
  border:0 none
683
}
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
684

            
improve footer design
Yuki Kimoto authored on 2015-12-25
685
ul {
686
  padding: 0;
687
  margin: 0;;
688
}
689

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
690
ul li {
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
691
  list-style:none;
692
}
693

            
improve footer design
Yuki Kimoto authored on 2015-12-25
694
a {
695
  color: #0088cc;
696
  text-decoration: none;
697
}
698

            
699
a:hover {
700
  color: #005580;
701
  text-decoration: underline;
702
}
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
703

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
704
/* icon */
705
[class^="icon-"],
706
[class*=" icon-"] {
cleanup bootstrap
Yuki Kimoto authored on 2015-12-24
707
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
708
  width: 14px;
709
  height: 14px;
710
  margin-top: 1px;
711
  *margin-right: .3em;
712
  line-height: 14px;
713
  vertical-align: text-top;
cleanup icon
Yuki Kimoto authored on 2016-01-06
714
  background-image: url("../image/glyphicons-halflings.png");
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
715
  background-position: 14px 14px;
716
  background-repeat: no-repeat;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
717
}
718

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
719
.icon-glass {
720
  background-position: 0      0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
721
}
722

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
723
.icon-music {
724
  background-position: -24px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
725
}
726

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
727
.icon-search {
728
  background-position: -48px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
729
}
730

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
731
.icon-envelope {
732
  background-position: -72px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
733
}
734

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
735
.icon-heart {
736
  background-position: -96px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
737
}
738

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
739
.icon-star {
740
  background-position: -120px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
741
}
742

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
743
.icon-star-empty {
744
  background-position: -144px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
745
}
746

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
747
.icon-user {
748
  background-position: -168px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
749
}
750

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
751
.icon-film {
752
  background-position: -192px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
753
}
754

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
755
.icon-th-large {
756
  background-position: -216px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
757
}
758

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
759
.icon-th {
760
  background-position: -240px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
761
}
762

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
763
.icon-th-list {
764
  background-position: -264px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
765
}
766

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
767
.icon-ok {
768
  background-position: -288px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
769
}
770

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
771
.icon-remove {
772
  background-position: -312px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
773
}
774

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
775
.icon-zoom-in {
776
  background-position: -336px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
777
}
778

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
779
.icon-zoom-out {
780
  background-position: -360px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
781
}
782

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
783
.icon-off {
784
  background-position: -384px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
785
}
786

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
787
.icon-signal {
788
  background-position: -408px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
789
}
790

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
791
.icon-cog {
792
  background-position: -432px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
793
}
794

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
795
.icon-trash {
796
  background-position: -456px 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
797
}
798

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
799
.icon-home {
800
  background-position: 0 -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
801
}
802

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
803
.icon-file {
804
  background-position: -24px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
805
}
806

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
807
.icon-time {
808
  background-position: -48px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
809
}
810

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
811
.icon-road {
812
  background-position: -72px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
813
}
814

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
815
.icon-download-alt {
816
  background-position: -96px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
817
}
818

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
819
.icon-download {
820
  background-position: -120px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
821
}
822

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
823
.icon-upload {
824
  background-position: -144px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
825
}
826

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
827
.icon-inbox {
828
  background-position: -168px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
829
}
830

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
831
.icon-play-circle {
832
  background-position: -192px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
833
}
834

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
835
.icon-repeat {
836
  background-position: -216px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
837
}
838

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
839
.icon-refresh {
840
  background-position: -240px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
841
}
842

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
843
.icon-list-alt {
844
  background-position: -264px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
845
}
846

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
847
.icon-lock {
848
  background-position: -287px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
849
}
850

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
851
.icon-flag {
852
  background-position: -312px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
853
}
854

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
855
.icon-headphones {
856
  background-position: -336px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
857
}
858

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
859
.icon-volume-off {
860
  background-position: -360px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
861
}
862

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
863
.icon-volume-down {
864
  background-position: -384px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
865
}
866

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
867
.icon-volume-up {
868
  background-position: -408px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
869
}
870

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
871
.icon-qrcode {
872
  background-position: -432px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
873
}
874

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
875
.icon-barcode {
876
  background-position: -456px -24px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
877
}
878

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
879
.icon-tag {
880
  background-position: 0 -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
881
}
882

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
883
.icon-tags {
884
  background-position: -25px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
885
}
886

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
887
.icon-book {
888
  background-position: -48px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
889
}
890

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
891
.icon-bookmark {
892
  background-position: -72px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
893
}
894

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
895
.icon-print {
896
  background-position: -96px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
897
}
898

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
899
.icon-camera {
900
  background-position: -120px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
901
}
902

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
903
.icon-font {
904
  background-position: -144px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
905
}
906

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
907
.icon-bold {
908
  background-position: -167px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
909
}
910

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
911
.icon-italic {
912
  background-position: -192px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
913
}
914

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
915
.icon-text-height {
916
  background-position: -216px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
917
}
918

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
919
.icon-text-width {
920
  background-position: -240px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
921
}
922

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
923
.icon-align-left {
924
  background-position: -264px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
925
}
926

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
927
.icon-align-center {
928
  background-position: -288px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
929
}
930

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
931
.icon-align-right {
932
  background-position: -312px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
933
}
934

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
935
.icon-align-justify {
936
  background-position: -336px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
937
}
938

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
939
.icon-list {
940
  background-position: -360px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
941
}
942

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
943
.icon-indent-left {
944
  background-position: -384px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
945
}
946

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
947
.icon-indent-right {
948
  background-position: -408px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
949
}
950

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
951
.icon-facetime-video {
952
  background-position: -432px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
953
}
954

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
955
.icon-picture {
956
  background-position: -456px -48px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
957
}
958

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
959
.icon-pencil {
960
  background-position: 0 -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
961
}
962

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
963
.icon-map-marker {
964
  background-position: -24px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
965
}
966

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
967
.icon-adjust {
968
  background-position: -48px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
969
}
970

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
971
.icon-tint {
972
  background-position: -72px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
973
}
974

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
975
.icon-edit {
976
  background-position: -96px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
977
}
978

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
979
.icon-share {
980
  background-position: -120px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
981
}
982

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
983
.icon-check {
984
  background-position: -144px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
985
}
986

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
987
.icon-move {
988
  background-position: -168px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
989
}
990

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
991
.icon-step-backward {
992
  background-position: -192px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
993
}
994

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
995
.icon-fast-backward {
996
  background-position: -216px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
997
}
998

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
999
.icon-backward {
1000
  background-position: -240px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1001
}
1002

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1003
.icon-play {
1004
  background-position: -264px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1005
}
1006

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1007
.icon-pause {
1008
  background-position: -288px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1009
}
1010

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1011
.icon-stop {
1012
  background-position: -312px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1013
}
1014

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1015
.icon-forward {
1016
  background-position: -336px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1017
}
1018

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1019
.icon-fast-forward {
1020
  background-position: -360px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1021
}
1022

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1023
.icon-step-forward {
1024
  background-position: -384px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1025
}
1026

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1027
.icon-eject {
1028
  background-position: -408px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1029
}
1030

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1031
.icon-chevron-left {
1032
  background-position: -432px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1033
}
1034

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1035
.icon-chevron-right {
1036
  background-position: -456px -72px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1037
}
1038

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1039
.icon-plus-sign {
1040
  background-position: 0 -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1041
}
1042

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1043
.icon-minus-sign {
1044
  background-position: -24px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1045
}
1046

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1047
.icon-remove-sign {
1048
  background-position: -48px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1049
}
1050

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1051
.icon-ok-sign {
1052
  background-position: -72px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1053
}
1054

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1055
.icon-question-sign {
1056
  background-position: -96px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1057
}
1058

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1059
.icon-info-sign {
1060
  background-position: -120px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1061
}
1062

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1063
.icon-screenshot {
1064
  background-position: -144px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1065
}
1066

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1067
.icon-remove-circle {
1068
  background-position: -168px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1069
}
1070

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1071
.icon-ok-circle {
1072
  background-position: -192px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1073
}
1074

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1075
.icon-ban-circle {
1076
  background-position: -216px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1077
}
1078

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1079
.icon-arrow-left {
1080
  background-position: -240px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1081
}
1082

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1083
.icon-arrow-right {
1084
  background-position: -264px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1085
}
1086

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1087
.icon-arrow-up {
1088
  background-position: -289px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1089
}
1090

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1091
.icon-arrow-down {
1092
  background-position: -312px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1093
}
1094

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1095
.icon-share-alt {
1096
  background-position: -336px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1097
}
1098

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1099
.icon-resize-full {
1100
  background-position: -360px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1101
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1102

            
1103
.icon-resize-small {
1104
  background-position: -384px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1105
}
1106

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1107
.icon-plus {
1108
  background-position: -408px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1109
}
1110

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1111
.icon-minus {
1112
  background-position: -433px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1113
}
1114

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1115
.icon-asterisk {
1116
  background-position: -456px -96px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1117
}
1118

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1119
.icon-exclamation-sign {
1120
  background-position: 0 -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1121
}
1122

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1123
.icon-gift {
1124
  background-position: -24px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1125
}
1126

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1127
.icon-leaf {
1128
  background-position: -48px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1129
}
1130

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1131
.icon-fire {
1132
  background-position: -72px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1133
}
1134

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1135
.icon-eye-open {
1136
  background-position: -96px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1137
}
1138

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1139
.icon-eye-close {
1140
  background-position: -120px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1141
}
1142

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1143
.icon-warning-sign {
1144
  background-position: -144px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1145
}
1146

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1147
.icon-plane {
1148
  background-position: -168px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1149
}
1150

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1151
.icon-calendar {
1152
  background-position: -192px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1153
}
1154

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1155
.icon-random {
1156
  width: 16px;
1157
  background-position: -216px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1158
}
1159

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1160
.icon-comment {
1161
  background-position: -240px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1162
}
1163

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1164
.icon-magnet {
1165
  background-position: -264px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1166
}
1167

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1168
.icon-chevron-up {
1169
  background-position: -288px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1170
}
1171

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1172
.icon-chevron-down {
1173
  background-position: -313px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1174
}
1175

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1176
.icon-retweet {
1177
  background-position: -336px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1178
}
1179

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1180
.icon-shopping-cart {
1181
  background-position: -360px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1182
}
1183

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1184
.icon-folder-close {
1185
  width: 16px;
1186
  background-position: -384px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1187
}
1188

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1189
.icon-folder-open {
1190
  width: 16px;
1191
  background-position: -408px -120px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1192
}
1193

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1194
.icon-resize-vertical {
1195
  background-position: -432px -119px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1196
}
1197

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1198
.icon-resize-horizontal {
1199
  background-position: -456px -118px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1200
}
1201

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1202
.icon-hdd {
1203
  background-position: 0 -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1204
}
1205

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1206
.icon-bullhorn {
1207
  background-position: -24px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1208
}
1209

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1210
.icon-bell {
1211
  background-position: -48px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1212
}
1213

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1214
.icon-certificate {
1215
  background-position: -72px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1216
}
1217

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1218
.icon-thumbs-up {
1219
  background-position: -96px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1220
}
1221

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1222
.icon-thumbs-down {
1223
  background-position: -120px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1224
}
1225

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1226
.icon-hand-right {
1227
  background-position: -144px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1228
}
1229

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1230
.icon-hand-left {
1231
  background-position: -168px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1232
}
1233

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1234
.icon-hand-up {
1235
  background-position: -192px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1236
}
1237

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1238
.icon-hand-down {
1239
  background-position: -216px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1240
}
1241

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1242
.icon-circle-arrow-right {
1243
  background-position: -240px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1244
}
1245

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1246
.icon-circle-arrow-left {
1247
  background-position: -264px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1248
}
1249

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1250
.icon-circle-arrow-up {
1251
  background-position: -288px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1252
}
1253

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1254
.icon-circle-arrow-down {
1255
  background-position: -312px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1256
}
1257

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1258
.icon-globe {
1259
  background-position: -336px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1260
}
1261

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1262
.icon-wrench {
1263
  background-position: -360px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1264
}
1265

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1266
.icon-tasks {
1267
  background-position: -384px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1268
}
1269

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1270
.icon-filter {
1271
  background-position: -408px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1272
}
1273

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1274
.icon-briefcase {
1275
  background-position: -432px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1276
}
1277

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1278
.icon-fullscreen {
1279
  background-position: -456px -144px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1280
}
1281

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1282
/* button */
1283
.close {
1284
  float: right;
1285
  font-size: 20px;
1286
  font-weight: bold;
1287
  line-height: 20px;
1288
  color: #000000;
1289
  text-shadow: 0 1px 0 #ffffff;
1290
  opacity: 0.2;
1291
  filter: alpha(opacity=20);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1292
}
1293

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1294
.close:hover,
1295
.close:focus {
1296
  color: #000000;
1297
  text-decoration: none;
1298
  cursor: pointer;
1299
  opacity: 0.4;
1300
  filter: alpha(opacity=40);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1301
}
1302

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1303
button.close {
1304
  padding: 0;
1305
  cursor: pointer;
1306
  background: transparent;
1307
  border: 0;
1308
  -webkit-appearance: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1309
}
1310

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1311
.btn {
1312
  display: inline-block;
1313
  padding: 4px 12px;
1314
  margin-bottom: 0;
1315
  font-size: 14px;
1316
  line-height: 20px;
1317
  color: #333333;
1318
  text-align: center;
1319
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1320
  vertical-align: middle;
1321
  cursor: pointer;
1322
  background-color: #f5f5f5;
1323
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1324
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1325
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1326
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1327
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
1328
  background-repeat: repeat-x;
1329
  border: 1px solid #cccccc;
1330
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1331
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1332
  border-bottom-color: #b3b3b3;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1333
  border-radius: 4px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1334
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
1335
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1336
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1337
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1338
          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
1339
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1340
.btn:hover,
1341
.btn:focus,
1342
.btn:active,
1343
.btn.active,
1344
.btn.disabled,
1345
.btn[disabled] {
1346
  color: #333333;
1347
  background-color: #e6e6e6;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1348
}
1349

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1350
.btn:active,
1351
.btn.active {
1352
  background-color: #cccccc \9;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1353
}
1354

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1355
.btn:hover,
1356
.btn:focus {
1357
  color: #333333;
1358
  text-decoration: none;
1359
  background-position: 0 -15px;
1360
  -webkit-transition: background-position 0.1s linear;
1361
     -moz-transition: background-position 0.1s linear;
1362
       -o-transition: background-position 0.1s linear;
1363
          transition: background-position 0.1s linear;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1364
}
1365

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1366
.btn:focus {
1367
  outline: thin dotted #333;
1368
  outline: 5px auto -webkit-focus-ring-color;
1369
  outline-offset: -2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1370
}
1371

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1372
.btn.active,
1373
.btn:active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1374
  background-image: none;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1375
  outline: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1376
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1377
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1378
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
1379
}
1380

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1381
.btn.disabled,
1382
.btn[disabled] {
1383
  cursor: default;
1384
  background-image: none;
1385
  opacity: 0.65;
1386
  filter: alpha(opacity=65);
1387
  -webkit-box-shadow: none;
1388
     -moz-box-shadow: none;
1389
          box-shadow: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1390
}
1391

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1392
.btn-large {
1393
  padding: 11px 19px;
1394
  font-size: 17.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1395
  border-radius: 6px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1396
}
1397

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

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1403
.btn-small {
1404
  padding: 2px 10px;
1405
  font-size: 11.9px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1406
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1407
}
1408

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1409
.btn-small [class^="icon-"],
1410
.btn-small [class*=" icon-"] {
1411
  margin-top: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1412
}
1413

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1414
.btn-mini [class^="icon-"],
1415
.btn-mini [class*=" icon-"] {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1416
  margin-top: -1px;
1417
}
1418

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1419
.btn-mini {
1420
  padding: 0 6px;
1421
  font-size: 10.5px;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1422
  border-radius: 3px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1423
}
1424

            
improve branch select design
Yuki Kimoto authored on 2016-01-06
1425
.btn-primary {
1426
  color: #ffffff;
1427
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1428
  background-color: #006dcc;
1429
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
1430
  background-repeat: repeat-x;
1431
  border-color: #0044cc #0044cc #002a80;
1432
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1433
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
1434
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1435
}
1436

            
1437
.btn-primary:hover,
1438
.btn-primary:focus,
1439
.btn-primary:active,
1440
.btn-primary.active,
1441
.btn-primary.disabled,
1442
.btn-primary[disabled] {
1443
  color: #ffffff;
1444
  background-color: #0044cc;
1445
}
1446

            
1447
.btn-primary:active,
1448
.btn-primary.active {
1449
  background-color: #003399 \9;
1450
}
1451

            
1452
.btn-info {
1453
  color: #ffffff;
1454
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1455
  background-color: #49afcd;
1456
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
1457
  background-repeat: repeat-x;
1458
  border-color: #2f96b4 #2f96b4 #1f6377;
1459
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1460
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
1461
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1462
}
1463

            
1464
.btn-info:hover,
1465
.btn-info:focus,
1466
.btn-info:active,
1467
.btn-info.active,
1468
.btn-info.disabled,
1469
.btn-info[disabled] {
1470
  color: #ffffff;
1471
  background-color: #2f96b4;
1472
}
1473

            
improve login page design
Yuki Kimoto authored on 2016-01-16
1474
.btn-success {
1475
  color: #ffffff;
1476
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1477
  background-color: #5bb75b;
1478
  background-image: linear-gradient(to bottom, #62c462, #51a351);
1479
  background-repeat: repeat-x;
1480
  border-color: #51a351 #51a351 #387038;
1481
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1482
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
1483
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1484
}
1485

            
1486
.btn-success:hover,
1487
.btn-success:focus,
1488
.btn-success:active,
1489
.btn-success.active,
1490
.btn-success.disabled,
1491
.btn-success[disabled] {
1492
  color: #ffffff;
1493
  background-color: #51a351;
1494
}
1495

            
1496
.btn-success:active,
1497
.btn-success.active {
1498
  background-color: #408140 \9;
1499
}
1500

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
1501
.btn-danger {
1502
  color: #ffffff;
1503
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1504
  background-color: #da4f49;
1505
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
1506
  background-repeat: repeat-x;
1507
  border-color: #bd362f #bd362f #802420;
1508
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1509
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
1510
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1511
}
1512

            
1513
.btn-danger:hover,
1514
.btn-danger:focus,
1515
.btn-danger:active,
1516
.btn-danger.active,
1517
.btn-danger.disabled,
1518
.btn-danger[disabled] {
1519
  color: #ffffff;
1520
  background-color: #bd362f;
1521
}
1522

            
1523
.btn-danger:active,
1524
.btn-danger.active {
1525
  background-color: #942a25 \9;
1526
}
1527

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1528
/* alert */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1529
.alert {
1530
  padding: 8px 35px 8px 14px;
1531
  margin-bottom: 20px;
1532
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1533
  background-color: #fcf8e3;
1534
  border: 1px solid #fbeed5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1535
  border-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1536
}
1537

            
1538
.alert,
1539
.alert h4 {
1540
  color: #c09853;
1541
}
1542

            
1543
.alert h4 {
1544
  margin: 0;
1545
}
1546

            
1547
.alert .close {
1548
  position: relative;
1549
  top: -2px;
1550
  right: -21px;
1551
  line-height: 20px;
1552
}
1553

            
1554
.alert-success {
1555
  color: #468847;
1556
  background-color: #dff0d8;
1557
  border-color: #d6e9c6;
1558
}
1559

            
1560
.alert-success h4 {
1561
  color: #468847;
1562
}
1563

            
1564
.alert-danger,
1565
.alert-error {
1566
  color: #b94a48;
1567
  background-color: #f2dede;
1568
  border-color: #eed3d7;
1569
}
1570

            
1571
.alert-danger h4,
1572
.alert-error h4 {
1573
  color: #b94a48;
1574
}
1575

            
1576
.alert-info {
1577
  color: #3a87ad;
1578
  background-color: #d9edf7;
1579
  border-color: #bce8f1;
1580
}
1581

            
1582
.alert-info h4 {
1583
  color: #3a87ad;
1584
}
1585

            
1586
.alert-block {
1587
  padding-top: 14px;
1588
  padding-bottom: 14px;
1589
}
1590

            
1591
.alert-block > p,
1592
.alert-block > ul {
1593
  margin-bottom: 0;
1594
}
1595

            
1596
.alert-block p + p {
1597
  margin-top: 5px;
1598
}
1599

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1600
/* tab box */
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1601
.nav {
1602
  margin-bottom: 20px;
1603
  margin-left: 0;
1604
  list-style: none;
1605
}
1606

            
1607
.nav > li > a {
1608
  display: block;
1609
}
1610

            
1611
.nav > li > a:hover,
1612
.nav > li > a:focus {
1613
  text-decoration: none;
1614
  background-color: #eeeeee;
1615
}
1616

            
1617
.nav > li > a > img {
1618
  max-width: none;
1619
}
1620

            
1621
.nav > .pull-right {
1622
  float: right;
1623
}
1624

            
1625
.nav-tabs:before,
cleanup css
Yuki Kimoto authored on 2016-01-27
1626
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1627
  display: table;
1628
  line-height: 0;
1629
  content: "";
1630
}
1631

            
cleanup css
Yuki Kimoto authored on 2016-01-27
1632
.nav-tabs:after {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1633
  clear: both;
1634
}
1635

            
cleanup css
Yuki Kimoto authored on 2016-01-27
1636
.nav-tabs > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1637
  float: left;
1638
}
1639

            
cleanup css
Yuki Kimoto authored on 2016-01-27
1640
.nav-tabs > li > a {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1641
  padding-right: 12px;
1642
  padding-left: 12px;
1643
  margin-right: 2px;
1644
  line-height: 14px;
1645
}
1646

            
1647
.nav-tabs {
1648
  border-bottom: 1px solid #ddd;
1649
}
1650

            
1651
.nav-tabs > li {
1652
  margin-bottom: -1px;
1653
}
1654

            
1655
.nav-tabs > li > a {
1656
  padding-top: 8px;
1657
  padding-bottom: 8px;
1658
  line-height: 20px;
1659
  border: 1px solid transparent;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1660
  border-radius: 4px 4px 0 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1661
}
1662

            
1663
.nav-tabs > li > a:hover,
1664
.nav-tabs > li > a:focus {
1665
  border-color: #eeeeee #eeeeee #dddddd;
1666
}
1667

            
1668
.nav-tabs > .active > a,
1669
.nav-tabs > .active > a:hover,
1670
.nav-tabs > .active > a:focus {
1671
  color: #555555;
1672
  cursor: default;
1673
  background-color: #ffffff;
1674
  border: 1px solid #ddd;
1675
  border-bottom-color: transparent;
1676
}
1677

            
1678
.nav-stacked > li {
1679
  float: none;
1680
}
1681

            
1682
.nav-stacked > li > a {
1683
  margin-right: 0;
1684
}
1685

            
1686
.nav-tabs.nav-stacked {
1687
  border-bottom: 0;
1688
}
1689

            
1690
.nav-tabs.nav-stacked > li > a {
1691
  border: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1692
  border-radius: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1693
}
1694

            
1695
.nav-tabs.nav-stacked > li:first-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
1696
  border-top-right-radius: 4px;
1697
  border-top-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1698
}
1699

            
1700
.nav-tabs.nav-stacked > li:last-child > a {
improve branch select design
Yuki Kimoto authored on 2016-01-04
1701
  border-bottom-right-radius: 4px;
1702
  border-bottom-left-radius: 4px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1703
}
1704

            
1705
.nav-tabs.nav-stacked > li > a:hover,
1706
.nav-tabs.nav-stacked > li > a:focus {
1707
  z-index: 2;
1708
  border-color: #ddd;
1709
}
1710

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

            
1715

            
1716

            
1717
.nav > .dropdown.active > a:hover,
1718
.nav > .dropdown.active > a:focus {
1719
  cursor: pointer;
1720
}
1721

            
1722
.nav > li.dropdown.open.active > a:hover,
1723
.nav > li.dropdown.open.active > a:focus {
1724
  color: #ffffff;
1725
  background-color: #999999;
1726
  border-color: #999999;
1727
}
1728

            
1729
.nav li.dropdown.open .caret,
1730
.nav li.dropdown.open.active .caret,
1731
.nav li.dropdown.open a:hover .caret,
1732
.nav li.dropdown.open a:focus .caret {
1733
  border-top-color: #ffffff;
1734
  border-bottom-color: #ffffff;
1735
  opacity: 1;
1736
  filter: alpha(opacity=100);
1737
}
1738

            
1739
.tab-content {
1740
  overflow: auto;
1741
}
1742

            
cleanup css
Yuki Kimoto authored on 2016-01-27
1743
.tab-content > .tab-pane {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1744
  display: none;
1745
}
1746

            
cleanup css
Yuki Kimoto authored on 2016-01-27
1747
.tab-content > .active {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1748
  display: block;
1749
}
1750

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1751
/* bread */
1752
.breadcrumb {
improve tab design
Yuki Kimoto authored on 2016-01-26
1753
  margin-bottom:10px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1754
  list-style: none;
1755
  background-color: #f5f5f5;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1756
  border-radius: 4px;
improve tab design
Yuki Kimoto authored on 2016-01-26
1757
  font-size:18px;
improve tab design
Yuki Kimoto authored on 2016-01-26
1758
  background:none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1759
}
1760

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1761
.breadcrumb > li {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1762
  display: inline-block;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1763
  *display: inline;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1764
  text-shadow: 0 1px 0 #ffffff;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1765
  *zoom: 1;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1766
}
1767

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1768
.breadcrumb > li > .divider {
1769
  padding: 0 5px;
1770
  color: #ccc;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1771
}
1772

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1773
.breadcrumb > .active {
1774
  color: #999999;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1775
}
1776

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1777
/* mordal dialog box */
1778
.modal-backdrop {
1779
  position: fixed;
1780
  top: 0;
1781
  right: 0;
1782
  bottom: 0;
1783
  left: 0;
1784
  z-index: 1040;
1785
  background-color: #000000;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1786
}
1787

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1788
.modal-backdrop.fade {
1789
  opacity: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1790
}
1791

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1792
.modal-backdrop,
1793
.modal-backdrop.fade.in {
1794
  opacity: 0.8;
1795
  filter: alpha(opacity=80);
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1796
}
1797

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1798
.modal {
1799
  position: fixed;
1800
  top: 10%;
1801
  left: 50%;
1802
  z-index: 1050;
1803
  width: 560px;
1804
  margin-left: -280px;
1805
  background-color: #ffffff;
1806
  border: 1px solid #999;
1807
  border: 1px solid rgba(0, 0, 0, 0.3);
improve branch select design
Yuki Kimoto authored on 2016-01-04
1808
  border-radius: 6px;
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1809
  outline: none;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1810
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1811
  background-clip: padding-box;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1812
}
1813

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1814
.modal.fade {
1815
  top: -25%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1816
  transition: opacity 0.3s linear, top 0.3s ease-out;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1817
}
1818

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1819
.modal.fade.in {
1820
  top: 10%;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1821
}
1822

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1823
.modal-header {
1824
  padding: 9px 15px;
1825
  border-bottom: 1px solid #eee;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1826
}
1827

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1828
.modal-header .close {
1829
  margin-top: 2px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1830
}
1831

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1832
.modal-header h3 {
1833
  margin: 0;
1834
  line-height: 30px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1835
}
1836

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1837
.modal-body {
1838
  position: relative;
1839
  max-height: 400px;
1840
  padding: 15px;
1841
  overflow-y: auto;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1842
}
1843

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1844
.modal-form {
1845
  margin-bottom: 0;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1846
}
1847

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1848
.modal-footer {
1849
  padding: 14px 15px 15px;
1850
  margin-bottom: 0;
1851
  text-align: right;
1852
  background-color: #f5f5f5;
1853
  border-top: 1px solid #ddd;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1854
  border-radius: 0 0 6px 6px;
1855
  box-shadow: inset 0 1px 0 #ffffff;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1856
}
1857

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1858
.modal-footer:before,
1859
.modal-footer:after {
1860
  display: table;
1861
  line-height: 0;
1862
  content: "";
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1863
}
1864

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1865
.modal-footer:after {
1866
  clear: both;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1867
}
1868

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1869
.modal-footer .btn + .btn {
1870
  margin-bottom: 0;
1871
  margin-left: 5px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1872
}
1873

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1874
.modal-footer .btn-group .btn + .btn {
1875
  margin-left: -1px;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1876
}
1877

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1878
.modal-footer .btn-block + .btn-block {
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1879
  margin-left: 0;
1880
}
1881

            
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1882
.hide {
1883
  display: none;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1884
}
cleanup bootstrap
Yuki Kimoto authored on 2015-12-25
1885
.show {
1886
  display: block;
1887
}
1888
.invisible {
1889
  visibility: hidden;
added bootstrap framework
Yuki Kimoto authored on 2013-03-11
1890
}
1891

            
cleanup css
Yuki Kimoto authored on 2015-12-26
1892
/* Plain text */
1893
.plain-text {
1894
  background             : white;
1895
  border-radius          : 1px;
1896
  border-top             : none;
1897
  border-top-left-radius : 0;
1898
  font-size              : 16px;
1899
  line-height            : 1.5em;
1900
  padding                : 27px;
1901
}
1902

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

            
1904
.topic1 {
1905
  font-size:19px;
1906
  font-weight:bold;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
1907
  margin:20px 0 15px 0;
improve top page design
Yuki Kimoto authored on 2015-12-26
1908
}
improve markdown design
Yuki Kimoto authored on 2015-12-26
1909

            
improve project header desig...
Yuki Kimoto authored on 2015-12-26
1910
.project-header {
1911
  background:#fafafa;
add code tab
Yuki Kimoto authored on 2016-01-25
1912
  border-bottom: none;
improve tab design
Yuki Kimoto authored on 2016-01-26
1913
  margin-bottom:12px;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
1914
  overflow:hidden;
add code tab
Yuki Kimoto authored on 2016-01-25
1915
  padding:14px 0 0 0;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
1916
}
1917

            
1918
.project-header-left {
1919
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
1920
  width:80%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
1921
  overflow:hidden;
1922
}
1923

            
1924
.project-header-right {
1925
  float:left;
cleanup import_branch
Yuki Kimoto authored on 2016-04-16
1926
  width:20%;
improve project header desig...
Yuki Kimoto authored on 2015-12-26
1927
  overflow:hidden;
1928
}
1929

            
1930
.project-header-right-container {
1931
  float:right;
1932
  overflow:hidden;
1933
}
1934

            
1935
.project-header-btn-container {
1936
  float:left;
1937
  margin-right:4px;
1938
}
1939

            
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
1940
.footer {
1941
  text-align:center;
improve footer design
Yuki Kimoto authored on 2016-01-04
1942
  border-top:1px solid #e5e5e5;
improve footer design
Yuki Kimoto authored on 2016-01-04
1943
  padding:15px 0;
complete readme design
Yuki Kimoto authored on 2016-01-06
1944
  margin-top:30px;
improve repositories page de...
Yuki Kimoto authored on 2015-12-29
1945
}
1946

            
1947
.repositories {
1948
  margin-bottom:30px;
1949
}
1950

            
1951
.repositories li {
1952
  border-top: 1px solid #d8d8d8;
1953
  overflow:hidden;
1954
  padding:10px 0;
1955
}
1956

            
1957
.repositories a:hover {
1958
  text-decoration:underline;
1959
}
1960

            
1961
.repositories-name {
1962
  float:left;
1963
  width:25%;
1964
}
1965

            
1966
.repositories-description {
1967
  float:left;
1968
  width:45%;
1969
  color:#333;
1970
  min-height:1px;
1971
}
1972

            
1973
.repositories-age {
1974
  float:left;
1975
  width:30%;
1976
  color: #767676;
1977
}
improve branch select design
Yuki Kimoto authored on 2016-01-04
1978

            
1979
.branch-select-container {
1980
  overflow:hidden;
1981
}
1982

            
1983
.branch-select-left-container {
1984
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
1985
  width:20%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1986
}
1987

            
1988
.branch-select-right-container {
1989
  float:left;
improve branch select design
Yuki Kimoto authored on 2016-01-06
1990
  width:80%;
improve branch select design
Yuki Kimoto authored on 2016-01-04
1991
}
1992

            
1993
.git-url-container {
1994
  float:right;
1995
  overflow:hidden;
1996
  display:inline-block;
1997
}
1998

            
1999
.git-url-container li {
2000
  float:left;
2001
}
2002

            
2003
.git-url-container .btn, .git-url-container .btn-small {
2004
  border-radius:0;
2005
}
2006

            
improve tab design
Yuki Kimoto authored on 2016-01-26
2007
.git-url-container input[type=text] {
improve branch select design
Yuki Kimoto authored on 2016-01-06
2008
  width:550px;
improve tree design
Yuki Kimoto authored on 2016-01-07
2009
  padding:5px 0 5px 5px;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2010
  border:1px solid #d8d8d8;
improve tab design
Yuki Kimoto authored on 2016-01-26
2011
  border-radius:0 3px 3px 0;
improve branch select design
Yuki Kimoto authored on 2016-01-06
2012
}
2013

            
improve branch select design
Yuki Kimoto authored on 2016-01-04
2014
.page-path-container {
2015
  float:left;
2016
}
2017

            
2018
.donwload-zip {
2019
  margin-left:5px;
2020
  font-weight:bold;
2021
}
complete branch select desig...
Yuki Kimoto authored on 2016-01-06
2022

            
2023
.page-path {
2024
  display:inline-block;
2025
  margin-left:5px;
2026
}
2027

            
2028
.branch-select-left-container-page-path {
2029
  width:100%;
2030
}
complete readme design
Yuki Kimoto authored on 2016-01-06
2031

            
2032
.readme-header {
2033
  background-color: #f5f5f5;
2034
  border-radius: 3px 3px 0 0;
2035
  border: 1px solid #d8d8d8;
2036
  border-bottom: 0;
2037
  padding: 9px 10px 10px;
2038
  font-size: 14px;
2039
  line-height: 17px;
2040
  font-weight:bold;
2041
}
2042

            
2043
.readme-frame {
2044
  border: 1px solid #d8d8d8;
improve tree header design
Yuki Kimoto authored on 2016-01-06
2045
}
2046

            
2047
.commit-summary {
2048
  overflow:hidden;
2049
  padding: 10px;
2050
  line-height: 20px;
2051
  background-color: #e6f1f6;
2052
  border: 1px solid #c1dce9;
2053
  border-radius: 3px;
2054
  border-bottom-right-radius: 0;
2055
  border-bottom-left-radius: 0;
2056
  margin-top:13px;
2057
}
2058

            
2059
.commit-summary-left-container {
2060
  float:left;
2061
  width:70%;
2062
}
2063

            
2064
.commit-summary-right-container {
2065
  float:right;
2066
  width:30%;
2067
  text-align:right;
2068
  color: #68777d;
2069
}
2070

            
2071
.commit-summary-author {
2072
  font-weight:bold;
2073
}
2074

            
2075
.commit-summary-left-container a {
2076
  color: #68777d;
2077
}
2078

            
2079
.commit-summary-right-container a {
2080
  color:#445055;
2081
}
improve tree design
Yuki Kimoto authored on 2016-01-07
2082

            
complete blob page design
Yuki Kimoto authored on 2016-01-09
2083
.commit-contributor {
2084
  padding: 5px 10px;
2085
  background-color: #fff;
2086
  border: 1px solid #c1dce9;
2087
  border-top:none;
2088
  border-bottom-left-radius: 3px;
2089
  border-bottom-right-radius: 3px;
2090
  color:#68777d;
2091
}
2092

            
improve tree design
Yuki Kimoto authored on 2016-01-07
2093
.file-list li {
2094
  border: 1px solid #c1dce9;
2095
  border-top:none;
2096
  padding:7px;
2097
  overflow:hidden;
2098
}
2099

            
2100
.file-list li:last-child {
2101
  border-radius: 3px;
2102
}
2103

            
2104
.file-list-name {
2105
  width:25%;
2106
  float:left;
2107
}
2108

            
2109
.file-list-commit {
2110
  width:60%;
2111
  float:left;
2112
}
2113

            
2114
.file-list-commit a {
2115
  color:#888;
2116
}
2117

            
2118
.file-list-age {
2119
  width:15%;
2120
  float:left;
2121
  text-align:right;
2122
  color:#888
2123
}
complete blob page design
Yuki Kimoto authored on 2016-01-09
2124

            
2125
.file-header {
2126
  padding: 5px 10px;
2127
  background-color: #f7f7f7;
2128
  border: 1px solid #d8d8d8;
2129
  border-bottom:none;
2130
  border-top-left-radius: 2px;
2131
  border-top-right-radius: 2px;
2132
  margin-top:20px;
2133
  overflow:hidden;
2134
}
2135

            
2136
.file-header-left {
2137
  float:left;
2138
  width:50%;
2139
  padding-top:4px;
2140
}
2141

            
2142
.file-header-right {
2143
  float:left;
2144
  width:50%;
2145
  overflow:hidden;
2146
}
2147

            
2148
.file-header-right ul {
2149
  float:right;
2150
  overflow:hidden;
2151
}
2152

            
2153
.file-header-right li {
2154
  float:left;
2155
  margin-left:1px;
2156
  font-weight:bold;
2157
}
2158

            
2159
.blob-image {
2160
  background:#ddd;
2161
  text-align:center;
2162
  padding-top:30px;
2163
  padding-bottom:30px;
2164
  margin-bottom:30px;
2165
  border-radius: 0 0 2px 2px;
2166
}
2167

            
2168
.blob-image img {
2169
  max-width: 600px;
2170
  border: 1px solid #fff;
2171
}
2172

            
2173
.blob-raw {
2174
  font-size:16px;
2175
  background:#ddd;
2176
  text-align:center;
2177
  padding-top:30px;
2178
  padding-bottom:30px;
2179
  margin-bottom:30px;
2180
  border-radius: 0 0 2px 2px;
2181
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2182

            
2183
.commits {
2184
  margin-top:20px;
2185
}
2186

            
2187
.commits-date-container {
2188
  border-left:#f3f3f3 2px solid;
2189
  margin:3px 6px;
2190
  padding:10px 0;
2191
}
2192

            
2193
.commits-date-container li:first-child {
2194
  border-top: 1px solid #e5e5e5;
2195
}
2196

            
2197
.commits-date-container li {
2198
  margin-left:20px;
2199
  border: 1px solid #e5e5e5;
2200
  border-top:none;
2201
  padding:8px 20px 8px 15px;
2202
  overflow:hidden;
2203
}
2204

            
improve compare page design
Yuki Kimoto authored on 2016-02-04
2205
.commit-date {
2206
  color: #767676;
2207
}
2208

            
2209
.commit-date i {
2210
  margin-right:15px;
2211
}
2212

            
improve commits page design
Yuki Kimoto authored on 2016-01-11
2213
.commit-left {
2214
  float:left;
2215
  width:70%;
2216
}
2217

            
2218
.commit-left-title a {
2219
  color:#333;
2220
}
2221

            
2222
.commit-left-author {
2223
  color: #767676;
2224
  margin-top:1px;
2225
}
add user page link from user...
Yuki Kimoto authored on 2016-04-11
2226
.commit-left-author a {
2227
  color:#767676;
2228
  font-weight:bold;
2229
  font-size:98%;
2230
}
improve commits page design
Yuki Kimoto authored on 2016-01-11
2231
.commit-right {
2232
  float:left;
2233
  width:30%;
2234
}
2235

            
2236
.commit-right-container {
2237
  float:right;
2238
}
2239

            
2240
.commit-right-commit-id {
2241
  float:left;
2242
  width:80px;
2243
}
2244

            
2245
.commit-right-commit-id a {
2246
  border: 1px solid #e5e5e5;
2247
  display:block;
2248
  width:100%;
2249
  padding:6px 10px;
2250
  text-align:center;
2251
  margin-top:3px;
2252
  border-radius:3px;
2253
}
2254

            
2255
.commit-right-commit-id a:hover {
2256
  text-decoration:none;
2257
  color:white;
2258
  background:#4169e1;
2259
}
2260

            
2261
.commit-right-browse-repository {
2262
  float:left;
2263
}
2264

            
2265
.commit-right-browse-repository a {
2266
  border: 1px solid #e5e5e5;
2267
  display:block;
2268
  width:100%;
2269
  padding:6px 5px;
2270
  margin-left:10px;
2271
  text-align:center;
2272
  font-weight:bold;
2273
  margin-top:3px;
2274
  border-radius:3px;
2275
}
2276

            
2277
.commit-right-browse-repository a:hover {
2278
  text-decoration:none;
2279
  color:white;
2280
  background:#4169e1;
2281
}
improve pagenation design
Yuki Kimoto authored on 2016-01-11
2282

            
2283
.pagenation {
2284
  overflow:hidden;
2285
  width:140px;
2286
  margin: 0 auto;
2287
}
2288

            
2289
.pagenation li {
2290
  float: left;
2291
  font-size: 13px;
2292
  font-weight: bold;
2293
  color: #4078c0;
2294
  background: #fff;
2295
  border: 1px solid #e5e5e5;
2296
  border-left:none;
2297
  width:50%;
2298
  text-align:center;
2299
}
2300

            
2301
.pagenation li a {
2302
  padding: 7px 12px;
2303
  display:block;
2304
  width:100%;
2305
}
2306

            
2307
.pagenation li span {
2308
  padding: 7px 12px;
2309
  display:block;
2310
  width:100%;
2311
  color:#d3d3d3;;
2312
  background:#fafafa;
2313
}
2314

            
2315
.pagenation li a:hover {
2316
  text-decoration:none;
2317
  background:#e5e5e5;
2318
}
2319

            
2320
.pagenation li:first-child {
2321
  border-left: 1px solid #e5e5e5;
2322
  border-radius:3px 0 0 3px;
2323
}
2324

            
2325
.pagenation li:last-child {
2326
  border-radius:0 3px 3px 0;
2327
}
improve blame page design
Yuki Kimoto authored on 2016-01-13
2328

            
2329
.blame-page-path {
2330
  overflow:hidden;
2331
}
2332

            
2333
.blame-page-path .page-path {
2334
  float:left;
2335
  margin-left:0;
2336
}
2337

            
2338
.blame-gradation {
2339
  float:right;
2340
  text-align:right:
2341
}
2342

            
2343
.blame-body-container {
2344
  overflow-x:scroll;
2345
  border:1px solid #d8d8d8;
2346
  border-radius:0 0 3px 3px;
2347
}
2348

            
2349
.blame-body {
2350
  width:100%;
2351
  border-collapse: collapse;
2352
}
2353

            
2354
.blame-body-left {
2355
  padding:3px 7px;
2356
  vertical-align:middle;
2357
  border-left:none;
2358
  border-bottom:none;
2359
}
2360

            
2361
.blame-body-center {
2362
  padding:5px 10px;
2363
  color:gray;
2364
  font-size:12px;
2365
  vertical-align:middle;
2366
  border-right:1px solid #d8d8d8;
2367
}
2368

            
2369
.blame-body-right {
2370
  padding:5px 10px;
2371
  vertical-align:middle;
2372
  white-space: nowrap;
2373
  border-right:none
2374
}
2375

            
2376
.blame-summary-container {
2377
  overflow:hidden;
2378
}
2379

            
2380
.blame-summary {
2381
  display:inline-block;
2382
  float:left;
2383
  font-weight:bold;
2384
}
2385

            
2386
.blame-commit-id {
2387
  display:inline-block;
2388
  float:right;
2389
  font-size:90%;
2390
}
2391

            
2392
.blame-author {
2393
  color:#767676;
2394
}
improve login page design
Yuki Kimoto authored on 2016-01-16
2395

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
2396
.user-form {
improve login page design
Yuki Kimoto authored on 2016-01-16
2397
  border:1px solid #d8d8d8;
2398
  border-radius: 3px;
improve login page design
Yuki Kimoto authored on 2016-01-16
2399
  padding:25px 0;
improve login page design
Yuki Kimoto authored on 2016-01-16
2400
  width:300px;
2401
  margin-left:auto;
2402
  margin-right:auto
2403
}
2404

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
2405
.user-form-container {
improve login page design
Yuki Kimoto authored on 2016-01-16
2406
  width:70%;
2407
  margin:0 auto;
2408
}
2409

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
2410
.user-form input[type=text], .user-form input[type=password] {
improve login page design
Yuki Kimoto authored on 2016-01-16
2411
  width:100%;
2412
  margin:5px 0;
2413
}
2414

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

            
improve admin page design
Yuki Kimoto authored on 2016-01-23
2419
.user-form button {
improve login page design
Yuki Kimoto authored on 2016-01-16
2420
  width:100%;
2421
}
2422

            
improve login page design
Yuki Kimoto authored on 2016-01-16
2423
.header-bottom {
2424
  margin-bottom:15px;
2425
  min-height:1px;
improve settings page design
Yuki Kimoto authored on 2016-01-18
2426
}
2427

            
improve search page design
Yuki Kimoto authored on 2016-01-23
2428
.search-top {
2429
  border-bottom:1px solid #d8d8d8;
2430
  margin-bottom:20px;
2431
  padding-bottom:20px;
2432
}
2433

            
2434
.search-top input {
2435
  margin-left:5px;
2436
}
2437

            
2438
.search-top > div:first-child {
2439
  font-size:19px;
2440
  display:inline-block;
2441
}
2442

            
2443
.search-top form {
2444
  display:inline-block;
2445
}
2446

            
2447
.search-result {
2448
  overflow:hidden;
2449
}
2450

            
2451
.search-result .left {
2452
  float:left;
2453
  width:15%;
2454
  padding-right:10px;
2455
}
2456

            
2457
.search-result .left li {
2458
  border:1px solid #d8d8d8;
2459
  border-top:none;
2460
  padding:7px 10px;
2461
}
2462

            
2463
.search-result .left li:first-child {
2464
  border-top:1px solid #d8d8d8;
2465
}
2466

            
2467
.search-result .right {
2468
  float:left;
2469
  width:85%;
2470
  padding-left:15px;
2471
}
2472

            
2473
.search-result .right li {
2474
  border-bottom: 1px solid #d8d8d8;
2475
  padding:5px 0px;
2476
  margin-bottom:10px;
2477
}
2478

            
2479
.search-result .right li > div {
2480
  padding-bottom:1px;
2481
}
2482

            
2483
.search-result .right > div:first-child {
2484
   font-size:18px;
2485
   padding-bottom:10px;
2486
   margin-bottom:10px;
2487
   border-bottom:1px solid #EEEEEE;
2488
   font-weight:bold;
2489
}
2490

            
2491
.search-result .left li.active a {
2492
  color:black;
2493
  font-weight:bold;
2494
  text-decoration:none;
2495
}
2496

            
2497

            
improve settings page design
Yuki Kimoto authored on 2016-01-18
2498
.project-settings {
2499
  overflow:hidden;
2500
}
2501

            
2502
.project-settings .left {
2503
  float:left;
2504
  width:15%;
2505
  padding-right:10px;
2506
}
2507

            
2508
.project-settings .left li {
2509
  border:1px solid #d8d8d8;
2510
  border-top:none;
2511
  padding:5px 10px;
2512
}
2513

            
2514
.project-settings .left li:first-child {
2515
  border-top:1px solid #d8d8d8;
2516
}
2517

            
2518
.project-settings .right {
2519
  float:left;
2520
  width:85%;
2521
}
2522

            
2523
.project-settings-main {
2524
  margin-bottom:20px;
2525
}
2526

            
2527
.project-settings-main li {
2528
  border:1px solid #d8d8d8;
2529
  border-top:none;
2530
  padding:10px 10px;
2531
}
2532

            
2533
.project-settings-main li:first-child {
2534
  border-top:1px solid #d8d8d8;
2535
  background: #eee;
2536
  border-radius:3px 3px 0 0;
2537
  font-size:17px;
2538
}
2539

            
2540
.project-settings-main input[type=text] {
2541
    border:1px solid #d8d8d8;
2542
    border-radius: 3px;
2543
    padding:6px 5px;
2544
    width:100%;
2545
    margin:5px 0;
2546
}
2547

            
2548
.project-settings-main input[type=checkbox] {
2549
  margin:0 5px;
2550
}
2551

            
2552
.project-settings-main select {
2553
    border:1px solid #d8d8d8;
2554
    border-radius: 3px;
2555
    padding:6px 5px;
2556
    width:30%;
2557
    margin:5px 0;
2558
}
2559

            
2560
.project-settings-danger li {
2561
  border:1px solid #d8d8d8;
2562
  border-top:none;
2563
  padding:10px 10px;
2564
}
2565

            
2566
.project-settings-danger li:first-child {
2567
  border-top:1px solid #d8d8d8;
2568
  background: #eee;
2569
  border-radius:3px 3px 0 0;
2570
  font-size:17px;
2571
  background:red;
2572
}
2573

            
2574
#delete-confirm input {
2575
  border:1px solid #d8d8d8;
2576
  border-radius: 3px;
2577
  padding:6px 5px;
2578
  margin:5px 0;
2579
  width:70%;
2580
}
improve collabaration design
Yuki Kimoto authored on 2016-01-19
2581

            
2582
.collaboration > div:first-child {
2583
  font-size:17px;
2584
  padding:5px;
2585
  border-bottom:1px solid #d8d8d8;
2586
  font-weight:bold;
2587
  margin-bottom:10px;
2588
}
2589

            
2590
.collaboration input[type=text] {
2591
  border:1px solid #d8d8d8;
2592
  border-radius: 3px;
2593
  padding:6px 5px;
2594
  margin:5px 0;
2595
  width:40%;
2596
}
2597

            
2598
.collaboration input[type=submit] {
2599
  padding:6px 5px;
2600
  margin:5px 0;
2601
  width:10%;
2602
}
improve settings design
Yuki Kimoto authored on 2016-01-19
2603

            
2604
.user-settings {
2605
  overflow:hidden;
2606
}
2607

            
2608
.user-settings .left {
2609
  float:left;
2610
  width:15%;
2611
  padding-right:10px;
2612
}
2613

            
2614
.user-settings .left li {
2615
  border:1px solid #d8d8d8;
2616
  border-top:none;
2617
  padding:5px 10px;
2618
}
2619

            
2620
.user-settings .left li:first-child {
2621
  border-top:1px solid #d8d8d8;
2622
}
2623

            
2624
.user-settings .left li.active a {
2625
  color:black;
2626
  font-weight:bold;
2627
  text-decoration:none;
2628
}
2629

            
2630
.user-settings .right {
2631
  float:left;
2632
  width:85%;
2633
}
2634

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2635
.user-settings-container > div {
improve settings design
Yuki Kimoto authored on 2016-01-19
2636
  border:1px solid #d8d8d8;
2637
  padding:10px 10px;
2638
  font-size:120%;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2639
  margin-bottom:20px;
improve settings design
Yuki Kimoto authored on 2016-01-19
2640
}
2641

            
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2642
.user-settings-container > div:first-child {
improve settings design
Yuki Kimoto authored on 2016-01-19
2643
  border-bottom:none;
2644
  background: #eee;
2645
  border-radius:3px 3px 0 0;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2646
  font-size:14px;
improve settings design
Yuki Kimoto authored on 2016-01-19
2647
  font-weight:bold;
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2648
  margin-bottom:0;
improve settings design
Yuki Kimoto authored on 2016-01-19
2649
}
2650

            
2651
.profile li {
2652
  padding:5px 5px;
2653
}
improve settings ssh design
Yuki Kimoto authored on 2016-01-20
2654

            
2655
.ssh-keys form {
2656
  margin:5px 0;
2657
}
2658

            
2659
.ssh-key-add input[type=text] {
2660
  border:1px solid #d8d8d8;
2661
  border-radius: 3px;
2662
  padding:6px 5px;
2663
  margin:5px 0;
2664
  width:60%;
2665
}
2666

            
2667
.ssh-key-add textarea {
2668
  border:1px solid #d8d8d8;
2669
  border-radius: 3px;
2670
  padding:6px 5px;
2671
  margin:5px 0;
2672
  width:100%;
2673
  min-height:200px;
2674
}
improve search page design
Yuki Kimoto authored on 2016-01-23
2675

            
cleanup
Yuki Kimoto authored on 2016-01-27
2676
/* 番号つきページネーション */
2677
.pagination-num {
cleanup css
Yuki Kimoto authored on 2016-01-27
2678
  margin:20px 0
2679
}
cleanup
Yuki Kimoto authored on 2016-01-27
2680
.pagination-num ul {
cleanup css
Yuki Kimoto authored on 2016-01-27
2681
  display:inline-block;
2682
  margin-bottom:0;
2683
  margin-left:0;
2684
  border-radius:4px;
2685
  box-shadow:0 1px 2px rgba(0,0,0,0.05)
2686
}
2687
.pagination-num ul > li {
2688
  display:inline
2689
}
2690
.pagination-num ul > li > a,
2691
.pagination-num ul > li > span {
2692
  float:left;
2693
  padding:4px 12px;
2694
  line-height:20px;
2695
  text-decoration:none;
2696
  background-color:#fff;
2697
  border:1px solid #ddd;
2698
  border-left-width:0
2699
}
2700
.pagination-num ul > li > a:hover,
2701
.pagination-num ul > .active > a,
2702
.pagination-num ul > .active > span
2703
{
2704
  background-color:#f5f5f5;
2705
}
2706
.pagination-num ul > .active > a,
2707
.pagination-num ul > .active > span {
2708
  color:#999;
2709
  cursor:default;
2710
}
2711
.pagination-num ul > .disabled > span,
2712
.pagination-num ul > .disabled > a,
2713
.pagination-num ul > .disabled > a:hover,
2714
{
2715
  color:#999;
2716
  cursor:default;
2717
  background-color:transparent;
2718
}
2719
.pagination-num ul > li:first-child > a,
2720
.pagination-num ul > li:first-child > span
2721
{
2722
  border-left-width:1px;
2723
  border-bottom-left-radius:4px;
2724
  border-top-left-radius:4px;
2725
}
2726
.pagination-num ul > li:last-child > a,
2727
.pagination-num ul > li:last-child > span
2728
{
2729
  border-top-right-radius:4px;
2730
  border-bottom-right-radius:4px;
2731
}
improve branch design
Yuki Kimoto authored on 2016-01-27
2732

            
2733
/* Branches */
2734
.branches {
2735
  overflow:hidden;
2736
  margin-bottom:15px;
2737
}
2738
.branches > li {
2739
  border:1px solid #d8d8d8;
2740
  border-top:none;
improve branches design
Yuki Kimoto authored on 2016-01-30
2741
  padding:8px 8px;
improve branch design
Yuki Kimoto authored on 2016-01-27
2742
}
2743
.branches > li:first-child {
2744
  border-radius: 3px 3px 0 0;
2745
  border-top:1px solid #d8d8d8;
2746
  background: #f5f5f5;
2747
  text-shadow: 0 1px 0 #fff;
2748
}
2749
.branches > li:last-child {
2750
  border-radius: 0 0 3px 3px;
2751
}
2752
.branches > li > ul {
2753
  overflow:hidden;
2754
}
2755
.branches > li > ul > li:first-child {
2756
  float:left;
2757
  width:50%;
2758
  overflow:hidden;
improve branches design
Yuki Kimoto authored on 2016-01-30
2759
  padding-top:4px;
improve branch design
Yuki Kimoto authored on 2016-01-27
2760
}
2761
.branches > li > ul > li.second-child{
2762
  float:left;
2763
  width:25%;
2764
}
2765
.branches > li > ul > li.last-child {
2766
  float:left;
2767
  width:25%;
2768
  text-align:right;
2769
}
2770

            
2771
.branches-name {
2772
  display:inline-block;
2773
}
2774
.branches-name a {
2775
  color: #4078c0;
2776
  border-radius:3px;
2777
  background:rgba(209,227,237,0.5);
2778
  padding:2px 6px;
2779
}
2780

            
2781
.branches-age {
2782
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
2783
  color:#aaa;;
improve branch design
Yuki Kimoto authored on 2016-01-27
2784
}
2785

            
2786
.branches-author {
2787
  display:inline-block;
improve branches design
Yuki Kimoto authored on 2016-01-30
2788
  color:#767676;
improve branch design
Yuki Kimoto authored on 2016-01-27
2789
}
2790

            
improve branches design
Yuki Kimoto authored on 2016-01-30
2791
.branches-select {
2792
  overflow:hidden;
2793
  margin:20px 0;
2794
}
2795

            
2796
.branches-select li {
2797
  border:1px solid #d8d8d8;
2798
  float:left;
2799
  border-left:none;
2800
}
2801

            
2802
.branches-select li:first-child {
2803
  border-left:1px solid #d8d8d8;
2804
  border-radius:3px 0 0 3px;
2805
}
2806

            
2807
.branches-select li:last-child {
2808
  border-radius:0 3px 3px 0;
2809
}
2810

            
2811
.branches-select li a {
2812
  padding: 7px 14px;
2813
  font-weight: bold;
2814
  width:100%;
2815
  display:block;
2816
  color: #666;
2817
}
2818

            
2819
.branches-select li a:hover {
2820
  text-decoration:none;
2821
  background:#f5f5f5;
2822
}
2823

            
2824
.branches-select li.active a {
2825
  background-color: #4078c0;
2826
  color: #fff;
2827
}
2828
.branches-select li.active a {
2829
  background-color: #4078c0;
improve branches design
Yuki Kimoto authored on 2016-01-30
2830
}
2831

            
2832
.ahead-behind {
2833
  color:#767676;
2834
  font-size:12px;
2835
  border-collapse:collapse;
2836
}
2837

            
2838
.ahead-behind-behind-count {
2839
  text-align:right;
2840
  padding-right:3px;
2841
}
2842

            
2843
.ahead-behind-separate {
2844
  width:1px;
2845
  background:#c0c0c0;
2846
}
improve branch design
Yuki Kimoto authored on 2016-01-30
2847

            
2848
.branches-default {
2849
  font-size:12px;
2850
  text-align:center;
2851
  display:inline-block;
2852
  background-color: #767676;
2853
  color: #fff;
2854
  border-radius:3px;
2855
  padding:1px 3px;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
2856
}
2857

            
2858
.branches .branches-overview-more {
2859
  text-align:center;
2860
  padding:0;
2861
}
2862
.branches-overview-more a {
2863
  width:100%;
2864
  display:block;
2865
  background: #f1f7fa;
2866
  padding:8px;
2867
}
2868

            
2869
.branches-overview-more a:hover {
improve tags page design
Yuki Kimoto authored on 2016-02-01
2870
  background:#e6e6fa;
imrpove branches page
Yuki Kimoto authored on 2016-01-30
2871
}
improve tags page design
Yuki Kimoto authored on 2016-02-01
2872

            
2873
.tags {
2874
  
2875
}
2876

            
2877
.tags > li {
2878
  border-bottom:1px solid #d8d8d8;
2879
  padding:10px 0;
2880
}
2881

            
2882
.tags > li:first-child {
2883
  border-top:1px solid #d8d8d8;
2884
}
2885

            
2886
.tags-item {
2887
  overflow:hidden;
2888
}
2889

            
2890
.tags-item > li:first-child {
2891
  display:block;
2892
  width:30%;
2893
  float:left;
2894
  color:#767676;
2895
}
2896

            
2897
.tags-item > li.last-child {
2898
  display:block;
2899
  width:70%;
2900
  float:left;
2901
}
2902

            
2903
.tags-name a {
2904
  color:#333;
2905
}
2906

            
2907
.tags-links {
2908
  padding-top:3px;
2909
}
2910

            
2911
.tags-links a {
2912
  color:#767676;
2913
  font-size:13px;
improve commits page design
Yuki Kimoto authored on 2016-02-01
2914
}
2915

            
2916
.commits-summary > :first-child {
2917
  overflow:hidden;
2918
  padding: 10px;
2919
  line-height: 20px;
2920
  background-color: #e6f1f6;
2921
  border: 1px solid #c1dce9;
2922
  border-radius: 3px;
2923
  border-bottom-right-radius: 0;
2924
  border-bottom-left-radius: 0;
2925
  margin-top:13px;
2926
}
2927

            
2928
.commits-summary > .last-child {
2929
  padding: 5px 10px;
2930
  background-color: #fff;
2931
  border: 1px solid #c1dce9;
2932
  border-top:none;
2933
  border-bottom-left-radius: 3px;
2934
  border-bottom-right-radius: 3px;
2935
}
2936

            
2937
.commits-summary-header {
2938
  overflow:hidden;
2939
}
2940
.commits-summary-header > :first-child {
2941
  float:left;
2942
  width:80%;
2943
}
2944
.commits-summary-header > .last-child {
2945
  float:right;
2946
  width:20%;
2947
  text-align:right;
2948
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
2949
.commits-summary-body {
2950
  overflow:hidden;
2951
  padding:4px 0;
2952
}
2953
.commits-summary-body > :first-child {
2954
  width:40%;
2955
  float:left;
2956
}
2957
.commits-summary-body > .last-child {
2958
  width:60%;
2959
  float:left;
2960
  text-align:right;
2961
}
2962
.commits-summary-author {
2963
  font-weight:bold;
2964
}
2965
.commits-summary-parent {
2966
  display:inline-block;
2967
  color:#767676;
2968
  margin-right:10px;
2969
}
2970
.commits-summary-parent a {
2971
  color:#333333;
2972
  text-decoration:underline;
2973
}
2974
.commits-summary-commit-id {
2975
  display:inline-block;
2976
  color:#767676;
2977
}
2978
.commits-summary-commit-id > span {
2979
  color:#333333;
2980
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
2981

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
2982
.commit-changes {
2983
  margin:15px 0;
2984
}
improve commits page design
Yuki Kimoto authored on 2016-02-01
2985

            
improve commit page design
Yuki Kimoto authored on 2016-02-02
2986
.file-add {
2987
  color:#32CD32;
2988
  border:2px #32CD32 solid;
2989
  margin-left:3px;
2990
  font-weight:bold;
2991
  text-align:center;
2992
  font-size:13px;
2993
  padding:0;
2994
  line-height:100%;
2995
  padding:0 2px;
2996
}
2997

            
2998
.file-del {
2999
  color:red;
3000
  border:2px red solid;
3001
  margin-left:3px;
3002
  font-weight:bold;
3003
  text-align:center;
3004
  font-size:13px;
3005
  padding:0;
3006
  line-height:100%;
3007
  padding:0 2px;
3008
}
3009

            
3010
.file-modified {
3011
  color:#DAA520;
3012
  border:2px #DAA520 solid;
3013
  margin-left:3px;
3014
  font-weight:bold;
3015
  text-align:center;
3016
  font-size:13px;
3017
  padding:0;
3018
  line-height:100%;
3019
  padding:0 2px;
3020
}
3021

            
3022
.file-renamed {
3023
  color:#677a85;
3024
  border:2px #677a85 solid;
3025
  margin-left:3px;
3026
  font-weight:bold;
3027
  text-align:center;
3028
  font-size:13px;
3029
  padding:0;
3030
  line-height:100%;
3031
  padding:0 2px;
3032
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3033

            
improve commit page design
Yuki Kimoto authored on 2016-02-03
3034
.commit-diff {
3035
  margin-bottom:30px;
3036
}
improve commit page design
Yuki Kimoto authored on 2016-02-02
3037
.commit-diff > :first-child {
3038
  border:1px solid #d8d8d8;
3039
  border-radius:3px 3px 0 0;
3040
  padding:7px;
3041
  background-color: #f7f7f7;
3042
}
3043
.commit-diff-header {
3044
  overflow:hidden;
3045
}
3046
.commit-diff-header > :first-child {
3047
  float:left;
3048
  width:80%;
3049
  padding-top:6px;
3050
}
3051
.commit-diff-header > .last-child {
3052
  float:left;
3053
  width:20%;
3054
  text-align:right;
3055
}
improve commit page design
Yuki Kimoto authored on 2016-02-03
3056

            
3057
.commit-diff-body {
3058
  border:1px solid #d8d8d8;
3059
  border-top:none;
3060
  border-radius: 0 0 3px 3px;
3061
  margin-bottom:30px;
3062
}
3063
.commit-diff-body > table {
3064
  border-collapse:collapse;
3065
}
3066
.commit-diff-plain {
3067
  padding:10px;
3068
}
3069
.commit-diff-image {
3070
  background:#ddd;
3071
  text-align:center;
3072
  padding-top:40px;
3073
  padding-bottom:40px;
3074
}
improve compare page design
Yuki Kimoto authored on 2016-02-04
3075

            
3076
.compare-select {
3077
  padding:12px 10px;
3078
  margin-bottom:5px;
3079
  position:relative;
3080
  border:1px solid #d8d8d8;
3081
  border-radius: 3px;
3082
  background-color: #fafafa;
3083
}
3084

            
3085
.compare-header {
3086
  border:1px solid #d8d8d8;
3087
  overflow:hidden;
3088
  border-radius: 3px;
3089
  padding:10px;
3090
  margin-top:10px;
3091
}
3092

            
3093
.compare-header li {
3094
  width:25%;
3095
  float:left;
3096
  text-align:center;
3097
}
3098
.compare-header li span {
3099
  color: #767676;
3100
}
3101
.compare-commits-date-container {
3102
  border-left:#f3f3f3 2px solid;
3103
  margin:3px 6px;
3104
  padding:10px 0;
3105
}
3106

            
3107
.compare-commits-date-container li:first-child {
3108
}
3109

            
3110
.compare-commits-date-container li {
3111
  margin-left:20px;
3112
  overflow:hidden;
3113
}
3114

            
3115
.compare-commits-author {
3116
  width:30%;
3117
  float:left;
3118
  font-weight:bold;
3119
  font-size:90%;
3120
}
3121

            
3122
.compare-commits-commit-title {
3123
  width:50%;
3124
  float:left;
3125
}
3126

            
3127
.compare-commits-commit-id {
3128
  width:20%;
3129
  float:left;
3130
  text-align:right;
3131
}
3132
.compare-commits-commit-id a {
3133
  color:#767676;
improve network page design
Yuki Kimoto authored on 2016-02-06
3134
}
3135

            
3136
.network-mybranch {
3137
  background-color: #f5f5f5;
3138
  border: 1px solid #e3e3e3;
3139
  padding:10px 10px 14px 10px;
3140
  margin-bottom:20px;
3141
  border-radius:3px;
3142
}
3143
.network-mybranch-label {
3144
  border-radius: 3px;
3145
  display: inline-block;
3146
  padding: 2px 4px;
3147
  font-size: 11.844px;
3148
  font-weight: bold;
3149
  line-height: 14px;
3150
  color: #fff;
3151
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3152
  white-space: nowrap;
3153
  vertical-align: baseline;
3154
  background-color: #3a87ad;
3155
  width:100px;
3156
  text-align:center;
3157
  margin-right:10px;
3158
}
3159

            
3160
.network-mybranch select, .network-member-branch select {
3161
  border:1px solid #d8d8d8;
3162
  border-radius: 3px;
3163
  padding:6px 5px;
3164
  width:30%;
3165
}
3166

            
3167
.network-member-branch {
3168
  
3169
}
3170

            
3171
.network-member-branch li {
3172
  border-bottom:1px solid #d8d8d8;
3173
  padding:10px 10px 14px 10px;
3174
  overflow:hidden;
3175
}
3176
.network-member-branch-label {
3177
  border-radius: 3px;
3178
  display: inline-block;
3179
  padding: 3px 4px;
3180
  font-size: 11.844px;
3181
  font-weight: bold;
3182
  line-height: 14px;
3183
  color: #fff;
3184
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
3185
  white-space: nowrap;
3186
  vertical-align: baseline;
3187
  background-color: #468847;
3188
  width:100px;
3189
  text-align:center;
3190
  margin-right:10px;
3191
}
3192
.network-member-branch li > :first-child {
3193
  float:left;
3194
  width:80%;
3195
}
3196
.network-member-branch li > .last-child {
3197
  float:left;
3198
  width:20%;
3199
  text-align:right;
3200
}
improve graph page design
Yuki Kimoto authored on 2016-02-06
3201
.graph-diff {
3202
  width:800px;
3203
  overflow:auto;
3204
  padding-left:10px;
3205
  padding-right:10px;
3206

            
3207
  background-color: #f5f5f5;
3208
  border: 1px solid #e3e3e3;
3209
  padding:10px 10px 14px 10px;
3210
  margin-bottom:20px;
3211
  border-radius:3px;
3212
}
3213
.graph-document pre {
3214
  background:#333333;
3215
  color:white;
3216
  padding:20px 20px 0px 20px;
3217
  border-radius:3px;
3218
  margin-bottom:15px;
3219
  margin-top:3px;
3220
}
improve import-branch page d...
Yuki Kimoto authored on 2016-02-08
3221

            
3222
.import-branch {
3223
  overflow:hidden;
3224
}
3225
.import-branch > .left {
3226
  float:left;
3227
  width:45%;
3228
}
3229
.import-branch > .center {
3230
  float:left;
3231
  width:10%;
3232
  text-align:center;
3233
  padding: 19px;
3234
  text-align:center;
3235
  font-size:26px;
3236
}
3237
.import-branch > .right {
3238
  float:left;
3239
  width:45%;
3240
}
3241
.import-branch select {
3242
  border:1px solid #d8d8d8;
3243
  border-radius: 3px;
3244
  padding:6px 5px;
3245
  width:30%;
3246
}
3247
.import-branch-from, .import-branch-to {
3248
  border:1px solid #d8d8d8;
3249
  border-radius:3px;
3250
  padding:25px 15px;
3251
}
3252
.import-branch-to > :first-child {
3253
  font-size:20px;
3254
  color:blue;
3255
  margin-bottom:10px;
3256
}
3257
.import-branch-from > :first-child {
3258
  font-size:20px;
3259
  color:green;
3260
  margin-bottom:10px;
3261
}
3262
.import-branch-button-panel {
3263
  margin-top:10px;
3264
}
3265
.import-branch-button-panel > div {
3266
  display:table-cell;
3267
  vertical-align:middle;
3268
  padding:0 3px;
3269
}
improve submodule design
Yuki Kimoto authored on 2016-02-08
3270

            
3271
.submodule {
3272
  
3273
}
3274
.submodule > :first-child {
3275
  border:1px solid #d8d8d8;
3276
  border-radius: 3px 3px 0 0;
3277
  padding:8px 5px;
3278
  border-bottom:none;
3279
  background-color: #f7f7f7;
3280
}
3281
.submodule > .last-child {
3282
  border:1px solid #d8d8d8;
3283
  border-top:none;
3284
  font-size:16px;
3285
  padding:15px;
3286
  margin-bottom:30px;
3287
  border-radius: 0 0 3px 3px;
3288
}
improve design
Yuki Kimoto authored on 2016-02-09
3289

            
3290
pre.command-line {
3291
  background:#333333;
3292
  color:white;
3293
  padding:15px 20px 15px 20px;
3294
  border-radius:3px;
3295
  margin-bottom:15px;
3296
  margin-top:3px;
3297
}
3298
.private {
3299
  background:white;
3300
  text-align:center;
3301
  font-size:20px;
3302
  border:1px solid #d8d8d8;
3303
  border-radius: 3px;
3304
  padding:20px 0;
3305
  color:#767676
3306
}
3307

            
3308
.not-yet-created {
3309
  background:white;
3310
  margin-bottom:30px;
3311
  border:1px solid #d8d8d8;
3312
  border-radius: 3px;
3313
  color:#767676;
3314
  padding:15px 10px;
3315
}