tungsten 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/tungsten/_colors.yml +2 -2
- data/app/assets/stylesheets/tungsten/core/_banner.scss +3 -43
- data/app/assets/stylesheets/tungsten/core/_index.scss +1 -0
- data/app/assets/stylesheets/tungsten/core/_layout.scss +1 -7
- data/app/assets/stylesheets/tungsten/core/_nav-tabs.scss +77 -0
- data/app/assets/stylesheets/tungsten/core/_sections.scss +24 -4
- data/lib/tungsten/version.rb +1 -1
- data/public/{code-0.2.2.js → code-0.2.3.js} +0 -0
- data/public/{code-0.2.2.js.gz → code-0.2.3.js.gz} +0 -0
- data/public/{tungsten-0.2.2.css → tungsten-0.2.3.css} +97 -61
- data/public/tungsten-0.2.3.css.gz +0 -0
- data/public/{tungsten-0.2.2.js → tungsten-0.2.3.js} +0 -0
- data/public/{tungsten-0.2.2.js.gz → tungsten-0.2.3.js.gz} +0 -0
- metadata +9 -8
- data/public/tungsten-0.2.2.css.gz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 673dfff61fd0f2f9e8934275ace00ac423660e40
|
4
|
+
data.tar.gz: 56c1ee80dd42927cad7f3a077e9d741aba5e2347
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29dfd8aa40547e12b99115ee4f13959adf12f206f6e64653fc125a0265617650a3b65749b8a54daf3c747ffa1aae991c2c680a8f943efd1a047c5e233a5c6098
|
7
|
+
data.tar.gz: d54748f66c185a2e5663322de952a8c62fc0f550d3b7f002c7fb15c3afc39ef21759af9b604396b083cfe6f4cc9d7ef0ce9e044ea91055ca8b25192a0dea6d99
|
@@ -34,8 +34,8 @@ _colors:
|
|
34
34
|
orange-01: '#f69523' # ratchet: gold
|
35
35
|
orange-02: '#f96623' # ratchet: tangelo
|
36
36
|
|
37
|
-
red-01: '#
|
38
|
-
red-02: '#
|
37
|
+
red-01: '#e0182d' # carbon: support-01
|
38
|
+
red-02: '#bd1427' # carbon: hover-danger
|
39
39
|
|
40
40
|
code:
|
41
41
|
base03: '#002b36'
|
@@ -1,53 +1,13 @@
|
|
1
1
|
.application-banner {
|
2
|
-
|
3
|
-
color: $white;
|
2
|
+
border-bottom: 1px solid $gray-04;
|
4
3
|
display: flex;
|
5
4
|
width: 100%;
|
6
5
|
margin: 0;
|
6
|
+
background: $white;
|
7
7
|
align-items: center;
|
8
|
-
padding:
|
8
|
+
padding: 5px 65px 0;
|
9
9
|
|
10
10
|
.svg-deployment, .svg-cluster {
|
11
11
|
margin-right: 20px;
|
12
12
|
}
|
13
|
-
.deployment-icon-hex {
|
14
|
-
transition: fill $duration $timing;
|
15
|
-
fill: rgba(#000, .05);
|
16
|
-
}
|
17
|
-
|
18
|
-
nav a {
|
19
|
-
transition: $duration;
|
20
|
-
text-decoration: none;
|
21
|
-
padding: .4em .6em;
|
22
|
-
border-radius: $radius;
|
23
|
-
+ a {
|
24
|
-
margin-left: 2px;
|
25
|
-
}
|
26
|
-
|
27
|
-
&,
|
28
|
-
&:visited {
|
29
|
-
color: inherit;
|
30
|
-
background: transparent;
|
31
|
-
}
|
32
|
-
|
33
|
-
&:hover,
|
34
|
-
&:focus {
|
35
|
-
color: inherit;
|
36
|
-
background: rgba($white, .1);
|
37
|
-
text-shadow: 0 1px 1px rgba(#000, .1);
|
38
|
-
}
|
39
|
-
|
40
|
-
&.here {
|
41
|
-
background: rgba($white, .1);
|
42
|
-
box-shadow: 0 0 0 1px rgba($white, .3) inset;
|
43
|
-
text-shadow: 0 1px 1px rgba(#000, .15);
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
.icon-nav-item {
|
48
|
-
text-decoration: none;
|
49
|
-
&:hover .deployment-icon-hex {
|
50
|
-
fill: rgba(#fff, .05);
|
51
|
-
}
|
52
|
-
}
|
53
13
|
}
|
@@ -82,15 +82,9 @@ textarea {
|
|
82
82
|
* ------------------------------------- */
|
83
83
|
|
84
84
|
.application-content {
|
85
|
-
max-width: 1280px;
|
86
85
|
flex: 1 1 auto;
|
87
86
|
|
88
|
-
|
89
|
-
padding: 0 15px 80px;
|
90
|
-
}
|
91
|
-
@include at-least($large-width) {
|
92
|
-
padding: 10px 30px 80px;
|
93
|
-
}
|
87
|
+
padding: 10px 65px 80px;
|
94
88
|
}
|
95
89
|
|
96
90
|
// When body should lose interactions
|
@@ -0,0 +1,77 @@
|
|
1
|
+
nav.actual-tabs {
|
2
|
+
border-bottom: 1px solid $gray-04;
|
3
|
+
margin-bottom: -1px;
|
4
|
+
width: 100%;
|
5
|
+
|
6
|
+
a {
|
7
|
+
transition: $duration;
|
8
|
+
text-decoration: none;
|
9
|
+
padding: .4em .8em;
|
10
|
+
border-radius: $radius;
|
11
|
+
border-bottom-left-radius: 0;
|
12
|
+
border-bottom-right-radius: 0;
|
13
|
+
display: inline-block;
|
14
|
+
opacity: .6;
|
15
|
+
border: 1px solid transparent { bottom: 0 };
|
16
|
+
|
17
|
+
+ a {
|
18
|
+
margin-left: 2px;
|
19
|
+
}
|
20
|
+
|
21
|
+
&,
|
22
|
+
&:visited {
|
23
|
+
color: inherit;
|
24
|
+
}
|
25
|
+
|
26
|
+
&:hover,
|
27
|
+
&:focus {
|
28
|
+
color: inherit;
|
29
|
+
opacity: 1;
|
30
|
+
}
|
31
|
+
|
32
|
+
&.here {
|
33
|
+
transition: none;
|
34
|
+
opacity: 1;
|
35
|
+
background: $gray-02;
|
36
|
+
border-color: $gray-04;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
nav.tabs {
|
42
|
+
width: 100%;
|
43
|
+
font-size: 14px;
|
44
|
+
font-weight: bold;
|
45
|
+
|
46
|
+
a {
|
47
|
+
transition: $duration;
|
48
|
+
text-decoration: none;
|
49
|
+
padding: .4em 0.125rem .8em;
|
50
|
+
border-bottom: 2px solid transparent;
|
51
|
+
display: inline-block;
|
52
|
+
opacity: .6;
|
53
|
+
|
54
|
+
+ a {
|
55
|
+
margin-left: 2em;
|
56
|
+
}
|
57
|
+
|
58
|
+
&,
|
59
|
+
&:visited {
|
60
|
+
color: inherit;
|
61
|
+
}
|
62
|
+
|
63
|
+
&:hover,
|
64
|
+
&:focus {
|
65
|
+
color: inherit;
|
66
|
+
opacity: 1;
|
67
|
+
color: $blue-05;
|
68
|
+
}
|
69
|
+
|
70
|
+
&.here {
|
71
|
+
transition: none;
|
72
|
+
opacity: 1;
|
73
|
+
color: $blue-05;
|
74
|
+
border-color: $blue-05;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
@@ -5,7 +5,10 @@
|
|
5
5
|
.app-section {
|
6
6
|
display: flex;
|
7
7
|
flex-wrap: wrap;
|
8
|
-
padding
|
8
|
+
padding: $card-padding 0;
|
9
|
+
position: relative;
|
10
|
+
|
11
|
+
border-top: 1px solid $gray-04;
|
9
12
|
|
10
13
|
&:target {
|
11
14
|
position: relative;
|
@@ -21,9 +24,9 @@
|
|
21
24
|
}
|
22
25
|
}
|
23
26
|
|
24
|
-
|
25
|
-
border-top:
|
26
|
-
padding-top:
|
27
|
+
&:first-of-type {
|
28
|
+
border-top: none;
|
29
|
+
padding-top: 0;
|
27
30
|
}
|
28
31
|
|
29
32
|
&-title {
|
@@ -63,3 +66,20 @@
|
|
63
66
|
margin-right: auto;
|
64
67
|
}
|
65
68
|
}
|
69
|
+
|
70
|
+
.app-section-caution {
|
71
|
+
$height: 7px;
|
72
|
+
border-color: transparent;
|
73
|
+
padding-top: $card-padding + $height;
|
74
|
+
|
75
|
+
&:before {
|
76
|
+
content: "";
|
77
|
+
width: 100%;
|
78
|
+
height: $height;
|
79
|
+
background: repeating-linear-gradient(-45deg, lighten($yellow-01, 10), lighten($yellow-01, 10) 20px, $gray-09 20px, $gray-09 40px);
|
80
|
+
border: 1px solid $gray-09;
|
81
|
+
position: absolute;
|
82
|
+
top: 0;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
data/lib/tungsten/version.rb
CHANGED
File without changes
|
Binary file
|
@@ -168,16 +168,16 @@
|
|
168
168
|
background-color: #f96623; }
|
169
169
|
|
170
170
|
.red-01-text {
|
171
|
-
color: #
|
171
|
+
color: #e0182d; }
|
172
172
|
|
173
173
|
.red-01-bg {
|
174
|
-
background-color: #
|
174
|
+
background-color: #e0182d; }
|
175
175
|
|
176
176
|
.red-02-text {
|
177
|
-
color: #
|
177
|
+
color: #bd1427; }
|
178
178
|
|
179
179
|
.red-02-bg {
|
180
|
-
background-color: #
|
180
|
+
background-color: #bd1427; }
|
181
181
|
|
182
182
|
.postgresql-gradient-bg {
|
183
183
|
background: linear-gradient(135deg, #0094fd, #625ff9) left top/100% 100% no-repeat; }
|
@@ -738,14 +738,8 @@ p, ul, ol, h1, h2, h3, h4, h5, h6, pre, table {
|
|
738
738
|
* Application
|
739
739
|
* ------------------------------------- */
|
740
740
|
.application-content {
|
741
|
-
|
742
|
-
|
743
|
-
@media all and (min-width: 600px) {
|
744
|
-
.application-content {
|
745
|
-
padding: 0 15px 80px; } }
|
746
|
-
@media all and (min-width: 1000px) {
|
747
|
-
.application-content {
|
748
|
-
padding: 10px 30px 80px; } }
|
741
|
+
flex: 1 1 auto;
|
742
|
+
padding: 10px 65px 80px; }
|
749
743
|
|
750
744
|
.dialog ~ main, .modal main {
|
751
745
|
position: relative;
|
@@ -937,7 +931,9 @@ pre {
|
|
937
931
|
.app-section {
|
938
932
|
display: flex;
|
939
933
|
flex-wrap: wrap;
|
940
|
-
padding
|
934
|
+
padding: 20px 0;
|
935
|
+
position: relative;
|
936
|
+
border-top: 1px solid #dfe3e6; }
|
941
937
|
.app-section:target {
|
942
938
|
position: relative; }
|
943
939
|
.app-section:target:after {
|
@@ -952,9 +948,9 @@ pre {
|
|
952
948
|
box-shadow: 0 0 10px 2px #FFFFDD;
|
953
949
|
-webkit-animation: fade-out cubic-bezier(0.4, 0, 0.2, 1) 2.5s forwards;
|
954
950
|
animation: fade-out cubic-bezier(0.4, 0, 0.2, 1) 2.5s forwards; }
|
955
|
-
.app-section
|
956
|
-
border-top:
|
957
|
-
padding-top:
|
951
|
+
.app-section:first-of-type {
|
952
|
+
border-top: none;
|
953
|
+
padding-top: 0; }
|
958
954
|
.app-section-title {
|
959
955
|
flex: 1 0 240px;
|
960
956
|
padding: 0 10px 0; }
|
@@ -979,6 +975,18 @@ pre {
|
|
979
975
|
margin-left: auto;
|
980
976
|
margin-right: auto; }
|
981
977
|
|
978
|
+
.app-section-caution {
|
979
|
+
border-color: transparent;
|
980
|
+
padding-top: 27px; }
|
981
|
+
.app-section-caution:before {
|
982
|
+
content: "";
|
983
|
+
width: 100%;
|
984
|
+
height: 7px;
|
985
|
+
background: repeating-linear-gradient(-45deg, #ffd523, #ffd523 20px, #5a6872 20px, #5a6872 40px);
|
986
|
+
border: 1px solid #5a6872;
|
987
|
+
position: absolute;
|
988
|
+
top: 0; }
|
989
|
+
|
982
990
|
/* ========================================================================== *
|
983
991
|
* Navigation module
|
984
992
|
* -------------------------------------------------------------------------- */
|
@@ -1021,40 +1029,68 @@ pre {
|
|
1021
1029
|
border-bottom-left-radius: 2px; }
|
1022
1030
|
|
1023
1031
|
.application-banner {
|
1024
|
-
|
1025
|
-
color: #fff;
|
1032
|
+
border-bottom: 1px solid #dfe3e6;
|
1026
1033
|
display: flex;
|
1027
1034
|
width: 100%;
|
1028
1035
|
margin: 0;
|
1036
|
+
background: #fff;
|
1029
1037
|
align-items: center;
|
1030
|
-
padding:
|
1038
|
+
padding: 5px 65px 0; }
|
1031
1039
|
.application-banner .svg-deployment, .application-banner .svg-cluster {
|
1032
1040
|
margin-right: 20px; }
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1041
|
+
|
1042
|
+
nav.actual-tabs {
|
1043
|
+
border-bottom: 1px solid #dfe3e6;
|
1044
|
+
margin-bottom: -1px;
|
1045
|
+
width: 100%; }
|
1046
|
+
nav.actual-tabs a {
|
1037
1047
|
transition: 0.25s;
|
1038
1048
|
text-decoration: none;
|
1039
|
-
padding: .4em .
|
1040
|
-
border-radius: 3px;
|
1041
|
-
|
1049
|
+
padding: .4em .8em;
|
1050
|
+
border-radius: 3px;
|
1051
|
+
border-bottom-left-radius: 0;
|
1052
|
+
border-bottom-right-radius: 0;
|
1053
|
+
display: inline-block;
|
1054
|
+
opacity: .6;
|
1055
|
+
border: 1px solid transparent;
|
1056
|
+
border-bottom: 0; }
|
1057
|
+
nav.actual-tabs a + a {
|
1042
1058
|
margin-left: 2px; }
|
1043
|
-
.
|
1059
|
+
nav.actual-tabs a, nav.actual-tabs a:visited {
|
1060
|
+
color: inherit; }
|
1061
|
+
nav.actual-tabs a:hover, nav.actual-tabs a:focus {
|
1044
1062
|
color: inherit;
|
1045
|
-
|
1046
|
-
.
|
1063
|
+
opacity: 1; }
|
1064
|
+
nav.actual-tabs a.here {
|
1065
|
+
transition: none;
|
1066
|
+
opacity: 1;
|
1067
|
+
background: #f5f7fa;
|
1068
|
+
border-color: #dfe3e6; }
|
1069
|
+
|
1070
|
+
nav.tabs {
|
1071
|
+
width: 100%;
|
1072
|
+
font-size: 14px;
|
1073
|
+
font-weight: bold; }
|
1074
|
+
nav.tabs a {
|
1075
|
+
transition: 0.25s;
|
1076
|
+
text-decoration: none;
|
1077
|
+
padding: .4em 0.125rem .8em;
|
1078
|
+
border-bottom: 2px solid transparent;
|
1079
|
+
display: inline-block;
|
1080
|
+
opacity: .6; }
|
1081
|
+
nav.tabs a + a {
|
1082
|
+
margin-left: 2em; }
|
1083
|
+
nav.tabs a, nav.tabs a:visited {
|
1084
|
+
color: inherit; }
|
1085
|
+
nav.tabs a:hover, nav.tabs a:focus {
|
1047
1086
|
color: inherit;
|
1048
|
-
|
1049
|
-
|
1050
|
-
.
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
text-decoration: none; }
|
1056
|
-
.application-banner .icon-nav-item:hover .deployment-icon-hex {
|
1057
|
-
fill: rgba(255, 255, 255, 0.05); }
|
1087
|
+
opacity: 1;
|
1088
|
+
color: #3d70b2; }
|
1089
|
+
nav.tabs a.here {
|
1090
|
+
transition: none;
|
1091
|
+
opacity: 1;
|
1092
|
+
color: #3d70b2;
|
1093
|
+
border-color: #3d70b2; }
|
1058
1094
|
|
1059
1095
|
.cm-s-default .cm-keyword {
|
1060
1096
|
color: #268bd2; }
|
@@ -2252,12 +2288,12 @@ label.valid:not(.remotely-invalid) input:focus, label.valid:not(.remotely-invali
|
|
2252
2288
|
box-shadow: 0 0 0 1px #2ac84f inset, 0 1px 3px rgba(15, 33, 46, 0.3); }
|
2253
2289
|
|
2254
2290
|
label.invalid, label.remotely-invalid:not(.valid) {
|
2255
|
-
color: #
|
2291
|
+
color: #e0182d; }
|
2256
2292
|
label.invalid input, label.invalid select:not([tabindex="-1"]), label.invalid textarea, label.remotely-invalid:not(.valid) input, label.remotely-invalid:not(.valid) select:not([tabindex="-1"]), label.remotely-invalid:not(.valid) textarea {
|
2257
2293
|
-webkit-text-fill-color: currentColor;
|
2258
|
-
box-shadow: 0 0 0 1px #
|
2294
|
+
box-shadow: 0 0 0 1px #e0182d inset, 0 0 0 transparent; }
|
2259
2295
|
label.invalid input:focus, label.invalid input:active, label.invalid select:not([tabindex="-1"]):focus, label.invalid select:not([tabindex="-1"]):active, label.invalid textarea:focus, label.invalid textarea:active, label.remotely-invalid:not(.valid) input:focus, label.remotely-invalid:not(.valid) input:active, label.remotely-invalid:not(.valid) select:not([tabindex="-1"]):focus, label.remotely-invalid:not(.valid) select:not([tabindex="-1"]):active, label.remotely-invalid:not(.valid) textarea:focus, label.remotely-invalid:not(.valid) textarea:active {
|
2260
|
-
box-shadow: 0 0 0 1px #
|
2296
|
+
box-shadow: 0 0 0 1px #e0182d inset, 0 1px 3px rgba(15, 33, 46, 0.3); }
|
2261
2297
|
|
2262
2298
|
@-webkit-keyframes expand-validation {
|
2263
2299
|
0% {
|
@@ -2307,7 +2343,7 @@ label.invalid input:focus, label.invalid input:active, label.invalid select:not(
|
|
2307
2343
|
line-height: 1em;
|
2308
2344
|
background: #8c9ba5; }
|
2309
2345
|
.invalid .validation-message-text, .remotely-invalid:not(.valid) .validation-message-text {
|
2310
|
-
background: #
|
2346
|
+
background: #e0182d; }
|
2311
2347
|
|
2312
2348
|
.valdiation-error-item, .validation-error-notice {
|
2313
2349
|
display: block;
|
@@ -2842,15 +2878,15 @@ label.input-defaulted-value:not(.remotely-invalid) .slider-label:before {
|
|
2842
2878
|
vertical-align: top; }
|
2843
2879
|
.requires-restart-input-message {
|
2844
2880
|
font-size: .8em;
|
2845
|
-
color: #
|
2881
|
+
color: #a31d2f;
|
2846
2882
|
opacity: 0;
|
2847
2883
|
transition: 0.25s opacity, 0.25s height;
|
2848
2884
|
overflow: hidden;
|
2849
2885
|
height: 0; }
|
2850
2886
|
|
2851
2887
|
.requires-restart.input-changed-value {
|
2852
|
-
background-color: rgba(
|
2853
|
-
box-shadow: 0 0 0 1px rgba(
|
2888
|
+
background-color: rgba(224, 24, 45, 0.02);
|
2889
|
+
box-shadow: 0 0 0 1px rgba(224, 24, 45, 0.3);
|
2854
2890
|
border-radius: 3px; }
|
2855
2891
|
.requires-restart.input-changed-value .requires-restart-input-message {
|
2856
2892
|
opacity: 1;
|
@@ -2992,9 +3028,9 @@ th.sub-heading {
|
|
2992
3028
|
color: #0094fd;
|
2993
3029
|
box-shadow: 0 0 0 1px rgba(15, 33, 46, 0.2), 0 1px 3px rgba(15, 33, 46, 0.25); }
|
2994
3030
|
.button.destructive, .destructive.dialog-continue, .button.destructive:visited, .destructive.dialog-continue:visited {
|
2995
|
-
color: #
|
3031
|
+
color: #e0182d; }
|
2996
3032
|
.button.destructive:hover, .destructive.dialog-continue:hover, .button.destructive:focus, .destructive.dialog-continue:focus, .button.destructive:active, .destructive.dialog-continue:active {
|
2997
|
-
color: #
|
3033
|
+
color: #bd1427; }
|
2998
3034
|
.button.primary, .dialog-continue, .dialog-continue.destructive, .button.primary:visited, .dialog-continue:visited {
|
2999
3035
|
color: #fff;
|
3000
3036
|
background: #0094fd;
|
@@ -3005,12 +3041,12 @@ th.sub-heading {
|
|
3005
3041
|
box-shadow: 0 0 0 1px #006dff, 0 1px 3px rgba(15, 33, 46, 0.15); }
|
3006
3042
|
.button.primary-destructive, .primary-destructive.dialog-continue, .dialog-continue.destructive, .button.primary-destructive:visited, .primary-destructive.dialog-continue:visited, .dialog-continue.destructive:visited {
|
3007
3043
|
color: #fff;
|
3008
|
-
background: #
|
3009
|
-
box-shadow: 0 0 0 1px #
|
3044
|
+
background: #e0182d;
|
3045
|
+
box-shadow: 0 0 0 1px #c91628, 0 1px 3px rgba(15, 33, 46, 0.15); }
|
3010
3046
|
.button.primary-destructive:hover, .primary-destructive.dialog-continue:hover, .dialog-continue.destructive:hover, .button.primary-destructive:focus, .primary-destructive.dialog-continue:focus, .dialog-continue.destructive:focus, .button.primary-destructive:active, .primary-destructive.dialog-continue:active, .dialog-continue.destructive:active {
|
3011
3047
|
color: #fff;
|
3012
|
-
background: #
|
3013
|
-
box-shadow: 0 0 0 1px #
|
3048
|
+
background: #bd1427;
|
3049
|
+
box-shadow: 0 0 0 1px #bd1427, 0 1px 3px rgba(15, 33, 46, 0.15); }
|
3014
3050
|
.button.clear, .clear.dialog-continue {
|
3015
3051
|
padding-left: 2px;
|
3016
3052
|
padding-right: 2px; }
|
@@ -3027,11 +3063,11 @@ th.sub-heading {
|
|
3027
3063
|
.button.clear.destructive, .clear.destructive.dialog-continue {
|
3028
3064
|
color: inherit; }
|
3029
3065
|
.button.clear.destructive:hover, .clear.destructive.dialog-continue:hover {
|
3030
|
-
color: #
|
3066
|
+
color: #e0182d; }
|
3031
3067
|
.button.clear.primary-destructive, .clear.primary-destructive.dialog-continue, .clear.dialog-continue.destructive {
|
3032
|
-
color: #
|
3068
|
+
color: #e0182d; }
|
3033
3069
|
.button.clear.primary-destructive:hover, .clear.primary-destructive.dialog-continue:hover, .clear.dialog-continue.destructive:hover {
|
3034
|
-
color: #
|
3070
|
+
color: #bd1427; }
|
3035
3071
|
.button[disabled], [disabled].dialog-continue {
|
3036
3072
|
opacity: .5;
|
3037
3073
|
pointer-events: none; }
|
@@ -3386,9 +3422,9 @@ table.card {
|
|
3386
3422
|
.notification.message .notification-type-icon {
|
3387
3423
|
background: #444e56; }
|
3388
3424
|
.notification.error .notification-content {
|
3389
|
-
background: #
|
3425
|
+
background: #e0182d; }
|
3390
3426
|
.notification.error .notification-type-icon {
|
3391
|
-
background: #
|
3427
|
+
background: #b21324; }
|
3392
3428
|
.notification.progress .notification-content, .notification.form-action .notification-content {
|
3393
3429
|
background: #5596e6; }
|
3394
3430
|
.notification.progress .notification-type-icon, .notification.form-action .notification-type-icon {
|
@@ -3466,7 +3502,7 @@ table.card {
|
|
3466
3502
|
.status-icon .svg-status-completed {
|
3467
3503
|
fill: #5aa700; }
|
3468
3504
|
.status-icon .svg-status-failed {
|
3469
|
-
fill: #
|
3505
|
+
fill: #bd1427; }
|
3470
3506
|
.status-icon .svg-status-pending {
|
3471
3507
|
fill: #8c9ba5; }
|
3472
3508
|
.status-icon .svg-status-partial {
|
@@ -3574,11 +3610,11 @@ table.card {
|
|
3574
3610
|
.progress-bar[data-status="completed"] .progress-bar-description-status {
|
3575
3611
|
color: #5aa700; }
|
3576
3612
|
.progress-bar[data-status="failed"] .progress-bar-outline {
|
3577
|
-
background-color: rgba(
|
3613
|
+
background-color: rgba(224, 24, 45, 0.2); }
|
3578
3614
|
.progress-bar[data-status="failed"] .progress-bar-fill {
|
3579
|
-
background: #
|
3615
|
+
background: #e0182d; }
|
3580
3616
|
.progress-bar[data-status="failed"] .progress-bar-description-status {
|
3581
|
-
color: #
|
3617
|
+
color: #e0182d; }
|
3582
3618
|
.progress-bar[data-status="completed"] .progress-bar-fill:before, .progress-bar[data-status="failed"] .progress-bar-fill:before {
|
3583
3619
|
background-image: none; }
|
3584
3620
|
.progress-bar[data-status="waiting"] .progress-bar-outline {
|
Binary file
|
File without changes
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tungsten
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -209,6 +209,7 @@ files:
|
|
209
209
|
- app/assets/stylesheets/tungsten/core/_grid.scss
|
210
210
|
- app/assets/stylesheets/tungsten/core/_index.scss
|
211
211
|
- app/assets/stylesheets/tungsten/core/_layout.scss
|
212
|
+
- app/assets/stylesheets/tungsten/core/_nav-tabs.scss
|
212
213
|
- app/assets/stylesheets/tungsten/core/_navigation.scss
|
213
214
|
- app/assets/stylesheets/tungsten/core/_sections.scss
|
214
215
|
- app/assets/stylesheets/tungsten/core/_text.scss
|
@@ -315,12 +316,12 @@ files:
|
|
315
316
|
- lib/tungsten.rb
|
316
317
|
- lib/tungsten/helper.rb
|
317
318
|
- lib/tungsten/version.rb
|
318
|
-
- public/code-0.2.
|
319
|
-
- public/code-0.2.
|
320
|
-
- public/tungsten-0.2.
|
321
|
-
- public/tungsten-0.2.
|
322
|
-
- public/tungsten-0.2.
|
323
|
-
- public/tungsten-0.2.
|
319
|
+
- public/code-0.2.3.js
|
320
|
+
- public/code-0.2.3.js.gz
|
321
|
+
- public/tungsten-0.2.3.css
|
322
|
+
- public/tungsten-0.2.3.css.gz
|
323
|
+
- public/tungsten-0.2.3.js
|
324
|
+
- public/tungsten-0.2.3.js.gz
|
324
325
|
homepage:
|
325
326
|
licenses:
|
326
327
|
- MIT
|
Binary file
|