View | Details | Raw Unified | Return to bug 19474
Collapse All | Expand All

(-)a/.gitignore (+3 lines)
Line 0 Link Here
1
node_modules/
2
koha-tmpl/intranet-tmpl/prog/css/maps/
3
koha-tmpl/intranet-tmpl/prog/css/staff-global.css
(-)a/.sass-lint.yml (+101 lines)
Line 0 Link Here
1
options:
2
  formatter: stylish
3
files:
4
  include: '**/*.scss'
5
rules:
6
  # Extends
7
  extends-before-mixins: 1
8
  extends-before-declarations: 1
9
  placeholder-in-extend: 1
10
11
  # Mixins
12
  mixins-before-declarations: 1
13
14
  # Line Spacing
15
  one-declaration-per-line: 1
16
  empty-line-between-blocks: 1
17
  single-line-per-selector: 1
18
19
  # Disallows
20
  no-attribute-selectors: 0
21
  no-color-hex: 0
22
  no-color-keywords: 1
23
  no-color-literals: 0
24
  no-combinators: 0
25
  no-css-comments: 0
26
  no-debug: 1
27
  no-disallowed-properties: 0
28
  no-duplicate-properties: 1
29
  no-empty-rulesets: 1
30
  no-extends: 0
31
  no-ids: 0
32
  no-important: 1
33
  no-invalid-hex: 1
34
  no-mergeable-selectors: 1
35
  no-misspelled-properties: 1
36
  no-qualifying-elements: 1
37
  no-trailing-whitespace: 1
38
  no-trailing-zero: 1
39
  no-transition-all: 1
40
  no-universal-selectors: 0
41
  no-url-domains: 1
42
  no-url-protocols: 1
43
  no-vendor-prefixes: 1
44
  no-warn: 1
45
  property-units: 0
46
47
  # Nesting
48
  declarations-before-nesting: 1
49
  force-attribute-nesting: 1
50
  force-element-nesting: 1
51
  force-pseudo-nesting: 1
52
53
  # Name Formats
54
  class-name-format: 0
55
  function-name-format: 1
56
  id-name-format: 0
57
  mixin-name-format: 1
58
  placeholder-name-format: 1
59
  variable-name-format: 1
60
61
  # Style Guide
62
  attribute-quotes: 1
63
  bem-depth: 0
64
  border-zero: 1
65
  brace-style: 1
66
  clean-import-paths: 1
67
  empty-args: 1
68
  hex-length: 0
69
  hex-notation: 0
70
  indentation:
71
    - 1
72
    - size: 4
73
  leading-zero: 1
74
  max-line-length: 0
75
  max-file-line-count: 0
76
  nesting-depth:
77
  - 1
78
  - max-depth: 4
79
  property-sort-order: 1
80
  pseudo-element: 1
81
  quotes:
82
    - 1
83
    - style: double
84
  shorthand-values: 0
85
  url-quotes: 1
86
  variable-for-property: 1
87
  zero-unit: 1
88
89
  # Inner Spacing
90
  space-after-comma: 1
91
  space-before-colon: 1
92
  space-after-colon: 1
93
  space-before-brace: 1
94
  space-before-bang: 1
95
  space-after-bang: 1
96
  space-between-parens: 0
97
  space-around-operator: 1
98
99
  # Final Items
100
  trailing-semicolon: 1
101
  final-newline: 1
(-)a/gulpfile.js (+53 lines)
Line 0 Link Here
1
/* eslint-env node */
2
/* eslint no-console:"off" */
3
4
let gulp;
5
6
try {
7
    gulp = require( "gulp" );
8
} catch(e) {
9
    console.error("You are missing required Node modules; run `npm install`.");
10
    process.exit(1);
11
}
12
13
const gutil = require( "gulp-util" );
14
const sass = require("gulp-sass");
15
const cssnano = require("gulp-cssnano");
16
const sourcemaps = require('gulp-sourcemaps');
17
const autoprefixer = require('gulp-autoprefixer');
18
19
const STAFF_JS_BASE = "koha-tmpl/intranet-tmpl/prog/js";
20
const STAFF_CSS_BASE = "koha-tmpl/intranet-tmpl/prog/css";
21
const OPAC_JS_BASE = "koha-tmpl/opac-tmpl/bootstrap/js";
22
const OPAC_CSS_BASE = "koha-tmpl/opac-tmpl/bootstrap/css";
23
24
var sassOptions = {
25
    errLogToConsole: true,
26
    precision: 3
27
}
28
29
gulp.task( "default", ['watch'] );
30
31
// CSS processing for development
32
gulp.task('css', function() {
33
    return gulp.src( STAFF_CSS_BASE + "/src/**/*.scss" )
34
      .pipe(sourcemaps.init())
35
      .pipe(sass( sassOptions ).on('error', sass.logError))
36
      .pipe(autoprefixer())
37
      .pipe(sourcemaps.write('./maps'))
38
      .pipe(gulp.dest( STAFF_CSS_BASE ));
39
});
40
41
// CSS processing for production
42
43
gulp.task('build', function() {
44
    return gulp.src( STAFF_CSS_BASE + "/src/**/*.scss" )
45
      .pipe(sass( sassOptions ).on('error', sass.logError))
46
      .pipe(autoprefixer())
47
      .pipe(cssnano())
48
      .pipe(gulp.dest( STAFF_CSS_BASE ));
49
});
50
51
gulp.task('watch', function(){
52
    gulp.watch( STAFF_CSS_BASE + "/src/**/*.scss", ['css'] );
53
});
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+3778 lines)
Line 0 Link Here
1
@import url("../../lib/yui/reset-fonts-grids.css") screen;
2
3
$font-main: Arial, Verdana, Helvetica, sans-serif;
4
$font-monospace: "Courier New", Courier, monospace;
5
6
@mixin default-button {
7
    background: linear-gradient(to bottom, #FFFFFF 0%, #F7F7F7 35%, #E0E0E0 100%); /* W3C */
8
    border: 1px outset #999999;
9
    border-left-color: #666;
10
    border-top-color: #666;
11
    color: #333333;
12
    padding: .25em;
13
}
14
15
@mixin disabled-button {
16
    background: #EEE none;
17
    border: 1px solid #C0C0C0;
18
    color: #999;
19
}
20
21
::selection {
22
    background: #538200;
23
    color: #FFFFFF; /* Safari and Opera */
24
}
25
26
a {
27
    &:link,
28
    &:visited {
29
        color: #004D99;
30
        text-decoration: none;
31
    }
32
33
    &.btn {
34
        color: #004D99;
35
        text-decoration: none;
36
37
        &:link,
38
        &:visited {
39
            color: #333333;
40
        }
41
    }
42
43
    &:hover,
44
    &:active {
45
        color: #538200;
46
        text-decoration: none;
47
    }
48
49
    &:hover {
50
        .term {
51
            color: #FF9090;
52
        }
53
    }
54
55
    .btn-link {
56
        &:link,
57
        &:visited {
58
            color: #004D99;
59
        }
60
61
        &:hover {
62
            color: #538200;
63
        }
64
    }
65
66
67
    &.cancel {
68
        padding-left: 1em;
69
    }
70
71
    &.cartRemove {
72
        color: #CC3333;
73
        font-size: 90%;
74
        margin: 0;
75
        padding: 0;
76
    }
77
78
    &.close {
79
        &:hover {
80
            color: #538200;
81
        }
82
    }
83
84
85
    &.csv {
86
        background-image: url("../img/famfamfam/silk/page_white_excel.png");
87
    }
88
89
    &.dropdown-toggle {
90
        white-space: nowrap;
91
    }
92
93
    &.incart {
94
        color: #666;
95
    }
96
97
    &.overdue,
98
    &.debit {
99
        color: #CC0000;
100
    }
101
102
    &.popup {
103
        background: transparent url("../img/pop-up-link.png") center right no-repeat;
104
        padding-right: 15px;
105
    }
106
107
    &.disabled {
108
        color: #999999;
109
    }
110
111
    &.document {
112
        background-position: left middle;
113
        background-repeat: no-repeat;
114
        padding-left: 20px;
115
    }
116
117
    &.highlight_toggle {
118
        display: none;
119
    }
120
121
    .localimage {
122
        img {
123
            border: 1px solid #0000CC;
124
            margin: 0 .5em;
125
            padding: .3em;
126
        }
127
    }
128
129
    &.pdf {
130
        background-image: url("../img/famfamfam/silk/page_white_acrobat.png");
131
    }
132
133
    &.submit {
134
        @include default-button;
135
        display: inline-block;
136
137
        &:active {
138
            border: 1px inset #999999;
139
        }
140
141
        &:disabled {
142
            @include disabled-button;
143
        }
144
    }
145
146
    &.term {
147
        text-decoration: underline;
148
    }
149
150
    &.xml {
151
        background-image: url("../img/famfamfam/silk/page_white_code.png");
152
    }
153
154
}
155
156
button {
157
    @include default-button;
158
159
    &:active {
160
        border: 1px inset #999999;
161
    }
162
163
    &:disabled {
164
        @include disabled-button;
165
    }
166
167
    &.closebtn {
168
        background: transparent;
169
        border: 0;
170
        cursor: pointer;
171
        padding: 0;
172
    }
173
}
174
175
table {
176
    border-collapse: collapse;
177
    border-right: 1px solid #BCBCBC;
178
    border-top: 1px solid #BCBCBC;
179
180
    .btn-group {
181
        white-space: nowrap;
182
183
        .btn {
184
            display: inline-block;
185
            float: none;
186
        }
187
    }
188
189
    &.indexes {
190
        td {
191
            vertical-align: middle;
192
        }
193
    }
194
195
    & > caption {
196
        span {
197
            &.actions {
198
                font-size: 66%;
199
                font-weight: normal;
200
                margin: 0 .5em 0 0;
201
            }
202
        }
203
    }
204
205
    &.invis {
206
        border: 0;
207
208
        tr,
209
        td {
210
            border: 0;
211
        }
212
    }
213
}
214
215
td,
216
th {
217
    border-bottom: 1px solid #BCBCBC;
218
    border-left: 1px solid #BCBCBC;
219
    padding: .2em .3em;
220
}
221
222
td {
223
    background-color: #FFFFFF;
224
    vertical-align: top;
225
226
    &.actions {
227
        white-space: nowrap;
228
    }
229
230
    &.borderless {
231
        border: 0 none;
232
        border-collapse: separate;
233
    }
234
235
    &.data {
236
        font-family: $font-monospace;
237
        text-align: right;
238
    }
239
240
    &.total {
241
        text-align: right;
242
    }
243
244
    input {
245
        &.approve {
246
            background-color: #FFC;
247
        }
248
    }
249
}
250
251
252
th {
253
    background-color: #E8E8E8;
254
    font-weight: bold;
255
    text-align: center;
256
257
    &.data {
258
        font-family: $font-monospace;
259
        text-align: right;
260
    }
261
}
262
263
table + table {
264
    margin-top: 1em;
265
}
266
267
body {
268
    font-family: $font-main;
269
    padding: 0 0 4em 0;
270
    text-align: left;
271
}
272
273
br {
274
    &.clear {
275
        clear: both;
276
        line-height: 1px;
277
    }
278
}
279
280
form {
281
    display: inline;
282
283
    &.confirm {
284
        display: block;
285
        text-align: center;
286
    }
287
}
288
289
h1 {
290
    font-size: 161.6%;
291
    font-weight: bold;
292
293
    &#logo {
294
        border: 0 none;
295
        float: left;
296
        margin: .75em .3em .75em .7em;
297
        padding: 0;
298
        width: 180px;
299
    }
300
}
301
302
h2 {
303
    font-size: 146.5%;
304
    font-weight: bold;
305
}
306
307
h3 {
308
    font-size: 131%;
309
    font-weight: bold;
310
}
311
312
h4 {
313
    font-size: 116%;
314
    font-weight: bold;
315
}
316
317
h5 {
318
    font-size: 100%;
319
    font-weight: bold;
320
}
321
322
h6 {
323
    font-size: 93%;
324
    font-weight: bold;
325
}
326
327
h1,
328
h2,
329
h3,
330
h4,
331
h5,
332
h6 {
333
    margin: .3em 0;
334
}
335
336
p {
337
    margin: .5em 0 .5em 0;
338
}
339
340
strong {
341
    font-weight: bold;
342
343
    em {
344
        font-style: italic;
345
        font-weight: bold;
346
    }
347
348
    em & {
349
        font-style: italic;
350
        font-weight: bold;
351
    }
352
}
353
354
em,
355
cite {
356
    font-style: italic;
357
}
358
359
input,
360
textarea {
361
    line-height: normal;
362
    padding: 2px 4px;
363
364
    &:focus {
365
        border-color: #538200;
366
        border-radius: 4px;
367
        border-style: solid;
368
    }
369
}
370
371
input {
372
    &[type="checkbox"],
373
    &[type="radio"] {
374
        margin: 0;
375
        vertical-align: middle;
376
    }
377
378
    &[type="submit"],
379
    &[type="button"] {
380
        &:active {
381
            border: 1px inset #999999;
382
        }
383
    }
384
385
    &[type="submit"],
386
    &[type="reset"],
387
    &[type="button"] {
388
        @include default-button;
389
390
        &:active {
391
            border: 1px inset #999999;
392
        }
393
394
        &:disabled {
395
            @include disabled-button
396
        }
397
    }
398
399
    &.alert {
400
        background-color: #FFFF99;
401
        border-color: #900;
402
    }
403
404
    &.submit {
405
        @include default-button;
406
407
        &:active {
408
            border: 1px inset #999999;
409
        }
410
411
        &:disabled {
412
            @include disabled-button
413
        }
414
    }
415
416
    &.warning {
417
        background: #FFF url("../img/famfamfam/silk/error.png") no-repeat 4px center;
418
        padding: .25em .25em .25em 25px;
419
    }
420
}
421
422
label,
423
.label {
424
    color: #000;
425
    display: inline;
426
    font-size: inherit;
427
    font-weight: normal;
428
    max-width: inherit;
429
    padding: 0;
430
    vertical-align: middle;
431
432
    input {
433
        &[type="checkbox"],
434
        &[type="radio"],
435
        &[type="checkbox"],
436
        &[type="radio"] {
437
            margin-top: 0;
438
        }
439
    }
440
441
    &.circ_barcode {
442
        font-size: 105%;
443
        font-weight: bold;
444
    }
445
446
    /* Permissions Labels */
447
    &.permissioncode {
448
        font-style: italic;
449
450
        &::before {
451
            content: "(";
452
        }
453
454
        &::after {
455
            content: ")";
456
        }
457
    }
458
459
    &.required {
460
        color: #C00;
461
    }
462
}
463
464
.subfield-label {
465
    font-style: italic;
466
467
    span {
468
        &.subfield-code {
469
            font-weight: bold;
470
        }
471
    }
472
}
473
474
.members-update-table {
475
    padding-top: 10px;
476
}
477
478
#navmenulist {
479
    li {
480
        border-bottom: 1px solid #EEE;
481
        list-style-image: url("../img/arrow-bullet.gif");
482
        padding: .2em 0;
483
484
        a {
485
            text-decoration: none;
486
        }
487
    }
488
}
489
490
#doc,
491
#doc1,
492
#doc2,
493
#doc3 {
494
    padding-top: 1em;
495
}
496
497
#login_controls  {
498
    padding: .4em .5em;
499
    position: absolute;
500
    right: .5em;
501
}
502
503
ul {
504
    padding-left: 1.1em;
505
506
    li {
507
        list-style-type: disc;
508
509
        input {
510
            &.submit {
511
                font-size: 87%;
512
                padding: 2px;
513
            }
514
        }
515
516
        li {
517
            list-style-type: circle;
518
        }
519
    }
520
521
    .toolbar {
522
        padding-left: 0;
523
524
        button {
525
            font-family: $font-main;
526
            padding-bottom: 2px;
527
        }
528
529
        li {
530
            display: inline;
531
            list-style: none;
532
        }
533
    }
534
535
    &.budget_hierarchy {
536
        margin-left: 0;
537
        padding-left: 0;
538
539
        li {
540
            display: inline;
541
542
            &::after {
543
                content: " -> ";
544
            }
545
546
            &:first-child {
547
                &::after {
548
                    content: "";
549
                }
550
            }
551
552
            &:last-child {
553
                &::after {
554
                    content: "";
555
                }
556
            }
557
        }
558
    }
559
560
    /* For Font Awesome icon bullets */
561
    &.fa-ul {
562
        li {
563
            list-style-type: none;
564
        }
565
    }
566
567
    &.ui-tabs-nav {
568
        li {
569
            list-style: none;
570
        }
571
    }
572
}
573
574
ol {
575
    padding-left: 1.5em;
576
577
    li {
578
        list-style: decimal;
579
    }
580
581
    &.bibliodetails {
582
        float: left;
583
        margin: 0 0 1em 1em;
584
585
        li {
586
            border-bottom: 1px solid #E8E8E8;
587
            list-style-type: none;
588
            padding: .1em;
589
        }
590
591
        span {
592
            &.label {
593
                border-right: 1px solid #E8E8E8;
594
                float: left;
595
                font-weight: bold;
596
                margin-right: 1em;
597
                width: 12em;
598
            }
599
        }
600
    }
601
}
602
603
604
.gradient {
605
    background-image: linear-gradient(to bottom, rgb(230, 240, 242) 1%, rgb(255, 255, 255) 99%);
606
    display: inline-block;
607
    width: 100%;
608
}
609
610
.clearfix {
611
    display: inline-block;
612
613
    &::after {
614
        clear: both;
615
        content: ".";
616
        display: block;
617
        height: 0;
618
        visibility: hidden;
619
    }
620
}
621
622
#editions {
623
    table,
624
    td {
625
        border: 0;
626
    }
627
}
628
629
.highlighted-row,
630
.highlighted-row td {
631
    background-color: #FFD000 !important;
632
}
633
634
tbody {
635
    tr {
636
        &:nth-child(odd) {
637
            td {
638
                background-color: #F3F3F3;
639
                border: 1px solid #BCBCBC;
640
                border-right: 1px solid #BCBCBC;
641
            }
642
        }
643
    }
644
}
645
646
.overdue {
647
    td {
648
        &.od {
649
            color: #CC0000;
650
            font-weight: bold;
651
        }
652
    }
653
}
654
655
tr {
656
    &.clickable {
657
        cursor: pointer;
658
    }
659
660
    &.expired {
661
        td {
662
            color: #999999;
663
        }
664
    }
665
666
    &.highlight {
667
        td {
668
            background-color: #F6F6F6;
669
            border-color: #BCBCBC;
670
        }
671
672
        th {
673
            &[scope="row"] {
674
                background-color: #DDDDDD;
675
                border-color: #BCBCBC;
676
            }
677
        }
678
679
        table {
680
            &.invis {
681
                td {
682
                    border: 0;
683
                }
684
            }
685
        }
686
    }
687
688
    &.odd {
689
        &.onissue {
690
            td {
691
                background-color: #FFFFE1;
692
            }
693
        }
694
    }
695
696
    &.ok {
697
        td {
698
            background-color: #FFFFCC;
699
        }
700
701
        &:nth-child(odd) {
702
            td {
703
                background-color: #FFFFCC;
704
            }
705
        }
706
707
        &:nth-child(even) {
708
            td {
709
                background-color: #FFFFCC;
710
            }
711
        }
712
    }
713
714
    &.onissue {
715
        td {
716
            background-color: #FFFFCC;
717
        }
718
    }
719
720
    &.reserved {
721
        td {
722
            background-color: #EEFFD4;
723
        }
724
    }
725
726
    &.transfered {
727
        td {
728
            background-color: #E8F0F6;
729
        }
730
    }
731
732
    &.warn {
733
        td {
734
            background-color: #FF9090;
735
        }
736
737
        &:nth-child(odd) {
738
            td {
739
                background-color: #FF9090;
740
            }
741
        }
742
    }
743
}
744
745
.table_borrowers {
746
    tr {
747
        &:hover {
748
            td {
749
                background-color: #FFFF99;
750
            }
751
        }
752
    }
753
}
754
755
tfoot {
756
    td {
757
        background-color: #F3F3F3;
758
        font-weight: bold;
759
    }
760
}
761
762
caption {
763
    color: #000;
764
    font-size: 133.9%;
765
    font-weight: bold;
766
    margin: .3em 0;
767
}
768
769
.problem {
770
    background-color: #FFFFCC;
771
    color: #990000;
772
    font-weight: bold;
773
    line-height: 1.7em;
774
}
775
776
fieldset {
777
    background-color: #F4F8F9;
778
    border: 2px solid #B9D8D9;
779
    border-radius: 5px;
780
    margin: 1em 1em 1em 0;
781
    padding: 1em;
782
783
    & + fieldset {
784
        &.action {
785
            padding-top: 20px;
786
        }
787
    }
788
789
    .lastchecked {
790
        border-bottom-left-radius: 0;
791
        border-bottom-right-radius: 0;
792
        border-bottom-width: 0;
793
        margin-bottom: 0;
794
    }
795
796
    &.action {
797
        background-color: transparent;
798
        border: 0;
799
        clear: both;
800
        float: none;
801
        margin: .9em 0 0 0;
802
        padding: .4em;
803
        width: auto;
804
    }
805
806
    &.brief {
807
        border: 2px solid #B9D8D9;
808
809
        div {
810
            .hint {
811
                margin-bottom: .4em;
812
            }
813
        }
814
815
        label {
816
            display: block;
817
            font-weight: bold;
818
            padding: .3em 0;
819
820
            &.inline {
821
                display: inline;
822
                float: none;
823
                margin-left: 1em;
824
                width: auto;
825
            }
826
        }
827
828
        li {
829
            &[aria-disabled="true"] {
830
                color: #999;
831
            }
832
833
            &.inline {
834
                display: inline;
835
                float: none;
836
                margin-left: 1em;
837
                width: auto;
838
            }
839
        }
840
841
        ol,
842
        li {
843
            list-style-type: none;
844
        }
845
846
        span {
847
            .label {
848
                display: block;
849
                font-weight: bold;
850
                padding: .3em 0;
851
            }
852
        }
853
    }
854
855
    &.rows {
856
        border: 2px solid #B9D8D9;
857
        border-width: 1px;
858
        clear: left;
859
        float: left;
860
        font-size: 90%;
861
        margin: .9em 0 0 0;
862
        padding: 0;
863
        width: 100%;
864
865
        fieldset {
866
            background-color: transparent;
867
            border-width: 1px;
868
            margin: 1em;
869
            padding: .3em;
870
871
            &.action {
872
                padding: 1em;
873
            }
874
        }
875
876
        &.inputnote {
877
            clear: left;
878
            float: left;
879
            margin: 1em 0 0 11em;
880
        }
881
882
883
        &.left {
884
            label {
885
                text-align: left;
886
                width: 8em;
887
            }
888
889
            li {
890
                padding-bottom: .4em;
891
            }
892
893
            span {
894
                label {
895
                    text-align: left;
896
                    width: 8em;
897
                }
898
            }
899
        }
900
901
        &.ui-accordion-content {
902
            border-top-left-radius: 0;
903
            border-top-right-radius: 0;
904
            margin: 0;
905
            padding: 0;
906
            width: auto;
907
908
            table {
909
                margin: 0;
910
            }
911
        }
912
913
        &.unselected {
914
            background-color: #FFFFFF;
915
            border: 0;
916
            border-width: 0;
917
        }
918
919
        caption {
920
            font-size: 120%;
921
        }
922
923
        div {
924
            .hint {
925
                margin-bottom: .4em;
926
                margin-left: 7.5em;
927
            }
928
        }
929
930
        label {
931
            float: left;
932
            font-weight: bold;
933
            margin-right: 1em;
934
            text-align: right;
935
            width: 6em;
936
937
            .error {
938
                float: none;
939
                margin-left: 1em;
940
                width: auto;
941
            }
942
943
            &.inline {
944
                display: inline;
945
                float: none;
946
                margin-left: 1em;
947
            }
948
949
            .yesno {
950
                float: none;
951
                width: auto;
952
            }
953
        }
954
955
        legend {
956
            font-size: 110%;
957
            font-weight: bold;
958
            margin-left: 1em;
959
        }
960
961
        li {
962
            clear: left;
963
            float: left;
964
            list-style-type: none;
965
            padding-bottom: 1em;
966
            width: 100%;
967
968
            &[aria-disabled="true"] {
969
                color: #999;
970
            }
971
972
            &.radio {
973
                padding-left: 9em;
974
                width: auto;
975
976
                input + label {
977
                    margin-left: 0;
978
                    padding-left: 0;
979
                }
980
981
                label {
982
                    float: none;
983
                    margin: 0 0 0 1em;
984
                    width: auto;
985
                }
986
            }
987
988
            input + label {
989
                margin-left: 0;
990
                padding-left: 0;
991
            }
992
        }
993
994
        ol {
995
            list-style-type: none;
996
            padding: 1em 1em 0 1em;
997
998
            &.radio {
999
                label {
1000
                    float: none;
1001
                    margin-left: 20px;
1002
                    margin-right: 30px;
1003
                    padding-left: 0;
1004
                    vertical-align: middle;
1005
                    width: auto;
1006
1007
                    &.radio {
1008
                        float: left;
1009
                        margin-right: 1em;
1010
                        margin-top: 0;
1011
                        width: 9em;
1012
                    }
1013
                }
1014
1015
                input {
1016
                    &[type="checkbox"],
1017
                    &[type="radio"] {
1018
                        margin-left: -20px;
1019
                    }
1020
                }
1021
            }
1022
        }
1023
1024
        p {
1025
            margin: 1em 0 1em 1em;
1026
        }
1027
1028
        span {
1029
            &.label {
1030
                float: left;
1031
                font-weight: bold;
1032
                margin-right: 1em;
1033
                text-align: right;
1034
                width: 6em;
1035
            }
1036
        }
1037
1038
        table {
1039
            clear: both;
1040
            font-size: 105%;
1041
            margin: 1em 0 1em 1em;
1042
1043
            &.mceListBox {
1044
                margin: 0;
1045
            }
1046
        }
1047
1048
        td {
1049
            label {
1050
                float: none;
1051
                font-weight: normal;
1052
                width: auto;
1053
            }
1054
        }
1055
1056
        .inputnote {
1057
            clear: left;
1058
            float: left;
1059
            margin: 1em 0 0 11em;
1060
        }
1061
1062
        &+h3 {
1063
            clear: both;
1064
            padding-top: .5em;
1065
        }
1066
    }
1067
}
1068
1069
.yui-u {
1070
    div {
1071
        .hint {
1072
            margin-bottom: .4em;
1073
        }
1074
    }
1075
1076
    fieldset {
1077
        &.rows {
1078
            div {
1079
                &.hint {
1080
                    margin-left: 7.5em;
1081
                }
1082
            }
1083
1084
            label {
1085
                width: 10em;
1086
            }
1087
1088
            span {
1089
                &.label {
1090
                    width: 10em;
1091
                }
1092
            }
1093
        }
1094
    }
1095
1096
    .rows {
1097
        li {
1098
            p {
1099
                label {
1100
                    &.widelabel {
1101
                        width: auto;
1102
                    }
1103
                }
1104
            }
1105
        }
1106
    }
1107
}
1108
1109
legend {
1110
    background-color: #FFFFFF;
1111
    border: 2px solid #B9D8D9;
1112
    border-radius: 3px;
1113
    font-size: 123.1%;
1114
    font-weight: bold;
1115
    padding: .2em .5em;
1116
    width: auto;
1117
}
1118
1119
#floating-save {
1120
    background-color: rgba(185, 216, 217, .6);
1121
    bottom: 3%;
1122
    position: fixed;
1123
    right: 1%;
1124
    width: 150px;
1125
}
1126
1127
#breadcrumbs {
1128
    background-color: #E6F0F2;
1129
    clear: both;
1130
    font-size: 90%;
1131
    margin: 0;
1132
    padding: .2em .5em .4em 10px;
1133
}
1134
1135
#header + #breadcrumbs {
1136
    margin-top: 1em;
1137
}
1138
1139
#header > .container-fluid {
1140
    padding: 0;
1141
}
1142
1143
div {
1144
    &.action {
1145
        background-color: transparent;
1146
        border: 0;
1147
        clear: both;
1148
        float: none;
1149
        margin: .9em 0 0 0;
1150
        padding: .4em;
1151
        width: auto;
1152
    }
1153
1154
    .circmessage {
1155
        margin-bottom: .3em;
1156
        padding: 0 .4em .4em .4em;
1157
1158
        &:first-child {
1159
            margin-top: 1em;
1160
        }
1161
    }
1162
1163
    &.error {
1164
        background-color: #FFFF99;
1165
        border: 2px dashed #990000;
1166
        margin: 1em;
1167
        padding: .5em;
1168
    }
1169
1170
    &.first {
1171
        fieldset {
1172
            margin-right: 0;
1173
        }
1174
    }
1175
1176
    &.help {
1177
        margin: .9em 0 0 0;
1178
    }
1179
1180
    &.justify {
1181
        text-align: justify;
1182
    }
1183
1184
    &.message {
1185
        background: linear-gradient(to bottom, #ffffff 0%, #f4f6fa 2%, #eaeef5 23%, #e8edf6 94%, #cddbf2 100%);
1186
        border: 1px solid #BCBCBC;
1187
        text-align: center;
1188
        width: 55%;
1189
1190
        ul,
1191
        h5 {
1192
            padding-left: 25%;
1193
            text-align: left;
1194
        }
1195
1196
        ul + h4 {
1197
            margin-top: .7em;
1198
        }
1199
    }
1200
1201
    &.note {
1202
        background: linear-gradient(to bottom, #F4F6FA 0%, #E8EDF6 100%); /* W3C */
1203
        border: 1px solid #BCBCBC;
1204
        margin: .5em 0;
1205
        padding: .5em;
1206
1207
        i {
1208
            &.fa-exclamation {
1209
                color: #CC0000;
1210
                font-style: italic;
1211
                padding: 0 .3em;
1212
            }
1213
        }
1214
    }
1215
1216
    /* Tools > automatic_item_modification_by_age */
1217
    &.rules {
1218
        display: block;
1219
    }
1220
1221
    &[class$="_table_controls"] {
1222
        padding: .7em 0;
1223
    }
1224
1225
    &.results {
1226
        padding: .7em 0;
1227
    }
1228
1229
    &.rule {
1230
        background-color: #F4F8F9;
1231
        border: 2px solid #B9D8D9;
1232
        border-radius: 5px;
1233
        margin: .3em;
1234
        padding: .3em;
1235
    }
1236
1237
    &.lastchecked {
1238
        border: 2px solid #BCDB89;
1239
        border-bottom-left-radius: 5px;
1240
        border-bottom-right-radius: 5px;
1241
        padding: .2em 1em;
1242
    }
1243
1244
    &.listgroup {
1245
        clear:  left;
1246
1247
        h4 {
1248
            font-style: italic;
1249
1250
            a {
1251
                font-size:  80%;
1252
            }
1253
        }
1254
1255
        input {
1256
            font-size: 80%;
1257
        }
1258
    }
1259
1260
    &.sysprefs {
1261
        h3 {
1262
            margin: .2em 0 .2em .4em;
1263
        }
1264
1265
        dl {
1266
            margin-left: 1.5em;
1267
        }
1268
1269
        &.hint {
1270
            float: right;
1271
            margin: .7em;
1272
            padding: .5em;
1273
            width: 25%;
1274
        }
1275
    }
1276
1277
    &.rows {
1278
        clear: left;
1279
        float: left;
1280
        margin: 0 0 0 0;
1281
        padding: 0;
1282
        width: 100%;
1283
1284
        & + div {
1285
            &.rows {
1286
                margin-top: .6em;
1287
            }
1288
        }
1289
1290
        li {
1291
            border-bottom:  1px solid #EEE;
1292
            clear: left;
1293
            float: left;
1294
            list-style-type: none;
1295
            padding-bottom: .2em;
1296
            padding-top: .1em;
1297
            width: 100%;
1298
        }
1299
1300
        ol {
1301
            list-style-type: none;
1302
            padding: .5em 1em 0 0;
1303
1304
            li {
1305
                li {
1306
                    border-bottom: 0;
1307
                }
1308
            }
1309
        }
1310
1311
        span {
1312
            &.label {
1313
                float: left;
1314
                font-weight: bold;
1315
                margin-right: 1em;
1316
                padding-top: 0;
1317
                text-align: left;
1318
                width: 9em;
1319
            }
1320
        }
1321
    }
1322
1323
    &.pages {
1324
        margin: .5em 0;
1325
1326
        a {
1327
            font-weight: bold;
1328
            padding: 1px 5px 1px 5px;
1329
            text-decoration: none;
1330
1331
            &:link,
1332
            &:visited {
1333
                background-color: #EEEEEE;
1334
                color: #3366CC;
1335
            }
1336
1337
            &:hover,
1338
            &:active {
1339
                background-color: #FFC;
1340
            }
1341
        }
1342
1343
        .current,
1344
        .currentPage {
1345
            background-color: #E6FCB7;
1346
            color: #666;
1347
            font-weight: bold;
1348
            padding: 1px 5px 1px 5px;
1349
        }
1350
1351
        .inactive {
1352
            background-color: #F3F3F3;
1353
            color: #BCBCBC;
1354
            font-weight: bold;
1355
            padding: 1px 5px 1px 5px;
1356
        }
1357
    }
1358
1359
    .browse {
1360
        margin: .5em 0;
1361
    }
1362
}
1363
1364
#header_search {
1365
    background-position: .5em .5em;
1366
    background-repeat: no-repeat;
1367
    float: left;
1368
    margin: .3em 0 .5em 0;
1369
1370
    input {
1371
        font-size: 1.3em;
1372
1373
        &.submit {
1374
            font-size: 1em;
1375
        }
1376
    }
1377
1378
    div {
1379
        &.residentsearch {
1380
            border: 0;
1381
            border-bottom: 1px solid #85CA11;
1382
            padding: 0 0 .2em 0;
1383
        }
1384
    }
1385
1386
    ul {
1387
        &.ui-tabs-nav {
1388
            margin-left: 1em;
1389
            padding-top: 0;
1390
1391
            li {
1392
                &.ui-state-default {
1393
                    background: transparent none;
1394
                    border: 0;
1395
                    top: 0;
1396
1397
                    a {
1398
                        padding: .3em .6em;
1399
                    }
1400
                }
1401
1402
                &.ui-tabs-active {
1403
                    background-color: #FFFFF1;
1404
                    border: 1px solid #85CA11;
1405
                    border-top-width: 0;
1406
                    top: -2px;
1407
1408
                    a {
1409
                        text-decoration: none;
1410
                    }
1411
                }
1412
            }
1413
        }
1414
    }
1415
1416
    .ui-corner-top {
1417
        border-radius: 0 0 4px 4px;
1418
    }
1419
1420
    & > div,
1421
    & > ul {
1422
        display: none;
1423
1424
        & > li {
1425
            display: none;
1426
1427
            &:first-of-type {
1428
                display: block;
1429
            }
1430
        }
1431
1432
        &:first-of-type {
1433
            display: block;
1434
        }
1435
    }
1436
}
1437
1438
1439
.head-searchbox {
1440
    width: 30em;
1441
}
1442
1443
#reserves,
1444
#checkouts {
1445
    border: 1px solid #B9D8D9;
1446
    padding: 1em;
1447
}
1448
1449
.tip {
1450
    color: #808080;
1451
    font-size: 93%;
1452
}
1453
1454
.single-line {
1455
    white-space: nowrap;
1456
}
1457
1458
.ex {
1459
    font-family: $font-monospace;
1460
    font-weight: bold;
1461
}
1462
1463
dt {
1464
    font-weight: bold;
1465
}
1466
1467
dd {
1468
    font-size: 90%;
1469
    font-weight: normal;
1470
    padding: .2em;
1471
    text-indent: 2.5em;
1472
}
1473
1474
#toolbar,
1475
.btn-toolbar {
1476
    background-color: #EDF4F6;
1477
    border: 1px solid #E6F0F2;
1478
    border-radius: 5px 5px 0 0;
1479
    margin: 0;
1480
    padding: 5px 5px 5px 5px;
1481
}
1482
1483
#disabled {
1484
    a {
1485
        color: #999;
1486
1487
        &:hover {
1488
            color: #999;
1489
        }
1490
    }
1491
}
1492
1493
#disabled2 {
1494
    a {
1495
        color: #999;
1496
    }
1497
}
1498
1499
1500
.patroninfo {
1501
    margin-top: -.5em;
1502
1503
    h5 {
1504
        border-right: 1px solid #B9D8D9;
1505
        margin-bottom: 0;
1506
        padding-bottom: .5em;
1507
        padding-left: -.5em;
1508
        padding-top: .3em;
1509
1510
        &:empty {
1511
            border-right: 0;
1512
        }
1513
    }
1514
1515
    ul {
1516
        border: 0;
1517
        border-bottom: 0;
1518
        border-right: 1px solid #B9D8D9;
1519
        border-top: 0;
1520
        margin: 0;
1521
        padding: 0;
1522
1523
        li {
1524
            list-style-type: none;
1525
            margin: 0;
1526
        }
1527
    }
1528
1529
    & + #menu {
1530
        margin-right: 0;
1531
    }
1532
}
1533
1534
#patronbasics {
1535
    div {
1536
        background: transparent url("../img/patron-blank.min.svg") 10px 5px no-repeat;
1537
        border: 1px solid #CCCCCC;
1538
        height: 125px;
1539
        margin: .3em 0 .3em .3em;
1540
        padding: 0;
1541
        width: 105px;
1542
    }
1543
}
1544
1545
#patronimage {
1546
    border: 1px solid #CCCCCC;
1547
    margin: .3em 0 .3em .3em;
1548
    max-width: 140px;
1549
    padding: .2em;
1550
}
1551
1552
.patronviews {
1553
    border-right:  1px solid #000;
1554
    border-top: 1px solid #000;
1555
    margin-bottom: .5em;
1556
    padding: .5em 0 .5em 0;
1557
}
1558
1559
.column-tool {
1560
    font-size: 80%;
1561
}
1562
1563
.hint {
1564
    color: #666;
1565
    font-size: 95%;
1566
}
1567
1568
.yui-b {
1569
    fieldset {
1570
        &.brief {
1571
            padding: .4em .7em;
1572
1573
            fieldset {
1574
                margin: 0 .3em;
1575
                padding: .5em;
1576
1577
                legend {
1578
                    font-size: 85%;
1579
                }
1580
            }
1581
1582
            li {
1583
1584
                &.checkbox {
1585
1586
                    input {
1587
                        #tools_holidays & {
1588
                            margin-left: 0;
1589
                        }
1590
                    }
1591
1592
                    label {
1593
                        display: inline;
1594
1595
                        #tools_holidays & {
1596
                            margin-left: 20px;
1597
                        }
1598
                    }
1599
                }
1600
1601
                &.dateinsert {
1602
                    label {
1603
                        display: inline;
1604
                    }
1605
1606
                    span {
1607
                        &.label {
1608
                            display: inline;
1609
                        }
1610
                    }
1611
                }
1612
1613
                &.radio {
1614
                    padding: .7em 0;
1615
1616
                    input {
1617
                        padding: .3em 0;
1618
1619
                        #tools_holidays & {
1620
                            margin-left: 0;
1621
                        }
1622
                    }
1623
1624
                    label {
1625
                        display: inline;
1626
1627
                        #tools_holidays & {
1628
                            margin-left: 20px;
1629
                        }
1630
1631
                        span {
1632
                            &.label {
1633
                                display: inline;
1634
                            }
1635
                        }
1636
                    }
1637
                }
1638
            }
1639
1640
            ol {
1641
                font-size: 85%;
1642
                margin: 0;
1643
                padding: 0;
1644
            }
1645
1646
            select {
1647
                width: 12em;
1648
            }
1649
        }
1650
1651
        &.rows {
1652
            div {
1653
                &.hint {
1654
                    margin-left: 10.5em;
1655
                }
1656
            }
1657
1658
            label {
1659
                width: 9em;
1660
            }
1661
1662
            span {
1663
                &.label {
1664
                    width: 9em;
1665
                }
1666
            }
1667
1668
            td {
1669
                label {
1670
                    width: auto;
1671
                }
1672
1673
                span {
1674
                    &.label {
1675
                        width: auto;
1676
                    }
1677
                }
1678
            }
1679
        }
1680
    }
1681
}
1682
1683
.btn-toolbar {
1684
    fieldset {
1685
        &.action {
1686
            margin-top: 0;
1687
        }
1688
    }
1689
1690
    .dropdown-menu {
1691
        font-size: 13px;
1692
    }
1693
}
1694
1695
.rows {
1696
    .label {
1697
        white-space: normal;
1698
    }
1699
}
1700
1701
.checkedout {
1702
    color: #999999;
1703
    font-style: italic;
1704
}
1705
1706
.subfield_not_filled {
1707
    background-color: #FFFF99;
1708
}
1709
1710
.content_hidden {
1711
    display: none;
1712
    visibility: hidden; /* you propably don't need to change this one */
1713
}
1714
1715
/* the property for the displayed tab */
1716
.content_visible {
1717
    display: block;
1718
    visibility: visible; /* you propably don't need to change this one */
1719
}
1720
1721
#z3950searcht {
1722
    table {
1723
        /* doesn't have desired effect in catalogue/results.tmpl - I'll leave this here for now but there do seem to be casscading CSS errors in this and other CSS fiels - RICKW 20081118 */
1724
        border: 0;
1725
        padding: 20px;
1726
    }
1727
}
1728
1729
#z3950_search_targets {
1730
    height:     338px;
1731
    overflow-y: auto;
1732
}
1733
1734
#z3950_search_targets_acq {
1735
    height:     308px;
1736
    overflow-y: auto;
1737
}
1738
1739
#z3950_search_targets_auth {
1740
    height:     348px;
1741
    overflow-y: auto;
1742
}
1743
1744
.z3950checks {
1745
    padding-left: 1em;
1746
}
1747
1748
.error {
1749
    color: #CC0000;
1750
}
1751
1752
.status_ok {
1753
    background-color: #90EE90;
1754
}
1755
1756
.status_warn {
1757
    background-color: #FF0000;
1758
}
1759
1760
/* Font Awesome icons */
1761
i {
1762
    &.error {
1763
        color: #CC0000;
1764
    }
1765
1766
    &.success {
1767
        color: #008000;
1768
    }
1769
1770
    &.warn {
1771
        color: #FFA500;
1772
    }
1773
}
1774
1775
.checkout-setting {
1776
    font-size: 85%;
1777
    padding-top: .3em;
1778
1779
    input {
1780
        vertical-align: middle;
1781
    }
1782
1783
    label {
1784
        font-size: inherit;
1785
        font-weight: normal;
1786
    }
1787
}
1788
1789
.checkout-settings {
1790
    background-color: #F4F8F9;
1791
    border-radius: 0;
1792
    border-top: 2px solid #B9D8D9;
1793
    display: none;
1794
    margin-left: -1em;
1795
    margin-right: -1em;
1796
    margin-top: 1em;
1797
    padding: 1em 1em 0;
1798
}
1799
1800
#show-checkout-settings {
1801
    margin-top: .5em;
1802
}
1803
1804
.blocker {
1805
    color: #990000;
1806
}
1807
1808
.inaccurate-item-statuses {
1809
    color: #990000;
1810
}
1811
1812
.circmessage {
1813
    li {
1814
        list-style: url("../img/arrow-bullet.gif");
1815
        margin-bottom: .2em;
1816
    }
1817
}
1818
1819
#circ_needsconfirmation {
1820
    margin: auto;
1821
}
1822
1823
.dialog {
1824
    border: 1px solid #BCBCBC;
1825
    border-radius: 2px;
1826
    margin: 1em auto;
1827
    padding: .5em;
1828
    text-align: center;
1829
    width: 65%;
1830
1831
    a {
1832
        &.approve {
1833
            display: inline-block;
1834
        }
1835
    }
1836
1837
    button,
1838
    a.approve {
1839
        background: #FFF none;
1840
        border: 1px outset #999999;
1841
        border-left-color: #666;
1842
        border-top-color: #666;
1843
        margin: .4em;
1844
        padding: .4em;
1845
        white-space: pre-line;
1846
1847
        &:active {
1848
            border: 1px inset #999999;
1849
        }
1850
1851
        &:hover {
1852
            background-color: #FFC;
1853
        }
1854
    }
1855
1856
    h2,
1857
    h3,
1858
    h4 {
1859
        margin: auto;
1860
        text-align: center;
1861
    }
1862
1863
    input {
1864
        background-color: #FFFFFF;
1865
        border: 1px solid #BCBCBC;
1866
        margin: .4em;
1867
        padding: .4em .4em .4em 25px;
1868
1869
        &:hover {
1870
            background-color: #FFC;
1871
        }
1872
1873
        &[type="submit"] {
1874
            background: #FFF none;
1875
        }
1876
    }
1877
1878
    li {
1879
        list-style-position: inside;
1880
    }
1881
1882
    table {
1883
        margin: .5em auto;
1884
1885
        td {
1886
            text-align: left;
1887
        }
1888
1889
        th {
1890
            text-align: right;
1891
        }
1892
    }
1893
}
1894
1895
.alert {
1896
    background: linear-gradient(to bottom, #FEF8D3 0%, #FFEC91 9%, #FFED87 89%, #F9DC00 100%); /* W3C */
1897
    border: 1px solid #E0C726;
1898
    color: inherit;
1899
    text-align: center;
1900
    text-shadow: none;
1901
1902
    strong {
1903
        color: #900;
1904
    }
1905
1906
    /* Redefine a new style for Bootstrap's class "close" since we use that already */
1907
    /* Use <a class="closebtn" href="#">&times;</a> */
1908
    .closebtn {
1909
        line-height: 20px;
1910
        position: relative;
1911
        right: -21px;
1912
        top: -2px;
1913
    }
1914
}
1915
1916
.approve,
1917
.success {
1918
    i {
1919
        &.fa {
1920
            color: #008000;
1921
        }
1922
    }
1923
}
1924
1925
.deny {
1926
    i {
1927
        &.fa {
1928
            color: #CC0000;
1929
        }
1930
    }
1931
}
1932
1933
.new {
1934
    i {
1935
        &.fa {
1936
            color: #425FAF;
1937
        }
1938
    }
1939
}
1940
1941
.accesskey {
1942
    text-decoration: underline;
1943
}
1944
1945
.missing {
1946
    background-color: #FFFFCC;
1947
}
1948
1949
.term {
1950
    background-color: #FFC;
1951
    color: #990000;
1952
}
1953
1954
/* style for shelving location in catalogsearch */
1955
.shelvingloc {
1956
    display: block;
1957
    font-style: italic;
1958
}
1959
1960
#menu {
1961
    border-right: 1px solid #B9D8D9;
1962
    margin-right: .5em;
1963
    padding-bottom: 2em;
1964
    padding-top: 1em;
1965
1966
    li {
1967
        a {
1968
            background: linear-gradient(to bottom, #e8f0f6 0%, #e8f0f6 96%, #c1c1c1 100%);
1969
            border: 1px solid #B9D8D9;
1970
            border-bottom-left-radius: 5px;
1971
            border-top-left-radius: 5px;
1972
            display: block;
1973
            font-size: 111%;
1974
            margin: .5em 0;
1975
            margin-right:  -1px;
1976
            padding: .4em .3em;
1977
            text-decoration: none;
1978
1979
            &:hover {
1980
                background: linear-gradient(to bottom, #fafafa 0%, #ffffff 96%, #e6e6e6 97%, #cccccc 99%, #c1c1c1 100%);
1981
                border-bottom: 1px solid #85CA11;
1982
                border-left: 1px solid #85CA11;
1983
                border-top: 1px solid #85CA11;
1984
            }
1985
        }
1986
1987
        &.active {
1988
            a {
1989
                background-color: #FFFFFF;
1990
                background-image: none;
1991
                border-bottom: 1px solid #85CA11;
1992
                border-left: 1px solid #85CA11;
1993
                border-right: 0;
1994
                border-top: 1px solid #85CA11;
1995
                color: #000000;
1996
                font-weight: bold;
1997
1998
                &:hover {
1999
                    background-color: #FFFFFF;
2000
                    color:  #538200;
2001
                }
2002
            }
2003
        }
2004
    }
2005
2006
    ul {
2007
        li {
2008
            list-style-type: none;
2009
        }
2010
    }
2011
}
2012
2013
2014
#logo {
2015
    background: transparent url("../img/koha-logo-medium.gif") no-repeat scroll 0%;
2016
    margin: .75em .3em .75em .7em;
2017
2018
    a {
2019
        border: 0;
2020
        cursor: pointer;
2021
        display: block;
2022
        height: 0 !important;
2023
        margin: 0;
2024
        overflow: hidden;
2025
        padding: 44px 0 0;
2026
        text-decoration: none;
2027
        width: 180px;
2028
    }
2029
}
2030
2031
#closewindow {
2032
    margin-top: 2em;
2033
    text-align: center;
2034
2035
    a {
2036
        font-weight: bold;
2037
    }
2038
}
2039
2040
.barcode {
2041
    font-size:  200%;
2042
    vertical-align: middle;
2043
}
2044
2045
li {
2046
    &.email {
2047
        overflow: hidden;
2048
        text-overflow: ellipsis;
2049
        white-space: nowrap;
2050
    }
2051
}
2052
2053
.patronbriefinfo {
2054
    li {
2055
        &.email {
2056
            font-size:  87%;
2057
            padding: 0 10px 0 0;
2058
            width: 90%;
2059
        }
2060
    }
2061
}
2062
2063
.empty {
2064
    color: #CCC;
2065
}
2066
2067
.address {
2068
    font-size: 110%;
2069
}
2070
2071
.title {
2072
    font-size: 105%;
2073
    font-weight: bold;
2074
}
2075
2076
.hold {
2077
    float: right;
2078
    font-size: 90%;
2079
    margin: 0;
2080
}
2081
2082
.thumbnail {
2083
    display: block;
2084
    margin: auto;
2085
2086
    & > li {
2087
        list-style-type: none;
2088
    }
2089
}
2090
2091
#searchresults {
2092
    ul {
2093
        li {
2094
            clear: left;
2095
            font-size: 90%;
2096
            list-style: url("../img/item-bullet.gif");
2097
            padding: .2em 0;
2098
2099
            img {
2100
                float: left;
2101
                margin: 3px 5px 3px -5px;
2102
            }
2103
        }
2104
2105
        span {
2106
            &.status {
2107
                clear: left;
2108
                color: #900;
2109
                display: block;
2110
            }
2111
2112
            &.unavailable {
2113
                clear: left;
2114
                display: block;
2115
            }
2116
        }
2117
2118
        table {
2119
            td {
2120
                vertical-align: top;
2121
            }
2122
        }
2123
    }
2124
2125
    &.unavailability {
2126
        strong {
2127
            display: block;
2128
        }
2129
    }
2130
}
2131
2132
#searchheader {
2133
    background-color: #E6F0F2;
2134
    border: 1px solid #B9D8D9;
2135
    border-radius: 5px 5px 0 0;
2136
    font-size: 80%;
2137
    margin: 0 0 .5em -1px;
2138
    padding: .4em 0 .4em 1em;
2139
2140
    &.floating {
2141
        border-radius: 0;
2142
        margin-top: 0;
2143
    }
2144
2145
    .btn-group {
2146
        > .btn {
2147
            &:first-child {
2148
                margin-left: .7em;
2149
            }
2150
        }
2151
    }
2152
2153
    form {
2154
        float: right;
2155
        padding: 5px 5px 3px 0;
2156
2157
        &.fz3950 {
2158
            float: right;
2159
            font-size: 125%;
2160
            padding: 0 0 0 5em;
2161
        }
2162
2163
        &.fz3950bigrpad {
2164
            float: right;
2165
            font-size: 125%;
2166
            padding: 5px 25em 0 0;
2167
        }
2168
    }
2169
}
2170
2171
#search-facets {
2172
    border: 1px solid #B9D8D9;
2173
    border-radius: 5px 5px 0 0;
2174
2175
    h4 {
2176
        background-color: #E6F0F2;
2177
        border-bottom: 1px solid #B9D8D9;
2178
        border-radius: 5px 5px 0 0;
2179
        font-size: 90%;
2180
        margin: 0;
2181
        padding: .4em .2em;
2182
        text-align: center;
2183
    }
2184
2185
    ul {
2186
        margin: 0;
2187
        padding: .3em;
2188
2189
        li {
2190
            font-weight: bold;
2191
            list-style-type: none;
2192
        }
2193
    }
2194
2195
    li {
2196
        li {
2197
            font-size: 85%;
2198
            font-weight: normal;
2199
            margin-bottom: 2px;
2200
            padding: .1em .2em;
2201
        }
2202
2203
        &.showmore {
2204
            font-weight: bold;
2205
            text-indent: 1em;
2206
        }
2207
    }
2208
}
2209
2210
.facet-count {
2211
    display: inline-block;
2212
}
2213
2214
#bookcoverimg {
2215
    text-align: center;
2216
}
2217
2218
.searchhighlightblob {
2219
    font-size: 75%;
2220
    font-style: italic;
2221
}
2222
2223
#displayexample {
2224
    background-color: #CCCCCC;
2225
    margin-bottom: 10px;
2226
    padding: 5px;
2227
}
2228
2229
#irregularity_summary {
2230
    vertical-align: top;
2231
}
2232
2233
#toplevelmenu {
2234
    padding: 0;
2235
}
2236
2237
#CheckAll,
2238
#CheckNone,
2239
#CheckPending {
2240
    font-weight: normal;
2241
    margin: 0 .5em 0 0;
2242
}
2243
2244
.lost,
2245
.dmg,
2246
.wdn {
2247
    color: #990000;
2248
    display: block;
2249
}
2250
2251
.datedue {
2252
    color: #999;
2253
    display: block;
2254
    font-style: italic;
2255
}
2256
2257
.waitinghere,
2258
.credit {
2259
    color: #669900;
2260
}
2261
2262
#mainuserblock {
2263
    border: 1px solid #E8E8E8;
2264
    margin-top: .5em;
2265
    padding: .5em;
2266
}
2267
2268
.labeledmarc-table {
2269
    border: 0;
2270
}
2271
2272
.labeledmarc-label {
2273
    border: 0;
2274
    color: #000000;
2275
    font-size: 11pt;
2276
    font-style: italic;
2277
    padding: 5;
2278
}
2279
2280
.labeledmarc-value {
2281
    border: 0;
2282
    color: #000;
2283
    font-size: 10pt;
2284
    padding: 5;
2285
}
2286
2287
#marcPreview {
2288
    table {
2289
        border: 0;
2290
        font-family: $font-monospace;
2291
        font-size: 95%;
2292
        margin: .7em 0 0 0;
2293
    }
2294
2295
    tbody {
2296
        tr {
2297
            &:nth-child(2n+1) {
2298
                td {
2299
                    background-color: #FFFFFF;
2300
                }
2301
            }
2302
        }
2303
    }
2304
2305
    td {
2306
        border: 0;
2307
        padding: 2px;
2308
        vertical-align: top;
2309
    }
2310
2311
    th {
2312
        background-color: #FFFFFF;
2313
        border: 0;
2314
        padding: 2px;
2315
        text-align: left;
2316
        vertical-align: top;
2317
        white-space: nowrap;
2318
    }
2319
2320
    &.modal-dialog {
2321
        width: 80%;
2322
    }
2323
}
2324
2325
.modal-dialog {
2326
    &.modal-wide {
2327
        width: 80%;
2328
    }
2329
}
2330
2331
@media (max-width: 767px) {
2332
    #marcPreview {
2333
        margin: 0;
2334
        width: auto;
2335
    }
2336
}
2337
2338
#cartDetails {
2339
    background-color: #FFFFFF;
2340
    border: 1px solid #739ACF;
2341
    box-shadow: 1px 1px 3px 0 #666;
2342
    color: #000;
2343
    display: none;
2344
    margin: 0;
2345
    padding: 10px;
2346
    text-align: center;
2347
    width: 180px;
2348
    z-index: 50;
2349
}
2350
2351
#cartmenulink {
2352
    background: transparent url("../img/cart-small.gif") left center no-repeat;
2353
    padding-left: 15px;
2354
}
2355
2356
#basketcount {
2357
    span {
2358
        display: inline;
2359
        font-size: 90%;
2360
        font-weight: normal;
2361
        padding: 0;
2362
    }
2363
}
2364
2365
#moremenu {
2366
    display: none;
2367
}
2368
2369
.results_summary {
2370
    color: #707070;
2371
    display: block;
2372
    font-size: 85%;
2373
    padding: 0 0 .5em 0;
2374
2375
    a {
2376
        font-weight: normal;
2377
    }
2378
2379
    .label {
2380
        color: #202020;
2381
    }
2382
}
2383
2384
.child_fund_amount {
2385
    font-style: italic;
2386
}
2387
2388
.number_box {
2389
    font-size: 105%;
2390
    line-height: 200%;
2391
2392
    a {
2393
        background-color: #E4ECF5;
2394
        border: 1px solid #A4BEDD;
2395
        border-radius: 4px;
2396
        font-weight: bold;
2397
        padding: .1em .4em;
2398
        text-decoration: none;
2399
2400
        &:hover {
2401
            background-color: #EBEFF7;
2402
        }
2403
    }
2404
}
2405
2406
.container {
2407
    border: 1px solid #EEE;
2408
    margin: 1em 0;
2409
    padding: 1em;
2410
}
2411
2412
.import_export {
2413
    position: relative;
2414
2415
    .export_ok {
2416
        background: #E3E3E3 none;
2417
        border: 0;
2418
        cursor: pointer;
2419
        margin-left: 20px;
2420
        padding: 10px;
2421
    }
2422
2423
    .import_export_options {
2424
        background: #FFFFFF;
2425
        border: 1px solid #CDCDCD;
2426
        left: 60px;
2427
        padding: 10px;
2428
        position: absolute;
2429
        top: 0;
2430
        width: 300px;
2431
        z-index: 1;
2432
    }
2433
}
2434
2435
.import_export_options {
2436
    background: #E3E3E3 none;
2437
    border: 0;
2438
    cursor: pointer;
2439
    margin-left: 20px;
2440
    padding: 10px;
2441
2442
    fieldset {
2443
        &.rows {
2444
            li {
2445
                label {
2446
                    width: 16em;
2447
                }
2448
            }
2449
        }
2450
    }
2451
2452
     .importing {
2453
        background: none;
2454
        padding: inherit;
2455
    }
2456
}
2457
2458
.form_import {
2459
    fieldset {
2460
        &.rows {
2461
            li {
2462
                label {
2463
                    width: auto;
2464
                }
2465
            }
2466
        }
2467
    }
2468
2469
    .input_import {
2470
        border: 1px solid #BCBCBC;
2471
    }
2472
}
2473
2474
.importing {
2475
    position: relative;
2476
2477
    .importing_msg {
2478
        padding-bottom: 10px;
2479
        padding-left: 10px;
2480
    }
2481
}
2482
2483
2484
.field_hint {
2485
    color: #808080;
2486
    font-style: italic;
2487
    padding-left: 1em;
2488
}
2489
2490
.m880 {
2491
    display: block;
2492
    float: right;
2493
    padding-left: 20px;
2494
    text-align: right;
2495
    width: 50%;
2496
}
2497
2498
.advsearch {
2499
    margin: 0;
2500
2501
    table {
2502
        border-collapse: separate;
2503
        border-spacing: 5px;
2504
        border-width: 0;
2505
    }
2506
2507
    td {
2508
        border: 1px solid #EEE;
2509
        padding: .3em .4em;
2510
    }
2511
}
2512
2513
#circ_circulation_issue {
2514
    position: relative;
2515
}
2516
2517
#clearscreen {
2518
    position: absolute;
2519
    right: 0;
2520
    top: 0;
2521
2522
    a {
2523
        background-color: #EEE;
2524
        border-radius: 0 0 0 5px;
2525
        color: #CCC;
2526
        display: block;
2527
        font-size: 160%;
2528
        font-weight: bold;
2529
        padding: 0 .7em .2em .7em;
2530
        text-decoration: none;
2531
        text-shadow: 0 -1px 0 #666;
2532
2533
        &:hover {
2534
            color: #CC0000;
2535
        }
2536
    }
2537
}
2538
2539
.pager {
2540
    background-color: #E8E8E8;
2541
    border: 1px solid #BCBCBC;
2542
    border-radius: 5px;
2543
    display: inline-block;
2544
    font-size: 85%;
2545
    margin: .4em 0;
2546
    padding: .3em .5em .3em .5em;
2547
2548
    img {
2549
        vertical-align: middle;
2550
2551
        &.last {
2552
            padding-right: 5px;
2553
        }
2554
    }
2555
2556
    input {
2557
        &.pagedisplay {
2558
            background-color: transparent;
2559
            border: 0;
2560
            font-weight: bold;
2561
            text-align: center;
2562
        }
2563
    }
2564
2565
    p {
2566
        margin: 0;
2567
    }
2568
}
2569
2570
.no-image {
2571
    background-color: #FFFFFF;
2572
    border: 1px solid #AAAAAA;
2573
    border-radius: 3px;
2574
    color: #979797;
2575
    display: block;
2576
    font-size: 86%;
2577
    font-weight: bold;
2578
    text-align: center;
2579
    width: 75px;
2580
}
2581
2582
#acqui_order_supplierlist {
2583
    & > div {
2584
        &.supplier {
2585
            border: 1px solid #EEEEEE;
2586
            margin: .5em;
2587
            padding: 1em;
2588
        }
2589
2590
        & > div {
2591
            & > .baskets {
2592
                margin-top: .5em;
2593
            }
2594
        }
2595
2596
        & > span {
2597
            &.action {
2598
                margin-left: 5em;
2599
            }
2600
2601
            &.suppliername {
2602
                display: inline;
2603
                font-size: 1.7em;
2604
                margin-bottom: .5em;
2605
            }
2606
        }
2607
    }
2608
}
2609
2610
.supplier-contact-details {
2611
    float: left;
2612
}
2613
2614
#ADD-contact {
2615
    margin: 0 0 8px 8px;
2616
}
2617
2618
#contact-template {
2619
    display: none;
2620
}
2621
2622
/* Override core jQueryUI widgets */
2623
.ui-widget-content {
2624
    background: #FFFFFF none;
2625
    border: 1px solid #B9D8D9;
2626
    color: #222222;
2627
}
2628
2629
.ui-widget-header {
2630
    background: #E6F0F2 none;
2631
    border: 1px solid #B9D8D9;
2632
    color: #222222;
2633
    font-weight: bold;
2634
}
2635
2636
.ui-state-default,
2637
.ui-widget-content .ui-state-default,
2638
.ui-widget-header .ui-state-default {
2639
    background: #F4F8F9 none;
2640
    border: 1px solid #B9D8D9;
2641
    color: #555555;
2642
    font-weight: normal;
2643
}
2644
2645
.ui-state-hover,
2646
.ui-widget-content .ui-state-hover,
2647
.ui-widget-header .ui-state-hover,
2648
.ui-state-focus,
2649
.ui-widget-content .ui-state-focus,
2650
.ui-widget-header .ui-state-focus {
2651
    background: #E6F0F2 none;
2652
    border: 1px solid #B9D8D9;
2653
    color: #212121;
2654
    font-weight: normal;
2655
}
2656
2657
.ui-state-active,
2658
.ui-widget-content .ui-state-active,
2659
.ui-widget-header .ui-state-active {
2660
    background: #FFFFFF none;
2661
    border: 1px solid #AAAAAA;
2662
    color: #212121;
2663
    font-weight: normal;
2664
}
2665
2666
.ui-state-highlight,
2667
.ui-widget-content .ui-state-highlight,
2668
.ui-widget-header .ui-state-highlight  {
2669
    background: #FFF4C6;
2670
    border: 1px solid #FED22F;
2671
    color: #363636;
2672
}
2673
2674
.ui-state-error,
2675
.ui-widget-content .ui-state-error,
2676
.ui-widget-header .ui-state-error {
2677
    border: 1px solid #CD0A0A;
2678
    background: #FEF1EC;
2679
    color: #CD0A0A;
2680
}
2681
2682
/* Override jQuery Autocomplete */
2683
.ui-autocomplete {
2684
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
2685
    cursor: default;
2686
    position: absolute;
2687
2688
    &.ui-widget-content {
2689
        .ui-state-hover {
2690
            background: #E6F0F2 none;
2691
            border: 1px solid #B9D8D9;
2692
            color: #212121;
2693
            font-weight: normal;
2694
        }
2695
    }
2696
}
2697
2698
.ui-autocomplete-loading {
2699
    background: #FFF url("../img/spinner-small.gif") right center no-repeat;
2700
}
2701
2702
/* jQuery UI standard tabs */
2703
.ui-menu {
2704
    li {
2705
        list-style: none;
2706
    }
2707
}
2708
2709
.ui-tabs-nav {
2710
    .ui-tabs-active a,
2711
    a:hover,
2712
    a:focus,
2713
    a:active,
2714
    span.a {
2715
        background: none repeat scroll 0 0 transparent;
2716
        outline: 0 none;
2717
    }
2718
2719
    &.ui-widget-header {
2720
        background: none;
2721
        border: 0;
2722
    }
2723
}
2724
2725
.ui-tabs {
2726
    .ui-tabs-nav {
2727
        li {
2728
            background: #E6F0F2 none;
2729
            border: 1px solid #B9D8D9;
2730
            margin-right: .4em;
2731
            top: 1px;
2732
2733
            &.ui-tabs-active {
2734
                background-color: #FFFFFF;
2735
                border: 1px solid #B9D8D9;
2736
                border-bottom-width: 0;
2737
2738
                a {
2739
                    color: #000;
2740
                    font-weight: bold;
2741
                }
2742
2743
                &.ui-state-hover {
2744
                    background: #FFF none;
2745
                }
2746
            }
2747
2748
            &.ui-state-default {
2749
                &.ui-state-hover {
2750
                    background: #EDF4F5 none;
2751
                }
2752
            }
2753
        }
2754
    }
2755
2756
    .ui-tabs-panel {
2757
        border: 1px solid #B9D8D9;
2758
    }
2759
2760
    &.ui-widget-content {
2761
        background: transparent none;
2762
        border: 0;
2763
    }
2764
2765
    .ui-state-default {
2766
        a {
2767
            color: #004D99;
2768
2769
            &:link,
2770
            &:visited {
2771
                color: #004D99;
2772
            }
2773
        }
2774
    }
2775
2776
    .ui-state-hover {
2777
        a {
2778
            color: #538200;
2779
2780
            &:link,
2781
            &:visited {
2782
                color: #538200;
2783
            }
2784
        }
2785
    }
2786
2787
}
2788
2789
.ui-widget {
2790
    font-family: inherit;
2791
    font-size: inherit;
2792
2793
    input,
2794
    select,
2795
    textarea,
2796
    button {
2797
        font-family: inherit;
2798
        font-size: inherit;
2799
    }
2800
}
2801
2802
.statictabs {
2803
    ul {
2804
        background: none repeat scroll 0 0 transparent;
2805
        border: 0 none;
2806
        border-bottom-left-radius: 4px;
2807
        border-bottom-right-radius: 4px;
2808
        border-top-left-radius: 4px;
2809
        border-top-right-radius: 4px;
2810
        color: #222222;
2811
        font-size: 100%;
2812
        font-weight: bold;
2813
        line-height: 1.3;
2814
        list-style: none outside none;
2815
        margin: 0;
2816
        outline: 0 none;
2817
        padding: .2em .2em 0;
2818
        text-decoration: none;
2819
2820
        &::after {
2821
            clear: both;
2822
        }
2823
2824
        &::before,
2825
        &::after {
2826
            content: "";
2827
            display: table;
2828
        }
2829
2830
        li {
2831
            background: none repeat scroll 0 0 #E6F0F2;
2832
            border: 1px solid #B9D8D9;
2833
            border-bottom: 0 none;
2834
            border-top-left-radius: 4px;
2835
            border-top-right-radius: 4px;
2836
            color: #555555;
2837
            float: left;
2838
            font-weight: normal;
2839
            list-style: none outside none;
2840
            margin-bottom: 0;
2841
            margin-right: .4em;
2842
            padding: 0;
2843
            position: relative;
2844
            top: 1px;
2845
            white-space: nowrap;
2846
2847
            &.active {
2848
                background-color: #FFFFFF;
2849
                color: #212121;
2850
                font-weight: normal;
2851
                padding-bottom: 1px;
2852
2853
                a {
2854
                    background: none repeat scroll 0 0 transparent;
2855
                    color: #000000;
2856
                    cursor: text;
2857
                    font-weight: bold;
2858
                    outline: 0 none;
2859
                    top: 1px;
2860
                }
2861
            }
2862
2863
            a {
2864
                color: #004D99;
2865
                cursor: pointer;
2866
                float: left;
2867
                padding: .5em 1em;
2868
                text-decoration: none;
2869
2870
                &:hover {
2871
                    background-color: #EDF4F5;
2872
                    border-top-left-radius: 4px;
2873
                    border-top-right-radius: 4px;
2874
                    color: #538200;
2875
                }
2876
            }
2877
        }
2878
    }
2879
2880
    .tabs-container {
2881
        background: none repeat scroll 0 0 transparent;
2882
        border: 1px solid #B9D8D9;
2883
        border-bottom-left-radius: 4px;
2884
        border-bottom-right-radius: 4px;
2885
        color: #222222;
2886
        display: block;
2887
        padding: 1em 1.4em;
2888
    }
2889
}
2890
2891
.authref {
2892
    font-style: normal;
2893
    text-indent: 4em;
2894
}
2895
2896
.seefrom,
2897
.seealso {
2898
    font-style: italic;
2899
    text-indent: 2em;
2900
}
2901
2902
#authfinderops {
2903
    float: right;
2904
}
2905
2906
.authorizedheading {
2907
    font-weight: bold;
2908
}
2909
2910
.authres_notes,
2911
.authres_seealso,
2912
.authres_otherscript {
2913
    padding-top: 3px;
2914
}
2915
2916
.authres_notes {
2917
    font-style: italic;
2918
}
2919
2920
2921
.contents {
2922
    width: 75%;
2923
2924
    .r {
2925
        display: inline;
2926
    }
2927
2928
    .t {
2929
        display: inline;
2930
        font-weight: bold;
2931
2932
        &:first-child {
2933
            &::before {
2934
                content: "→ ";
2935
            }
2936
        }
2937
2938
        &::before {
2939
            content: "\A→ ";
2940
            white-space: pre;
2941
        }
2942
    }
2943
}
2944
2945
.contentblock {
2946
    margin-left: 2em;
2947
    position: relative;
2948
}
2949
2950
#hierarchies {
2951
    a {
2952
        color: #069;
2953
        font-weight: normal;
2954
        text-decoration: underline;
2955
2956
        &:hover {
2957
            color: #990033;
2958
        }
2959
    }
2960
}
2961
2962
#didyoumeanopac,
2963
#didyoumeanintranet {
2964
    float: left;
2965
    width: 260px;
2966
}
2967
2968
.pluginlist {
2969
    padding-bottom: 10px;
2970
}
2971
2972
.plugin {
2973
    margin: 0 1em 1em 0;
2974
}
2975
2976
.pluginname {
2977
    background-color: #E6F0F2;
2978
    cursor: move;
2979
    margin: .3em;
2980
    padding-bottom: 4px;
2981
    padding-left: .2em;
2982
2983
    .ui-icon {
2984
        float: right;
2985
    }
2986
}
2987
2988
.plugindesc {
2989
    padding: .4em;
2990
}
2991
2992
.ui-sortable-placeholder {
2993
    border: 1px dotted #000;
2994
    height: 80px;
2995
    visibility: visible;
2996
2997
    * {
2998
        visibility: hidden;
2999
    }
3000
}
3001
3002
/* jQuery UI Datepicker */
3003
.ui-datepicker {
3004
    box-shadow: 1px 1px 3px 0 #666;
3005
3006
    table {
3007
        border: 0;
3008
        border-collapse: collapse;
3009
        font-size: .9em;
3010
        margin: 0 0 .4em;
3011
        width: 100%;
3012
    }
3013
3014
    th {
3015
        background: transparent none;
3016
        border: 0;
3017
        font-weight: bold;
3018
        padding: .7em .3em;
3019
        text-align: center;
3020
    }
3021
}
3022
3023
.ui-datepicker-trigger {
3024
    margin: 0 3px;
3025
    vertical-align: middle;
3026
}
3027
3028
/* css for timepicker */
3029
.ui-timepicker-div {
3030
    dl {
3031
        text-align: left;
3032
3033
        dd {
3034
            margin: 0 10px 10px 65px;
3035
        }
3036
3037
        dt {
3038
            height: 25px;
3039
            margin-bottom: -25px;
3040
        }
3041
3042
        td {
3043
            font-size: 90%;
3044
        }
3045
    }
3046
3047
    .ui-widget-header {
3048
        margin-bottom: 8px;
3049
    }
3050
}
3051
3052
.ui-tpicker-grid-label {
3053
    background: none;
3054
    border: 0;
3055
    margin: 0;
3056
    padding: 0;
3057
}
3058
3059
.ui_tpicker_second,
3060
.ui_tpicker_millisec,
3061
.ui_tpicker_microsec {
3062
    display: none;
3063
}
3064
3065
/* jQuery UI Accordion */
3066
.ui-accordion-header,
3067
.ui-widget-content .ui-accordion-header {
3068
    font-size: 110%;
3069
    font-weight: bold;
3070
}
3071
3072
video {
3073
    width: 480px;
3074
}
3075
3076
/* Bootstrap overrides */
3077
button,
3078
.btn {
3079
    border-color: #ADADAD #ADADAD #949494;
3080
    font-family: $font-main;
3081
3082
    &.btn-link {
3083
        border: 0;
3084
    }
3085
}
3086
3087
.btn-xs,
3088
.btn-group-xs > .btn {
3089
    font-size: 10.5px;
3090
    padding: 3px 5px;
3091
}
3092
3093
#toolbar {
3094
    .dropdown-menu {
3095
        border-top-width: 1px;
3096
        font-size: 13px;
3097
    }
3098
3099
    &.floating {
3100
        border-radius: 0;
3101
        margin-top: 0;
3102
    }
3103
}
3104
3105
.dropdown-menu {
3106
    border-color: rgba(0, 0, 0, .2);
3107
    border-top: 0;
3108
    font-size: 12px;
3109
3110
    li {
3111
        list-style: none outside none;
3112
3113
        > a {
3114
            padding: 4px 20px;
3115
3116
            &:hover,
3117
            &:focus {
3118
                background-image: linear-gradient(to bottom, #0088CC, #0077B3);
3119
                background-repeat: repeat-x;
3120
                color: #FFFFFF;
3121
                text-decoration: none;
3122
            }
3123
        }
3124
    }
3125
}
3126
3127
.navbar {
3128
    color: #333;
3129
    min-height: 20px;
3130
3131
    .nav {
3132
        > li {
3133
            list-style: none outside none;
3134
            padding: 0 .6em;
3135
3136
            > a {
3137
                color: #004D99;
3138
                font-weight: bold;
3139
                padding: .4em .2em;
3140
3141
                &:focus,
3142
                &:hover {
3143
                    color: #538200;
3144
                }
3145
            }
3146
        }
3147
3148
        li {
3149
            .dropdown {
3150
                &.open > .dropdown-toggle:focus,
3151
                &.active > .dropdown-toggle:focus,
3152
                &.open.active > .dropdown-toggle:focus {
3153
                    background: #E6F0F2 none;
3154
                    box-shadow: none;
3155
                }
3156
            }
3157
        }
3158
    }
3159
3160
3161
}
3162
3163
#header {
3164
    &.navbar {
3165
        margin-bottom: 0;
3166
    }
3167
3168
    &.navbar-default {
3169
        background: #E6F0F2;
3170
        border: 0;
3171
        box-shadow: none;
3172
    }
3173
}
3174
3175
#changelanguage {
3176
    .dropdown-menu {
3177
        > li {
3178
            > a,
3179
            > span {
3180
                padding: 5px 15px;
3181
            }
3182
        }
3183
    }
3184
3185
    .navbar-text {
3186
        margin: 0;
3187
3188
        span {
3189
            display: block;
3190
            line-height: 20px;
3191
        }
3192
    }
3193
}
3194
3195
.loggedout {
3196
    color: #004D99;
3197
    font-weight: bold;
3198
    padding: .4em .2em;
3199
}
3200
3201
.navbar-static-top {
3202
    .navbar-inner {
3203
        background: #E6F0F2 none;
3204
        border: 0;
3205
        box-shadow: none;
3206
        min-height: 0;
3207
        padding-left: 0;
3208
    }
3209
}
3210
3211
.navbar-fixed-bottom {
3212
    .navbar-inner {
3213
        min-height: 0;
3214
        padding: .4em 0;
3215
    }
3216
3217
    .nav > li {
3218
        border-right: 1px solid #CCC;
3219
3220
        > a {
3221
            font-weight: normal;
3222
            padding: .05em .3em;
3223
        }
3224
3225
        &:last-child {
3226
            border-right: 0;
3227
        }
3228
3229
        &.navbar-text {
3230
            line-height: normal;
3231
            padding: .4em .7em;
3232
        }
3233
    }
3234
}
3235
3236
.tooltip {
3237
    &.bottom {
3238
        .tooltip-arrow {
3239
            border-bottom-color: #EEE;
3240
        }
3241
3242
        .tooltip-inner {
3243
            background-color: #FFFFFF;
3244
            border: 1px solid rgba(0, 0, 0, .2);
3245
            box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
3246
            color: #000;
3247
            font-size: 120%;
3248
            padding: 1em;
3249
        }
3250
    }
3251
}
3252
3253
.separator {
3254
    color: #666;
3255
    padding: 0 .2em;
3256
}
3257
3258
.close {
3259
    filter: none;
3260
    float: none;
3261
    font-size: inherit;
3262
    font-weight: normal;
3263
    line-height: 1.5;
3264
    opacity: inherit;
3265
    position: inherit;
3266
    right: auto;
3267
    text-shadow: none;
3268
    top: auto;
3269
3270
    &:hover {
3271
        color: inherit;
3272
        filter: inherit;
3273
        font-size: inherit;
3274
        opacity: inherit;
3275
    }
3276
}
3277
3278
3279
label {
3280
    .radio &,
3281
    .checkbox & {
3282
        margin-left: 20px;
3283
        padding-left: 0;
3284
    }
3285
}
3286
3287
.radio {
3288
    input {
3289
        &[type="radio"] {
3290
            margin-left: 0;
3291
            position: relative;
3292
        }
3293
    }
3294
}
3295
3296
.checkbox {
3297
    input {
3298
        &[type="checkbox"] {
3299
            margin-left: 0;
3300
            position: relative;
3301
        }
3302
    }
3303
}
3304
3305
.modal-header {
3306
    .closebtn {
3307
        margin-top: 4px;
3308
    }
3309
}
3310
3311
.closebtn {
3312
    color: #000;
3313
    filter: alpha(opacity=20);
3314
    float: right;
3315
    font-size: 21px;
3316
    font-weight: bold;
3317
    line-height: 1;
3318
    opacity: .2;
3319
    text-shadow: 0 1px 0 #FFFFFF;
3320
3321
    &:hover,
3322
    &:focus {
3323
        color: #000;
3324
        cursor: pointer;
3325
        filter: alpha(opacity=50);
3326
        opacity: .5;
3327
        text-decoration: none;
3328
    }
3329
}
3330
3331
.modal-body {
3332
    overflow-y: auto;
3333
}
3334
3335
.btn-group {
3336
    label,
3337
    select {
3338
        font-size: 13px;
3339
    }
3340
}
3341
3342
.tooltip-inner {
3343
    white-space: pre-wrap;
3344
}
3345
3346
pre {
3347
    background-color: transparent;
3348
    border: 0;
3349
    border-radius: 0;
3350
    color: inherit;
3351
    display: block;
3352
    font-size: inherit;
3353
    line-height: inherit;
3354
    margin: 0;
3355
    padding: 0;
3356
    word-break: break-all;
3357
    word-wrap: break-word;
3358
}
3359
3360
code {
3361
    background-color: transparent;
3362
    border-radius: 0;
3363
    color: inherit;
3364
    font-size: inherit;
3365
    padding: 0;
3366
}
3367
3368
.pagination > li > a,
3369
.pagination > li > span {
3370
    font-weight: bold;
3371
}
3372
3373
/* End Bootstrap overrides */
3374
3375
.waiting {
3376
    cursor: wait;
3377
}
3378
3379
#jobpanel,
3380
#jobstatus,
3381
#jobfailed {
3382
    display: none;
3383
}
3384
3385
#jobstatus {
3386
    margin: .4em;
3387
}
3388
3389
#jobprogress {
3390
    background: url("../img/progress.png") -300px 0 no-repeat;
3391
    border: 1px solid #666;
3392
    display: inline-block;
3393
    height: 10px;
3394
    width: 200px;
3395
 }
3396
3397
.progress_panel {
3398
    border: 2px solid #EEE;
3399
    border-radius: 5px;
3400
    clear: both;
3401
    font-size: 120%;
3402
    margin: 1em 0;
3403
    padding: 1em;
3404
}
3405
3406
progress {
3407
    width: 50%;
3408
}
3409
3410
#selections {
3411
    white-space: normal;
3412
    width: 100%;
3413
3414
    input {
3415
        margin: 0 2px;
3416
        vertical-align: middle;
3417
    }
3418
3419
    span {
3420
        background-color: #EBF3FF;
3421
        border-radius: 5px;
3422
        font-size: 75%;
3423
        line-height: 240%;
3424
        margin: 3px;
3425
        padding: 3px;
3426
        white-space: nowrap;
3427
3428
        &.selected {
3429
            background-color: #CCE0FC;
3430
        }
3431
    }
3432
}
3433
3434
#changepasswordf {
3435
    input {
3436
        &[type="text"],
3437
        &[type="password"] {
3438
            font-family: $font-monospace;
3439
            font-size: 140%;
3440
            padding: .3em;
3441
        }
3442
    }
3443
}
3444
3445
/* Class to be added to toolbar when it starts being fixed at the top of the screen*/
3446
3447
.floating {
3448
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, .5);
3449
}
3450
3451
.inline {
3452
    display: inline;
3453
}
3454
3455
.nowrap {
3456
    white-space: nowrap;
3457
}
3458
3459
.tag_editor {
3460
    background: transparent url("../img/edit-tag.png") top left no-repeat;
3461
    display: block;
3462
    float: left;
3463
    height: 16px;
3464
    margin: 4px;
3465
    overflow: hidden;
3466
    text-indent: 100%;
3467
    white-space: nowrap;
3468
    width: 16px;
3469
}
3470
3471
.browse-controls {
3472
    margin-left: 1.1em;
3473
    margin-right: .5em;
3474
    padding-bottom: 1em;
3475
    padding-top: 1em;
3476
}
3477
3478
#browse-return-to-results {
3479
    border-top-left-radius: 3px;
3480
    border-top-right-radius: 3px;
3481
    display: block;
3482
    text-align: center;
3483
}
3484
3485
.browse-button {
3486
    color: #004D99;
3487
    display: inline-block;
3488
    padding: .4em .6em;
3489
3490
    &:hover {
3491
        background: #FAFAFA;
3492
    }
3493
}
3494
3495
span {
3496
    &.browse-button {
3497
        background: #FAFAFA;
3498
        color: #222;
3499
    }
3500
3501
    &.circ-hlt {
3502
        color: #CC0000;
3503
        font-weight: bold;
3504
    }
3505
3506
    &.expired {
3507
        color: #990000;
3508
        font-style: italic;
3509
    }
3510
3511
    &.permissiondesc {
3512
        font-weight: normal;
3513
    }
3514
3515
    &.required {
3516
        color: #C00;
3517
        font-style: italic;
3518
        margin-left: .5em;
3519
    }
3520
}
3521
3522
.browse-label,
3523
.browse-prev-next {
3524
    border: 1px solid #B9D8D9;
3525
}
3526
3527
.browse-label {
3528
    background-color: #E8F0F6;
3529
    border-top-left-radius: 5px;
3530
    border-top-right-radius: 5px;
3531
}
3532
3533
.browse-prev-next {
3534
    border-bottom-left-radius: 5px;
3535
    border-bottom-right-radius: 5px;
3536
    border-top-width: 0;
3537
}
3538
3539
#browse-previous {
3540
    border-bottom-left-radius: 5px;
3541
    border-right: 1px solid #B9D8D9;
3542
    padding-right: 1em;
3543
}
3544
3545
#browse-next {
3546
    border-bottom-right-radius: 5px;
3547
    border-top-width: 0;
3548
    float: right;
3549
    padding-right: 1em;
3550
}
3551
3552
.loading-overlay {
3553
    background-color: #FFFFFF;
3554
    cursor: wait;
3555
    height: 100%;
3556
    left: 0;
3557
    opacity: .7;
3558
    position: fixed;
3559
    top: 0;
3560
    width: 100%;
3561
    z-index: 1000;
3562
3563
    div {
3564
        background: transparent url("../img/loading.gif") top left no-repeat;
3565
        font-size: 175%;
3566
        font-weight: bold;
3567
        height: 2em;
3568
        left: 50%;
3569
        margin: -1em 0 0 -2.5em;
3570
        padding-left: 50px;
3571
        position: absolute;
3572
        top: 50%;
3573
        width: 15em;
3574
    }
3575
}
3576
3577
#merge_invoices {
3578
    display: none;
3579
    margin: 1em auto;
3580
}
3581
3582
#merge {
3583
    margin: .5em 0 0 0;
3584
}
3585
3586
#merge_table {
3587
    tr {
3588
        &.active {
3589
            td {
3590
                background-color: #FFFFCC;
3591
            }
3592
        }
3593
    }
3594
}
3595
3596
.renewals {
3597
    display: block;
3598
    font-size: .8em;
3599
    padding: .5em;
3600
}
3601
3602
#transport-types {
3603
    padding-top: .5px;
3604
}
3605
3606
#i18nMenu {
3607
    .navbar-text {
3608
        .currentlanguage {
3609
            color: #000;
3610
            font-weight: bold;
3611
        }
3612
    }
3613
3614
    a {
3615
        &:link,
3616
        &:visited {
3617
            color: #004D99;
3618
            font-weight: normal;
3619
        }
3620
3621
        &:hover,
3622
        &:active {
3623
            color: #538200;
3624
            font-weight: normal;
3625
        }
3626
3627
        &.currentlanguage {
3628
            &:link,
3629
            &:visited {
3630
                font-weight: bold;
3631
            }
3632
        }
3633
3634
        .sublanguage-selected {
3635
            color: #000;
3636
            font-weight: bold;
3637
        }
3638
    }
3639
3640
    .dropdown-menu {
3641
        a {
3642
            &:hover,
3643
            &:focus {
3644
                color: #538200;
3645
                font-weight: normal;
3646
            }
3647
        }
3648
    }
3649
}
3650
3651
.onsite_checkout-select {
3652
    label,
3653
    #circ_circulation_issue & {
3654
        font-size: inherit;
3655
        font-weight: normal;
3656
    }
3657
}
3658
3659
.onsite_checkout {
3660
    color: #CC0000;
3661
}
3662
3663
.onsite-checkout-only {
3664
    background-color: rgba(255, 242, 206, .5);
3665
    border: 1px solid #FFF2CE;
3666
    border-radius: 4px;
3667
}
3668
3669
.branchgriditem {
3670
    background-color: #FFFFFF;
3671
    border: 1px solid #B9D8D9;
3672
    border-radius: 3px;
3673
    display: table-cell;
3674
    float: left;
3675
    margin: 3px;
3676
    padding: .3em;
3677
}
3678
3679
.branchgridrow {
3680
    display: table-row;
3681
}
3682
3683
.branchselector {
3684
    display: table;
3685
}
3686
3687
.hq-author {
3688
    font-weight: bold;
3689
}
3690
3691
#cn_browser_table_wrapper > #cn_browser_table {
3692
    margin: auto;
3693
    width: 90%;
3694
}
3695
3696
#new_rule {
3697
    background-color: #F4F8F9;
3698
    border: 2px solid #B9D8D9;
3699
    border-radius: 5px;
3700
    display: none;
3701
    margin: .3em;
3702
    padding: .3em;
3703
}
3704
3705
3706
.blocks {
3707
    margin-bottom: .3em;
3708
}
3709
3710
.remove_rule {
3711
    font-size: 80%;
3712
    padding-left: .7em;
3713
}
3714
3715
.underline {
3716
    text-decoration: underline;
3717
}
3718
3719
.overline {
3720
    text-decoration: overline;
3721
}
3722
3723
.order-control {
3724
    padding-right: 5px;
3725
}
3726
3727
#borrower_message {
3728
    margin-top: 10px;
3729
}
3730
3731
.form-group {
3732
    margin-bottom: 10px;
3733
3734
    label {
3735
        font-weight: bold;
3736
    }
3737
}
3738
3739
.modal-textarea {
3740
    width: 98%;
3741
}
3742
3743
#pat_member {
3744
    #patron_list_dialog,
3745
    #searchresults {
3746
        display: none;
3747
    }
3748
}
3749
3750
#patron_search {
3751
    #filters {
3752
        display: none;
3753
    }
3754
}
3755
3756
#fixedlengthbuilderaction  {
3757
    border: 3px solid #E6F0F2;
3758
    left: 80%;
3759
    padding: 5px;
3760
    position: relative;
3761
    top: -80px;
3762
    width: 12%;
3763
}
3764
3765
.navbar-default {
3766
    .navbar-nav {
3767
3768
        > .open {
3769
3770
            > a,
3771
            > a:hover,
3772
            > a:focus {
3773
                background: #E6F0F2 none;
3774
                box-shadow: none;
3775
            }
3776
        }
3777
    }
3778
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css (-3214 lines)
Lines 1-3214 Link Here
1
@import url("../../lib/yui/reset-fonts-grids.css") screen;
2
3
input:focus, textarea:focus {
4
    border-color:#538200;
5
    border-style:solid;
6
    border-radius: 4px;
7
}
8
9
::selection      { background:#538200; color:#ffffff; /* Safari and Opera */ }
10
::-moz-selection  { background:#538200; color:#ffffff; /* Firefox */ }
11
12
a, a:link, a:visited,
13
a.btn:link, a.btn:visited {
14
    color : #004d99;
15
    text-decoration: none;
16
}
17
18
table .btn-group {
19
    white-space: nowrap;
20
}
21
22
table .btn-group .btn {
23
    float: none;
24
    display: inline-block;
25
}
26
27
a:hover, a:active {
28
    color : #538200;
29
    text-decoration: none;
30
}
31
32
.overdue,
33
.debit {
34
	color : #cc0000;
35
}
36
37
a.popup {
38
    background : transparent url("../img/pop-up-link.png") center right no-repeat;
39
	padding-right : 15px;
40
}
41
42
body {
43
	text-align : left;
44
    padding:0 0 4em 0;
45
  font-family: arial, verdana, helvetica, sans-serif;
46
}
47
48
br.clear {
49
	clear : both;
50
	line-height : 1px;
51
}
52
53
form {
54
	display : inline;
55
}
56
57
form.confirm {
58
	display : block;
59
	text-align : center;
60
}
61
62
h1 {
63
	font-size : 161.6%;
64
	font-weight : bold;
65
}
66
67
h2 {
68
	font-size : 146.5%;
69
	font-weight : bold;
70
}
71
72
h3 {
73
	font-size : 131%;
74
	font-weight : bold;
75
}
76
77
h4 {
78
	font-size : 116%;	
79
	font-weight : bold;
80
}
81
82
h5 {
83
	font-size : 100%;	
84
	font-weight : bold;
85
}
86
87
h6 {
88
	font-size : 93%;
89
	font-weight : bold;
90
}
91
92
h1,h2,h3,h4,h5,h6 {
93
	margin : .3em 0;
94
}
95
96
p {
97
	margin: .5em 0 .5em 0;
98
}
99
100
strong {
101
	font-weight : bold;
102
}
103
104
strong em {
105
	font-weight : bold;
106
	font-style : italic;
107
}
108
109
em, cite {
110
	font-style : italic;
111
}
112
113
em strong {
114
	font-weight : bold;
115
	font-style : italic;
116
}
117
118
input, textarea {
119
    padding : 2px 4px;
120
    line-height: normal;
121
}
122
123
input[type="checkbox"], input[type="radio"] {
124
    vertical-align: middle;
125
    margin: 0;
126
}
127
128
label, .label {
129
    display: inline;
130
    font-weight: normal;
131
    font-size: inherit;
132
    max-width: inherit;
133
    padding: 0;
134
    color: black;
135
    margin-bottom: 0;
136
    vertical-align: middle;
137
}
138
139
label input[type="checkbox"],
140
label input[type="radio"],
141
.label input[type="checkbox"],
142
.label input[type="radio"] {
143
    margin-top: 0;
144
}
145
146
147
.subfield-label {
148
    font-style : italic;
149
}
150
151
.subfield-label span.subfield-code {
152
    font-weight : bold;
153
}
154
155
.members-update-table {
156
    padding-top: 10px;
157
}
158
159
#navmenulist li {
160
	padding : .2em 0;
161
    list-style-image : url("../img/arrow-bullet.gif");
162
	border-bottom : 1px solid #EEE;
163
}
164
165
#navmenulist li a {
166
	text-decoration : none;
167
}
168
169
#doc, #doc1, #doc2, #doc3 {
170
	padding-top : 1em;
171
}
172
173
#login_controls	 {
174
	position : absolute;
175
	right : .5em;
176
    padding: .4em .5em;
177
}
178
179
ul {
180
	padding-left : 1.1em;
181
}
182
183
ul li {
184
	list-style-type : disc;
185
}
186
187
ul li li {
188
	list-style-type : circle;
189
}
190
191
ol {
192
	padding-left : 1.5em;
193
}
194
195
ol li {
196
	list-style : decimal;
197
}
198
199
.gradient {
200
    background-image: linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
201
    background-image: -o-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
202
    background-image: -moz-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
203
    background-image: -webkit-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
204
    background-image: -ms-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
205
206
    background-image: -webkit-gradient(
207
        linear,
208
        left top,
209
        left bottom,
210
        color-stop(0.1, rgb(230, 240, 242)),
211
        color-stop(0.99, rgb(255,255,255))
212
    );
213
    display: inline-block;
214
    width:100%;
215
}
216
217
.clearfix:after {
218
    content: ".";
219
    display: block;
220
    height: 0;
221
    clear: both;
222
    visibility: hidden;
223
}
224
225
.clearfix {
226
    display: inline-block;
227
}
228
229
/* Hides from IE-mac \*/
230
* html .clearfix {height: 1%;}
231
.clearfix {display: block;}
232
/* End hide from IE-mac */
233
234
#cataloguing_additem_newitem fieldset.rows label, #cataloguing_additem_newitem fieldset.rows span.label {
235
        text-align: right;
236
}
237
238
table {
239
	border-collapse : collapse;
240
	border-top : 1px solid #BCBCBC;
241
	border-right : 1px solid #BCBCBC;
242
}
243
244
table.invis,
245
table.invis tr,
246
table.invis td,
247
tr.highlight table.invis td {
248
	border : none;
249
}
250
251
td, th {
252
	border-bottom : 1px solid #BCBCBC;
253
	border-left : 1px solid #BCBCBC;
254
	padding : .2em .3em;
255
}
256
257
td {
258
	background-color : White;
259
	vertical-align : top;
260
}
261
262
table.indexes td {
263
    vertical-align : middle;
264
}
265
266
td.actions {
267
    white-space: nowrap;
268
}
269
270
td.borderless {
271
    border-collapse : separate;
272
    border : 0 none;
273
}
274
275
td.data,
276
th.data {
277
	font-family : "Courier New", Courier, monospace;
278
	text-align : right;
279
}
280
281
th {
282
	background-color : #E8E8E8;
283
	font-weight : bold;
284
	text-align : center;
285
}
286
287
table+table {
288
	margin-top : 1em;
289
}
290
291
#editions table, #editions td {
292
	border : 0;
293
}
294
295
.highlighted-row,
296
.highlighted-row td { background-color: #FFD000 !important }
297
298
tbody tr:nth-child(odd) td {
299
	background-color : #F3F3F3;
300
    border : 1px solid #BCBCBC;
301
    border-right : 1px solid #BCBCBC;
302
}
303
304
.overdue td.od {
305
	color : #cc0000;
306
	font-weight : bold;
307
}
308
309
tr.warn td,
310
tr.warn:nth-child(odd) td {
311
	background-color: #FF9090;
312
}
313
314
tr.ok td,
315
tr.ok:nth-child(odd) td,
316
tr.ok:nth-child(even) td {
317
 background-color: #FFFFCC;
318
}
319
320
tr.onissue td {
321
	background-color: #FFFFCC;
322
}
323
324
tr.odd.onissue td {
325
	background-color: #FFFFE1;
326
}
327
328
tr.clickable {
329
        cursor: pointer;
330
}
331
332
.table_borrowers tr:hover td {
333
        background-color: #ffff99;
334
}
335
336
tfoot td {
337
	background-color : #f3f3f3;
338
	font-weight : bold;
339
}
340
341
td.total {
342
	text-align : right;
343
}
344
345
caption {
346
    font-size : 133.9%;
347
    font-weight : bold;
348
    margin : .3em 0;
349
    color: black;
350
}
351
352
.problem {
353
	background-color : #FFFFCC;
354
	color : #990000;
355
	font-weight : bold;
356
	line-height : 1.7em;
357
}
358
359
fieldset {
360
	margin : 1em 1em 1em 0;
361
	padding : 1em;
362
    background-color:#f4f8f9;
363
    border:2px solid #b9d8d9;
364
    border-radius:5px;
365
}
366
367
fieldset.lastchecked {
368
    margin-bottom : 0;
369
    border-bottom-width: 0;
370
    border-bottom-left-radius: 0;
371
    border-bottom-right-radius: 0;
372
}
373
374
legend {
375
    font-size : 123.1%;
376
    font-weight : bold;
377
    border:2px solid #b9d8d9;
378
    background-color:#ffffff;
379
    border-radius:3px;
380
    padding: 0.2em 0.5em;
381
    width: auto;
382
}
383
384
#floating-save {
385
    background-color: rgba(185, 216, 217, 0.6);
386
    bottom: 3%;
387
    position: fixed;
388
    right: 1%;
389
    width: 150px;
390
}
391
392
#breadcrumbs {
393
    background-color : #e6f0f2;
394
    clear : both;
395
    font-size : 90%;
396
    padding :.2em .5em .4em 10px;
397
    margin : 0;
398
}
399
400
#header+#breadcrumbs {
401
	margin-top : 1em;
402
}
403
404
#header>.container-fluid {
405
    padding: 0;
406
}
407
408
div.justify {
409
    text-align: justify;
410
}
411
412
div#header_search {
413
	background-position : .5em .5em;
414
	background-repeat : no-repeat;
415
	float: left;
416
	margin: .3em 0 .5em 0;
417
}
418
419
div#header_search input {
420
	font-size : 1.3em;
421
}
422
423
div#header_search div.residentsearch {
424
	border : 0;
425
    border-bottom : 1px solid #85ca11;
426
	padding : 0 0 .2em 0;
427
}
428
429
.head-searchbox {
430
    width: 30em;
431
}
432
433
div#reserves,div#checkouts {
434
        border : 1px solid #B9D8D9;
435
	padding : 1em;
436
}
437
438
.tip {
439
	font-size: 93%;
440
	color : Gray;
441
}
442
443
.single-line {
444
	white-space: nowrap;
445
}
446
447
.ex {
448
	font-family : "Courier New", Courier, fixed-width;
449
	font-weight : bold;
450
}
451
452
453
div.yui-b h5 {
454
	font-size : 100%;
455
	margin : .5em 0;
456
}
457
458
dt {
459
	font-weight : bold;
460
}
461
462
dd {
463
	padding : .2em;
464
	font-size : 90%;
465
	text-indent : 2.5em;
466
	font-weight : normal;
467
}
468
469
div#toolbar,
470
.btn-toolbar {
471
    background-color : #EDF4F6;
472
    padding: 5px 5px 5px 5px;
473
    margin: 0;
474
    border-radius: 5px 5px 0 0;
475
    border: 1px solid #E6F0F2;
476
}
477
478
ul.toolbar {
479
	padding-left : 0;
480
}
481
482
ul.toolbar button {
483
	padding-bottom : 2px;
484
	font-family: arial, verdana, helvetica, sans-serif;
485
}
486
487
#disabled a {
488
	color: #999;
489
}
490
#disabled2 a {
491
 color: #999;
492
}
493
#disabled a:hover {
494
	color : #999;
495
}
496
a.highlight_toggle {
497
    display : none;
498
}
499
500
ul.toolbar li {
501
	display : inline;
502
	list-style : none;
503
}
504
505
div.patroninfo {
506
	margin-top : -.5em;
507
}
508
509
*html div.patroninfo {
510
	margin-right : .5em;
511
}
512
513
div.patroninfo h5 {
514
    border-right:1px solid #b9d8d9;
515
	margin-bottom : 0;
516
	padding-left : -.5em;
517
	padding-top : .3em;
518
	padding-bottom : .5em;
519
}
520
521
div.patroninfo h5:empty {
522
    border-right: none;
523
}
524
525
div.patroninfo ul {
526
	border : 0;
527
    border-right:1px solid #b9d8d9;
528
	border-bottom : 0;
529
	border-top : 0;
530
	padding : 0;
531
	margin : 0;
532
}
533
534
div.patroninfo ul li {
535
	margin : 0;
536
}
537
538
div.patroninfo ul li {
539
	list-style-type : none;
540
}
541
542
#patronbasics div {
543
    background: transparent url("../img/patron-blank.min.svg") 10px 5px no-repeat;
544
    border: 1px solid #CCCCCC;
545
    height: 125px;
546
    margin: .3em 0 .3em .3em;
547
    padding: 0;
548
    width: 105px;
549
}
550
551
#patronimage {
552
    border: 1px solid #CCCCCC;
553
    max-width : 140px;
554
    margin: .3em 0 .3em .3em;
555
    padding: .2em;
556
    width:auto !important;
557
    width:130px;
558
}
559
560
div.patronviews {
561
	border-right :  1px solid #000;
562
	border-top : 1px solid #000;
563
	margin-bottom : .5em;
564
	padding : .5em 0 .5em 0;
565
}
566
}
567
568
.column-tool {
569
	font-size: 80%;
570
}
571
572
fieldset.brief {
573
    border : 2px solid #B9D8D9;
574
}
575
576
fieldset.brief label,
577
fieldset.brief span.label {
578
	display : block;
579
	font-weight : bold;
580
	padding : .3em 0;
581
}
582
583
fieldset.brief ol, fieldset.brief li {
584
	list-style-type : none;
585
}
586
587
.hint {
588
    color : #666;
589
	font-size : 95%;
590
}
591
592
fieldset.brief div.hint,
593
fieldset.rows div.hint,
594
div.yui-u div.hint {
595
    margin-bottom : .4em;
596
}
597
598
fieldset.rows div.hint {
599
    margin-left : 7.5em;
600
}
601
602
div.yui-b fieldset.brief {
603
	padding : .4em .7em;
604
}
605
606
div.yui-b fieldset.brief ol {
607
	font-size : 85%;
608
	margin : 0;
609
	padding : 0;
610
}
611
612
div.yui-b fieldset.brief select {
613
	width: 12em;
614
}
615
div.yui-b fieldset.brief li.radio {
616
	padding : .7em 0;
617
}
618
div.yui-b fieldset.brief li.radio label,
619
div.yui-b fieldset.brief li.checkbox label,
620
div.yui-b fieldset.brief li.dateinsert label,
621
div.yui-b fieldset.brief li.dateinsert span.label,
622
div.yui-b fieldset.brief li.radio span.label {
623
	display : inline;
624
}
625
626
div.yui-b fieldset.brief li.radio input {
627
	padding:0.3em 0;
628
}
629
630
div.yui-b fieldset.brief fieldset {
631
	margin : 0 .3em;
632
	padding : .5em;
633
}
634
635
div.yui-b fieldset.brief fieldset legend {
636
	font-size : 85%;
637
}
638
639
#tools_holidays fieldset.brief li.radio input,
640
#tools_holidays fieldset.brief li.checkbox input{
641
    margin-left: 0;
642
}
643
644
#tools_holidays fieldset.brief li.radio label,
645
#tools_holidays fieldset.brief li.checkbox label {
646
    margin-left: 20px;
647
}
648
649
fieldset.rows {  
650
border-width : 1px;
651
border:2px solid #b9d8d9;
652
float : left;
653
font-size : 90%;
654
clear : left;
655
margin: .9em 0 0 0;
656
padding: 0;
657
width: 100%; 
658
}
659
660
fieldset.rows.unselected {
661
    background-color: white;
662
    border-width : 0px;
663
    border: 0;
664
}
665
666
fieldset.rows legend {  
667
	margin-left: 1em;
668
	font-weight: bold;
669
	font-size : 110%;
670
}
671
672
fieldset.rows label, fieldset.rows span.label {  
673
	float: left;  
674
	font-weight : bold;
675
	width: 6em;  
676
	margin-right: 1em;  
677
	text-align: right;
678
}
679
680
fieldset.rows fieldset {
681
    background-color: transparent;
682
	border-width : 1px;
683
    margin : 1em;
684
	padding : .3em;
685
}
686
687
.yui-b fieldset.rows label, .yui-b fieldset.rows span.label {  
688
	width: 9em;  
689
}
690
691
.yui-b fieldset.rows td label, .yui-b fieldset.rows td span.label {
692
        width: auto;
693
}
694
.yui-b fieldset.rows ol.oladditemtype label, .yui-b fieldset.rows ol.oladditemtype span.label {
695
    width: 13em;
696
}
697
698
.yui-b fieldset.rows div.hint {
699
	margin-left : 10.5em;
700
}
701
702
.yui-u fieldset.rows label, .yui-u fieldset.rows span.label {  
703
	width: 10em;  
704
}
705
706
.yui-u fieldset.rows div.hint {
707
	margin-left : 7.5em;
708
}
709
710
fieldset.rows.left label, fieldset.rows.left span.label {
711
	width : 8em;
712
	text-align : left;	
713
}
714
715
fieldset.rows ol {  
716
padding: 1em 1em 0 1em;  
717
list-style-type: none;
718
}
719
720
fieldset.rows li {  
721
float : left;
722
clear : left;
723
padding-bottom: 1em;
724
list-style-type: none;
725
width: 100%; 
726
}
727
728
fieldset.rows.left li {
729
	padding-bottom : .4em;
730
}
731
732
fieldset.rows li.radio {
733
	padding-left: 9em;
734
	width : auto;
735
}
736
737
fieldset.rows li.radio label {
738
	float : none;
739
	width : auto;
740
	margin : 0 0 0 1em;
741
}
742
743
fieldset.rows ol.radio label {
744
	width : auto;
745
	float : none;
746
	margin-right : 30px;
747
        margin-left: 20px;
748
        padding-left: 0;
749
        vertical-align: middle;
750
}
751
752
fieldset.rows li.radio input + label {
753
    margin-left: 0;
754
    padding-left: 0;
755
}
756
757
fieldset.rows ol.radio input[type="checkbox"],
758
fieldset.rows ol.radio input[type="radio"] {
759
    margin-left: -20px;
760
}
761
762
fieldset.rows ol.radio label.radio {
763
	float : left;
764
	width : 9em;
765
	margin-right : 1em;
766
        margin-top: 0;
767
}
768
769
fieldset.rows caption {
770
    font-size : 120%;
771
}
772
773
fieldset.rows p {
774
    margin : 1em 0 1em 1em;
775
}
776
777
fieldset.rows table {
778
	font-size : 105%;
779
	clear : both;
780
	margin : 1em 0 1em 1em;
781
}
782
783
fieldset.rows td label {
784
	float : none;
785
	font-weight : normal;
786
	width : auto;
787
}
788
789
fieldset.rows label.yesno {
790
	float : none;
791
	width : auto;
792
}
793
794
fieldset.rows label.error {
795
	float: none;
796
	margin-left: 1em;
797
	width: auto;
798
}
799
800
fieldset.action, div.action {
801
    background-color: transparent;
802
    clear : both;
803
    float : none;
804
    border : 0px;
805
    margin: 0.9em 0 0 0;
806
    padding: 0.4em;
807
    width: auto;
808
}
809
810
#fixedlengthbuilderaction {
811
    padding: 5px 5px 5px 5px;
812
    border: 3px solid #E6F0F2;
813
    top: -80px;
814
    left: 80%;
815
    position: relative;
816
    width: 12%;
817
}
818
819
.btn-toolbar fieldset.action {
820
    margin-top: 0;
821
}
822
823
fieldset.rows li[aria-disabled="true"] {
824
    color: #999;
825
}
826
827
div.rows+div.rows {
828
    margin-top : .6em;
829
}
830
831
div.rows {
832
float : left;
833
clear : left;
834
margin: 0 0 0 0;  
835
padding: 0;
836
width: 100%; 
837
}
838
839
840
div.rows span.label {  
841
	float: left;  
842
	font-weight : bold;
843
	width: 9em;
844
	margin-right: 1em;  
845
	text-align: left;
846
        padding-top: 0;
847
}
848
849
.rows .label {
850
    white-space: normal;
851
}
852
853
div.rows ol {  
854
padding: .5em 1em 0 0;  
855
list-style-type: none;
856
}
857
858
div.rows ol li li {
859
	border-bottom: 0;
860
}
861
862
div.rows li {
863
border-bottom :  1px solid #EEE;
864
float : left;
865
clear : left;
866
padding-bottom: .2em;
867
padding-top: .1em;
868
list-style-type: none;
869
width: 100%; 
870
}
871
872
a.cancel {
873
	padding-left : 1em;
874
}
875
876
fieldset.rows fieldset.action {
877
	padding : 1em;
878
}
879
880
fieldset.brief label.inline,
881
fieldset.rows label.inline {
882
	display : inline;
883
	float : none;
884
	margin-left : 1em;
885
	width : auto;
886
}
887
888
fieldset.rows .inputnote {
889
	clear : left;
890
	float : left;
891
	margin : 1em 0 0 11em;
892
}
893
894
.checkedout {
895
	color : #999999;
896
	font-style : italic;
897
}
898
899
.subfield_not_filled {
900
	background-color : #FFFF99;
901
}
902
.content_hidden {
903
    visibility:hidden; /* you propably don't need to change this one */
904
    display:none;
905
}
906
907
/* the property for the displayed tab */
908
.content_visible {
909
    visibility:visible; /* you propably don't need to change this one */
910
    display:block;
911
}
912
913
#z3950searcht table {
914
	/* doesn't have desired effect in catalogue/results.tmpl - I'll leave this here for now but there do seem to be casscading CSS errors in this and other CSS fiels - RICKW 20081118 */
915
	padding: 20px;
916
	border: none;
917
}
918
919
#z3950_search_targets {
920
    height:     338px;
921
    overflow-y: auto;
922
}
923
924
#z3950_search_targets_acq {
925
    height:     308px;
926
    overflow-y: auto;
927
}
928
929
#z3950_search_targets_auth {
930
    height:     348px;
931
    overflow-y: auto;
932
}
933
934
.z3950checks {
935
    padding-left: 1em;
936
}
937
938
.error {
939
       color: #cc0000;
940
}
941
942
.status_ok {
943
 background-color: lightgreen;
944
}
945
946
.status_warn {
947
 background-color: red;
948
}
949
950
/* Font Awesome icon */
951
i.success {
952
    color: green;
953
}
954
955
/* Font Awesome icon */
956
i.error {
957
    color: #CC0000;
958
}
959
960
/* Font Awesome icon */
961
i.warn {
962
    color: orange;
963
}
964
965
/* For Font Awesome icon bullets */
966
ul.fa-ul li {
967
    list-style-type: none;
968
}
969
970
div.error {
971
	border : 2px dashed #990000;
972
	background-color : #FFFF99;
973
	padding : .5em;
974
	margin : 1em;
975
}
976
977
input.alert {
978
	background-color : #FFFF99;
979
	border-color: #900;
980
}
981
982
ol.bibliodetails {
983
	float: left;
984
	margin : 0 0 1em 1em;
985
}
986
987
ol.bibliodetails li {
988
	border-bottom: 1px solid #E8E8E8;
989
	list-style-type : none;
990
	padding : .1em;
991
}
992
993
ol.bibliodetails span.label {
994
	border-right : 1px solid #E8E8E8;
995
	float : left;
996
	font-weight: bold;
997
	width: 12em;  
998
	margin-right: 1em;  
999
}
1000
1001
div.listgroup {
1002
	clear :  left;
1003
}
1004
1005
div.listgroup h4 {
1006
	font-style: italic;
1007
}
1008
1009
div.listgroup h4 a {
1010
	font-size :  80%;
1011
}
1012
1013
div.listgroup input {
1014
	font-size: 80%;
1015
}
1016
1017
div.sysprefs h3 {
1018
	margin : .2em 0 .2em .4em;
1019
}
1020
1021
div.sysprefs dl {
1022
	margin-left : 1.5em;
1023
}
1024
1025
div.sysprefs div.hint {
1026
	width : 25%;
1027
	float : right;
1028
	padding : .5em;
1029
	margin : .7em;
1030
}
1031
1032
tr.highlight td {
1033
	background-color : #F6F6F6;
1034
	border-color : #BCBCBC;
1035
}
1036
1037
tr.highlight th[scope=row] {
1038
	background-color : #DDDDDD;
1039
	border-color : #BCBCBC;
1040
}
1041
1042
label.circ_barcode {
1043
    font-size: 105%;
1044
    font-weight : bold;
1045
}
1046
1047
.checkout-setting {
1048
    font-size : 85%;
1049
    padding-top : .3em;
1050
}
1051
1052
.checkout-setting label {
1053
    font-size : inherit;
1054
    font-weight: normal;
1055
}
1056
1057
.checkout-setting input {
1058
    vertical-align: middle;
1059
}
1060
1061
.checkout-settings {
1062
    background-color: #f4f8f9;
1063
    border-radius: 0;
1064
    border-top: 2px solid #b9d8d9;
1065
    display: none;
1066
    margin-left: -1em;
1067
    margin-right: -1em;
1068
    margin-top: 1em;
1069
    padding: 1em 1em 0;
1070
}
1071
1072
#show-checkout-settings {
1073
    margin-top: .5em;
1074
}
1075
1076
tr.expired td {
1077
	color : #999999;
1078
}
1079
1080
span.expired {
1081
	color : #990000;
1082
	font-style : italic;
1083
}
1084
1085
div.help {
1086
	margin: .9em 0 0 0;  
1087
}
1088
1089
.blocker {
1090
	color : #990000;
1091
}
1092
1093
.inaccurate-item-statuses {
1094
    color : #990000;
1095
}
1096
1097
.circmessage li {
1098
    list-style : url(../img/arrow-bullet.gif);
1099
	margin-bottom : .2em;
1100
}
1101
1102
div.circmessage:first-child {
1103
	margin-top : 1em;
1104
}
1105
1106
div.circmessage {
1107
	padding: 0 .4em .4em .4em;
1108
	margin-bottom : .3em;
1109
}
1110
1111
span.circ-hlt {
1112
	color : #cc0000;
1113
	font-weight : bold;
1114
}
1115
1116
div.first fieldset {
1117
	margin-right : 0;
1118
}
1119
1120
#circ_needsconfirmation {
1121
	margin : auto;
1122
}
1123
1124
.dialog {
1125
	border-radius : 2px;
1126
	padding : .5em;
1127
	margin : 1em auto;
1128
	text-align : center;
1129
	width: 65%;
1130
}
1131
1132
.dialog table {
1133
	margin : .5em auto;
1134
}
1135
1136
.dialog table th {
1137
	text-align : right;
1138
}
1139
1140
.dialog table td {
1141
	text-align : left;
1142
}
1143
  
1144
.dialog  h2, .dialog h3, .dialog h4 {
1145
  	margin : auto;
1146
	text-align : center;
1147
  }
1148
  
1149
.dialog input {
1150
 	background-color : #FFF;
1151
 	border : 1px solid #bcbcbc;
1152
	margin : .4em;
1153
	padding : .4em .4em .4em 25px;
1154
 }
1155
1156
 .dialog input[type="submit"] {
1157
	background : #FFF none;
1158
 }
1159
1160
td input.approve {
1161
	background-color : #FFC;
1162
}
1163
1164
.dialog input:hover {
1165
 	background-color : #ffc;
1166
 }
1167
1168
div.dialog {
1169
	border: 1px solid #bcbcbc;
1170
    text-align : center;
1171
}
1172
1173
div.alert {
1174
	background: #fef8d3; /* Old browsers */
1175
	background: -moz-linear-gradient(top, #fef8d3 0%, #ffec91 9%, #ffed87 89%, #f9dc00 100%); /* FF3.6+ */
1176
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fef8d3), color-stop(9%,#ffec91), color-stop(89%,#ffed87), color-stop(100%,#f9dc00)); /* Chrome,Safari4+ */
1177
	background: -webkit-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* Chrome10+,Safari5.1+ */
1178
	background: -o-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* Opera11.10+ */
1179
	background: -ms-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* IE10+ */
1180
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef8d3', endColorstr='#f9dc00',GradientType=0 ); /* IE6-9 */
1181
	background: linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* W3C */
1182
	  text-align : center;
1183
	border: 1px solid #E0C726;
1184
    color : inherit;
1185
    text-shadow : none;
1186
}
1187
1188
div.alert strong {
1189
	color : #900;
1190
}
1191
1192
.dialog li {
1193
    list-style-position:inside;
1194
}
1195
1196
.dialog button,
1197
.dialog a.approve {
1198
    background: #fff none;
1199
    border: 1px outset #999999;
1200
    border-top-color: #666;
1201
    border-left-color: #666;
1202
    color: #000;
1203
    margin : .4em;
1204
    padding : .4em;
1205
    white-space: pre-line;
1206
}
1207
1208
.dialog button:hover,
1209
.dialog a.approve:hover {
1210
    background-color : #ffc;
1211
}
1212
1213
.dialog button:active,
1214
.dialog a.approve:active {
1215
    border : 1px inset #999999;
1216
}
1217
1218
.dialog a.approve {
1219
    display: inline-block;
1220
}
1221
1222
.approve i.fa,
1223
.success i.fa {
1224
    color: green;
1225
}
1226
1227
.deny i.fa {
1228
    color: #cc0000;
1229
}
1230
1231
.new i.fa {
1232
    color: #425FAF;
1233
}
1234
1235
a.document {
1236
	background-position : left middle;
1237
	background-repeat : no-repeat;
1238
	padding-left : 20px;
1239
}
1240
1241
a.pdf {
1242
    background-image: url("../img/famfamfam/silk/page_white_acrobat.png");
1243
}
1244
1245
a.csv {
1246
    background-image: url("../img/famfamfam/silk/page_white_excel.png");
1247
}
1248
1249
a.xml {
1250
    background-image: url("../img/famfamfam/silk/page_white_code.png");
1251
}
1252
1253
a.cartRemove {
1254
    color: #cc3333;
1255
    font-size : 90%;
1256
    margin : 0;
1257
    padding: 0;
1258
}
1259
1260
a.incart {
1261
    color: #666;
1262
}
1263
1264
div.message {
1265
	background: #ffffff; /* Old browsers */
1266
	background: -moz-linear-gradient(top, #ffffff 0%, #f4f6fa 2%, #eaeef5 23%, #e8edf6 94%, #cddbf2 100%); /* FF3.6+ */
1267
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(2%,#f4f6fa), color-stop(23%,#eaeef5), color-stop(94%,#e8edf6), color-stop(100%,#cddbf2)); /* Chrome,Safari4+ */
1268
	background: -webkit-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* Chrome10+,Safari5.1+ */
1269
	background: -o-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* Opera11.10+ */
1270
	background: -ms-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* IE10+ */
1271
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeef5', endColorstr='#cddbf2',GradientType=0 ); /* IE6-9 */
1272
	background: linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* W3C */
1273
  	border : 1px solid #bcbcbc;
1274
  	text-align: center;
1275
	width : 55%;
1276
}
1277
1278
div.message ul,
1279
div.message h5 {
1280
	padding-left : 25%;
1281
	text-align : left;
1282
}
1283
1284
div.message ul+h4 {
1285
	margin-top : .7em;
1286
}
1287
1288
div.note {
1289
    background: #f4f6fa;
1290
    background: -moz-linear-gradient(top, #f4f6fa 0%, #e8edf6 100%); /* FF3.6+ */
1291
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f6fa), color-stop(100%,#e8edf6)); /* Chrome,Safari4+ */
1292
    background: -webkit-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Chrome10+,Safari5.1+ */
1293
    background: -o-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Opera11.10+ */
1294
    background: -ms-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* IE10+ */
1295
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f6fa', endColorstr='#e8edf6',GradientType=0 ); /* IE6-9 */
1296
    background: linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* W3C */
1297
    border : 1px solid #BCBCBC;
1298
    padding : .5em;
1299
    margin : .5em 0;
1300
}
1301
1302
div.note i.fa-exclamation {
1303
    color: #cc0000;
1304
    font-style: italic;
1305
    padding: 0 0.3em;
1306
}
1307
1308
 div.results {
1309
 	padding : .7em 0;
1310
 }
1311
 
1312
 .accesskey {
1313
 	text-decoration : underline;
1314
 }
1315
 
1316
label.required,
1317
span.required {
1318
    color : #C00;
1319
}
1320
1321
span.required {
1322
	font-style : italic;
1323
	margin-left : .5em;
1324
}
1325
1326
.missing{
1327
    background-color : #FFFFCC;
1328
}
1329
1330
.term {
1331
    background-color: #FFC;
1332
	 color : #990000;
1333
}
1334
1335
a .term {
1336
	 text-decoration : underline;
1337
}
1338
1339
/* style for shelving location in catalogsearch */
1340
.shelvingloc {
1341
    display : block;
1342
    font-style : italic;
1343
}
1344
1345
a:hover .term {
1346
	color : #FF9090;
1347
}
1348
1349
div#menu {
1350
    border-right:1px solid #b9d8d9;
1351
	margin-right: .5em;
1352
	padding-top: 1em;
1353
	padding-bottom: 2em;
1354
}
1355
1356
*html #menu li {
1357
	display : inline;
1358
}
1359
1360
div#menu li a {
1361
	text-decoration: none;
1362
	display: block;
1363
1364
              background: #e8f0f6; /* Old browsers */
1365
        background: -moz-linear-gradient(left, #e8f0f6 0%, #e8f0f6 96%, #c1c1c1 100%); /* FF3.6+ */
1366
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e8f0f6), color-stop(96%,#e8f0f6), color-stop(100%,#c1c1c1)); /* Chrome,Safari4+ */
1367
    background: -webkit-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* Chrome10+,Safari5.1+ */
1368
     background: -o-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* Opera11.10+ */
1369
   background: -ms-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* IE10+ */
1370
       background: linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* W3C */
1371
	border-top-left-radius: 5px;
1372
	border-bottom-left-radius: 5px;
1373
    border:1px solid #b9d8d9;
1374
	font-size: 111%;
1375
	margin: .5em 0;
1376
	padding: .4em .3em;
1377
	margin-right :  -1px;
1378
}
1379
1380
div#menu li a:hover {
1381
     background: #fff; /* Old browsers */
1382
   background: -moz-linear-gradient(left, #FAFAFA 0%, #FAFAFA 96%, #e6e6e6 97%, #cccccc 99%, #c1c1c1 100%); /* FF3.6+ */
1383
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#FAFAFA), color-stop(96%,#FAFAFA), color-stop(97%,#e6e6e6), color-stop(99%,#cccccc), color-stop(100%,#c1c1c1)); /* Chrome,Safari4+ */
1384
  background: -webkit-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* Chrome10+,Safari5.1+ */
1385
     background: -o-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* Opera11.10+ */
1386
   background: -ms-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* IE10+ */
1387
       background: linear-gradient(left, #FAFAFA 0%,#fff 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* W3C */
1388
    border-left: 1px solid #85CA11;
1389
    border-top: 1px solid #85CA11;
1390
    border-bottom: 1px solid #85CA11;
1391
}
1392
1393
div#menu li.active a:hover {
1394
	background-color: #fff;
1395
    color :  #538200;
1396
}
1397
1398
#menu ul li {
1399
	list-style-type: none;
1400
}
1401
1402
#menu ul li.active a {
1403
	background-color: #FFF;
1404
	background-image : none;
1405
	font-weight: bold;
1406
    color:#000000;
1407
    border-left: 1px solid #85CA11;
1408
    border-top: 1px solid #85CA11;
1409
    border-bottom: 1px solid #85CA11;
1410
    border-right: 0;
1411
}
1412
1413
h1#logo {
1414
	border:0pt none;
1415
	float:left !important;
1416
	margin:0;
1417
	padding:0;
1418
	width:180px;
1419
}
1420
h1#logo {
1421
    background: transparent url(../img/koha-logo-medium.gif) no-repeat scroll 0%;
1422
	margin:0.75em .3em 0.75em .7em;
1423
}
1424
1425
*html h1#logo {
1426
	margin : 0.75em .3em 0.75em .3em;
1427
}
1428
1429
h1#logo a {
1430
	border:0;
1431
	cursor:pointer;
1432
	display:block;
1433
	height:0px !important;
1434
	margin:0;
1435
	overflow:hidden;
1436
	padding:44px 0 0;
1437
	text-decoration:none;
1438
	width:180px;
1439
}
1440
1441
#closewindow {
1442
	margin-top : 2em;
1443
	text-align : center;
1444
}
1445
1446
#closewindow a {
1447
	font-weight : bold;	
1448
}
1449
1450
.patroninfo+#menu {
1451
	margin-right : 0;
1452
}
1453
1454
.barcode {
1455
	font-size :  200%;
1456
        vertical-align: middle;
1457
}
1458
1459
li.email {
1460
    overflow: hidden;
1461
    text-overflow: ellipsis;
1462
    white-space: nowrap;
1463
}
1464
1465
.patronbriefinfo li.email {
1466
    font-size :  87%;
1467
    padding : 0 10px 0 0;
1468
    width: 90%;
1469
}
1470
1471
.empty {
1472
	color : #CCC;
1473
}
1474
1475
.address {
1476
	font-size: 110%;
1477
}
1478
1479
.clearfix:after {
1480
    content: "."; 
1481
    display: block; 
1482
    height: 0; 
1483
    clear: both; 
1484
    visibility: hidden;
1485
}
1486
1487
/* Hides from IE-mac \*/
1488
* html .clearfix {height: 1%;}
1489
/* End hide from IE-mac */
1490
1491
.title {
1492
	font-weight : bold;
1493
	font-size : 105%;
1494
}
1495
1496
.hold {
1497
	float : right;
1498
	font-size: 90%;
1499
	margin: 0;
1500
}
1501
1502
.thumbnail {
1503
	display : block;
1504
	margin : auto;
1505
}
1506
1507
.thumbnails > li {
1508
    list-style-type: none;
1509
}
1510
1511
#searchresults ul li {
1512
	font-size : 90%;
1513
    list-style: url(../img/item-bullet.gif);
1514
	padding : .2em 0;
1515
        clear : left;
1516
}
1517
1518
#searchresults span.status {
1519
	clear : left;
1520
	color : #900;
1521
	display : block;
1522
}
1523
1524
#searchresults span.unavailable {
1525
	clear : left;
1526
	display : block;
1527
}
1528
1529
#searchresults .availability strong {
1530
	display : block;
1531
}
1532
1533
#searchresults ul li img {
1534
	float : left;
1535
	margin : 3px 5px 3px -5px;
1536
}
1537
1538
#searchresults table td {
1539
	vertical-align : top;
1540
}
1541
1542
#searchheader {
1543
     background-color : #E6F0F2;
1544
	font-size : 80%;
1545
	margin : 0 0 .5em -1px;
1546
    padding : .4em 0 .4em 1em;
1547
     border-radius : 5px 5px 0 0;
1548
   border : 1px solid #B9D8D9;
1549
}
1550
1551
#searchheader .btn-group > .btn:first-child {
1552
    margin-left : .7em;
1553
}
1554
1555
#searchheader form {
1556
	float : right;
1557
  padding : 5px 5px 3px 0;
1558
}
1559
1560
#searchheader form.fz3950 {
1561
	float : right;
1562
	font-size : 125%;
1563
	padding : 0 0 0 5em;
1564
}
1565
1566
#searchheader form.fz3950bigrpad {
1567
	float : right;
1568
	font-size : 125%;
1569
	padding : 5px 25em 0 0;
1570
}
1571
1572
#searchheader .dropdown-menu > li > a {
1573
    padding: 2px 10px;
1574
}
1575
1576
#searchheader .dropdown-menu > li > a {
1577
    padding: 2px 10px;
1578
}
1579
1580
#searchheader .dropdown-header {
1581
    padding: 4px 5px
1582
}
1583
1584
#search-facets ul {
1585
	margin : 0;
1586
	padding : .3em;
1587
}
1588
1589
#search-facets {
1590
    border : 1px solid #B9D8D9;
1591
    border-radius: 5px 5px 0 0;
1592
}
1593
1594
#search-facets h4 {
1595
     background-color : #E6F0F2;
1596
    border-bottom : 1px solid #B9D8D9;
1597
     border-radius: 5px 5px 0 0;
1598
	font-size : 90%;
1599
	margin : 0;
1600
	padding : .4em .2em;
1601
	text-align : center;
1602
}
1603
1604
#search-facets ul li {
1605
	font-weight : bold;
1606
	list-style-type : none;
1607
}
1608
1609
#search-facets li li {
1610
	font-weight : normal;
1611
	font-size : 85%;
1612
	margin-bottom : 2px;
1613
	padding : .1em .2em;
1614
}
1615
1616
#search-facets li.showmore {
1617
	font-weight : bold;
1618
	text-indent : 1em;
1619
}
1620
1621
.facet-count {
1622
    display: inline-block;
1623
}
1624
1625
div.pages {
1626
	margin : .5em 0;
1627
}
1628
1629
div.pages a {
1630
	font-weight: bold;
1631
	padding: 1px 5px 1px 5px;
1632
	text-decoration: none;
1633
}
1634
1635
div.pages a:link,
1636
div.pages a:visited {
1637
	background-color : #eeeeee;
1638
	color : #3366CC;
1639
}
1640
1641
div.pages a:hover {
1642
	background-color : #FFC;
1643
}
1644
1645
div.pages a:active {
1646
	background-color : #ffc;
1647
}
1648
1649
div.pages .current,
1650
div.pages .currentPage {
1651
	background-color : #e6fcb7;
1652
	color : #666;
1653
	font-weight: bold;
1654
	padding: 1px 5px 1px 5px;
1655
}
1656
1657
div.pages .inactive {
1658
	background-color : #f3f3f3;
1659
	color : #BCBCBC;
1660
	font-weight: bold;
1661
	padding: 1px 5px 1px 5px;
1662
}
1663
1664
div.browse {
1665
	margin : .5em 0;
1666
}
1667
1668
div#bookcoverimg {
1669
	text-align : center;
1670
}
1671
1672
div#header_search input.submit {
1673
	font-size : 1em;
1674
}
1675
1676
*html input.submit {
1677
	padding : .1em;
1678
}
1679
1680
input[type=submit]:active, input[type=button]:active, button:active, a.submit:active {
1681
	border : 1px inset #999999;
1682
}
1683
1684
input[type=submit], input[type=reset], input[type=button], input.submit, button, a.submit {
1685
	border: 1px outset #999999;
1686
	border-top-color: #666;
1687
	border-left-color: #666;
1688
	padding: 0.25em;
1689
	background: #ffffff; /* Old browsers */
1690
	background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 35%, #e0e0e0 100%); /* FF3.6+ */
1691
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(35%,#f7f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
1692
	background: -webkit-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
1693
	background: -o-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Opera11.10+ */
1694
	background: -ms-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* IE10+ */
1695
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
1696
	background: linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* W3C */
1697
	color: #333333;
1698
}
1699
1700
input[type=submit]:disabled,
1701
input[type=reset]:disabled,
1702
input[type=button]:disabled,
1703
input.submit:disabled,
1704
button:disabled,
1705
a.submit:disabled {
1706
    color : #999;
1707
    border : 1px solid #C0C0C0;
1708
    background : #EEE none;
1709
}
1710
1711
input[type=reset]:active, input[type=button]:active, input.submit:active, button:active, a.submit:active {
1712
	border : 1px inset #999999;
1713
}
1714
1715
a.submit {
1716
    display: inline-block;
1717
}
1718
1719
ul li input.submit {
1720
	font-size : 87%;
1721
	padding : 2px;
1722
}
1723
1724
input.warning {
1725
    background: #FFF url(../img/famfamfam/silk/error.png) no-repeat 4px center;
1726
	padding : 0.25em 0.25em 0.25em 25px;
1727
}
1728
1729
.searchhighlightblob {
1730
    font-size:75%;
1731
	font-style : italic;
1732
}
1733
1734
#displayexample {
1735
	padding: 5px; 
1736
	margin-bottom: 10px;
1737
	background-color: #CCCCCC;
1738
}
1739
1740
#irregularity_summary {
1741
	vertical-align : top;
1742
}
1743
1744
ul#toplevelmenu {
1745
    padding : 0;
1746
}
1747
1748
table > caption span.actions {
1749
    font-size: 66%;
1750
    font-weight : normal;
1751
    margin : 0 .5em 0 0;
1752
}
1753
1754
#CheckAll, #CheckNone, #CheckPending {
1755
	font-weight : normal;
1756
	margin : 0 .5em 0 0;
1757
}
1758
.lost,.dmg,.wdn {
1759
	display : block;
1760
	color : #990000;
1761
}
1762
.datedue {
1763
	display : block;
1764
	color : #999;
1765
	font-style : italic;
1766
}
1767
1768
tr.reserved td {
1769
	background-color : #eeffd4;
1770
}
1771
tr.transfered td {
1772
	background-color : #e8f0f6;
1773
}
1774
.waitinghere,
1775
.credit {
1776
	color : #669900;
1777
}
1778
1779
/* Permissions Labels */
1780
label.permissioncode:before {
1781
	content: "(";
1782
}
1783
label.permissioncode:after {
1784
	content: ")";
1785
}
1786
label.permissioncode {
1787
	font-style : italic;
1788
}
1789
span.permissiondesc {
1790
	font-weight : normal;
1791
}
1792
#mainuserblock {
1793
	border : 1px solid #E8E8E8;
1794
	margin-top : .5em;
1795
	padding : .5em;
1796
}
1797
1798
.labeledmarc-table {
1799
	border: 0;
1800
}
1801
1802
.labeledmarc-label {
1803
	border: 0;
1804
	padding: 5;
1805
	font-size: 11pt;
1806
    color: #000000;
1807
    font-style: italic;
1808
}
1809
1810
.labeledmarc-value {
1811
	border: 0;
1812
	padding: 5;
1813
	font-size: 10pt;
1814
	color: black;
1815
}
1816
1817
#marcPreview table { border: 0; margin: .7em 0 0 0; font-family: monospace; font-size: 95%; }
1818
#marcPreview th { background-color : #FFF; border: 0; white-space: nowrap; text-align:left; vertical-align: top; padding: 2px; }
1819
#marcPreview td { border: 0; padding : 2px; vertical-align: top; }
1820
#marcPreview tbody tr:nth-child(2n+1) td { background-color: #FFF; }
1821
#marcPreview .modal-dialog { width: 80%; }
1822
@media (max-width: 767px) { #marcPreview { margin: 0; width : auto; } }
1823
1824
#cartDetails {
1825
	background-color : #FFF;
1826
	border: 1px solid #739acf;
1827
	 box-shadow: 1px 1px 3px 0 #666;
1828
	color : black;
1829
	display : none;
1830
	margin : 0;
1831
	padding : 10px;
1832
	text-align : center;
1833
	width : 180px;
1834
	z-index : 50;
1835
}
1836
#cartmenulink {
1837
    background: transparent url("../img/cart-small.gif") left center no-repeat;
1838
        padding-left : 15px;
1839
}
1840
#cartmenulink span#basketcount span {
1841
	display : inline;
1842
	font-size : 90%;
1843
	font-weight : normal;
1844
	padding : 0;
1845
}
1846
#moremenu {
1847
        display : none;
1848
}
1849
1850
.results_summary {
1851
  display: block;
1852
  font-size : 85%; 
1853
  color: #707070;
1854
  padding : 0 0 .5em 0;
1855
}
1856
.results_summary .label {
1857
  color: #202020;
1858
}
1859
.results_summary a {
1860
  font-weight: normal;
1861
}
1862
1863
ul.budget_hierarchy {
1864
    margin-left: 0px;
1865
    padding-left: 0px;
1866
}
1867
ul.budget_hierarchy li {
1868
    display: inline;
1869
}
1870
ul.budget_hierarchy li:after {
1871
    content: " -> ";
1872
}
1873
ul.budget_hierarchy li:last-child:after {
1874
    content: "";
1875
}
1876
ul.budget_hierarchy li:first-child:after {
1877
    content: "";
1878
}
1879
.child_fund_amount {
1880
    font-style: italic;
1881
}
1882
.number_box { font-size : 105%; line-height : 200%; }
1883
.number_box a {
1884
	border : 1px solid #a4bedd;
1885
	background-color : #e4ecf5;
1886
	font-weight : bold;
1887
	border-radius: 4px;
1888
	padding : .1em .4em;
1889
	text-decoration : none;
1890
}
1891
.number_box a:hover { background-color : #ebeff7; }
1892
.container {
1893
	border : 1px solid #EEE;
1894
	padding : 1em;
1895
	margin : 1em 0;
1896
}
1897
fieldset.rows+h3 {clear:both;padding-top:.5em;}
1898
1899
.import_export{
1900
    position:relative;
1901
}
1902
.import_export .import_export_options{
1903
    background: white;
1904
    border: 1px solid #CDCDCD;
1905
    left: 60px;
1906
    padding: 10px;
1907
    position: absolute;
1908
    top: 0;
1909
    z-index: 1;
1910
    width: 300px;
1911
}
1912
.import_export_options fieldset.rows li label {
1913
    width : 16em;
1914
}
1915
.form_import fieldset.rows li label {
1916
    width : auto;
1917
}
1918
1919
.import_export_options .export_ok {
1920
    padding: 10;
1921
    background: #E3E3E3 none;
1922
    cursor: pointer;
1923
    margin-left: 20px;
1924
    border: none;
1925
}
1926
.import_export_options {
1927
    padding: 10;
1928
    background: #E3E3E3 none;
1929
    cursor: pointer;
1930
    margin-left: 20px;
1931
    border: none;
1932
}
1933
.form_import .input_import {
1934
    border: 1px solid #bcbcbc;
1935
}
1936
.import_export_options .importing {
1937
    padding: inherit;
1938
    background: none;
1939
}
1940
1941
.importing {
1942
    position: relative;
1943
}
1944
1945
.importing .importing_msg {
1946
    padding-left: 10px;
1947
    padding-bottom: 10px;
1948
}
1949
1950
.field_hint {
1951
    color: grey;
1952
    font-style: italic;
1953
    padding-left: 1em;
1954
}
1955
1956
.m880 {
1957
    display:block; 
1958
    text-align:right; 
1959
    float:right; 
1960
    width:50%; 
1961
    padding-left:20px
1962
}
1963
1964
.advsearch {
1965
    margin: 0;
1966
}
1967
1968
.advsearch table {
1969
    border-spacing : 5px;
1970
    border-collapse : separate;
1971
    border-width : 0;
1972
}
1973
.advsearch td {
1974
    border : 1px solid #EEE;
1975
    padding : 0.3em 0.4em;
1976
}
1977
#circ_circulation_issue {
1978
    position: relative;
1979
    }
1980
1981
#clearscreen {
1982
    position: absolute;
1983
    top:0;
1984
    right:0;
1985
    }
1986
1987
#clearscreen a {
1988
    display:block;
1989
    border-radius: 0 0 0 5px;
1990
    padding : 0 .7em .2em .7em;
1991
    background-color : #EEE;
1992
    color : #CCC;
1993
    text-shadow: 0px -1px 0px #666;
1994
    text-decoration: none;
1995
    font-size: 160%;
1996
    font-weight : bold
1997
    }
1998
#clearscreen a:hover {
1999
    color : #cc0000;
2000
    }
2001
2002
div.pager {
2003
	background-color : #E8E8E8;
2004
	border : 1px solid #BCBCBC;
2005
    border-radius : 5px;
2006
	display : inline-block;
2007
	font-size : 85%;
2008
	padding : .3em .5em .3em .5em;
2009
	margin : .4em 0;
2010
}
2011
div.pager img {
2012
	vertical-align : middle;
2013
}
2014
2015
div.pager img.last {
2016
	padding-right: 5px;
2017
}
2018
div.pager input.pagedisplay {
2019
	border : 0;
2020
	background-color : transparent;
2021
	font-weight: bold;
2022
	text-align : center;
2023
}
2024
a.localimage img {
2025
	border : 1px solid #0000CC;
2026
	margin : 0 .5em;
2027
	padding : .3em;
2028
}
2029
2030
.no-image {
2031
    background-color : #FFF;
2032
    border: 1px solid #AAA;
2033
    color : #979797;
2034
    display:block;
2035
    font-size : 86%;
2036
    font-weight : bold;
2037
    text-align : center;
2038
    width : 75px;
2039
    border-radius : 3px;
2040
}
2041
2042
div.pager p {
2043
	margin: 0;
2044
}
2045
2046
div#acqui_order_supplierlist > div.supplier {
2047
    border: 1px solid #EEEEEE;
2048
    margin: 0.5em;
2049
    padding: 1em;
2050
}
2051
2052
div#acqui_order_supplierlist > div.supplier > span.suppliername {
2053
    display: inline;
2054
    font-size: 1.7em;
2055
    margin-bottom: 0.5em;
2056
}
2057
2058
div#acqui_order_supplierlist > div.supplier > span.action {
2059
    margin-left: 5em;
2060
}
2061
2062
div#acqui_order_supplierlist > div.supplier > div.baskets {
2063
    margin-top: 0.5em;
2064
}
2065
2066
.supplier-contact-details {
2067
    float: left;
2068
}
2069
2070
#add-contact {
2071
    margin: 0 0 8px 8px;
2072
}
2073
2074
#contact-template {
2075
    display: none;
2076
}
2077
2078
/* Override core jQueryUI widgets */
2079
.ui-widget-content { border: 1px solid #B9D8D9; background: #ffffff none; color: #222222; }
2080
.ui-widget-header { border: 1px solid #B9D8D9; background: #E6F0F2 none; color: #222222; font-weight: bold; }
2081
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B9D8D9; background: #F4F8F9 none; font-weight: normal; color: #555555; }
2082
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #B9D8D9; background: #E6F0F2 none; font-weight: normal; color: #212121; }
2083
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff none; font-weight: normal; color: #212121; }
2084
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #FED22F; background: #FFF4C6; color: #363636; }
2085
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec; color: #cd0a0a; }
2086
2087
/* Override jQuery Autocomplete */
2088
.ui-autocomplete {
2089
    position: absolute;
2090
    cursor: default;
2091
    box-shadow: 2px 2px 2px rgba(0,0,0,.3);
2092
}
2093
.ui-autocomplete.ui-widget-content .ui-state-hover {
2094
    border: 1px solid #B9D8D9;
2095
    background: #E6F0F2 none;
2096
    font-weight: normal;
2097
    color: #212121;
2098
}
2099
.ui-autocomplete-loading {
2100
    background: #FFF url("../img/spinner-small.gif") right center no-repeat;
2101
}
2102
2103
/* jQuery UI standard tabs */
2104
.ui-menu li {
2105
    list-style:none;
2106
}
2107
2108
.ui-tabs-nav .ui-tabs-active a,
2109
.ui-tabs-nav a:hover,
2110
.ui-tabs-nav a:focus,
2111
.ui-tabs-nav a:active,
2112
.ui-tabs-nav span.a {
2113
    background: none repeat scroll 0 0 transparent;
2114
    outline: 0 none;
2115
}
2116
2117
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
2118
    background-color : #FFF;
2119
    border : 1px solid #B9D8D9;
2120
    border-bottom-width: 0;
2121
}
2122
2123
.ui-widget,
2124
.ui-widget input,
2125
.ui-widget select,
2126
.ui-widget textarea,
2127
.ui-widget button {
2128
    font-family : inherit;
2129
    font-size : inherit;
2130
}
2131
ul.ui-tabs-nav li {
2132
    list-style : none;
2133
}
2134
.ui-tabs.ui-widget-content {
2135
    background : transparent none;
2136
    border : 0;
2137
}
2138
2139
.ui-tabs .ui-tabs-panel {
2140
    border : 1px solid #B9D8D9;
2141
}
2142
.ui-tabs-nav.ui-widget-header {
2143
    border : 0;
2144
    background : none;
2145
}
2146
.ui-tabs .ui-tabs-nav li {
2147
    background: #E6F0F2 none;
2148
    border: 1px solid #B9D8D9;
2149
    margin-right : .4em;
2150
    top: 1px;
2151
}
2152
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
2153
    color : #000;
2154
    font-weight : bold;
2155
}
2156
2157
.ui-tabs .ui-tabs-nav li.ui-state-default.ui-state-hover {
2158
    background : #EDF4F5 none;
2159
}
2160
2161
.ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-hover {
2162
    background : #FFF none;
2163
}
2164
2165
.ui-tabs .ui-state-default a,
2166
.ui-tabs .ui-state-default a:link,
2167
.ui-tabs .ui-state-default a:visited {
2168
    color: #004D99;
2169
}
2170
2171
.ui-tabs .ui-state-hover a,
2172
.ui-tabs .ui-state-hover a:link,
2173
.ui-tabs .ui-state-hover a:visited {
2174
    color: #538200;
2175
}
2176
2177
.statictabs ul {
2178
    background: none repeat scroll 0 0 transparent;
2179
    border: 0 none;
2180
    margin: 0;
2181
    padding: 0.2em 0.2em 0;
2182
    border-bottom-right-radius: 4px;
2183
    border-bottom-left-radius: 4px;
2184
    border-top-right-radius: 4px;
2185
    border-top-left-radius: 4px;
2186
    color: #222222;
2187
    font-weight: bold;
2188
    font-size: 100%;
2189
    line-height: 1.3;
2190
    list-style: none outside none;
2191
    outline: 0 none;
2192
    text-decoration: none;
2193
}
2194
2195
.statictabs ul:after {
2196
    clear: both;
2197
}
2198
2199
.statictabs ul:before,
2200
.statictabs ul:after {
2201
    content: "";
2202
    display: table;
2203
}
2204
2205
.statictabs ul li {
2206
    background: none repeat scroll 0 0 #E6F0F2;
2207
    border: 1px solid #B9D8D9;
2208
    border-bottom: 0 none;
2209
    border-top-right-radius: 4px;
2210
    border-top-left-radius: 4px;
2211
    float: left;
2212
    list-style: none outside none;
2213
    margin-bottom: 0;
2214
    margin-right: 0.4em;
2215
    padding: 0;
2216
    position: relative;
2217
    white-space: nowrap;
2218
    top: 1px;
2219
    color: #555555;
2220
    font-weight: normal;
2221
2222
}
2223
2224
.statictabs ul li.active {
2225
    background-color: #FFFFFF;
2226
    color: #212121;
2227
    font-weight: normal;
2228
    padding-bottom: 1px;
2229
}
2230
2231
.statictabs ul li a {
2232
    color: #004D99;
2233
    cursor: pointer;
2234
    float: left;
2235
    padding: 0.5em 1em;
2236
    text-decoration: none;
2237
}
2238
2239
.statictabs ul li a:hover {
2240
    background-color : #EDF4F5;
2241
    border-top-right-radius: 4px;
2242
    border-top-left-radius: 4px;
2243
    color : #538200;
2244
}
2245
2246
.statictabs ul li.active a {
2247
    color: #000000;
2248
    font-weight: bold;
2249
    cursor: text;
2250
    background: none repeat scroll 0 0 transparent;
2251
    outline: 0 none;
2252
    top : 1px;
2253
}
2254
2255
.statictabs .tabs-container {
2256
    border: 1px solid #B9D8D9;
2257
    background: none repeat scroll 0 0 transparent;
2258
    display: block;
2259
    padding: 1em 1.4em;
2260
    border-bottom-right-radius: 4px;
2261
    border-bottom-left-radius: 4px;
2262
    color: #222222;
2263
}
2264
2265
/* jQuery UI header search box tabs */
2266
#header_search ul.ui-tabs-nav {
2267
    padding-top : 0;
2268
    margin-left: 1em;
2269
}
2270
#header_search ul.ui-tabs-nav li.ui-state-default {
2271
    border: 0;
2272
    background : transparent none;
2273
    top: 0;
2274
}
2275
#header_search ul.ui-tabs-nav li.ui-state-default a {
2276
    padding : .3em .6em;
2277
}
2278
#header_search ul.ui-tabs-nav li.ui-tabs-active {
2279
    border : 1px solid #85CA11;
2280
    border-top-width: 0;
2281
    top: -2px;
2282
    background-color : #FFFFF1;
2283
}
2284
#header_search ul.ui-tabs-nav li.ui-tabs-active a {
2285
    text-decoration: none;
2286
}
2287
#header_search .ui-corner-top {
2288
     border-radius: 0 0 4px 4px;
2289
}
2290
2291
#header_search > div,
2292
#header_search > ul > li {
2293
    display: none;
2294
}
2295
#header_search > div:first-of-type,
2296
#header_search > ul > li:first-of-type {
2297
    display: block;
2298
}
2299
2300
.authref {
2301
    font-style: normal;
2302
    text-indent: 4em;
2303
}
2304
2305
.seefrom, .seealso {
2306
    font-style: italic;
2307
    text-indent: 2em;
2308
}
2309
2310
#authfinderops {
2311
    float: right;
2312
}
2313
div.authorizedheading {
2314
  font-weight: bold;
2315
}
2316
.authres_notes, .authres_seealso, .authres_otherscript {
2317
  padding-top: 3px;
2318
}
2319
.authres_notes {
2320
  font-style: italic;
2321
}
2322
2323
2324
.contents {
2325
    width: 75%;
2326
}
2327
2328
.contentblock {
2329
    position: relative;
2330
    margin-left: 2em;
2331
}
2332
2333
.contents .t:first-child:before {
2334
    content: "→ ";
2335
}
2336
2337
.contents .t:before {
2338
    content: "\A→ ";
2339
    white-space: pre;
2340
}
2341
2342
.contents .t {
2343
    font-weight: bold;
2344
    display: inline;
2345
}
2346
2347
.contents .r {
2348
    display: inline;
2349
}
2350
2351
#hierarchies a {
2352
    font-weight: normal;
2353
    text-decoration: underline;
2354
    color: #069;
2355
}
2356
2357
#hierarchies a:hover {
2358
    color: #990033;
2359
}
2360
2361
#didyoumeanopac, #didyoumeanintranet {
2362
    float: left;
2363
    width: 260px;
2364
}
2365
2366
.pluginlist {
2367
    padding-bottom: 10px;
2368
}
2369
.plugin {
2370
    margin: 0 1em 1em 0;
2371
}
2372
.pluginname {
2373
    cursor: move;
2374
    margin: 0.3em;
2375
    padding-bottom: 4px;
2376
    padding-left: 0.2em;
2377
    background-color: #E6F0F2;
2378
}
2379
.pluginname .ui-icon {
2380
    float: right;
2381
}
2382
.plugindesc {
2383
    padding: 0.4em;
2384
}
2385
.ui-sortable-placeholder {
2386
    border: 1px dotted black;
2387
    visibility: visible !important;
2388
    height: 80px !important;
2389
}
2390
.ui-sortable-placeholder * {
2391
    visibility: hidden;
2392
}
2393
2394
/* jQuery UI Datepicker */
2395
.ui-datepicker table {
2396
    width: 100%;
2397
    font-size: .9em;
2398
    border : 0;
2399
    border-collapse: collapse;
2400
    margin:0 0 .4em;
2401
}
2402
2403
.ui-datepicker th {
2404
    background : transparent none;
2405
    padding: .7em .3em;
2406
    text-align: center;
2407
    font-weight: bold;
2408
    border: 0;
2409
}
2410
2411
.ui-datepicker-trigger {
2412
    vertical-align: middle;
2413
    margin : 0 3px;
2414
}
2415
.ui-datepicker {
2416
    box-shadow: 1px 1px 3px 0 #666;
2417
}
2418
2419
/* css for timepicker */
2420
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
2421
.ui-timepicker-div dl { text-align: left; }
2422
.ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
2423
.ui-timepicker-div dl dd { margin: 0 10px 10px 65px; }
2424
.ui-timepicker-div td { font-size: 90%; }
2425
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
2426
.ui_tpicker_second,
2427
.ui_tpicker_millisec,
2428
.ui_tpicker_microsec {
2429
    display: none;
2430
}
2431
2432
/* jQuery UI Accordion */
2433
.ui-accordion-header,
2434
.ui-widget-content .ui-accordion-header {
2435
    font-weight: bold; font-size : 110%;
2436
}
2437
2438
fieldset.rows.ui-accordion-content {
2439
    border-top-left-radius: 0;
2440
    border-top-right-radius: 0;
2441
    margin: 0;
2442
    padding: 0;
2443
    width: auto;
2444
}
2445
2446
fieldset.rows.ui-accordion-content table {
2447
    margin : 0;
2448
}
2449
2450
video {
2451
    width: 480px;
2452
}
2453
2454
/* Bootstrap overrides */
2455
button,
2456
.btn {
2457
    border-color : #ADADAD #ADADAD #949494;
2458
    font-family: arial,helvetica,clean,sans-serif;
2459
}
2460
2461
.btn-xs, .btn-group-xs > .btn {
2462
    font-size: 10.5px;
2463
    padding: 3px 5px;
2464
}
2465
2466
.btn.btn-link {
2467
    border : 0;
2468
}
2469
2470
#toolbar .dropdown-menu,
2471
.btn-toolbar .dropdown-menu {
2472
    font-size: 13px;
2473
}
2474
a.btn:link,
2475
a.btn:visited{
2476
    color: #333333;
2477
}
2478
2479
a.btn-link:link,
2480
a.btn-link:visited {
2481
    color: #004d99;
2482
}
2483
2484
a.btn-link:hover {
2485
    color : #538200;
2486
}
2487
2488
.dropdown-menu {
2489
    font-size: 12px;
2490
}
2491
2492
.dropdown-menu li {
2493
    list-style: none outside none;
2494
}
2495
2496
a.dropdown-toggle {
2497
    white-space: nowrap;
2498
}
2499
2500
.dropdown-menu > li > a {
2501
    padding: 4px 20px;
2502
}
2503
2504
.dropdown-menu > li > a:hover,
2505
.dropdown-menu > li > a:focus {
2506
    text-decoration: none;
2507
    color: #ffffff;
2508
    background-color: #0081c2;
2509
    background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2510
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2511
    background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2512
    background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2513
    background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2514
    background-repeat: repeat-x;
2515
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2516
}
2517
2518
.dropdown-header {
2519
    border-top: 1px solid #EEE;
2520
    color: #000;
2521
    font-weight: bold;
2522
}
2523
2524
a.disabled {
2525
    color : #999999;
2526
}
2527
2528
.navbar {
2529
    color: #333;
2530
    min-height: 20px;
2531
}
2532
2533
#header.navbar {
2534
    margin-bottom: 0;
2535
}
2536
2537
#header.navbar-default {
2538
    background: #e6f0f2;
2539
    box-shadow: none;
2540
    border: none;
2541
}
2542
2543
#changelanguage .navbar-text {
2544
    margin: 0;
2545
}
2546
2547
#changelanguage .navbar-text span {
2548
   display: block;
2549
   line-height: 20px;
2550
}
2551
2552
#changelanguage .dropdown-menu > li > a,
2553
#changelanguage .dropdown-menu > li > span {
2554
    padding: 5px 15px;
2555
}
2556
2557
.navbar .nav > li > a, .loggedout {
2558
    color: #004D99;
2559
    font-weight: bold;
2560
    padding : .4em .2em;
2561
}
2562
2563
.navbar .nav > li {
2564
    list-style: none outside none;
2565
    padding : 0 .6em;
2566
}
2567
2568
.navbar .nav > li > a:focus,
2569
.navbar .nav > li > a:hover {
2570
    color: #538200;
2571
}
2572
2573
.navbar-static-top .navbar-inner {
2574
    background: #E6F0F2 none;
2575
    border: 0;
2576
    box-shadow: none;
2577
    min-height: 0;
2578
    padding-left: 0;
2579
}
2580
.navbar-fixed-bottom .navbar-inner {
2581
    min-height: 0;
2582
    padding : .4em 0;
2583
}
2584
2585
.navbar-fixed-bottom .nav > li > a {
2586
    font-weight: normal;
2587
    padding : .05em .3em;
2588
}
2589
2590
.navbar-fixed-bottom .nav > li {
2591
    border-right : 1px solid #CCC;
2592
}
2593
2594
.navbar-fixed-bottom .nav > li:last-child {
2595
    border-right : 0;
2596
}
2597
2598
.navbar-fixed-bottom .nav > li.navbar-text {
2599
    line-height: normal;
2600
    padding : 0.4em 0.7em;
2601
}
2602
.navbar .nav > li {
2603
    list-style: none outside none;
2604
    padding : 0 .6em;
2605
}
2606
.navbar .nav > li > a {
2607
    color: #004D99;
2608
    font-weight: bold;
2609
    padding : .4em .3em;
2610
}
2611
2612
.navbar .nav > li > a:focus,
2613
.navbar .nav > li > a:hover {
2614
    color: #538200;
2615
}
2616
2617
.navbar .nav li.dropdown.open > .dropdown-toggle:focus,
2618
.navbar .nav li.dropdown.active > .dropdown-toggle:focus,
2619
.navbar .nav li.dropdown.open.active > .dropdown-toggle:focus {
2620
    background: #e6f0f2 none;
2621
    box-shadow: none;
2622
}
2623
2624
.tooltip.bottom .tooltip-arrow {
2625
    border-bottom-color: #EEE;
2626
}
2627
.tooltip.bottom .tooltip-inner {
2628
    background-color : #FFF;
2629
    border: 1px solid rgba(0, 0, 0, 0.2);
2630
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2631
    color: #000;
2632
    padding : 1em;
2633
    font-size : 120%;
2634
}
2635
.separator { color : #666; padding : 0 .2em; }
2636
2637
.close {
2638
    position: inherit;
2639
    top: auto;
2640
    right : auto;
2641
    filter : none;
2642
    float : none;
2643
    font-size: inherit;
2644
    font-weight: normal;
2645
    line-height: 1.5;
2646
    opacity: inherit;
2647
    text-shadow: none;
2648
}
2649
2650
.close:hover {
2651
    color: inherit;
2652
    filter: inherit;
2653
    font-size: inherit;
2654
    opacity: inherit;
2655
}
2656
2657
a.close:hover {
2658
    color: #538200;
2659
}
2660
2661
.radio label, .checkbox label {
2662
    margin-left: 20px;
2663
    padding-left: 0;
2664
}
2665
2666
.radio input[type="radio"],
2667
.checkbox input[type="checkbox"] {
2668
    position: relative;
2669
    margin-left: 0;
2670
}
2671
2672
/* Redefine a new style for Bootstrap's class "close" since we use that already */
2673
/* Use <a class="closebtn" href="#">&times;</a> */
2674
.alert .closebtn{position:relative;top:-2px;right:-21px;line-height:20px;}
2675
.modal-header .closebtn{margin-top: 4px;}
2676
.closebtn{float: right;font-size: 21px;font-weight: bold;line-height: 1;color: #000;text-shadow: 0 1px 0 #fff;filter: alpha(opacity=20);opacity: .2;}.closebtn:hover,.closebtn:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50);}
2677
button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
2678
2679
.modal-body {
2680
    overflow-y: auto;
2681
}
2682
2683
.modal-dialog.modal-wide {
2684
    width: 80%;
2685
}
2686
2687
.btn-group label,
2688
.btn-group select {
2689
    font-size: 13px;
2690
}
2691
2692
.tooltip-inner {
2693
    white-space:pre-wrap;
2694
}
2695
2696
pre {
2697
    display: block;
2698
    padding: 0;
2699
    margin: 0;
2700
    font-size: inherit;
2701
    line-height: inherit;
2702
    word-break: break-all;
2703
    word-wrap: break-word;
2704
    color: inherit;
2705
    background-color: transparent;
2706
    border: 0;
2707
    border-radius: 0;
2708
}
2709
2710
code {
2711
    background-color: transparent;
2712
    border-radius: 0;
2713
    font-size: inherit;
2714
    color: inherit;
2715
    padding: 0;
2716
}
2717
2718
.pagination > li > a, .pagination > li > span {
2719
    font-weight: bold;
2720
}
2721
2722
/* End Bootstrap overrides */
2723
2724
.waiting {
2725
    cursor: wait;
2726
}
2727
2728
fieldset.rows table.mceListBox {
2729
    margin: 0;
2730
}
2731
2732
#jobpanel,#jobstatus,#jobfailed { display : none; }
2733
#jobstatus { margin:.4em; }
2734
2735
#jobprogress{
2736
    display: inline-block;
2737
    width:200px;
2738
    height:10px;
2739
    border:1px solid #666;
2740
    background:url('../img/progress.png') -300px 0px no-repeat;
2741
 }
2742
2743
.progress_panel {
2744
    clear: both;
2745
    font-size: 120%;
2746
    margin: 1em 0;
2747
    padding: 1em;
2748
    border: 2px solid #EEE;
2749
    border-radius: 5px;
2750
}
2751
2752
progress {
2753
    width: 50%;
2754
}
2755
2756
#selections { width : 100%; white-space : normal; }
2757
#selections span { margin:3px;padding:3px;background-color:#EBF3FF;border-radius:5px;white-space:nowrap;line-height:240%;font-size:75%; }
2758
#selections span.selected { background-color : #CCE0FC; }
2759
#selections input { vertical-align:middle;margin:0 2px; }
2760
2761
#changepasswordf input[type="text"],
2762
#changepasswordf input[type="password"] {
2763
    font-size: 140%;
2764
    font-family : monospace;
2765
    padding : .3em;
2766
}
2767
2768
/* Class to be added to toolbar when it starts being fixed at the top of the screen*/
2769
2770
.floating {
2771
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, .5);
2772
}
2773
2774
div#toolbar.floating,
2775
#searchheader.floating {
2776
    border-radius: 0;
2777
    margin-top: 0;
2778
}
2779
2780
.inline {
2781
    display : inline;
2782
}
2783
2784
.nowrap {
2785
    white-space: nowrap;
2786
}
2787
2788
.tag_editor {
2789
    background: transparent url("../img/edit-tag.png") top left no-repeat;
2790
    display : block;
2791
    float : left;
2792
    width : 16px;
2793
    height: 16px;
2794
    margin : 4px;
2795
    text-indent: 100%;
2796
    white-space: nowrap;
2797
    overflow: hidden;
2798
}
2799
2800
.browse-controls {
2801
    margin-left: 1.1em;
2802
    margin-right: .5em;
2803
    padding-bottom: 1em;
2804
    padding-top: 1em;
2805
}
2806
2807
#browse-return-to-results {
2808
    border-top-left-radius : 3px;
2809
    border-top-right-radius : 3px;
2810
    display: block;
2811
    text-align: center;
2812
}
2813
2814
.browse-button {
2815
    color: #004d99;
2816
    padding: .4em .6em;
2817
    display: inline-block;
2818
}
2819
2820
span.browse-button {
2821
    background: #fafafa;
2822
    color: #222;
2823
}
2824
2825
.browse-button:hover {
2826
    background: #fafafa;
2827
}
2828
2829
.browse-label,
2830
.browse-prev-next {
2831
    border: 1px solid #b9d8d9;
2832
}
2833
2834
.browse-label {
2835
    border-top-left-radius : 5px;
2836
    border-top-right-radius : 5px;
2837
    background-color : #e8f0f6;
2838
}
2839
2840
.browse-prev-next {
2841
    border-top-width: 0;
2842
    border-bottom-left-radius: 5px;
2843
    border-bottom-right-radius: 5px;
2844
}
2845
2846
#browse-previous {
2847
    border-right : 1px solid #B9D8D9;
2848
    border-bottom-left-radius: 5px;
2849
    padding-right: 1em;
2850
}
2851
2852
#browse-next {
2853
    border-top-width : 0;
2854
    border-bottom-right-radius: 5px;
2855
    float: right;
2856
    padding-right: 1em;
2857
}
2858
2859
.loading-overlay {
2860
    background-color: #FFF;
2861
    cursor: wait;
2862
    height: 100%;
2863
    left: 0;
2864
    opacity: .7;
2865
    position: fixed;
2866
    top: 0;
2867
    width: 100%;
2868
    z-index: 1000;
2869
}
2870
.loading-overlay div {
2871
    background : transparent url(../img/loading.gif) top left no-repeat;
2872
    font-size : 175%;
2873
    font-weight: bold;
2874
    height: 2em;
2875
    left: 50%;
2876
    margin: -1em 0 0 -2.5em;
2877
    padding-left : 50px;
2878
    position: absolute;
2879
    top: 50%;
2880
    width: 15em;
2881
}
2882
2883
#merge_invoices {
2884
    display: none;
2885
    margin: 1em auto;
2886
}
2887
2888
#merge {
2889
    margin: 0.5em 0 0 0;
2890
}
2891
2892
#merge_table tr.active td {
2893
    background-color: #FFFFCC;
2894
}
2895
2896
.renewals {
2897
    display:block;
2898
    font-size:0.8em;
2899
    padding:0.5em;
2900
}
2901
2902
#transport-types {
2903
    padding-top: 0.5px;
2904
}
2905
2906
#i18nMenu .navbar-text .currentlanguage {
2907
    color : #000;
2908
    font-weight: bold;
2909
}
2910
2911
#i18nMenu a.currentlanguage:link,
2912
#i18nMenu a.currentlanguage:visited {
2913
    font-weight: bold;
2914
}
2915
2916
#i18nMenu a,
2917
#i18nMenu a:link,
2918
#i18nMenu a:visited {
2919
    color : #004d99;
2920
    font-weight: normal;
2921
}
2922
2923
#i18nMenu a:hover,
2924
#i18nMenu a:active,
2925
#i18nMenu .dropdown-menu a:hover,
2926
#i18nMenu .dropdown-menu a:focus {
2927
    color : #538200;
2928
    font-weight: normal;
2929
}
2930
2931
#i18nMenu a .sublanguage-selected {
2932
    color: #000;
2933
    font-weight: bold;
2934
}
2935
2936
#i18nMenu .dropdown-menu a:hover,
2937
#i18nMenu .dropdown-menu a:focus {
2938
}
2939
2940
#circ_circulation_issue .onsite_checkout-select label,
2941
.onsite_checkout-select label {
2942
    font-size : inherit;
2943
    font-weight: normal;
2944
}
2945
span.onsite_checkout {
2946
    color: #cc0000;
2947
}
2948
.onsite-checkout-only {
2949
    background-color : rgba(255, 242, 206, 0.5);
2950
    border-radius: 4px;
2951
    border : 1px solid #FFF2CE;
2952
}
2953
2954
div.lastchecked {
2955
    padding : .2em 1em;
2956
    border: 2px solid #BCDB89;
2957
    border-bottom-left-radius: 5px;
2958
    border-bottom-right-radius: 5px;
2959
}
2960
.branchgriditem {
2961
    background-color: #fff;
2962
    border: 1px solid #b9d8d9;
2963
    border-radius: 3px;
2964
    display: table-cell;
2965
    float: left;
2966
    margin: 3px;
2967
    padding: 0.3em;
2968
}
2969
.branchgridrow {
2970
    display: table-row;
2971
}
2972
.branchselector {
2973
    display: table;
2974
}
2975
2976
.hq-author {
2977
    font-weight: bold;
2978
}
2979
2980
div#cn_browser_table_wrapper > table#cn_browser_table {
2981
   margin: auto;
2982
   width:90%;
2983
}
2984
2985
/* Tools > automatic_item_modification_by_age */
2986
div.rules {
2987
    display: block;
2988
}
2989
2990
#new_rule {
2991
    display: none;
2992
}
2993
2994
#new_rule, div.rule {
2995
    background-color: #F4F8F9;
2996
    border: 2px solid #B9D8D9;
2997
    border-radius: 5px;
2998
    margin: .3em;
2999
    padding: .3em;
3000
}
3001
3002
.blocks {
3003
    margin-bottom: .3em;
3004
}
3005
3006
.remove_rule {
3007
    padding-left: .7em;
3008
    font-size: 80%;
3009
}
3010
3011
div[class$="_table_controls"] {
3012
    padding: .7em 0;
3013
}
3014
3015
.underline {
3016
    text-decoration: underline;
3017
}
3018
3019
.overline {
3020
    text-decoration: overline;
3021
}
3022
3023
.order-control {
3024
    padding-right: 5px;
3025
}
3026
3027
#borrower_message {
3028
    margin-top: 10px;
3029
}
3030
3031
.form-group {
3032
   margin-bottom: 10px;
3033
}
3034
3035
.form-group label {
3036
    font-weight: bold;
3037
}
3038
3039
.modal-textarea {
3040
    width: 98%;
3041
}
3042
3043
fieldset.rows + fieldset.action {
3044
    padding-top: 20px;
3045
}
3046
3047
.yui-u .rows li p label.widelabel {
3048
    width: auto;
3049
}
3050
3051
#pat_member #patron_list_dialog,
3052
#pat_member #searchresults,
3053
#patron_search #filters {
3054
    display: none;
3055
}
3056
3057
#interlibraryloans h1 {
3058
    margin: 1em 0;
3059
}
3060
3061
#interlibraryloans h2 {
3062
    margin-bottom: 20px;
3063
}
3064
3065
#interlibraryloans h3 {
3066
    margin-top: 20px;
3067
}
3068
3069
#interlibraryloans .bg-info {
3070
    overflow: auto;
3071
    position: relative;
3072
}
3073
3074
#interlibraryloans #search-summary {
3075
    -webkit-transform: translateY(-50%);
3076
    -ms-transform: translateY(-50%);
3077
    -o-transform: translateY(-50%);
3078
    transform: translateY(-50%);
3079
    position: absolute;
3080
    top: 50%;
3081
}
3082
3083
#interlibraryloans .format h5 {
3084
    margin-top: 20px;
3085
}
3086
3087
#interlibraryloans .format li {
3088
    list-style: none;
3089
}
3090
3091
#interlibraryloans .format h4 {
3092
    margin-bottom: 20px;
3093
}
3094
3095
#interlibraryloans .format input {
3096
    margin: 10px 0;
3097
}
3098
3099
#interlibraryloans #freeform-fields .custom-name {
3100
    width: 9em;
3101
    margin-right: 1em;
3102
    text-align: right;
3103
}
3104
3105
#interlibraryloans #freeform-fields .delete-new-field {
3106
    margin-left: 1em;
3107
}
3108
3109
#interlibraryloans #add-new-fields {
3110
    margin: 1em;
3111
}
3112
3113
#interlibraryloans #column-toggle,
3114
#interlibraryloans #reset-toggle {
3115
    margin: 15px 0;
3116
    line-height: 1.5em;
3117
    font-weight: 700;
3118
}
3119
3120
#ill-view-panel {
3121
    margin-top: 15px;
3122
}
3123
3124
#ill-view-panel h3 {
3125
    margin-bottom: 10px;
3126
}
3127
3128
#ill-view-panel h4 {
3129
    margin-bottom: 20px;
3130
}
3131
3132
#ill-view-panel .rows div {
3133
    height: 1em;
3134
    margin-bottom: 1em;
3135
}
3136
3137
#ill-view-panel #requestattributes .label {
3138
    width: auto;
3139
}
3140
3141
table#ill-requests {
3142
    width: 100% !important;
3143
}
3144
3145
#helper span {
3146
    display: none;
3147
}
3148
3149
#logged-in-info-full {
3150
    display: none;
3151
}
3152
3153
.loggedin-menu-label {
3154
    color: #777;
3155
    font-size: 12px;
3156
    line-height: 1.42857143;
3157
    padding: 4px 12px;
3158
    white-space: nowrap;
3159
}
3160
3161
.loggedin-menu-label.divider {
3162
    padding: 0;
3163
}
3164
3165
.loggedin-menu-label span {
3166
    color: #000;
3167
    font-weight: bold;
3168
}
3169
3170
@media (min-width: 200px) {
3171
    .navbar-nav > li {
3172
        float: left;
3173
    }
3174
    .navbar-right {
3175
        float: right !important;
3176
        margin-right: -15px;
3177
    }
3178
    .navbar-nav {
3179
        float: left;
3180
        margin: 0;
3181
    }
3182
3183
    .navbar-nav .open .dropdown-menu {
3184
        position: absolute;
3185
        float: left;
3186
        left: auto;
3187
        right: 0;
3188
        width: auto;
3189
        background-color: #fff;
3190
        border: 1px solid rgba(0,0,0,0.15);
3191
        box-shadow: 0 6px 12px rgba(0,0,0,0.175);
3192
    }
3193
}
3194
3195
@media (min-width: 800px) {
3196
    #helper span {
3197
        display: inline;
3198
    }
3199
3200
    #helper i {
3201
        display: none;
3202
    }
3203
3204
    #logged-in-info-full {
3205
        display: inline;
3206
    }
3207
3208
    #logged-in-info-brief {
3209
        display: none;
3210
    }
3211
    .loggedin-menu-label {
3212
        display: none;
3213
    }
3214
}
(-)a/package.json (+29 lines)
Line 0 Link Here
1
{
2
  "name": "koha",
3
  "description": "Koha is distributed under the GNU GPL version 3 or later.",
4
  "main": "gulpfile.js",
5
  "directories": {
6
    "doc": "docs",
7
    "test": "test"
8
  },
9
  "dependencies": {
10
    "gulp": "^3.9.1",
11
    "gulp-autoprefixer": "^4.0.0",
12
    "gulp-cssnano": "^2.1.2",
13
    "gulp-sass": "^3.1.0",
14
    "gulp-sourcemaps": "^2.6.1",
15
    "gulp-util": "^3.0.8"
16
  },
17
  "devDependencies": {},
18
  "scripts": {
19
    "build": "node_modules/.bin/gulp build",
20
    "css": "node_modules/.bin/gulp css",
21
    "watch": "node_modules/.bin/gulp watch"
22
  },
23
  "repository": {
24
    "type": "git",
25
    "url": "git://git.koha-community.org/koha.git"
26
  },
27
  "author": "",
28
  "license": "GPL-3.0"
29
}
(-)a/yarn.lock (-1 / +2765 lines)
Line 0 Link Here
0
- 
1
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
# yarn lockfile v1
3
4
5
"@gulp-sourcemaps/identity-map@1.X":
6
  version "1.0.1"
7
  resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.1.tgz#cfa23bc5840f9104ce32a65e74db7e7a974bbee1"
8
  dependencies:
9
    acorn "^5.0.3"
10
    css "^2.2.1"
11
    normalize-path "^2.1.1"
12
    source-map "^0.5.6"
13
    through2 "^2.0.3"
14
15
"@gulp-sourcemaps/map-sources@1.X":
16
  version "1.0.0"
17
  resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda"
18
  dependencies:
19
    normalize-path "^2.0.1"
20
    through2 "^2.0.3"
21
22
abbrev@1:
23
  version "1.1.1"
24
  resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
25
26
acorn@4.X:
27
  version "4.0.13"
28
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
29
30
acorn@^5.0.3:
31
  version "5.1.2"
32
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
33
34
ajv@^5.1.0:
35
  version "5.2.3"
36
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2"
37
  dependencies:
38
    co "^4.6.0"
39
    fast-deep-equal "^1.0.0"
40
    json-schema-traverse "^0.3.0"
41
    json-stable-stringify "^1.0.1"
42
43
alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
44
  version "1.0.2"
45
  resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
46
47
amdefine@>=0.0.4:
48
  version "1.0.1"
49
  resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
50
51
ansi-regex@^2.0.0:
52
  version "2.1.1"
53
  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
54
55
ansi-styles@^2.2.1:
56
  version "2.2.1"
57
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
58
59
ansi-styles@^3.1.0:
60
  version "3.2.0"
61
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
62
  dependencies:
63
    color-convert "^1.9.0"
64
65
aproba@^1.0.3:
66
  version "1.2.0"
67
  resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
68
69
archy@^1.0.0:
70
  version "1.0.0"
71
  resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
72
73
are-we-there-yet@~1.1.2:
74
  version "1.1.4"
75
  resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
76
  dependencies:
77
    delegates "^1.0.0"
78
    readable-stream "^2.0.6"
79
80
argparse@^1.0.7:
81
  version "1.0.9"
82
  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
83
  dependencies:
84
    sprintf-js "~1.0.2"
85
86
arr-diff@^2.0.0:
87
  version "2.0.0"
88
  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
89
  dependencies:
90
    arr-flatten "^1.0.1"
91
92
arr-flatten@^1.0.1:
93
  version "1.1.0"
94
  resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
95
96
array-differ@^1.0.0:
97
  version "1.0.0"
98
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
99
100
array-each@^1.0.1:
101
  version "1.0.1"
102
  resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f"
103
104
array-find-index@^1.0.1:
105
  version "1.0.2"
106
  resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
107
108
array-slice@^1.0.0:
109
  version "1.0.0"
110
  resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.0.0.tgz#e73034f00dcc1f40876008fd20feae77bd4b7c2f"
111
112
array-uniq@^1.0.2:
113
  version "1.0.3"
114
  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
115
116
array-unique@^0.2.1:
117
  version "0.2.1"
118
  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
119
120
asn1@~0.2.3:
121
  version "0.2.3"
122
  resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
123
124
assert-plus@1.0.0, assert-plus@^1.0.0:
125
  version "1.0.0"
126
  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
127
128
async-foreach@^0.1.3:
129
  version "0.1.3"
130
  resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
131
132
asynckit@^0.4.0:
133
  version "0.4.0"
134
  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
135
136
atob@~1.1.0:
137
  version "1.1.3"
138
  resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773"
139
140
autoprefixer@^6.3.1:
141
  version "6.7.7"
142
  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
143
  dependencies:
144
    browserslist "^1.7.6"
145
    caniuse-db "^1.0.30000634"
146
    normalize-range "^0.1.2"
147
    num2fraction "^1.2.2"
148
    postcss "^5.2.16"
149
    postcss-value-parser "^3.2.3"
150
151
autoprefixer@^7.0.0:
152
  version "7.1.5"
153
  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.5.tgz#d65d14b83c7cd1dd7bc801daa00557addf5a06b2"
154
  dependencies:
155
    browserslist "^2.5.0"
156
    caniuse-lite "^1.0.30000744"
157
    normalize-range "^0.1.2"
158
    num2fraction "^1.2.2"
159
    postcss "^6.0.13"
160
    postcss-value-parser "^3.2.3"
161
162
aws-sign2@~0.7.0:
163
  version "0.7.0"
164
  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
165
166
aws4@^1.6.0:
167
  version "1.6.0"
168
  resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
169
170
balanced-match@^0.4.2:
171
  version "0.4.2"
172
  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
173
174
balanced-match@^1.0.0:
175
  version "1.0.0"
176
  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
177
178
bcrypt-pbkdf@^1.0.0:
179
  version "1.0.1"
180
  resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
181
  dependencies:
182
    tweetnacl "^0.14.3"
183
184
beeper@^1.0.0:
185
  version "1.1.1"
186
  resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809"
187
188
block-stream@*:
189
  version "0.0.9"
190
  resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
191
  dependencies:
192
    inherits "~2.0.0"
193
194
boom@4.x.x:
195
  version "4.3.1"
196
  resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
197
  dependencies:
198
    hoek "4.x.x"
199
200
boom@5.x.x:
201
  version "5.2.0"
202
  resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
203
  dependencies:
204
    hoek "4.x.x"
205
206
brace-expansion@^1.0.0, brace-expansion@^1.1.7:
207
  version "1.1.8"
208
  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
209
  dependencies:
210
    balanced-match "^1.0.0"
211
    concat-map "0.0.1"
212
213
braces@^1.8.2:
214
  version "1.8.5"
215
  resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
216
  dependencies:
217
    expand-range "^1.8.1"
218
    preserve "^0.2.0"
219
    repeat-element "^1.1.2"
220
221
browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
222
  version "1.7.7"
223
  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
224
  dependencies:
225
    caniuse-db "^1.0.30000639"
226
    electron-to-chromium "^1.2.7"
227
228
browserslist@^2.5.0:
229
  version "2.5.1"
230
  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.5.1.tgz#68e4bc536bbcc6086d62843a2ffccea8396821c6"
231
  dependencies:
232
    caniuse-lite "^1.0.30000744"
233
    electron-to-chromium "^1.3.24"
234
235
builtin-modules@^1.0.0:
236
  version "1.1.1"
237
  resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
238
239
camelcase-keys@^2.0.0:
240
  version "2.1.0"
241
  resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
242
  dependencies:
243
    camelcase "^2.0.0"
244
    map-obj "^1.0.0"
245
246
camelcase@^2.0.0:
247
  version "2.1.1"
248
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
249
250
camelcase@^3.0.0:
251
  version "3.0.0"
252
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
253
254
caniuse-api@^1.5.2:
255
  version "1.6.1"
256
  resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
257
  dependencies:
258
    browserslist "^1.3.6"
259
    caniuse-db "^1.0.30000529"
260
    lodash.memoize "^4.1.2"
261
    lodash.uniq "^4.5.0"
262
263
caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
264
  version "1.0.30000746"
265
  resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000746.tgz#501098c66f5fbbf634c02f25508b05e8809910f4"
266
267
caniuse-lite@^1.0.30000744:
268
  version "1.0.30000746"
269
  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000746.tgz#c64f95a3925cfd30207a308ed76c1ae96ea09ea0"
270
271
caseless@~0.12.0:
272
  version "0.12.0"
273
  resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
274
275
chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
276
  version "1.1.3"
277
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
278
  dependencies:
279
    ansi-styles "^2.2.1"
280
    escape-string-regexp "^1.0.2"
281
    has-ansi "^2.0.0"
282
    strip-ansi "^3.0.0"
283
    supports-color "^2.0.0"
284
285
chalk@^2.1.0:
286
  version "2.1.0"
287
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
288
  dependencies:
289
    ansi-styles "^3.1.0"
290
    escape-string-regexp "^1.0.5"
291
    supports-color "^4.0.0"
292
293
clap@^1.0.9:
294
  version "1.2.3"
295
  resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
296
  dependencies:
297
    chalk "^1.1.3"
298
299
cliui@^3.2.0:
300
  version "3.2.0"
301
  resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
302
  dependencies:
303
    string-width "^1.0.1"
304
    strip-ansi "^3.0.1"
305
    wrap-ansi "^2.0.0"
306
307
clone-stats@^0.0.1:
308
  version "0.0.1"
309
  resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
310
311
clone@^0.2.0:
312
  version "0.2.0"
313
  resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"
314
315
clone@^1.0.0, clone@^1.0.2:
316
  version "1.0.2"
317
  resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
318
319
co@^4.6.0:
320
  version "4.6.0"
321
  resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
322
323
coa@~1.0.1:
324
  version "1.0.4"
325
  resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
326
  dependencies:
327
    q "^1.1.2"
328
329
code-point-at@^1.0.0:
330
  version "1.1.0"
331
  resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
332
333
color-convert@^1.3.0, color-convert@^1.9.0:
334
  version "1.9.0"
335
  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
336
  dependencies:
337
    color-name "^1.1.1"
338
339
color-name@^1.0.0, color-name@^1.1.1:
340
  version "1.1.3"
341
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
342
343
color-string@^0.3.0:
344
  version "0.3.0"
345
  resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
346
  dependencies:
347
    color-name "^1.0.0"
348
349
color@^0.11.0:
350
  version "0.11.4"
351
  resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
352
  dependencies:
353
    clone "^1.0.2"
354
    color-convert "^1.3.0"
355
    color-string "^0.3.0"
356
357
colormin@^1.0.5:
358
  version "1.1.2"
359
  resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
360
  dependencies:
361
    color "^0.11.0"
362
    css-color-names "0.0.4"
363
    has "^1.0.1"
364
365
colors@~1.1.2:
366
  version "1.1.2"
367
  resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
368
369
combined-stream@^1.0.5, combined-stream@~1.0.5:
370
  version "1.0.5"
371
  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
372
  dependencies:
373
    delayed-stream "~1.0.0"
374
375
concat-map@0.0.1:
376
  version "0.0.1"
377
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
378
379
console-control-strings@^1.0.0, console-control-strings@~1.1.0:
380
  version "1.1.0"
381
  resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
382
383
convert-source-map@1.X:
384
  version "1.5.0"
385
  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
386
387
core-util-is@1.0.2, core-util-is@~1.0.0:
388
  version "1.0.2"
389
  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
390
391
cross-spawn@^3.0.0:
392
  version "3.0.1"
393
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982"
394
  dependencies:
395
    lru-cache "^4.0.1"
396
    which "^1.2.9"
397
398
cryptiles@3.x.x:
399
  version "3.1.2"
400
  resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
401
  dependencies:
402
    boom "5.x.x"
403
404
css-color-names@0.0.4:
405
  version "0.0.4"
406
  resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
407
408
css@2.X, css@^2.2.1:
409
  version "2.2.1"
410
  resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc"
411
  dependencies:
412
    inherits "^2.0.1"
413
    source-map "^0.1.38"
414
    source-map-resolve "^0.3.0"
415
    urix "^0.1.0"
416
417
cssnano@^3.0.0:
418
  version "3.10.0"
419
  resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
420
  dependencies:
421
    autoprefixer "^6.3.1"
422
    decamelize "^1.1.2"
423
    defined "^1.0.0"
424
    has "^1.0.1"
425
    object-assign "^4.0.1"
426
    postcss "^5.0.14"
427
    postcss-calc "^5.2.0"
428
    postcss-colormin "^2.1.8"
429
    postcss-convert-values "^2.3.4"
430
    postcss-discard-comments "^2.0.4"
431
    postcss-discard-duplicates "^2.0.1"
432
    postcss-discard-empty "^2.0.1"
433
    postcss-discard-overridden "^0.1.1"
434
    postcss-discard-unused "^2.2.1"
435
    postcss-filter-plugins "^2.0.0"
436
    postcss-merge-idents "^2.1.5"
437
    postcss-merge-longhand "^2.0.1"
438
    postcss-merge-rules "^2.0.3"
439
    postcss-minify-font-values "^1.0.2"
440
    postcss-minify-gradients "^1.0.1"
441
    postcss-minify-params "^1.0.4"
442
    postcss-minify-selectors "^2.0.4"
443
    postcss-normalize-charset "^1.1.0"
444
    postcss-normalize-url "^3.0.7"
445
    postcss-ordered-values "^2.1.0"
446
    postcss-reduce-idents "^2.2.2"
447
    postcss-reduce-initial "^1.0.0"
448
    postcss-reduce-transforms "^1.0.3"
449
    postcss-svgo "^2.1.1"
450
    postcss-unique-selectors "^2.0.2"
451
    postcss-value-parser "^3.2.3"
452
    postcss-zindex "^2.0.1"
453
454
csso@~2.3.1:
455
  version "2.3.2"
456
  resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
457
  dependencies:
458
    clap "^1.0.9"
459
    source-map "^0.5.3"
460
461
currently-unhandled@^0.4.1:
462
  version "0.4.1"
463
  resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
464
  dependencies:
465
    array-find-index "^1.0.1"
466
467
d@1:
468
  version "1.0.0"
469
  resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
470
  dependencies:
471
    es5-ext "^0.10.9"
472
473
dashdash@^1.12.0:
474
  version "1.14.1"
475
  resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
476
  dependencies:
477
    assert-plus "^1.0.0"
478
479
dateformat@^2.0.0:
480
  version "2.2.0"
481
  resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062"
482
483
debug-fabulous@>=0.1.1:
484
  version "0.2.1"
485
  resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.2.1.tgz#57e1164ba0e9ad6d9a65f20075ff3c2bd6bde0dc"
486
  dependencies:
487
    debug "3.X"
488
    memoizee "0.4.X"
489
    object-assign "4.X"
490
491
debug@3.X:
492
  version "3.1.0"
493
  resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
494
  dependencies:
495
    ms "2.0.0"
496
497
decamelize@^1.1.1, decamelize@^1.1.2:
498
  version "1.2.0"
499
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
500
501
defaults@^1.0.0:
502
  version "1.0.3"
503
  resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
504
  dependencies:
505
    clone "^1.0.2"
506
507
defined@^1.0.0:
508
  version "1.0.0"
509
  resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
510
511
delayed-stream@~1.0.0:
512
  version "1.0.0"
513
  resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
514
515
delegates@^1.0.0:
516
  version "1.0.0"
517
  resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
518
519
deprecated@^0.0.1:
520
  version "0.0.1"
521
  resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19"
522
523
detect-file@^0.1.0:
524
  version "0.1.0"
525
  resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63"
526
  dependencies:
527
    fs-exists-sync "^0.1.0"
528
529
detect-newline@2.X:
530
  version "2.1.0"
531
  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
532
533
duplexer2@0.0.2:
534
  version "0.0.2"
535
  resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db"
536
  dependencies:
537
    readable-stream "~1.1.9"
538
539
ecc-jsbn@~0.1.1:
540
  version "0.1.1"
541
  resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
542
  dependencies:
543
    jsbn "~0.1.0"
544
545
electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.24:
546
  version "1.3.26"
547
  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.26.tgz#996427294861a74d9c7c82b9260ea301e8c02d66"
548
549
end-of-stream@~0.1.5:
550
  version "0.1.5"
551
  resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf"
552
  dependencies:
553
    once "~1.3.0"
554
555
error-ex@^1.2.0:
556
  version "1.3.1"
557
  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
558
  dependencies:
559
    is-arrayish "^0.2.1"
560
561
es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2:
562
  version "0.10.35"
563
  resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f"
564
  dependencies:
565
    es6-iterator "~2.0.1"
566
    es6-symbol "~3.1.1"
567
568
es6-iterator@^2.0.1, es6-iterator@~2.0.1:
569
  version "2.0.1"
570
  resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
571
  dependencies:
572
    d "1"
573
    es5-ext "^0.10.14"
574
    es6-symbol "^3.1"
575
576
es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
577
  version "3.1.1"
578
  resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
579
  dependencies:
580
    d "1"
581
    es5-ext "~0.10.14"
582
583
es6-weak-map@^2.0.2:
584
  version "2.0.2"
585
  resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
586
  dependencies:
587
    d "1"
588
    es5-ext "^0.10.14"
589
    es6-iterator "^2.0.1"
590
    es6-symbol "^3.1.1"
591
592
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
593
  version "1.0.5"
594
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
595
596
esprima@^2.6.0:
597
  version "2.7.3"
598
  resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
599
600
event-emitter@^0.3.5:
601
  version "0.3.5"
602
  resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
603
  dependencies:
604
    d "1"
605
    es5-ext "~0.10.14"
606
607
expand-brackets@^0.1.4:
608
  version "0.1.5"
609
  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
610
  dependencies:
611
    is-posix-bracket "^0.1.0"
612
613
expand-range@^1.8.1:
614
  version "1.8.2"
615
  resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
616
  dependencies:
617
    fill-range "^2.1.0"
618
619
expand-tilde@^1.2.2:
620
  version "1.2.2"
621
  resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
622
  dependencies:
623
    os-homedir "^1.0.1"
624
625
expand-tilde@^2.0.2:
626
  version "2.0.2"
627
  resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
628
  dependencies:
629
    homedir-polyfill "^1.0.1"
630
631
extend@^3.0.0, extend@~3.0.1:
632
  version "3.0.1"
633
  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
634
635
extglob@^0.3.1:
636
  version "0.3.2"
637
  resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
638
  dependencies:
639
    is-extglob "^1.0.0"
640
641
extsprintf@1.3.0, extsprintf@^1.2.0:
642
  version "1.3.0"
643
  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
644
645
fancy-log@^1.1.0:
646
  version "1.3.0"
647
  resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948"
648
  dependencies:
649
    chalk "^1.1.1"
650
    time-stamp "^1.0.0"
651
652
fast-deep-equal@^1.0.0:
653
  version "1.0.0"
654
  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
655
656
filename-regex@^2.0.0:
657
  version "2.0.1"
658
  resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
659
660
fill-range@^2.1.0:
661
  version "2.2.3"
662
  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
663
  dependencies:
664
    is-number "^2.1.0"
665
    isobject "^2.0.0"
666
    randomatic "^1.1.3"
667
    repeat-element "^1.1.2"
668
    repeat-string "^1.5.2"
669
670
find-index@^0.1.1:
671
  version "0.1.1"
672
  resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4"
673
674
find-up@^1.0.0:
675
  version "1.1.2"
676
  resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
677
  dependencies:
678
    path-exists "^2.0.0"
679
    pinkie-promise "^2.0.0"
680
681
findup-sync@^0.4.2:
682
  version "0.4.3"
683
  resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12"
684
  dependencies:
685
    detect-file "^0.1.0"
686
    is-glob "^2.0.1"
687
    micromatch "^2.3.7"
688
    resolve-dir "^0.1.0"
689
690
fined@^1.0.1:
691
  version "1.1.0"
692
  resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.0.tgz#b37dc844b76a2f5e7081e884f7c0ae344f153476"
693
  dependencies:
694
    expand-tilde "^2.0.2"
695
    is-plain-object "^2.0.3"
696
    object.defaults "^1.1.0"
697
    object.pick "^1.2.0"
698
    parse-filepath "^1.0.1"
699
700
first-chunk-stream@^1.0.0:
701
  version "1.0.0"
702
  resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
703
704
flagged-respawn@^0.3.2:
705
  version "0.3.2"
706
  resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5"
707
708
flatten@^1.0.2:
709
  version "1.0.2"
710
  resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
711
712
for-in@^1.0.1:
713
  version "1.0.2"
714
  resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
715
716
for-own@^0.1.4:
717
  version "0.1.5"
718
  resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
719
  dependencies:
720
    for-in "^1.0.1"
721
722
for-own@^1.0.0:
723
  version "1.0.0"
724
  resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
725
  dependencies:
726
    for-in "^1.0.1"
727
728
forever-agent@~0.6.1:
729
  version "0.6.1"
730
  resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
731
732
form-data@~2.3.1:
733
  version "2.3.1"
734
  resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"
735
  dependencies:
736
    asynckit "^0.4.0"
737
    combined-stream "^1.0.5"
738
    mime-types "^2.1.12"
739
740
fs-exists-sync@^0.1.0:
741
  version "0.1.0"
742
  resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
743
744
fs.realpath@^1.0.0:
745
  version "1.0.0"
746
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
747
748
fstream@^1.0.0, fstream@^1.0.2:
749
  version "1.0.11"
750
  resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
751
  dependencies:
752
    graceful-fs "^4.1.2"
753
    inherits "~2.0.0"
754
    mkdirp ">=0.5 0"
755
    rimraf "2"
756
757
function-bind@^1.0.2:
758
  version "1.1.1"
759
  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
760
761
gauge@~2.7.3:
762
  version "2.7.4"
763
  resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
764
  dependencies:
765
    aproba "^1.0.3"
766
    console-control-strings "^1.0.0"
767
    has-unicode "^2.0.0"
768
    object-assign "^4.1.0"
769
    signal-exit "^3.0.0"
770
    string-width "^1.0.1"
771
    strip-ansi "^3.0.1"
772
    wide-align "^1.1.0"
773
774
gaze@^0.5.1:
775
  version "0.5.2"
776
  resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f"
777
  dependencies:
778
    globule "~0.1.0"
779
780
gaze@^1.0.0:
781
  version "1.1.2"
782
  resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105"
783
  dependencies:
784
    globule "^1.0.0"
785
786
get-caller-file@^1.0.1:
787
  version "1.0.2"
788
  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
789
790
get-stdin@^4.0.1:
791
  version "4.0.1"
792
  resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
793
794
getpass@^0.1.1:
795
  version "0.1.7"
796
  resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
797
  dependencies:
798
    assert-plus "^1.0.0"
799
800
glob-base@^0.3.0:
801
  version "0.3.0"
802
  resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
803
  dependencies:
804
    glob-parent "^2.0.0"
805
    is-glob "^2.0.0"
806
807
glob-parent@^2.0.0:
808
  version "2.0.0"
809
  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
810
  dependencies:
811
    is-glob "^2.0.0"
812
813
glob-stream@^3.1.5:
814
  version "3.1.18"
815
  resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b"
816
  dependencies:
817
    glob "^4.3.1"
818
    glob2base "^0.0.12"
819
    minimatch "^2.0.1"
820
    ordered-read-streams "^0.1.0"
821
    through2 "^0.6.1"
822
    unique-stream "^1.0.0"
823
824
glob-watcher@^0.0.6:
825
  version "0.0.6"
826
  resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b"
827
  dependencies:
828
    gaze "^0.5.1"
829
830
glob2base@^0.0.12:
831
  version "0.0.12"
832
  resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56"
833
  dependencies:
834
    find-index "^0.1.1"
835
836
glob@^4.3.1:
837
  version "4.5.3"
838
  resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f"
839
  dependencies:
840
    inflight "^1.0.4"
841
    inherits "2"
842
    minimatch "^2.0.1"
843
    once "^1.3.0"
844
845
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1:
846
  version "7.1.2"
847
  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
848
  dependencies:
849
    fs.realpath "^1.0.0"
850
    inflight "^1.0.4"
851
    inherits "2"
852
    minimatch "^3.0.4"
853
    once "^1.3.0"
854
    path-is-absolute "^1.0.0"
855
856
glob@~3.1.21:
857
  version "3.1.21"
858
  resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd"
859
  dependencies:
860
    graceful-fs "~1.2.0"
861
    inherits "1"
862
    minimatch "~0.2.11"
863
864
global-modules@^0.2.3:
865
  version "0.2.3"
866
  resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"
867
  dependencies:
868
    global-prefix "^0.1.4"
869
    is-windows "^0.2.0"
870
871
global-prefix@^0.1.4:
872
  version "0.1.5"
873
  resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"
874
  dependencies:
875
    homedir-polyfill "^1.0.0"
876
    ini "^1.3.4"
877
    is-windows "^0.2.0"
878
    which "^1.2.12"
879
880
globule@^1.0.0:
881
  version "1.2.0"
882
  resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09"
883
  dependencies:
884
    glob "~7.1.1"
885
    lodash "~4.17.4"
886
    minimatch "~3.0.2"
887
888
globule@~0.1.0:
889
  version "0.1.0"
890
  resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5"
891
  dependencies:
892
    glob "~3.1.21"
893
    lodash "~1.0.1"
894
    minimatch "~0.2.11"
895
896
glogg@^1.0.0:
897
  version "1.0.0"
898
  resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5"
899
  dependencies:
900
    sparkles "^1.0.0"
901
902
graceful-fs@4.X, graceful-fs@^4.1.2:
903
  version "4.1.11"
904
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
905
906
graceful-fs@^3.0.0:
907
  version "3.0.11"
908
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818"
909
  dependencies:
910
    natives "^1.1.0"
911
912
graceful-fs@~1.2.0:
913
  version "1.2.3"
914
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364"
915
916
gulp-autoprefixer@^4.0.0:
917
  version "4.0.0"
918
  resolved "https://registry.yarnpkg.com/gulp-autoprefixer/-/gulp-autoprefixer-4.0.0.tgz#e00a8c571b85d06516ac26341be90dfd9fc1eab0"
919
  dependencies:
920
    autoprefixer "^7.0.0"
921
    gulp-util "^3.0.0"
922
    postcss "^6.0.1"
923
    through2 "^2.0.0"
924
    vinyl-sourcemaps-apply "^0.2.0"
925
926
gulp-cssnano@^2.1.2:
927
  version "2.1.2"
928
  resolved "https://registry.yarnpkg.com/gulp-cssnano/-/gulp-cssnano-2.1.2.tgz#e08a09771ec5454a549f1a005bdd256cb8e5e0a3"
929
  dependencies:
930
    cssnano "^3.0.0"
931
    gulp-util "^3.0.6"
932
    object-assign "^4.0.1"
933
    vinyl-sourcemaps-apply "^0.2.1"
934
935
gulp-sass@^3.1.0:
936
  version "3.1.0"
937
  resolved "https://registry.yarnpkg.com/gulp-sass/-/gulp-sass-3.1.0.tgz#53dc4b68a1f5ddfe4424ab4c247655269a8b74b7"
938
  dependencies:
939
    gulp-util "^3.0"
940
    lodash.clonedeep "^4.3.2"
941
    node-sass "^4.2.0"
942
    through2 "^2.0.0"
943
    vinyl-sourcemaps-apply "^0.2.0"
944
945
gulp-sourcemaps@^2.6.1:
946
  version "2.6.1"
947
  resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.1.tgz#833a4e28f0b8f4661075032cd782417f7cd8fb0b"
948
  dependencies:
949
    "@gulp-sourcemaps/identity-map" "1.X"
950
    "@gulp-sourcemaps/map-sources" "1.X"
951
    acorn "4.X"
952
    convert-source-map "1.X"
953
    css "2.X"
954
    debug-fabulous ">=0.1.1"
955
    detect-newline "2.X"
956
    graceful-fs "4.X"
957
    source-map "0.X"
958
    strip-bom-string "1.X"
959
    through2 "2.X"
960
    vinyl "1.X"
961
962
gulp-util@^3.0, gulp-util@^3.0.0, gulp-util@^3.0.6, gulp-util@^3.0.8:
963
  version "3.0.8"
964
  resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f"
965
  dependencies:
966
    array-differ "^1.0.0"
967
    array-uniq "^1.0.2"
968
    beeper "^1.0.0"
969
    chalk "^1.0.0"
970
    dateformat "^2.0.0"
971
    fancy-log "^1.1.0"
972
    gulplog "^1.0.0"
973
    has-gulplog "^0.1.0"
974
    lodash._reescape "^3.0.0"
975
    lodash._reevaluate "^3.0.0"
976
    lodash._reinterpolate "^3.0.0"
977
    lodash.template "^3.0.0"
978
    minimist "^1.1.0"
979
    multipipe "^0.1.2"
980
    object-assign "^3.0.0"
981
    replace-ext "0.0.1"
982
    through2 "^2.0.0"
983
    vinyl "^0.5.0"
984
985
gulp@^3.9.1:
986
  version "3.9.1"
987
  resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4"
988
  dependencies:
989
    archy "^1.0.0"
990
    chalk "^1.0.0"
991
    deprecated "^0.0.1"
992
    gulp-util "^3.0.0"
993
    interpret "^1.0.0"
994
    liftoff "^2.1.0"
995
    minimist "^1.1.0"
996
    orchestrator "^0.3.0"
997
    pretty-hrtime "^1.0.0"
998
    semver "^4.1.0"
999
    tildify "^1.0.0"
1000
    v8flags "^2.0.2"
1001
    vinyl-fs "^0.3.0"
1002
1003
gulplog@^1.0.0:
1004
  version "1.0.0"
1005
  resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5"
1006
  dependencies:
1007
    glogg "^1.0.0"
1008
1009
har-schema@^2.0.0:
1010
  version "2.0.0"
1011
  resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1012
1013
har-validator@~5.0.3:
1014
  version "5.0.3"
1015
  resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1016
  dependencies:
1017
    ajv "^5.1.0"
1018
    har-schema "^2.0.0"
1019
1020
has-ansi@^2.0.0:
1021
  version "2.0.0"
1022
  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1023
  dependencies:
1024
    ansi-regex "^2.0.0"
1025
1026
has-flag@^1.0.0:
1027
  version "1.0.0"
1028
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1029
1030
has-flag@^2.0.0:
1031
  version "2.0.0"
1032
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1033
1034
has-gulplog@^0.1.0:
1035
  version "0.1.0"
1036
  resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce"
1037
  dependencies:
1038
    sparkles "^1.0.0"
1039
1040
has-unicode@^2.0.0:
1041
  version "2.0.1"
1042
  resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1043
1044
has@^1.0.1:
1045
  version "1.0.1"
1046
  resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1047
  dependencies:
1048
    function-bind "^1.0.2"
1049
1050
hawk@~6.0.2:
1051
  version "6.0.2"
1052
  resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
1053
  dependencies:
1054
    boom "4.x.x"
1055
    cryptiles "3.x.x"
1056
    hoek "4.x.x"
1057
    sntp "2.x.x"
1058
1059
hoek@4.x.x:
1060
  version "4.2.0"
1061
  resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
1062
1063
homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1:
1064
  version "1.0.1"
1065
  resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc"
1066
  dependencies:
1067
    parse-passwd "^1.0.0"
1068
1069
hosted-git-info@^2.1.4:
1070
  version "2.5.0"
1071
  resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1072
1073
html-comment-regex@^1.1.0:
1074
  version "1.1.1"
1075
  resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e"
1076
1077
http-signature@~1.2.0:
1078
  version "1.2.0"
1079
  resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1080
  dependencies:
1081
    assert-plus "^1.0.0"
1082
    jsprim "^1.2.2"
1083
    sshpk "^1.7.0"
1084
1085
in-publish@^2.0.0:
1086
  version "2.0.0"
1087
  resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51"
1088
1089
indent-string@^2.1.0:
1090
  version "2.1.0"
1091
  resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1092
  dependencies:
1093
    repeating "^2.0.0"
1094
1095
indexes-of@^1.0.1:
1096
  version "1.0.1"
1097
  resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
1098
1099
inflight@^1.0.4:
1100
  version "1.0.6"
1101
  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1102
  dependencies:
1103
    once "^1.3.0"
1104
    wrappy "1"
1105
1106
inherits@1:
1107
  version "1.0.2"
1108
  resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"
1109
1110
inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
1111
  version "2.0.3"
1112
  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1113
1114
ini@^1.3.4:
1115
  version "1.3.4"
1116
  resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1117
1118
interpret@^1.0.0:
1119
  version "1.0.4"
1120
  resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
1121
1122
invert-kv@^1.0.0:
1123
  version "1.0.0"
1124
  resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1125
1126
is-absolute-url@^2.0.0:
1127
  version "2.1.0"
1128
  resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
1129
1130
is-absolute@^0.2.3:
1131
  version "0.2.6"
1132
  resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb"
1133
  dependencies:
1134
    is-relative "^0.2.1"
1135
    is-windows "^0.2.0"
1136
1137
is-arrayish@^0.2.1:
1138
  version "0.2.1"
1139
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1140
1141
is-buffer@^1.1.5:
1142
  version "1.1.5"
1143
  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1144
1145
is-builtin-module@^1.0.0:
1146
  version "1.0.0"
1147
  resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1148
  dependencies:
1149
    builtin-modules "^1.0.0"
1150
1151
is-dotfile@^1.0.0:
1152
  version "1.0.3"
1153
  resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1154
1155
is-equal-shallow@^0.1.3:
1156
  version "0.1.3"
1157
  resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1158
  dependencies:
1159
    is-primitive "^2.0.0"
1160
1161
is-extendable@^0.1.1:
1162
  version "0.1.1"
1163
  resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1164
1165
is-extglob@^1.0.0:
1166
  version "1.0.0"
1167
  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1168
1169
is-finite@^1.0.0:
1170
  version "1.0.2"
1171
  resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1172
  dependencies:
1173
    number-is-nan "^1.0.0"
1174
1175
is-fullwidth-code-point@^1.0.0:
1176
  version "1.0.0"
1177
  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1178
  dependencies:
1179
    number-is-nan "^1.0.0"
1180
1181
is-glob@^2.0.0, is-glob@^2.0.1:
1182
  version "2.0.1"
1183
  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1184
  dependencies:
1185
    is-extglob "^1.0.0"
1186
1187
is-number@^2.1.0:
1188
  version "2.1.0"
1189
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1190
  dependencies:
1191
    kind-of "^3.0.2"
1192
1193
is-number@^3.0.0:
1194
  version "3.0.0"
1195
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1196
  dependencies:
1197
    kind-of "^3.0.2"
1198
1199
is-plain-obj@^1.0.0:
1200
  version "1.1.0"
1201
  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1202
1203
is-plain-object@^2.0.3:
1204
  version "2.0.4"
1205
  resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1206
  dependencies:
1207
    isobject "^3.0.1"
1208
1209
is-posix-bracket@^0.1.0:
1210
  version "0.1.1"
1211
  resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1212
1213
is-primitive@^2.0.0:
1214
  version "2.0.0"
1215
  resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1216
1217
is-promise@^2.1:
1218
  version "2.1.0"
1219
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1220
1221
is-relative@^0.2.1:
1222
  version "0.2.1"
1223
  resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5"
1224
  dependencies:
1225
    is-unc-path "^0.1.1"
1226
1227
is-svg@^2.0.0:
1228
  version "2.1.0"
1229
  resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
1230
  dependencies:
1231
    html-comment-regex "^1.1.0"
1232
1233
is-typedarray@~1.0.0:
1234
  version "1.0.0"
1235
  resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1236
1237
is-unc-path@^0.1.1:
1238
  version "0.1.2"
1239
  resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9"
1240
  dependencies:
1241
    unc-path-regex "^0.1.0"
1242
1243
is-utf8@^0.2.0:
1244
  version "0.2.1"
1245
  resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1246
1247
is-windows@^0.2.0:
1248
  version "0.2.0"
1249
  resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c"
1250
1251
isarray@0.0.1:
1252
  version "0.0.1"
1253
  resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1254
1255
isarray@1.0.0, isarray@~1.0.0:
1256
  version "1.0.0"
1257
  resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1258
1259
isexe@^2.0.0:
1260
  version "2.0.0"
1261
  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1262
1263
isobject@^2.0.0:
1264
  version "2.1.0"
1265
  resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1266
  dependencies:
1267
    isarray "1.0.0"
1268
1269
isobject@^3.0.0, isobject@^3.0.1:
1270
  version "3.0.1"
1271
  resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1272
1273
isstream@~0.1.2:
1274
  version "0.1.2"
1275
  resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1276
1277
js-base64@^2.1.8, js-base64@^2.1.9:
1278
  version "2.3.2"
1279
  resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf"
1280
1281
js-yaml@~3.7.0:
1282
  version "3.7.0"
1283
  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
1284
  dependencies:
1285
    argparse "^1.0.7"
1286
    esprima "^2.6.0"
1287
1288
jsbn@~0.1.0:
1289
  version "0.1.1"
1290
  resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1291
1292
json-schema-traverse@^0.3.0:
1293
  version "0.3.1"
1294
  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1295
1296
json-schema@0.2.3:
1297
  version "0.2.3"
1298
  resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1299
1300
json-stable-stringify@^1.0.1:
1301
  version "1.0.1"
1302
  resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1303
  dependencies:
1304
    jsonify "~0.0.0"
1305
1306
json-stringify-safe@~5.0.1:
1307
  version "5.0.1"
1308
  resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1309
1310
jsonify@~0.0.0:
1311
  version "0.0.0"
1312
  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1313
1314
jsprim@^1.2.2:
1315
  version "1.4.1"
1316
  resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1317
  dependencies:
1318
    assert-plus "1.0.0"
1319
    extsprintf "1.3.0"
1320
    json-schema "0.2.3"
1321
    verror "1.10.0"
1322
1323
kind-of@^3.0.2:
1324
  version "3.2.2"
1325
  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1326
  dependencies:
1327
    is-buffer "^1.1.5"
1328
1329
kind-of@^4.0.0:
1330
  version "4.0.0"
1331
  resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1332
  dependencies:
1333
    is-buffer "^1.1.5"
1334
1335
lcid@^1.0.0:
1336
  version "1.0.0"
1337
  resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1338
  dependencies:
1339
    invert-kv "^1.0.0"
1340
1341
liftoff@^2.1.0:
1342
  version "2.3.0"
1343
  resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385"
1344
  dependencies:
1345
    extend "^3.0.0"
1346
    findup-sync "^0.4.2"
1347
    fined "^1.0.1"
1348
    flagged-respawn "^0.3.2"
1349
    lodash.isplainobject "^4.0.4"
1350
    lodash.isstring "^4.0.1"
1351
    lodash.mapvalues "^4.4.0"
1352
    rechoir "^0.6.2"
1353
    resolve "^1.1.7"
1354
1355
load-json-file@^1.0.0:
1356
  version "1.1.0"
1357
  resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1358
  dependencies:
1359
    graceful-fs "^4.1.2"
1360
    parse-json "^2.2.0"
1361
    pify "^2.0.0"
1362
    pinkie-promise "^2.0.0"
1363
    strip-bom "^2.0.0"
1364
1365
lodash._basecopy@^3.0.0:
1366
  version "3.0.1"
1367
  resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
1368
1369
lodash._basetostring@^3.0.0:
1370
  version "3.0.1"
1371
  resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5"
1372
1373
lodash._basevalues@^3.0.0:
1374
  version "3.0.0"
1375
  resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7"
1376
1377
lodash._getnative@^3.0.0:
1378
  version "3.9.1"
1379
  resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
1380
1381
lodash._isiterateecall@^3.0.0:
1382
  version "3.0.9"
1383
  resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
1384
1385
lodash._reescape@^3.0.0:
1386
  version "3.0.0"
1387
  resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"
1388
1389
lodash._reevaluate@^3.0.0:
1390
  version "3.0.0"
1391
  resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed"
1392
1393
lodash._reinterpolate@^3.0.0:
1394
  version "3.0.0"
1395
  resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
1396
1397
lodash._root@^3.0.0:
1398
  version "3.0.1"
1399
  resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
1400
1401
lodash.assign@^4.2.0:
1402
  version "4.2.0"
1403
  resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
1404
1405
lodash.clonedeep@^4.3.2:
1406
  version "4.5.0"
1407
  resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
1408
1409
lodash.escape@^3.0.0:
1410
  version "3.2.0"
1411
  resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698"
1412
  dependencies:
1413
    lodash._root "^3.0.0"
1414
1415
lodash.isarguments@^3.0.0:
1416
  version "3.1.0"
1417
  resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
1418
1419
lodash.isarray@^3.0.0:
1420
  version "3.0.4"
1421
  resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
1422
1423
lodash.isplainobject@^4.0.4:
1424
  version "4.0.6"
1425
  resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
1426
1427
lodash.isstring@^4.0.1:
1428
  version "4.0.1"
1429
  resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
1430
1431
lodash.keys@^3.0.0:
1432
  version "3.1.2"
1433
  resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
1434
  dependencies:
1435
    lodash._getnative "^3.0.0"
1436
    lodash.isarguments "^3.0.0"
1437
    lodash.isarray "^3.0.0"
1438
1439
lodash.mapvalues@^4.4.0:
1440
  version "4.6.0"
1441
  resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c"
1442
1443
lodash.memoize@^4.1.2:
1444
  version "4.1.2"
1445
  resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
1446
1447
lodash.mergewith@^4.6.0:
1448
  version "4.6.0"
1449
  resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55"
1450
1451
lodash.restparam@^3.0.0:
1452
  version "3.6.1"
1453
  resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
1454
1455
lodash.template@^3.0.0:
1456
  version "3.6.2"
1457
  resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f"
1458
  dependencies:
1459
    lodash._basecopy "^3.0.0"
1460
    lodash._basetostring "^3.0.0"
1461
    lodash._basevalues "^3.0.0"
1462
    lodash._isiterateecall "^3.0.0"
1463
    lodash._reinterpolate "^3.0.0"
1464
    lodash.escape "^3.0.0"
1465
    lodash.keys "^3.0.0"
1466
    lodash.restparam "^3.0.0"
1467
    lodash.templatesettings "^3.0.0"
1468
1469
lodash.templatesettings@^3.0.0:
1470
  version "3.1.1"
1471
  resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5"
1472
  dependencies:
1473
    lodash._reinterpolate "^3.0.0"
1474
    lodash.escape "^3.0.0"
1475
1476
lodash.uniq@^4.5.0:
1477
  version "4.5.0"
1478
  resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
1479
1480
lodash@^4.0.0, lodash@~4.17.4:
1481
  version "4.17.4"
1482
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1483
1484
lodash@~1.0.1:
1485
  version "1.0.2"
1486
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551"
1487
1488
loud-rejection@^1.0.0:
1489
  version "1.6.0"
1490
  resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1491
  dependencies:
1492
    currently-unhandled "^0.4.1"
1493
    signal-exit "^3.0.0"
1494
1495
lru-cache@2:
1496
  version "2.7.3"
1497
  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952"
1498
1499
lru-cache@^4.0.1:
1500
  version "4.1.1"
1501
  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1502
  dependencies:
1503
    pseudomap "^1.0.2"
1504
    yallist "^2.1.2"
1505
1506
lru-queue@0.1:
1507
  version "0.1.0"
1508
  resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3"
1509
  dependencies:
1510
    es5-ext "~0.10.2"
1511
1512
macaddress@^0.2.8:
1513
  version "0.2.8"
1514
  resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12"
1515
1516
map-cache@^0.2.0:
1517
  version "0.2.2"
1518
  resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1519
1520
map-obj@^1.0.0, map-obj@^1.0.1:
1521
  version "1.0.1"
1522
  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1523
1524
math-expression-evaluator@^1.2.14:
1525
  version "1.2.17"
1526
  resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
1527
1528
memoizee@0.4.X:
1529
  version "0.4.11"
1530
  resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.11.tgz#bde9817663c9e40fdb2a4ea1c367296087ae8c8f"
1531
  dependencies:
1532
    d "1"
1533
    es5-ext "^0.10.30"
1534
    es6-weak-map "^2.0.2"
1535
    event-emitter "^0.3.5"
1536
    is-promise "^2.1"
1537
    lru-queue "0.1"
1538
    next-tick "1"
1539
    timers-ext "^0.1.2"
1540
1541
meow@^3.7.0:
1542
  version "3.7.0"
1543
  resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
1544
  dependencies:
1545
    camelcase-keys "^2.0.0"
1546
    decamelize "^1.1.2"
1547
    loud-rejection "^1.0.0"
1548
    map-obj "^1.0.1"
1549
    minimist "^1.1.3"
1550
    normalize-package-data "^2.3.4"
1551
    object-assign "^4.0.1"
1552
    read-pkg-up "^1.0.1"
1553
    redent "^1.0.0"
1554
    trim-newlines "^1.0.0"
1555
1556
micromatch@^2.3.7:
1557
  version "2.3.11"
1558
  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1559
  dependencies:
1560
    arr-diff "^2.0.0"
1561
    array-unique "^0.2.1"
1562
    braces "^1.8.2"
1563
    expand-brackets "^0.1.4"
1564
    extglob "^0.3.1"
1565
    filename-regex "^2.0.0"
1566
    is-extglob "^1.0.0"
1567
    is-glob "^2.0.1"
1568
    kind-of "^3.0.2"
1569
    normalize-path "^2.0.1"
1570
    object.omit "^2.0.0"
1571
    parse-glob "^3.0.4"
1572
    regex-cache "^0.4.2"
1573
1574
mime-db@~1.30.0:
1575
  version "1.30.0"
1576
  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
1577
1578
mime-types@^2.1.12, mime-types@~2.1.17:
1579
  version "2.1.17"
1580
  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
1581
  dependencies:
1582
    mime-db "~1.30.0"
1583
1584
minimatch@^2.0.1:
1585
  version "2.0.10"
1586
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"
1587
  dependencies:
1588
    brace-expansion "^1.0.0"
1589
1590
minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2:
1591
  version "3.0.4"
1592
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1593
  dependencies:
1594
    brace-expansion "^1.1.7"
1595
1596
minimatch@~0.2.11:
1597
  version "0.2.14"
1598
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a"
1599
  dependencies:
1600
    lru-cache "2"
1601
    sigmund "~1.0.0"
1602
1603
minimist@0.0.8:
1604
  version "0.0.8"
1605
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1606
1607
minimist@^1.1.0, minimist@^1.1.3:
1608
  version "1.2.0"
1609
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1610
1611
"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
1612
  version "0.5.1"
1613
  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1614
  dependencies:
1615
    minimist "0.0.8"
1616
1617
ms@2.0.0:
1618
  version "2.0.0"
1619
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1620
1621
multipipe@^0.1.2:
1622
  version "0.1.2"
1623
  resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"
1624
  dependencies:
1625
    duplexer2 "0.0.2"
1626
1627
nan@^2.3.2:
1628
  version "2.7.0"
1629
  resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
1630
1631
natives@^1.1.0:
1632
  version "1.1.0"
1633
  resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31"
1634
1635
next-tick@1:
1636
  version "1.0.0"
1637
  resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
1638
1639
node-gyp@^3.3.1:
1640
  version "3.6.2"
1641
  resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60"
1642
  dependencies:
1643
    fstream "^1.0.0"
1644
    glob "^7.0.3"
1645
    graceful-fs "^4.1.2"
1646
    minimatch "^3.0.2"
1647
    mkdirp "^0.5.0"
1648
    nopt "2 || 3"
1649
    npmlog "0 || 1 || 2 || 3 || 4"
1650
    osenv "0"
1651
    request "2"
1652
    rimraf "2"
1653
    semver "~5.3.0"
1654
    tar "^2.0.0"
1655
    which "1"
1656
1657
node-sass@^4.2.0:
1658
  version "4.5.3"
1659
  resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.3.tgz#d09c9d1179641239d1b97ffc6231fdcec53e1568"
1660
  dependencies:
1661
    async-foreach "^0.1.3"
1662
    chalk "^1.1.1"
1663
    cross-spawn "^3.0.0"
1664
    gaze "^1.0.0"
1665
    get-stdin "^4.0.1"
1666
    glob "^7.0.3"
1667
    in-publish "^2.0.0"
1668
    lodash.assign "^4.2.0"
1669
    lodash.clonedeep "^4.3.2"
1670
    lodash.mergewith "^4.6.0"
1671
    meow "^3.7.0"
1672
    mkdirp "^0.5.1"
1673
    nan "^2.3.2"
1674
    node-gyp "^3.3.1"
1675
    npmlog "^4.0.0"
1676
    request "^2.79.0"
1677
    sass-graph "^2.1.1"
1678
    stdout-stream "^1.4.0"
1679
1680
"nopt@2 || 3":
1681
  version "3.0.6"
1682
  resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
1683
  dependencies:
1684
    abbrev "1"
1685
1686
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
1687
  version "2.4.0"
1688
  resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1689
  dependencies:
1690
    hosted-git-info "^2.1.4"
1691
    is-builtin-module "^1.0.0"
1692
    semver "2 || 3 || 4 || 5"
1693
    validate-npm-package-license "^3.0.1"
1694
1695
normalize-path@^2.0.1, normalize-path@^2.1.1:
1696
  version "2.1.1"
1697
  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1698
  dependencies:
1699
    remove-trailing-separator "^1.0.1"
1700
1701
normalize-range@^0.1.2:
1702
  version "0.1.2"
1703
  resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
1704
1705
normalize-url@^1.4.0:
1706
  version "1.9.1"
1707
  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
1708
  dependencies:
1709
    object-assign "^4.0.1"
1710
    prepend-http "^1.0.0"
1711
    query-string "^4.1.0"
1712
    sort-keys "^1.0.0"
1713
1714
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0:
1715
  version "4.1.2"
1716
  resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1717
  dependencies:
1718
    are-we-there-yet "~1.1.2"
1719
    console-control-strings "~1.1.0"
1720
    gauge "~2.7.3"
1721
    set-blocking "~2.0.0"
1722
1723
num2fraction@^1.2.2:
1724
  version "1.2.2"
1725
  resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
1726
1727
number-is-nan@^1.0.0:
1728
  version "1.0.1"
1729
  resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1730
1731
oauth-sign@~0.8.2:
1732
  version "0.8.2"
1733
  resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1734
1735
object-assign@4.X, object-assign@^4.0.1, object-assign@^4.1.0:
1736
  version "4.1.1"
1737
  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1738
1739
object-assign@^3.0.0:
1740
  version "3.0.0"
1741
  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2"
1742
1743
object.defaults@^1.1.0:
1744
  version "1.1.0"
1745
  resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf"
1746
  dependencies:
1747
    array-each "^1.0.1"
1748
    array-slice "^1.0.0"
1749
    for-own "^1.0.0"
1750
    isobject "^3.0.0"
1751
1752
object.omit@^2.0.0:
1753
  version "2.0.1"
1754
  resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1755
  dependencies:
1756
    for-own "^0.1.4"
1757
    is-extendable "^0.1.1"
1758
1759
object.pick@^1.2.0:
1760
  version "1.3.0"
1761
  resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
1762
  dependencies:
1763
    isobject "^3.0.1"
1764
1765
once@^1.3.0:
1766
  version "1.4.0"
1767
  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1768
  dependencies:
1769
    wrappy "1"
1770
1771
once@~1.3.0:
1772
  version "1.3.3"
1773
  resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
1774
  dependencies:
1775
    wrappy "1"
1776
1777
orchestrator@^0.3.0:
1778
  version "0.3.8"
1779
  resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e"
1780
  dependencies:
1781
    end-of-stream "~0.1.5"
1782
    sequencify "~0.0.7"
1783
    stream-consume "~0.1.0"
1784
1785
ordered-read-streams@^0.1.0:
1786
  version "0.1.0"
1787
  resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126"
1788
1789
os-homedir@^1.0.0, os-homedir@^1.0.1:
1790
  version "1.0.2"
1791
  resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1792
1793
os-locale@^1.4.0:
1794
  version "1.4.0"
1795
  resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
1796
  dependencies:
1797
    lcid "^1.0.0"
1798
1799
os-tmpdir@^1.0.0:
1800
  version "1.0.2"
1801
  resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1802
1803
osenv@0:
1804
  version "0.1.4"
1805
  resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1806
  dependencies:
1807
    os-homedir "^1.0.0"
1808
    os-tmpdir "^1.0.0"
1809
1810
parse-filepath@^1.0.1:
1811
  version "1.0.1"
1812
  resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73"
1813
  dependencies:
1814
    is-absolute "^0.2.3"
1815
    map-cache "^0.2.0"
1816
    path-root "^0.1.1"
1817
1818
parse-glob@^3.0.4:
1819
  version "3.0.4"
1820
  resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1821
  dependencies:
1822
    glob-base "^0.3.0"
1823
    is-dotfile "^1.0.0"
1824
    is-extglob "^1.0.0"
1825
    is-glob "^2.0.0"
1826
1827
parse-json@^2.2.0:
1828
  version "2.2.0"
1829
  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1830
  dependencies:
1831
    error-ex "^1.2.0"
1832
1833
parse-passwd@^1.0.0:
1834
  version "1.0.0"
1835
  resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
1836
1837
path-exists@^2.0.0:
1838
  version "2.1.0"
1839
  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1840
  dependencies:
1841
    pinkie-promise "^2.0.0"
1842
1843
path-is-absolute@^1.0.0:
1844
  version "1.0.1"
1845
  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1846
1847
path-parse@^1.0.5:
1848
  version "1.0.5"
1849
  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
1850
1851
path-root-regex@^0.1.0:
1852
  version "0.1.2"
1853
  resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
1854
1855
path-root@^0.1.1:
1856
  version "0.1.1"
1857
  resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
1858
  dependencies:
1859
    path-root-regex "^0.1.0"
1860
1861
path-type@^1.0.0:
1862
  version "1.1.0"
1863
  resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
1864
  dependencies:
1865
    graceful-fs "^4.1.2"
1866
    pify "^2.0.0"
1867
    pinkie-promise "^2.0.0"
1868
1869
performance-now@^2.1.0:
1870
  version "2.1.0"
1871
  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
1872
1873
pify@^2.0.0:
1874
  version "2.3.0"
1875
  resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1876
1877
pinkie-promise@^2.0.0:
1878
  version "2.0.1"
1879
  resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1880
  dependencies:
1881
    pinkie "^2.0.0"
1882
1883
pinkie@^2.0.0:
1884
  version "2.0.4"
1885
  resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1886
1887
postcss-calc@^5.2.0:
1888
  version "5.3.1"
1889
  resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
1890
  dependencies:
1891
    postcss "^5.0.2"
1892
    postcss-message-helpers "^2.0.0"
1893
    reduce-css-calc "^1.2.6"
1894
1895
postcss-colormin@^2.1.8:
1896
  version "2.2.2"
1897
  resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
1898
  dependencies:
1899
    colormin "^1.0.5"
1900
    postcss "^5.0.13"
1901
    postcss-value-parser "^3.2.3"
1902
1903
postcss-convert-values@^2.3.4:
1904
  version "2.6.1"
1905
  resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
1906
  dependencies:
1907
    postcss "^5.0.11"
1908
    postcss-value-parser "^3.1.2"
1909
1910
postcss-discard-comments@^2.0.4:
1911
  version "2.0.4"
1912
  resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
1913
  dependencies:
1914
    postcss "^5.0.14"
1915
1916
postcss-discard-duplicates@^2.0.1:
1917
  version "2.1.0"
1918
  resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
1919
  dependencies:
1920
    postcss "^5.0.4"
1921
1922
postcss-discard-empty@^2.0.1:
1923
  version "2.1.0"
1924
  resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
1925
  dependencies:
1926
    postcss "^5.0.14"
1927
1928
postcss-discard-overridden@^0.1.1:
1929
  version "0.1.1"
1930
  resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
1931
  dependencies:
1932
    postcss "^5.0.16"
1933
1934
postcss-discard-unused@^2.2.1:
1935
  version "2.2.3"
1936
  resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
1937
  dependencies:
1938
    postcss "^5.0.14"
1939
    uniqs "^2.0.0"
1940
1941
postcss-filter-plugins@^2.0.0:
1942
  version "2.0.2"
1943
  resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c"
1944
  dependencies:
1945
    postcss "^5.0.4"
1946
    uniqid "^4.0.0"
1947
1948
postcss-merge-idents@^2.1.5:
1949
  version "2.1.7"
1950
  resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
1951
  dependencies:
1952
    has "^1.0.1"
1953
    postcss "^5.0.10"
1954
    postcss-value-parser "^3.1.1"
1955
1956
postcss-merge-longhand@^2.0.1:
1957
  version "2.0.2"
1958
  resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
1959
  dependencies:
1960
    postcss "^5.0.4"
1961
1962
postcss-merge-rules@^2.0.3:
1963
  version "2.1.2"
1964
  resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
1965
  dependencies:
1966
    browserslist "^1.5.2"
1967
    caniuse-api "^1.5.2"
1968
    postcss "^5.0.4"
1969
    postcss-selector-parser "^2.2.2"
1970
    vendors "^1.0.0"
1971
1972
postcss-message-helpers@^2.0.0:
1973
  version "2.0.0"
1974
  resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
1975
1976
postcss-minify-font-values@^1.0.2:
1977
  version "1.0.5"
1978
  resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
1979
  dependencies:
1980
    object-assign "^4.0.1"
1981
    postcss "^5.0.4"
1982
    postcss-value-parser "^3.0.2"
1983
1984
postcss-minify-gradients@^1.0.1:
1985
  version "1.0.5"
1986
  resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
1987
  dependencies:
1988
    postcss "^5.0.12"
1989
    postcss-value-parser "^3.3.0"
1990
1991
postcss-minify-params@^1.0.4:
1992
  version "1.2.2"
1993
  resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
1994
  dependencies:
1995
    alphanum-sort "^1.0.1"
1996
    postcss "^5.0.2"
1997
    postcss-value-parser "^3.0.2"
1998
    uniqs "^2.0.0"
1999
2000
postcss-minify-selectors@^2.0.4:
2001
  version "2.1.1"
2002
  resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
2003
  dependencies:
2004
    alphanum-sort "^1.0.2"
2005
    has "^1.0.1"
2006
    postcss "^5.0.14"
2007
    postcss-selector-parser "^2.0.0"
2008
2009
postcss-normalize-charset@^1.1.0:
2010
  version "1.1.1"
2011
  resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
2012
  dependencies:
2013
    postcss "^5.0.5"
2014
2015
postcss-normalize-url@^3.0.7:
2016
  version "3.0.8"
2017
  resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
2018
  dependencies:
2019
    is-absolute-url "^2.0.0"
2020
    normalize-url "^1.4.0"
2021
    postcss "^5.0.14"
2022
    postcss-value-parser "^3.2.3"
2023
2024
postcss-ordered-values@^2.1.0:
2025
  version "2.2.3"
2026
  resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
2027
  dependencies:
2028
    postcss "^5.0.4"
2029
    postcss-value-parser "^3.0.1"
2030
2031
postcss-reduce-idents@^2.2.2:
2032
  version "2.4.0"
2033
  resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
2034
  dependencies:
2035
    postcss "^5.0.4"
2036
    postcss-value-parser "^3.0.2"
2037
2038
postcss-reduce-initial@^1.0.0:
2039
  version "1.0.1"
2040
  resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
2041
  dependencies:
2042
    postcss "^5.0.4"
2043
2044
postcss-reduce-transforms@^1.0.3:
2045
  version "1.0.4"
2046
  resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
2047
  dependencies:
2048
    has "^1.0.1"
2049
    postcss "^5.0.8"
2050
    postcss-value-parser "^3.0.1"
2051
2052
postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
2053
  version "2.2.3"
2054
  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
2055
  dependencies:
2056
    flatten "^1.0.2"
2057
    indexes-of "^1.0.1"
2058
    uniq "^1.0.1"
2059
2060
postcss-svgo@^2.1.1:
2061
  version "2.1.6"
2062
  resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
2063
  dependencies:
2064
    is-svg "^2.0.0"
2065
    postcss "^5.0.14"
2066
    postcss-value-parser "^3.2.3"
2067
    svgo "^0.7.0"
2068
2069
postcss-unique-selectors@^2.0.2:
2070
  version "2.0.2"
2071
  resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
2072
  dependencies:
2073
    alphanum-sort "^1.0.1"
2074
    postcss "^5.0.4"
2075
    uniqs "^2.0.0"
2076
2077
postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
2078
  version "3.3.0"
2079
  resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
2080
2081
postcss-zindex@^2.0.1:
2082
  version "2.2.0"
2083
  resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
2084
  dependencies:
2085
    has "^1.0.1"
2086
    postcss "^5.0.4"
2087
    uniqs "^2.0.0"
2088
2089
postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.2.16:
2090
  version "5.2.18"
2091
  resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
2092
  dependencies:
2093
    chalk "^1.1.3"
2094
    js-base64 "^2.1.9"
2095
    source-map "^0.5.6"
2096
    supports-color "^3.2.3"
2097
2098
postcss@^6.0.1, postcss@^6.0.13:
2099
  version "6.0.13"
2100
  resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.13.tgz#b9ecab4ee00c89db3ec931145bd9590bbf3f125f"
2101
  dependencies:
2102
    chalk "^2.1.0"
2103
    source-map "^0.6.1"
2104
    supports-color "^4.4.0"
2105
2106
prepend-http@^1.0.0:
2107
  version "1.0.4"
2108
  resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
2109
2110
preserve@^0.2.0:
2111
  version "0.2.0"
2112
  resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2113
2114
pretty-hrtime@^1.0.0:
2115
  version "1.0.3"
2116
  resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
2117
2118
process-nextick-args@~1.0.6:
2119
  version "1.0.7"
2120
  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2121
2122
pseudomap@^1.0.2:
2123
  version "1.0.2"
2124
  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2125
2126
punycode@^1.4.1:
2127
  version "1.4.1"
2128
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2129
2130
q@^1.1.2:
2131
  version "1.5.0"
2132
  resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
2133
2134
qs@~6.5.1:
2135
  version "6.5.1"
2136
  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2137
2138
query-string@^4.1.0:
2139
  version "4.3.4"
2140
  resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
2141
  dependencies:
2142
    object-assign "^4.1.0"
2143
    strict-uri-encode "^1.0.0"
2144
2145
randomatic@^1.1.3:
2146
  version "1.1.7"
2147
  resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2148
  dependencies:
2149
    is-number "^3.0.0"
2150
    kind-of "^4.0.0"
2151
2152
read-pkg-up@^1.0.1:
2153
  version "1.0.1"
2154
  resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2155
  dependencies:
2156
    find-up "^1.0.0"
2157
    read-pkg "^1.0.0"
2158
2159
read-pkg@^1.0.0:
2160
  version "1.1.0"
2161
  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2162
  dependencies:
2163
    load-json-file "^1.0.0"
2164
    normalize-package-data "^2.3.2"
2165
    path-type "^1.0.0"
2166
2167
"readable-stream@>=1.0.33-1 <1.1.0-0":
2168
  version "1.0.34"
2169
  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
2170
  dependencies:
2171
    core-util-is "~1.0.0"
2172
    inherits "~2.0.1"
2173
    isarray "0.0.1"
2174
    string_decoder "~0.10.x"
2175
2176
readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.5:
2177
  version "2.3.3"
2178
  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2179
  dependencies:
2180
    core-util-is "~1.0.0"
2181
    inherits "~2.0.3"
2182
    isarray "~1.0.0"
2183
    process-nextick-args "~1.0.6"
2184
    safe-buffer "~5.1.1"
2185
    string_decoder "~1.0.3"
2186
    util-deprecate "~1.0.1"
2187
2188
readable-stream@~1.1.9:
2189
  version "1.1.14"
2190
  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
2191
  dependencies:
2192
    core-util-is "~1.0.0"
2193
    inherits "~2.0.1"
2194
    isarray "0.0.1"
2195
    string_decoder "~0.10.x"
2196
2197
rechoir@^0.6.2:
2198
  version "0.6.2"
2199
  resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
2200
  dependencies:
2201
    resolve "^1.1.6"
2202
2203
redent@^1.0.0:
2204
  version "1.0.0"
2205
  resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2206
  dependencies:
2207
    indent-string "^2.1.0"
2208
    strip-indent "^1.0.1"
2209
2210
reduce-css-calc@^1.2.6:
2211
  version "1.3.0"
2212
  resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
2213
  dependencies:
2214
    balanced-match "^0.4.2"
2215
    math-expression-evaluator "^1.2.14"
2216
    reduce-function-call "^1.0.1"
2217
2218
reduce-function-call@^1.0.1:
2219
  version "1.0.2"
2220
  resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
2221
  dependencies:
2222
    balanced-match "^0.4.2"
2223
2224
regex-cache@^0.4.2:
2225
  version "0.4.4"
2226
  resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2227
  dependencies:
2228
    is-equal-shallow "^0.1.3"
2229
2230
remove-trailing-separator@^1.0.1:
2231
  version "1.1.0"
2232
  resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2233
2234
repeat-element@^1.1.2:
2235
  version "1.1.2"
2236
  resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2237
2238
repeat-string@^1.5.2:
2239
  version "1.6.1"
2240
  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2241
2242
repeating@^2.0.0:
2243
  version "2.0.1"
2244
  resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2245
  dependencies:
2246
    is-finite "^1.0.0"
2247
2248
replace-ext@0.0.1:
2249
  version "0.0.1"
2250
  resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
2251
2252
request@2, request@^2.79.0:
2253
  version "2.83.0"
2254
  resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
2255
  dependencies:
2256
    aws-sign2 "~0.7.0"
2257
    aws4 "^1.6.0"
2258
    caseless "~0.12.0"
2259
    combined-stream "~1.0.5"
2260
    extend "~3.0.1"
2261
    forever-agent "~0.6.1"
2262
    form-data "~2.3.1"
2263
    har-validator "~5.0.3"
2264
    hawk "~6.0.2"
2265
    http-signature "~1.2.0"
2266
    is-typedarray "~1.0.0"
2267
    isstream "~0.1.2"
2268
    json-stringify-safe "~5.0.1"
2269
    mime-types "~2.1.17"
2270
    oauth-sign "~0.8.2"
2271
    performance-now "^2.1.0"
2272
    qs "~6.5.1"
2273
    safe-buffer "^5.1.1"
2274
    stringstream "~0.0.5"
2275
    tough-cookie "~2.3.3"
2276
    tunnel-agent "^0.6.0"
2277
    uuid "^3.1.0"
2278
2279
require-directory@^2.1.1:
2280
  version "2.1.1"
2281
  resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2282
2283
require-main-filename@^1.0.1:
2284
  version "1.0.1"
2285
  resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2286
2287
resolve-dir@^0.1.0:
2288
  version "0.1.1"
2289
  resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e"
2290
  dependencies:
2291
    expand-tilde "^1.2.2"
2292
    global-modules "^0.2.3"
2293
2294
resolve-url@~0.2.1:
2295
  version "0.2.1"
2296
  resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2297
2298
resolve@^1.1.6, resolve@^1.1.7:
2299
  version "1.4.0"
2300
  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
2301
  dependencies:
2302
    path-parse "^1.0.5"
2303
2304
rimraf@2:
2305
  version "2.6.2"
2306
  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2307
  dependencies:
2308
    glob "^7.0.5"
2309
2310
safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2311
  version "5.1.1"
2312
  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2313
2314
sass-graph@^2.1.1:
2315
  version "2.2.4"
2316
  resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49"
2317
  dependencies:
2318
    glob "^7.0.0"
2319
    lodash "^4.0.0"
2320
    scss-tokenizer "^0.2.3"
2321
    yargs "^7.0.0"
2322
2323
sax@~1.2.1:
2324
  version "1.2.4"
2325
  resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2326
2327
scss-tokenizer@^0.2.3:
2328
  version "0.2.3"
2329
  resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
2330
  dependencies:
2331
    js-base64 "^2.1.8"
2332
    source-map "^0.4.2"
2333
2334
"semver@2 || 3 || 4 || 5":
2335
  version "5.4.1"
2336
  resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2337
2338
semver@^4.1.0:
2339
  version "4.3.6"
2340
  resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
2341
2342
semver@~5.3.0:
2343
  version "5.3.0"
2344
  resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2345
2346
sequencify@~0.0.7:
2347
  version "0.0.7"
2348
  resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c"
2349
2350
set-blocking@^2.0.0, set-blocking@~2.0.0:
2351
  version "2.0.0"
2352
  resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2353
2354
sigmund@~1.0.0:
2355
  version "1.0.1"
2356
  resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
2357
2358
signal-exit@^3.0.0:
2359
  version "3.0.2"
2360
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2361
2362
sntp@2.x.x:
2363
  version "2.0.2"
2364
  resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b"
2365
  dependencies:
2366
    hoek "4.x.x"
2367
2368
sort-keys@^1.0.0:
2369
  version "1.1.2"
2370
  resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
2371
  dependencies:
2372
    is-plain-obj "^1.0.0"
2373
2374
source-map-resolve@^0.3.0:
2375
  version "0.3.1"
2376
  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761"
2377
  dependencies:
2378
    atob "~1.1.0"
2379
    resolve-url "~0.2.1"
2380
    source-map-url "~0.3.0"
2381
    urix "~0.1.0"
2382
2383
source-map-url@~0.3.0:
2384
  version "0.3.0"
2385
  resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"
2386
2387
source-map@0.X, source-map@^0.6.1:
2388
  version "0.6.1"
2389
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2390
2391
source-map@^0.1.38:
2392
  version "0.1.43"
2393
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
2394
  dependencies:
2395
    amdefine ">=0.0.4"
2396
2397
source-map@^0.4.2:
2398
  version "0.4.4"
2399
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2400
  dependencies:
2401
    amdefine ">=0.0.4"
2402
2403
source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6:
2404
  version "0.5.7"
2405
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2406
2407
sparkles@^1.0.0:
2408
  version "1.0.0"
2409
  resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3"
2410
2411
spdx-correct@~1.0.0:
2412
  version "1.0.2"
2413
  resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2414
  dependencies:
2415
    spdx-license-ids "^1.0.2"
2416
2417
spdx-expression-parse@~1.0.0:
2418
  version "1.0.4"
2419
  resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2420
2421
spdx-license-ids@^1.0.2:
2422
  version "1.2.2"
2423
  resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2424
2425
sprintf-js@~1.0.2:
2426
  version "1.0.3"
2427
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2428
2429
sshpk@^1.7.0:
2430
  version "1.13.1"
2431
  resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2432
  dependencies:
2433
    asn1 "~0.2.3"
2434
    assert-plus "^1.0.0"
2435
    dashdash "^1.12.0"
2436
    getpass "^0.1.1"
2437
  optionalDependencies:
2438
    bcrypt-pbkdf "^1.0.0"
2439
    ecc-jsbn "~0.1.1"
2440
    jsbn "~0.1.0"
2441
    tweetnacl "~0.14.0"
2442
2443
stdout-stream@^1.4.0:
2444
  version "1.4.0"
2445
  resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b"
2446
  dependencies:
2447
    readable-stream "^2.0.1"
2448
2449
stream-consume@~0.1.0:
2450
  version "0.1.0"
2451
  resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f"
2452
2453
strict-uri-encode@^1.0.0:
2454
  version "1.1.0"
2455
  resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
2456
2457
string-width@^1.0.1, string-width@^1.0.2:
2458
  version "1.0.2"
2459
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2460
  dependencies:
2461
    code-point-at "^1.0.0"
2462
    is-fullwidth-code-point "^1.0.0"
2463
    strip-ansi "^3.0.0"
2464
2465
string_decoder@~0.10.x:
2466
  version "0.10.31"
2467
  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2468
2469
string_decoder@~1.0.3:
2470
  version "1.0.3"
2471
  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2472
  dependencies:
2473
    safe-buffer "~5.1.0"
2474
2475
stringstream@~0.0.5:
2476
  version "0.0.5"
2477
  resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2478
2479
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2480
  version "3.0.1"
2481
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2482
  dependencies:
2483
    ansi-regex "^2.0.0"
2484
2485
strip-bom-string@1.X:
2486
  version "1.0.0"
2487
  resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
2488
2489
strip-bom@^1.0.0:
2490
  version "1.0.0"
2491
  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794"
2492
  dependencies:
2493
    first-chunk-stream "^1.0.0"
2494
    is-utf8 "^0.2.0"
2495
2496
strip-bom@^2.0.0:
2497
  version "2.0.0"
2498
  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2499
  dependencies:
2500
    is-utf8 "^0.2.0"
2501
2502
strip-indent@^1.0.1:
2503
  version "1.0.1"
2504
  resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
2505
  dependencies:
2506
    get-stdin "^4.0.1"
2507
2508
supports-color@^2.0.0:
2509
  version "2.0.0"
2510
  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2511
2512
supports-color@^3.2.3:
2513
  version "3.2.3"
2514
  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
2515
  dependencies:
2516
    has-flag "^1.0.0"
2517
2518
supports-color@^4.0.0, supports-color@^4.4.0:
2519
  version "4.4.0"
2520
  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
2521
  dependencies:
2522
    has-flag "^2.0.0"
2523
2524
svgo@^0.7.0:
2525
  version "0.7.2"
2526
  resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
2527
  dependencies:
2528
    coa "~1.0.1"
2529
    colors "~1.1.2"
2530
    csso "~2.3.1"
2531
    js-yaml "~3.7.0"
2532
    mkdirp "~0.5.1"
2533
    sax "~1.2.1"
2534
    whet.extend "~0.9.9"
2535
2536
tar@^2.0.0:
2537
  version "2.2.1"
2538
  resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2539
  dependencies:
2540
    block-stream "*"
2541
    fstream "^1.0.2"
2542
    inherits "2"
2543
2544
through2@2.X, through2@^2.0.0, through2@^2.0.3:
2545
  version "2.0.3"
2546
  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
2547
  dependencies:
2548
    readable-stream "^2.1.5"
2549
    xtend "~4.0.1"
2550
2551
through2@^0.6.1:
2552
  version "0.6.5"
2553
  resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48"
2554
  dependencies:
2555
    readable-stream ">=1.0.33-1 <1.1.0-0"
2556
    xtend ">=4.0.0 <4.1.0-0"
2557
2558
tildify@^1.0.0:
2559
  version "1.2.0"
2560
  resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a"
2561
  dependencies:
2562
    os-homedir "^1.0.0"
2563
2564
time-stamp@^1.0.0:
2565
  version "1.1.0"
2566
  resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
2567
2568
timers-ext@^0.1.2:
2569
  version "0.1.2"
2570
  resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204"
2571
  dependencies:
2572
    es5-ext "~0.10.14"
2573
    next-tick "1"
2574
2575
tough-cookie@~2.3.3:
2576
  version "2.3.3"
2577
  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
2578
  dependencies:
2579
    punycode "^1.4.1"
2580
2581
trim-newlines@^1.0.0:
2582
  version "1.0.0"
2583
  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
2584
2585
tunnel-agent@^0.6.0:
2586
  version "0.6.0"
2587
  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2588
  dependencies:
2589
    safe-buffer "^5.0.1"
2590
2591
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2592
  version "0.14.5"
2593
  resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2594
2595
unc-path-regex@^0.1.0:
2596
  version "0.1.2"
2597
  resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
2598
2599
uniq@^1.0.1:
2600
  version "1.0.1"
2601
  resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
2602
2603
uniqid@^4.0.0:
2604
  version "4.1.1"
2605
  resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1"
2606
  dependencies:
2607
    macaddress "^0.2.8"
2608
2609
uniqs@^2.0.0:
2610
  version "2.0.0"
2611
  resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
2612
2613
unique-stream@^1.0.0:
2614
  version "1.0.0"
2615
  resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b"
2616
2617
urix@^0.1.0, urix@~0.1.0:
2618
  version "0.1.0"
2619
  resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
2620
2621
user-home@^1.1.1:
2622
  version "1.1.1"
2623
  resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
2624
2625
util-deprecate@~1.0.1:
2626
  version "1.0.2"
2627
  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2628
2629
uuid@^3.1.0:
2630
  version "3.1.0"
2631
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
2632
2633
v8flags@^2.0.2:
2634
  version "2.1.1"
2635
  resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
2636
  dependencies:
2637
    user-home "^1.1.1"
2638
2639
validate-npm-package-license@^3.0.1:
2640
  version "3.0.1"
2641
  resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2642
  dependencies:
2643
    spdx-correct "~1.0.0"
2644
    spdx-expression-parse "~1.0.0"
2645
2646
vendors@^1.0.0:
2647
  version "1.0.1"
2648
  resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22"
2649
2650
verror@1.10.0:
2651
  version "1.10.0"
2652
  resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
2653
  dependencies:
2654
    assert-plus "^1.0.0"
2655
    core-util-is "1.0.2"
2656
    extsprintf "^1.2.0"
2657
2658
vinyl-fs@^0.3.0:
2659
  version "0.3.14"
2660
  resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"
2661
  dependencies:
2662
    defaults "^1.0.0"
2663
    glob-stream "^3.1.5"
2664
    glob-watcher "^0.0.6"
2665
    graceful-fs "^3.0.0"
2666
    mkdirp "^0.5.0"
2667
    strip-bom "^1.0.0"
2668
    through2 "^0.6.1"
2669
    vinyl "^0.4.0"
2670
2671
vinyl-sourcemaps-apply@^0.2.0, vinyl-sourcemaps-apply@^0.2.1:
2672
  version "0.2.1"
2673
  resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705"
2674
  dependencies:
2675
    source-map "^0.5.1"
2676
2677
vinyl@1.X:
2678
  version "1.2.0"
2679
  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
2680
  dependencies:
2681
    clone "^1.0.0"
2682
    clone-stats "^0.0.1"
2683
    replace-ext "0.0.1"
2684
2685
vinyl@^0.4.0:
2686
  version "0.4.6"
2687
  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847"
2688
  dependencies:
2689
    clone "^0.2.0"
2690
    clone-stats "^0.0.1"
2691
2692
vinyl@^0.5.0:
2693
  version "0.5.3"
2694
  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde"
2695
  dependencies:
2696
    clone "^1.0.0"
2697
    clone-stats "^0.0.1"
2698
    replace-ext "0.0.1"
2699
2700
whet.extend@~0.9.9:
2701
  version "0.9.9"
2702
  resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
2703
2704
which-module@^1.0.0:
2705
  version "1.0.0"
2706
  resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
2707
2708
which@1, which@^1.2.12, which@^1.2.9:
2709
  version "1.3.0"
2710
  resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
2711
  dependencies:
2712
    isexe "^2.0.0"
2713
2714
wide-align@^1.1.0:
2715
  version "1.1.2"
2716
  resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
2717
  dependencies:
2718
    string-width "^1.0.2"
2719
2720
wrap-ansi@^2.0.0:
2721
  version "2.1.0"
2722
  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2723
  dependencies:
2724
    string-width "^1.0.1"
2725
    strip-ansi "^3.0.1"
2726
2727
wrappy@1:
2728
  version "1.0.2"
2729
  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2730
2731
"xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1:
2732
  version "4.0.1"
2733
  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2734
2735
y18n@^3.2.1:
2736
  version "3.2.1"
2737
  resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2738
2739
yallist@^2.1.2:
2740
  version "2.1.2"
2741
  resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2742
2743
yargs-parser@^5.0.0:
2744
  version "5.0.0"
2745
  resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
2746
  dependencies:
2747
    camelcase "^3.0.0"
2748
2749
yargs@^7.0.0:
2750
  version "7.1.0"
2751
  resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8"
2752
  dependencies:
2753
    camelcase "^3.0.0"
2754
    cliui "^3.2.0"
2755
    decamelize "^1.1.1"
2756
    get-caller-file "^1.0.1"
2757
    os-locale "^1.4.0"
2758
    read-pkg-up "^1.0.1"
2759
    require-directory "^2.1.1"
2760
    require-main-filename "^1.0.1"
2761
    set-blocking "^2.0.0"
2762
    string-width "^1.0.2"
2763
    which-module "^1.0.0"
2764
    y18n "^3.2.1"
2765
    yargs-parser "^5.0.0"

Return to bug 19474