tungsten 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/tungsten/_icons.js +1 -1
- data/app/assets/stylesheets/tungsten/components/_progress-bar.scss +1 -1
- data/app/assets/stylesheets/tungsten/components/_tables.scss +4 -0
- data/app/assets/stylesheets/tungsten/components/_tooltip.scss +1 -0
- data/app/assets/stylesheets/tungsten/core/_banner.scss +7 -0
- data/app/assets/stylesheets/tungsten/core/_globals.scss +10 -2
- data/app/assets/stylesheets/tungsten/core/_grid.scss +120 -122
- data/app/assets/stylesheets/tungsten/core/_layout.scss +7 -10
- data/app/assets/stylesheets/tungsten/core/_text.scss +1 -0
- data/app/assets/stylesheets/tungsten/form/_defaulted-inputs.scss +63 -23
- data/app/assets/stylesheets/tungsten/form/_form-diff.scss +17 -3
- data/app/assets/stylesheets/tungsten/form/_requires-restart.scss +6 -0
- data/app/helpers/tungsten/form_helper.rb +3 -0
- data/lib/tungsten/version.rb +1 -1
- data/public/{code-0.2.8.js → code-0.2.9.js} +0 -0
- data/public/{code-0.2.8.js.gz → code-0.2.9.js.gz} +0 -0
- data/public/{tungsten-0.2.8.css → tungsten-0.2.9.css} +283 -111
- data/public/tungsten-0.2.9.css.gz +0 -0
- data/public/{tungsten-0.2.8.js → tungsten-0.2.9.js} +2 -2
- data/public/tungsten-0.2.9.js.gz +0 -0
- metadata +8 -8
- data/public/tungsten-0.2.8.css.gz +0 -0
- data/public/tungsten-0.2.8.js.gz +0 -0
@@ -1,30 +1,70 @@
|
|
1
|
-
|
1
|
+
$purple-flash: mix($white, $purple-01, 90%);
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
@keyframes purple-flicker {
|
4
|
+
0% { background-color: $white; }
|
5
|
+
10% { background-color: $purple-flash; }
|
6
|
+
100% { background-color: $white; }
|
7
|
+
}
|
8
|
+
@keyframes purple-border-right-flicker {
|
9
|
+
0% { border-right-color: $white; }
|
10
|
+
10% { border-right-color: $purple-flash; }
|
11
|
+
100% { border-right-color: $white; }
|
12
|
+
}
|
13
|
+
@keyframes purple-border-left-flicker {
|
14
|
+
0% { border-left-color: $white; }
|
15
|
+
10% { border-left-color: $purple-flash; }
|
16
|
+
100% { border-left-color: $white; }
|
17
|
+
}
|
18
|
+
@keyframes purple-box-shadow-flicker {
|
19
|
+
0% { box-shadow: $slider-track-line 0 0 0 1px, transparent 0 0 3px 1px; }
|
20
|
+
10% { box-shadow: $purple-01 0 0 0 1px, $purple-01 0 0 3px 1px; }
|
21
|
+
0% { box-shadow: $slider-track-line 0 0 0 1px, transparent 0 0 3px 1px; }
|
22
|
+
}
|
6
23
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
}
|
24
|
+
label.input-defaulted-value {
|
25
|
+
input:not([type=range]), select, .slider-label {
|
26
|
+
animation: purple-flicker 2s $timing forwards, purple-box-shadow-flicker 2s $timing forwards;
|
11
27
|
}
|
12
|
-
|
13
|
-
|
14
|
-
background: $orange-01;
|
15
|
-
box-shadow: 0 0 2px 2px $orange-01, rgba(#000, .4) 0 1px 1px inset;
|
16
|
-
}
|
28
|
+
.slider-label.align-right:after {
|
29
|
+
animation: purple-border-right-flicker 2s $timing forwards;
|
17
30
|
}
|
18
|
-
.slider-label {
|
19
|
-
|
20
|
-
background-color: rgba($yellow-01, .05);
|
21
|
-
&:after {
|
22
|
-
border-right-color: mix($yellow-01, $white, 5);
|
23
|
-
}
|
24
|
-
&:before {
|
25
|
-
border-right-color: $orange-01;
|
26
|
-
}
|
31
|
+
.slider-label.align-left:after {
|
32
|
+
animation: purple-border-left-flicker 2s $timing forwards;
|
27
33
|
}
|
34
|
+
|
35
|
+
&:not([data-input-type=range]) .input-wrapper:after {
|
36
|
+
content: "";
|
37
|
+
position: absolute;
|
38
|
+
box-shadow: $purple-01 0 0 0 1px inset, $purple-01 0 0 3px 1px;
|
39
|
+
border-radius: $radius + 1;
|
40
|
+
top: 1px; left: 1px; right: 1px; bottom: 1px;
|
41
|
+
animation: fade-out 1.4s $timing forwards;
|
42
|
+
}
|
43
|
+
//input:not([type=range]), select:not([tabindex="-1"]), textarea {
|
44
|
+
//-webkit-text-fill-color: currentColor;
|
45
|
+
//box-shadow: input-shadow( $purple-01 );
|
46
|
+
|
47
|
+
//@include input-active {
|
48
|
+
//box-shadow: input-focus-shadow( $purple-01 );
|
49
|
+
//background-color: rgba($purple-02, .05);
|
50
|
+
//}
|
51
|
+
//}
|
52
|
+
//input[type=range]:focus {
|
53
|
+
//@include slider-thumb {
|
54
|
+
//background: $purple-01;
|
55
|
+
//box-shadow: 0 0 2px 2px $purple-01, rgba(#000, .4) 0 1px 1px inset;
|
56
|
+
//}
|
57
|
+
//}
|
58
|
+
//.slider-label {
|
59
|
+
//box-shadow: $purple-01 0 0 0 1px;
|
60
|
+
//background-color: rgba($purple-01, .05);
|
61
|
+
//&:after {
|
62
|
+
//border-right-color: mix($yellow-01, $white, 5);
|
63
|
+
//}
|
64
|
+
//&:before {
|
65
|
+
//border-right-color: $purple-01;
|
66
|
+
//}
|
67
|
+
//}
|
28
68
|
}
|
29
69
|
|
30
70
|
.restore-default {
|
@@ -38,7 +78,7 @@ label.input-defaulted-value:not(.remotely-invalid) {
|
|
38
78
|
transition: none;
|
39
79
|
|
40
80
|
&:hover, &:focus {
|
41
|
-
color: $
|
81
|
+
color: $purple-01;
|
42
82
|
background-color: $gray-02;
|
43
83
|
border-radius: $radius;
|
44
84
|
}
|
@@ -13,10 +13,12 @@
|
|
13
13
|
td {
|
14
14
|
background-color: rgba($gray-01, .5);
|
15
15
|
}
|
16
|
+
&:hover td {
|
17
|
+
background-color: $white;
|
18
|
+
}
|
16
19
|
|
17
20
|
&-label {
|
18
21
|
font-weight: 500;
|
19
|
-
/*width: 100%;*/
|
20
22
|
}
|
21
23
|
|
22
24
|
&-value, &-initial {
|
@@ -24,8 +26,6 @@
|
|
24
26
|
padding-right: .2em;
|
25
27
|
|
26
28
|
code {
|
27
|
-
//white-space: pre;
|
28
|
-
//display: inline-block;
|
29
29
|
font-family: $mono-font;
|
30
30
|
color: inherit;
|
31
31
|
font-size: 1em;
|
@@ -89,3 +89,17 @@
|
|
89
89
|
}
|
90
90
|
}
|
91
91
|
}
|
92
|
+
|
93
|
+
.diff-note {
|
94
|
+
margin-left: .2em;
|
95
|
+
svg { height: .9em; width: auto; }
|
96
|
+
.svg-status-failed {
|
97
|
+
opacity: .3;
|
98
|
+
}
|
99
|
+
&:hover {
|
100
|
+
.svg-status-failed {
|
101
|
+
fill: $red-02;
|
102
|
+
opacity: .8;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
@@ -348,8 +348,11 @@ module Tungsten
|
|
348
348
|
if requires_restart = options.delete(:requires_restart)
|
349
349
|
label_options[:class] += ' requires-restart'
|
350
350
|
describe_id = options[:data]['unique-id'] + '-restart-description'
|
351
|
+
options[:data][:diff_class] = 'requires-restart'
|
352
|
+
options[:data][:diff_note] = "<span class='has-tooltip' aria-label='Requires restart'>#{use_svg("status-failed")}</span>"
|
351
353
|
(options['aria-describedby'] ||= '') << " #{describe_id}"
|
352
354
|
requires_restart = content_tag(:span, id: describe_id, class: 'requires-restart-input-message') {
|
355
|
+
concat "#{use_svg("status-failed", class: 'requires-restart-icon')} ".html_safe
|
353
356
|
if requires_restart.is_a?(String)
|
354
357
|
concat requires_restart
|
355
358
|
else
|
data/lib/tungsten/version.rb
CHANGED
File without changes
|
Binary file
|
@@ -235,10 +235,10 @@
|
|
235
235
|
/* ===================================== *
|
236
236
|
* Layout
|
237
237
|
* ------------------------------------- */
|
238
|
-
.collapse > *:first-child, .collapse > *:first-child > *:first-child, .collapse > *:first-child > *:first-child > *:first-child, .
|
238
|
+
.collapse > *:first-child, .collapse > *:first-child > *:first-child, .collapse > *:first-child > *:first-child > *:first-child, .collapse-top > *:first-child, .collapse-top > *:first-child > *:first-child, .collapse-top > *:first-child > *:first-child > *:first-child {
|
239
239
|
margin-top: 0; }
|
240
240
|
|
241
|
-
.collapse > *:last-child, .collapse > *:last-child > *:last-child, .collapse > *:last-child > *:last-child > *:last-child, .
|
241
|
+
.collapse > *:last-child, .collapse > *:last-child > *:last-child, .collapse > *:last-child > *:last-child > *:last-child, .collapse-bottom > *:last-child, .collapse-bottom > *:last-child > *:last-child, .collapse-bottom > *:last-child > *:last-child > *:last-child {
|
242
242
|
margin-bottom: 0; }
|
243
243
|
|
244
244
|
/* ===================================== *
|
@@ -478,11 +478,17 @@
|
|
478
478
|
[class*='columns'] {
|
479
479
|
display: flex;
|
480
480
|
flex-flow: row wrap; }
|
481
|
+
[class*='columns'] > * > *:last-child, [class*='columns'] > * > *:last-child > *:last-child, [class*='columns'] > * > *:last-child > *:last-child > *:last-child {
|
482
|
+
margin-bottom: 0; }
|
481
483
|
|
482
484
|
[class*='rows'] {
|
483
485
|
display: flex;
|
484
486
|
flex-flow: column;
|
485
487
|
align-items: flex-start; }
|
488
|
+
[class*='rows'] > * > *:first-child, [class*='rows'] > * > *:first-child > *:first-child, [class*='rows'] > * > *:first-child > *:first-child > *:first-child {
|
489
|
+
margin-top: 0; }
|
490
|
+
[class*='rows'] > * > *:last-child, [class*='rows'] > * > *:last-child > *:last-child, [class*='rows'] > * > *:last-child > *:last-child > *:last-child {
|
491
|
+
margin-bottom: 0; }
|
486
492
|
|
487
493
|
form [class*='columns'] {
|
488
494
|
align-items: flex-start; }
|
@@ -526,118 +532,201 @@ form [class*='columns'] {
|
|
526
532
|
.grow {
|
527
533
|
flex-grow: 1; }
|
528
534
|
|
529
|
-
.
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
+
> .one-of-twelve, .twelve-columns > * {
|
536
|
+
flex-basis: 8.3333333333%; }
|
537
|
+
|
538
|
+
.gutter > .one-of-twelve, .twelve-columns.gutter > * {
|
539
|
+
flex-basis: calc(8.3333333333% - 20px); }
|
540
|
+
|
541
|
+
.small-gutter > .one-of-twelve, .twelve-columns.small-gutter > * {
|
542
|
+
flex-basis: calc(8.3333333333% - 10px); }
|
543
|
+
|
544
|
+
.large-gutter > .one-of-twelve, .twelve-columns.large-gutter > * {
|
545
|
+
flex-basis: calc(8.3333333333% - 30px); }
|
546
|
+
|
547
|
+
/* No gutter */
|
548
|
+
/* No gutter */
|
549
|
+
/* No gutter */
|
550
|
+
/* No gutter */
|
551
|
+
/* No gutter */
|
552
|
+
/* No gutter */
|
553
|
+
> .one-of-six, > .two-of-twelve, .six-columns > * {
|
554
|
+
flex-basis: 16.6666666667%; }
|
555
|
+
|
556
|
+
.gutter > .one-of-six, .gutter > .two-of-twelve, .six-columns.gutter > * {
|
557
|
+
flex-basis: calc(16.6666666667% - 20px); }
|
558
|
+
|
559
|
+
.small-gutter > .one-of-six, .small-gutter > .two-of-twelve, .six-columns.small-gutter > * {
|
560
|
+
flex-basis: calc(16.6666666667% - 10px); }
|
561
|
+
|
562
|
+
.large-gutter > .one-of-six, .large-gutter > .two-of-twelve, .six-columns.large-gutter > * {
|
563
|
+
flex-basis: calc(16.6666666667% - 30px); }
|
564
|
+
|
565
|
+
/* No gutter */
|
566
|
+
/* No gutter */
|
567
|
+
/* No gutter */
|
568
|
+
/* No gutter */
|
569
|
+
/* No gutter */
|
570
|
+
> .one-of-four, > .three-of-twelve, .four-columns > * {
|
571
|
+
flex-basis: 25%; }
|
572
|
+
|
573
|
+
.gutter > .one-of-four, .gutter > .three-of-twelve, .four-columns.gutter > * {
|
574
|
+
flex-basis: calc(25% - 20px); }
|
575
|
+
|
576
|
+
.small-gutter > .one-of-four, .small-gutter > .three-of-twelve, .four-columns.small-gutter > * {
|
577
|
+
flex-basis: calc(25% - 10px); }
|
578
|
+
|
579
|
+
.large-gutter > .one-of-four, .large-gutter > .three-of-twelve, .four-columns.large-gutter > * {
|
580
|
+
flex-basis: calc(25% - 30px); }
|
581
|
+
|
582
|
+
/* No gutter */
|
583
|
+
/* No gutter */
|
584
|
+
/* No gutter */
|
585
|
+
/* No gutter */
|
586
|
+
> .one-of-three, > .two-of-six, .three-columns > *, > .four-of-twelve {
|
587
|
+
flex-basis: 33.3333333333%; }
|
535
588
|
|
536
|
-
.one-of-
|
537
|
-
flex:
|
589
|
+
.gutter > .one-of-three, .gutter > .two-of-six, .three-columns.gutter > *, .gutter > .four-of-twelve {
|
590
|
+
flex-basis: calc(33.3333333333% - 20px); }
|
538
591
|
|
539
|
-
.gutter > .one-of-
|
540
|
-
flex:
|
592
|
+
.small-gutter > .one-of-three, .small-gutter > .two-of-six, .three-columns.small-gutter > *, .small-gutter > .four-of-twelve {
|
593
|
+
flex-basis: calc(33.3333333333% - 10px); }
|
541
594
|
|
542
|
-
.
|
543
|
-
flex:
|
595
|
+
.large-gutter > .one-of-three, .large-gutter > .two-of-six, .three-columns.large-gutter > *, .large-gutter > .four-of-twelve {
|
596
|
+
flex-basis: calc(33.3333333333% - 30px); }
|
544
597
|
|
545
|
-
|
546
|
-
|
598
|
+
/* No gutter */
|
599
|
+
/* No gutter */
|
600
|
+
/* No gutter */
|
601
|
+
> .five-of-twelve {
|
602
|
+
flex-basis: 41.6666666667%; }
|
547
603
|
|
548
|
-
.
|
549
|
-
flex:
|
604
|
+
.gutter > .five-of-twelve {
|
605
|
+
flex-basis: calc(41.6666666667% - 20px); }
|
550
606
|
|
551
|
-
.
|
552
|
-
flex:
|
607
|
+
.small-gutter > .five-of-twelve {
|
608
|
+
flex-basis: calc(41.6666666667% - 10px); }
|
553
609
|
|
554
|
-
.
|
555
|
-
flex:
|
610
|
+
.large-gutter > .five-of-twelve {
|
611
|
+
flex-basis: calc(41.6666666667% - 30px); }
|
556
612
|
|
557
|
-
|
558
|
-
|
613
|
+
/* No gutter */
|
614
|
+
/* No gutter */
|
615
|
+
> .one-of-two, .two-columns > *, > .two-of-four, > .three-of-six, > .six-of-twelve {
|
616
|
+
flex-basis: 50%; }
|
559
617
|
|
560
|
-
.three-of-
|
561
|
-
flex:
|
618
|
+
.gutter > .one-of-two, .two-columns.gutter > *, .gutter > .two-of-four, .gutter > .three-of-six, .gutter > .six-of-twelve {
|
619
|
+
flex-basis: calc(50% - 20px); }
|
562
620
|
|
563
|
-
.gutter > .three-of-
|
564
|
-
flex:
|
621
|
+
.small-gutter > .one-of-two, .two-columns.small-gutter > *, .small-gutter > .two-of-four, .small-gutter > .three-of-six, .small-gutter > .six-of-twelve {
|
622
|
+
flex-basis: calc(50% - 10px); }
|
565
623
|
|
566
|
-
.
|
567
|
-
flex:
|
624
|
+
.large-gutter > .one-of-two, .two-columns.large-gutter > *, .large-gutter > .two-of-four, .large-gutter > .three-of-six, .large-gutter > .six-of-twelve {
|
625
|
+
flex-basis: calc(50% - 30px); }
|
568
626
|
|
569
|
-
|
570
|
-
|
627
|
+
/* No gutter */
|
628
|
+
/* No gutter */
|
629
|
+
> .seven-of-twelve {
|
630
|
+
flex-basis: 58.3333333333%; }
|
571
631
|
|
572
|
-
.
|
573
|
-
flex:
|
632
|
+
.gutter > .seven-of-twelve {
|
633
|
+
flex-basis: calc(58.3333333333% - 20px); }
|
574
634
|
|
575
|
-
.
|
576
|
-
flex:
|
635
|
+
.small-gutter > .seven-of-twelve {
|
636
|
+
flex-basis: calc(58.3333333333% - 10px); }
|
577
637
|
|
578
|
-
.
|
579
|
-
flex:
|
638
|
+
.large-gutter > .seven-of-twelve {
|
639
|
+
flex-basis: calc(58.3333333333% - 30px); }
|
580
640
|
|
581
|
-
|
582
|
-
|
641
|
+
/* No gutter */
|
642
|
+
> .two-of-three, > .four-of-six, > .eight-of-twelve {
|
643
|
+
flex-basis: 66.6666666667%; }
|
583
644
|
|
584
|
-
.
|
585
|
-
flex:
|
645
|
+
.gutter > .two-of-three, .gutter > .four-of-six, .gutter > .eight-of-twelve {
|
646
|
+
flex-basis: calc(66.6666666667% - 20px); }
|
586
647
|
|
587
|
-
.gutter > .
|
588
|
-
flex:
|
648
|
+
.small-gutter > .two-of-three, .small-gutter > .four-of-six, .small-gutter > .eight-of-twelve {
|
649
|
+
flex-basis: calc(66.6666666667% - 10px); }
|
589
650
|
|
590
|
-
.
|
591
|
-
flex:
|
651
|
+
.large-gutter > .two-of-three, .large-gutter > .four-of-six, .large-gutter > .eight-of-twelve {
|
652
|
+
flex-basis: calc(66.6666666667% - 30px); }
|
592
653
|
|
593
|
-
|
594
|
-
|
654
|
+
/* No gutter */
|
655
|
+
> .three-of-four, > .nine-of-twelve {
|
656
|
+
flex-basis: 75%; }
|
595
657
|
|
596
|
-
.three-of-four, .
|
597
|
-
flex:
|
658
|
+
.gutter > .three-of-four, .gutter > .nine-of-twelve {
|
659
|
+
flex-basis: calc(75% - 20px); }
|
598
660
|
|
599
|
-
.gutter > .three-of-four, .gutter > .
|
600
|
-
flex:
|
661
|
+
.small-gutter > .three-of-four, .small-gutter > .nine-of-twelve {
|
662
|
+
flex-basis: calc(75% - 10px); }
|
601
663
|
|
602
|
-
.
|
603
|
-
flex:
|
664
|
+
.large-gutter > .three-of-four, .large-gutter > .nine-of-twelve {
|
665
|
+
flex-basis: calc(75% - 30px); }
|
604
666
|
|
605
|
-
|
606
|
-
|
667
|
+
/* No gutter */
|
668
|
+
> .five-of-six, > .ten-of-twelve {
|
669
|
+
flex-basis: 83.3333333333%; }
|
607
670
|
|
608
|
-
.
|
609
|
-
flex:
|
671
|
+
.gutter > .five-of-six, .gutter > .ten-of-twelve {
|
672
|
+
flex-basis: calc(83.3333333333% - 20px); }
|
610
673
|
|
611
|
-
.gutter > .
|
612
|
-
flex:
|
674
|
+
.small-gutter > .five-of-six, .small-gutter > .ten-of-twelve {
|
675
|
+
flex-basis: calc(83.3333333333% - 10px); }
|
613
676
|
|
614
|
-
.
|
615
|
-
flex:
|
677
|
+
.large-gutter > .five-of-six, .large-gutter > .ten-of-twelve {
|
678
|
+
flex-basis: calc(83.3333333333% - 30px); }
|
616
679
|
|
617
|
-
|
618
|
-
|
680
|
+
/* No gutter */
|
681
|
+
> .eleven-of-twelve {
|
682
|
+
flex-basis: 91.6666666667%; }
|
619
683
|
|
620
|
-
.
|
621
|
-
flex:
|
684
|
+
.gutter > .eleven-of-twelve {
|
685
|
+
flex-basis: calc(91.6666666667% - 20px); }
|
622
686
|
|
623
|
-
.
|
624
|
-
flex:
|
687
|
+
.small-gutter > .eleven-of-twelve {
|
688
|
+
flex-basis: calc(91.6666666667% - 10px); }
|
625
689
|
|
626
|
-
.
|
627
|
-
flex:
|
690
|
+
.large-gutter > .eleven-of-twelve {
|
691
|
+
flex-basis: calc(91.6666666667% - 30px); }
|
628
692
|
|
629
|
-
|
630
|
-
|
693
|
+
/* No gutter */
|
694
|
+
.one-columns > *, > .one-of-one, > .two-of-two, > .three-of-three, > .four-of-four, > .six-of-six, > .twelve-of-twelve {
|
695
|
+
flex-basis: 100%; }
|
696
|
+
|
697
|
+
.one-columns.gutter > *, .gutter > .one-of-one, .gutter > .two-of-two, .gutter > .three-of-three, .gutter > .four-of-four, .gutter > .six-of-six, .gutter > .twelve-of-twelve {
|
698
|
+
flex-basis: calc(100% - 20px); }
|
699
|
+
|
700
|
+
.one-columns.small-gutter > *, .small-gutter > .one-of-one, .small-gutter > .two-of-two, .small-gutter > .three-of-three, .small-gutter > .four-of-four, .small-gutter > .six-of-six, .small-gutter > .twelve-of-twelve {
|
701
|
+
flex-basis: calc(100% - 10px); }
|
702
|
+
|
703
|
+
.one-columns.large-gutter > *, .large-gutter > .one-of-one, .large-gutter > .two-of-two, .large-gutter > .three-of-three, .large-gutter > .four-of-four, .large-gutter > .six-of-six, .large-gutter > .twelve-of-twelve {
|
704
|
+
flex-basis: calc(100% - 30px); }
|
705
|
+
|
706
|
+
/* No gutter */
|
707
|
+
[class*='columns'] {
|
708
|
+
/* No gutter */ }
|
709
|
+
[class*='columns'] .span {
|
710
|
+
flex-basis: 100%; }
|
711
|
+
[class*='columns'] .gutter > .span {
|
712
|
+
flex-basis: calc(100% - 20px); }
|
713
|
+
[class*='columns'] .small-gutter > .span {
|
714
|
+
flex-basis: calc(100% - 10px); }
|
715
|
+
[class*='columns'] .large-gutter > .span {
|
716
|
+
flex-basis: calc(100% - 30px); }
|
717
|
+
@media all and (max-width: 599px) {
|
718
|
+
[class*='columns'].flex-after-medium > * {
|
719
|
+
flex-basis: 100%; } }
|
631
720
|
|
632
721
|
/* ===================================== *
|
633
722
|
* Vertical alignment
|
634
723
|
* ------------------------------------- */
|
635
724
|
.top-aligned {
|
636
|
-
align-items:
|
725
|
+
align-items: flex-start;
|
637
726
|
vertical-align: top; }
|
638
727
|
|
639
728
|
.bottom-aligned {
|
640
|
-
align-items:
|
729
|
+
align-items: flex-end;
|
641
730
|
vertical-align: bottom; }
|
642
731
|
|
643
732
|
.baseline-aligned {
|
@@ -671,13 +760,6 @@ form [class*='columns'] {
|
|
671
760
|
.push-left {
|
672
761
|
margin-right: auto; }
|
673
762
|
|
674
|
-
/* ===================================== *
|
675
|
-
* Breakpoints
|
676
|
-
* ------------------------------------- */
|
677
|
-
@media (max-width: 950px) {
|
678
|
-
[class*='columns'].medium-breakpoint > * {
|
679
|
-
flex: 0 1 100%; } }
|
680
|
-
|
681
763
|
/* ===================================== *
|
682
764
|
* Universal
|
683
765
|
* ------------------------------------- */
|
@@ -730,10 +812,15 @@ header .actions.centered {
|
|
730
812
|
body, input, textarea {
|
731
813
|
color: #0f212e; }
|
732
814
|
|
733
|
-
p, ul, ol, h1, h2, h3, h4, h5, h6, pre, table {
|
815
|
+
p, ul, ol, h1, h2, h3, h4, h5, h6, pre, table, .block {
|
734
816
|
margin-top: 20px;
|
735
817
|
margin-bottom: 20px; }
|
736
818
|
|
819
|
+
.force-wrap.force-wrap {
|
820
|
+
white-space: normal;
|
821
|
+
word-wrap: break-word;
|
822
|
+
word-break: break-word; }
|
823
|
+
|
737
824
|
/* ===================================== *
|
738
825
|
* Application
|
739
826
|
* ------------------------------------- */
|
@@ -877,7 +964,9 @@ a:hover, a:focus, a:active {
|
|
877
964
|
* ------------------------------------- */
|
878
965
|
hr {
|
879
966
|
border: solid #dfe3e6;
|
880
|
-
border-width: 1px 0 0 0;
|
967
|
+
border-width: 1px 0 0 0;
|
968
|
+
margin-top: 20px;
|
969
|
+
margin-bottom: 20px; }
|
881
970
|
|
882
971
|
/* ===================================== *
|
883
972
|
* Preformatted text
|
@@ -1049,6 +1138,11 @@ pre {
|
|
1049
1138
|
z-index: 10; }
|
1050
1139
|
.application-banner + .application-content {
|
1051
1140
|
margin-top: 47px; }
|
1141
|
+
.application-banner.landing-banner {
|
1142
|
+
border-bottom: none;
|
1143
|
+
color: #fff;
|
1144
|
+
padding-top: 20px;
|
1145
|
+
padding-bottom: 20px; }
|
1052
1146
|
|
1053
1147
|
nav.actual-tabs {
|
1054
1148
|
border-bottom: 1px solid #dfe3e6;
|
@@ -2789,28 +2883,83 @@ input::-moz-focus-inner {
|
|
2789
2883
|
box-shadow: none;
|
2790
2884
|
color: #5aaafa; }
|
2791
2885
|
|
2792
|
-
|
2793
|
-
|
2794
|
-
|
2795
|
-
|
2796
|
-
|
2797
|
-
|
2798
|
-
|
2799
|
-
|
2800
|
-
|
2801
|
-
|
2802
|
-
|
2803
|
-
|
2804
|
-
|
2805
|
-
|
2806
|
-
|
2807
|
-
|
2808
|
-
|
2809
|
-
|
2810
|
-
|
2811
|
-
|
2812
|
-
|
2813
|
-
|
2886
|
+
@-webkit-keyframes purple-flicker {
|
2887
|
+
0% {
|
2888
|
+
background-color: #fff; }
|
2889
|
+
10% {
|
2890
|
+
background-color: #f8f4fe; }
|
2891
|
+
100% {
|
2892
|
+
background-color: #fff; } }
|
2893
|
+
|
2894
|
+
@keyframes purple-flicker {
|
2895
|
+
0% {
|
2896
|
+
background-color: #fff; }
|
2897
|
+
10% {
|
2898
|
+
background-color: #f8f4fe; }
|
2899
|
+
100% {
|
2900
|
+
background-color: #fff; } }
|
2901
|
+
@-webkit-keyframes purple-border-right-flicker {
|
2902
|
+
0% {
|
2903
|
+
border-right-color: #fff; }
|
2904
|
+
10% {
|
2905
|
+
border-right-color: #f8f4fe; }
|
2906
|
+
100% {
|
2907
|
+
border-right-color: #fff; } }
|
2908
|
+
@keyframes purple-border-right-flicker {
|
2909
|
+
0% {
|
2910
|
+
border-right-color: #fff; }
|
2911
|
+
10% {
|
2912
|
+
border-right-color: #f8f4fe; }
|
2913
|
+
100% {
|
2914
|
+
border-right-color: #fff; } }
|
2915
|
+
@-webkit-keyframes purple-border-left-flicker {
|
2916
|
+
0% {
|
2917
|
+
border-left-color: #fff; }
|
2918
|
+
10% {
|
2919
|
+
border-left-color: #f8f4fe; }
|
2920
|
+
100% {
|
2921
|
+
border-left-color: #fff; } }
|
2922
|
+
@keyframes purple-border-left-flicker {
|
2923
|
+
0% {
|
2924
|
+
border-left-color: #fff; }
|
2925
|
+
10% {
|
2926
|
+
border-left-color: #f8f4fe; }
|
2927
|
+
100% {
|
2928
|
+
border-left-color: #fff; } }
|
2929
|
+
@-webkit-keyframes purple-box-shadow-flicker {
|
2930
|
+
0% {
|
2931
|
+
box-shadow: rgba(15, 33, 46, 0.2) 0 0 0 1px, transparent 0 0 3px 1px; }
|
2932
|
+
10% {
|
2933
|
+
box-shadow: #ba8ff7 0 0 0 1px, #ba8ff7 0 0 3px 1px; }
|
2934
|
+
0% {
|
2935
|
+
box-shadow: rgba(15, 33, 46, 0.2) 0 0 0 1px, transparent 0 0 3px 1px; } }
|
2936
|
+
@keyframes purple-box-shadow-flicker {
|
2937
|
+
0% {
|
2938
|
+
box-shadow: rgba(15, 33, 46, 0.2) 0 0 0 1px, transparent 0 0 3px 1px; }
|
2939
|
+
10% {
|
2940
|
+
box-shadow: #ba8ff7 0 0 0 1px, #ba8ff7 0 0 3px 1px; }
|
2941
|
+
0% {
|
2942
|
+
box-shadow: rgba(15, 33, 46, 0.2) 0 0 0 1px, transparent 0 0 3px 1px; } }
|
2943
|
+
label.input-defaulted-value input:not([type=range]), label.input-defaulted-value select, label.input-defaulted-value .slider-label {
|
2944
|
+
-webkit-animation: purple-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, purple-box-shadow-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
|
2945
|
+
animation: purple-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, purple-box-shadow-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
|
2946
|
+
label.input-defaulted-value .slider-label.align-right:after {
|
2947
|
+
-webkit-animation: purple-border-right-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
|
2948
|
+
animation: purple-border-right-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
|
2949
|
+
label.input-defaulted-value .slider-label.align-left:after {
|
2950
|
+
-webkit-animation: purple-border-left-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
|
2951
|
+
animation: purple-border-left-flicker 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
|
2952
|
+
label.input-defaulted-value:not([data-input-type=range]) .input-wrapper:after {
|
2953
|
+
content: "";
|
2954
|
+
position: absolute;
|
2955
|
+
box-shadow: #ba8ff7 0 0 0 1px inset, #ba8ff7 0 0 3px 1px;
|
2956
|
+
border-radius: 4px;
|
2957
|
+
top: 1px;
|
2958
|
+
left: 1px;
|
2959
|
+
right: 1px;
|
2960
|
+
bottom: 1px;
|
2961
|
+
-webkit-animation: fade-out 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
|
2962
|
+
animation: fade-out 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
|
2814
2963
|
|
2815
2964
|
.restore-default {
|
2816
2965
|
z-index: 100;
|
@@ -2822,7 +2971,7 @@ label.input-defaulted-value:not(.remotely-invalid) .slider-label:before {
|
|
2822
2971
|
color: #8c9ba5;
|
2823
2972
|
transition: none; }
|
2824
2973
|
.restore-default:hover, .restore-default:focus {
|
2825
|
-
color: #
|
2974
|
+
color: #ba8ff7;
|
2826
2975
|
background-color: #f5f7fa;
|
2827
2976
|
border-radius: 3px; }
|
2828
2977
|
.restore-default span {
|
@@ -2838,9 +2987,10 @@ label.input-defaulted-value:not(.remotely-invalid) .slider-label:before {
|
|
2838
2987
|
|
2839
2988
|
.input-diff td {
|
2840
2989
|
background-color: rgba(247, 250, 251, 0.5); }
|
2990
|
+
.input-diff:hover td {
|
2991
|
+
background-color: #fff; }
|
2841
2992
|
.input-diff-label {
|
2842
|
-
font-weight: 500;
|
2843
|
-
/*width: 100%;*/ }
|
2993
|
+
font-weight: 500; }
|
2844
2994
|
.input-diff-value, .input-diff-initial {
|
2845
2995
|
padding-left: .2em;
|
2846
2996
|
padding-right: .2em; }
|
@@ -2899,6 +3049,17 @@ label.input-defaulted-value:not(.remotely-invalid) .slider-label:before {
|
|
2899
3049
|
-webkit-transform: rotate(-45deg) translateX(-2px);
|
2900
3050
|
transform: rotate(-45deg) translateX(-2px); }
|
2901
3051
|
|
3052
|
+
.diff-note {
|
3053
|
+
margin-left: .2em; }
|
3054
|
+
.diff-note svg {
|
3055
|
+
height: .9em;
|
3056
|
+
width: auto; }
|
3057
|
+
.diff-note .svg-status-failed {
|
3058
|
+
opacity: .3; }
|
3059
|
+
.diff-note:hover .svg-status-failed {
|
3060
|
+
fill: #bd1427;
|
3061
|
+
opacity: .8; }
|
3062
|
+
|
2902
3063
|
.requires-restart {
|
2903
3064
|
background-color: transparent;
|
2904
3065
|
box-shadow: 0 0 0 1px transparent;
|
@@ -2915,6 +3076,12 @@ label.input-defaulted-value:not(.remotely-invalid) .slider-label:before {
|
|
2915
3076
|
overflow: hidden;
|
2916
3077
|
height: 0; }
|
2917
3078
|
|
3079
|
+
.requires-restart-icon {
|
3080
|
+
fill: #bd1427;
|
3081
|
+
height: .95em;
|
3082
|
+
width: auto;
|
3083
|
+
opacity: .8; }
|
3084
|
+
|
2918
3085
|
.requires-restart.input-changed-value {
|
2919
3086
|
background-color: rgba(224, 24, 45, 0.02);
|
2920
3087
|
box-shadow: 0 0 0 1px rgba(224, 24, 45, 0.3);
|
@@ -2943,6 +3110,9 @@ th.action-panel, td.action-panel {
|
|
2943
3110
|
text-align: right;
|
2944
3111
|
white-space: nowrap; }
|
2945
3112
|
|
3113
|
+
th {
|
3114
|
+
vertical-align: top; }
|
3115
|
+
|
2946
3116
|
caption {
|
2947
3117
|
display: none; }
|
2948
3118
|
|
@@ -3266,6 +3436,8 @@ th.sub-heading {
|
|
3266
3436
|
table.card {
|
3267
3437
|
display: table; }
|
3268
3438
|
|
3439
|
+
.has-tooltip {
|
3440
|
+
cursor: pointer; }
|
3269
3441
|
.has-tooltip:before, .has-tooltip:after {
|
3270
3442
|
opacity: 0;
|
3271
3443
|
transition: none; }
|
@@ -3637,11 +3809,11 @@ table.card {
|
|
3637
3809
|
padding: 13px 0 10px; } }
|
3638
3810
|
|
3639
3811
|
.progress-bar[data-status="completed"] .progress-bar-outline {
|
3640
|
-
background-color: rgba(
|
3812
|
+
background-color: rgba(42, 200, 79, 0.2); }
|
3641
3813
|
.progress-bar[data-status="completed"] .progress-bar-fill {
|
3642
|
-
background: #
|
3814
|
+
background: #2ac84f; }
|
3643
3815
|
.progress-bar[data-status="completed"] .progress-bar-description-status {
|
3644
|
-
color: #
|
3816
|
+
color: #2ac84f; }
|
3645
3817
|
.progress-bar[data-status="failed"] .progress-bar-outline {
|
3646
3818
|
background-color: rgba(224, 24, 45, 0.2); }
|
3647
3819
|
.progress-bar[data-status="failed"] .progress-bar-fill {
|