tungsten 0.1.31 → 0.1.32
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/core/_banner.scss +9 -3
- data/lib/tungsten/version.rb +1 -1
- data/public/{code-0.1.31.js → code-0.1.32.js} +1 -1
- data/public/{code-0.1.31.js.gz → code-0.1.32.js.gz} +0 -0
- data/public/{code-0.1.31.map.json → code-0.1.32.map.json} +0 -0
- data/public/{tungsten-0.1.31.css → tungsten-0.1.32.css} +9 -5
- data/public/tungsten-0.1.32.css.gz +0 -0
- data/public/{tungsten-0.1.31.js → tungsten-0.1.32.js} +1 -1
- data/public/{tungsten-0.1.31.js.gz → tungsten-0.1.32.js.gz} +0 -0
- data/public/{tungsten-0.1.31.map.json → tungsten-0.1.32.map.json} +0 -0
- metadata +9 -9
- data/public/tungsten-0.1.31.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: 6d572b5a5a10c790e50f490fc97a990e39bbd561
|
4
|
+
data.tar.gz: 3335e326f60484bdd3017d8ff3ffdeb9b0bbb2fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c880307249262e82d3e695fdf43a60db73ef47b8415c8f375fdf9042615aea03ef7e1f0dff7dff2e36b1a2a92016144d86650ec8444100a897219b95be06ce42
|
7
|
+
data.tar.gz: 883442d2e816570961aebedd8ce902420a20c42744c4713b98a72819a767dd5e8360f54e8e341e6e6a73d7989d7e5c586196581ef26df805d786ac3a321d1acc
|
@@ -9,10 +9,11 @@
|
|
9
9
|
margin-right: 20px;
|
10
10
|
}
|
11
11
|
.deployment-icon-hex {
|
12
|
+
transition: fill $duration $timing;
|
12
13
|
fill: rgba(#000, .05);
|
13
14
|
}
|
14
15
|
|
15
|
-
a {
|
16
|
+
nav a {
|
16
17
|
transition: $duration;
|
17
18
|
text-decoration: none;
|
18
19
|
padding: .4em .6em;
|
@@ -28,8 +29,7 @@
|
|
28
29
|
}
|
29
30
|
|
30
31
|
&:hover,
|
31
|
-
&:focus
|
32
|
-
&:active {
|
32
|
+
&:focus {
|
33
33
|
color: inherit;
|
34
34
|
background: rgba($white, .1);
|
35
35
|
text-shadow: 0 1px 1px rgba(#000, .1);
|
@@ -41,4 +41,10 @@
|
|
41
41
|
text-shadow: 0 1px 1px rgba(#000, .15);
|
42
42
|
}
|
43
43
|
}
|
44
|
+
|
45
|
+
.icon-nav-item {
|
46
|
+
&:hover .deployment-icon-hex {
|
47
|
+
fill: rgba(#fff, .05);
|
48
|
+
}
|
49
|
+
}
|
44
50
|
}
|
data/lib/tungsten/version.rb
CHANGED
Binary file
|
File without changes
|
@@ -925,26 +925,30 @@ pre {
|
|
925
925
|
.application-banner .svg-deployment, .application-banner .svg-cluster {
|
926
926
|
margin-right: 20px; }
|
927
927
|
.application-banner .deployment-icon-hex {
|
928
|
+
-webkit-transition: fill 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
929
|
+
transition: fill 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
928
930
|
fill: rgba(0, 0, 0, 0.05); }
|
929
|
-
.application-banner a {
|
931
|
+
.application-banner nav a {
|
930
932
|
-webkit-transition: 0.25s;
|
931
933
|
transition: 0.25s;
|
932
934
|
text-decoration: none;
|
933
935
|
padding: .4em .6em;
|
934
936
|
border-radius: 3px; }
|
935
|
-
.application-banner a + a {
|
937
|
+
.application-banner nav a + a {
|
936
938
|
margin-left: 2px; }
|
937
|
-
.application-banner a, .application-banner a:visited {
|
939
|
+
.application-banner nav a, .application-banner nav a:visited {
|
938
940
|
color: inherit;
|
939
941
|
background: transparent; }
|
940
|
-
.application-banner a:hover, .application-banner a:focus
|
942
|
+
.application-banner nav a:hover, .application-banner nav a:focus {
|
941
943
|
color: inherit;
|
942
944
|
background: rgba(255, 255, 255, 0.1);
|
943
945
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
|
944
|
-
.application-banner a.here {
|
946
|
+
.application-banner nav a.here {
|
945
947
|
background: rgba(255, 255, 255, 0.1);
|
946
948
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
|
947
949
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15); }
|
950
|
+
.application-banner .icon-nav-item:hover .deployment-icon-hex {
|
951
|
+
fill: rgba(255, 255, 255, 0.05); }
|
948
952
|
|
949
953
|
.cm-s-default .cm-keyword {
|
950
954
|
color: #268bd2; }
|
Binary file
|
Binary file
|
File without changes
|
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.1.
|
4
|
+
version: 0.1.32
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
@@ -276,14 +276,14 @@ files:
|
|
276
276
|
- lib/tungsten.rb
|
277
277
|
- lib/tungsten/helper.rb
|
278
278
|
- lib/tungsten/version.rb
|
279
|
-
- public/code-0.1.
|
280
|
-
- public/code-0.1.
|
281
|
-
- public/code-0.1.
|
282
|
-
- public/tungsten-0.1.
|
283
|
-
- public/tungsten-0.1.
|
284
|
-
- public/tungsten-0.1.
|
285
|
-
- public/tungsten-0.1.
|
286
|
-
- public/tungsten-0.1.
|
279
|
+
- public/code-0.1.32.js
|
280
|
+
- public/code-0.1.32.js.gz
|
281
|
+
- public/code-0.1.32.map.json
|
282
|
+
- public/tungsten-0.1.32.css
|
283
|
+
- public/tungsten-0.1.32.css.gz
|
284
|
+
- public/tungsten-0.1.32.js
|
285
|
+
- public/tungsten-0.1.32.js.gz
|
286
|
+
- public/tungsten-0.1.32.map.json
|
287
287
|
homepage:
|
288
288
|
licenses:
|
289
289
|
- MIT
|
Binary file
|