tungsten 0.1.36 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/tungsten/components/_tables.scss +7 -2
- data/app/assets/stylesheets/tungsten/core/_grid.scss +15 -0
- data/app/assets/stylesheets/tungsten/form/_input-row.scss +0 -12
- data/lib/tungsten/version.rb +1 -1
- data/public/{code-0.1.36.js → code-0.1.37.js} +1 -1
- data/public/{code-0.1.36.js.gz → code-0.1.37.js.gz} +0 -0
- data/public/{code-0.1.36.map.json → code-0.1.37.map.json} +0 -0
- data/public/{tungsten-0.1.36.css → tungsten-0.1.37.css} +27 -17
- data/public/tungsten-0.1.37.css.gz +0 -0
- data/public/{tungsten-0.1.36.js → tungsten-0.1.37.js} +1 -1
- data/public/{tungsten-0.1.36.js.gz → tungsten-0.1.37.js.gz} +0 -0
- data/public/{tungsten-0.1.36.map.json → tungsten-0.1.37.map.json} +0 -0
- metadata +9 -9
- data/public/tungsten-0.1.36.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: 91a62ce2c2594a0179a29f138959ff1e83a0bc3e
|
4
|
+
data.tar.gz: ba3ee3eebeaf93054fc5b9d233ae8796ccf9bd16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c7c32833f549e4546a6729ee8fdd697a13cf75944a1e23928b9cbdd6958237dce2a0073513835ab7545a73b4af74b7b3d69d77a40526fce36216c143455ebf4
|
7
|
+
data.tar.gz: 8a4c1c8cea9b85428890dbb74521ad94491722dbc1763e7edf9b7e3e4345d0114417e0b1bffe1c2555e3950659e1cc74e0de8e0529ce7662917c497b6ac5dc60
|
@@ -115,7 +115,7 @@ th.sub-heading {
|
|
115
115
|
background-image: linear-gradient(#fff, mix(#fff, $blue-01, 88%));
|
116
116
|
background-position: left top;
|
117
117
|
background-repeat: no-repeat;
|
118
|
-
background-size: 100%
|
118
|
+
background-size: 100% 250%;
|
119
119
|
}
|
120
120
|
|
121
121
|
&.toggle-handle:hover {
|
@@ -135,6 +135,7 @@ th.sub-heading {
|
|
135
135
|
.table-drawer-content-wrapper { max-height: 240vh; } // magic number based on very tall theoretical maximum height
|
136
136
|
.table-drawer-content {
|
137
137
|
opacity: 1;
|
138
|
+
transform: scale(1);
|
138
139
|
}
|
139
140
|
}
|
140
141
|
}
|
@@ -148,6 +149,8 @@ th.sub-heading {
|
|
148
149
|
}
|
149
150
|
.table-drawer-content {
|
150
151
|
opacity: 0;
|
152
|
+
transform: scale(0.99);
|
153
|
+
transition-delay: .1s, .1s;
|
151
154
|
}
|
152
155
|
}
|
153
156
|
}
|
@@ -158,6 +161,7 @@ th.sub-heading {
|
|
158
161
|
padding: 0;
|
159
162
|
border-top: none !important;
|
160
163
|
transition: border-color .2s ease-in;
|
164
|
+
// Darken whatever backround a td has by default
|
161
165
|
background-image: linear-gradient(rgba(#000, .03),rgba(#000, .03));
|
162
166
|
}
|
163
167
|
|
@@ -168,7 +172,8 @@ th.sub-heading {
|
|
168
172
|
}
|
169
173
|
|
170
174
|
&-content {
|
171
|
-
transition: opacity .2s .
|
175
|
+
transition: opacity .2s, transform .2s;
|
176
|
+
transition-delay: .16s, .2s;
|
172
177
|
padding: 8px;
|
173
178
|
>:last-child {
|
174
179
|
margin-bottom: 0;
|
@@ -85,6 +85,21 @@ form [class*='columns'] {
|
|
85
85
|
flex: 1;
|
86
86
|
}
|
87
87
|
|
88
|
+
// Expanded items will be large as possible
|
89
|
+
.grow {
|
90
|
+
flex-grow: 1;
|
91
|
+
}
|
92
|
+
|
93
|
+
.flex-row {
|
94
|
+
display: flex;
|
95
|
+
|
96
|
+
// Add gutter between top level elements
|
97
|
+
> * ~ * {
|
98
|
+
margin-left: 8px;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
|
88
103
|
// Loop through columns
|
89
104
|
@for $a from 1 through length($columns) {
|
90
105
|
|
@@ -1,15 +1,3 @@
|
|
1
|
-
// Expanded items will be large as possible
|
2
|
-
.grow { flex-grow: 1; }
|
3
|
-
|
4
|
-
.flex-row {
|
5
|
-
display: flex;
|
6
|
-
|
7
|
-
// Add gutter between top level elements
|
8
|
-
> * ~ * {
|
9
|
-
margin-left: 8px;
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
1
|
.input-row {
|
14
2
|
@include block-margin;
|
15
3
|
display: flex;
|
data/lib/tungsten/version.rb
CHANGED
Binary file
|
File without changes
|
@@ -411,6 +411,18 @@ form [class*='columns'] {
|
|
411
411
|
-ms-flex: 1;
|
412
412
|
flex: 1; }
|
413
413
|
|
414
|
+
.grow {
|
415
|
+
-webkit-box-flex: 1;
|
416
|
+
-ms-flex-positive: 1;
|
417
|
+
flex-grow: 1; }
|
418
|
+
|
419
|
+
.flex-row {
|
420
|
+
display: -webkit-box;
|
421
|
+
display: -ms-flexbox;
|
422
|
+
display: flex; }
|
423
|
+
.flex-row > * ~ * {
|
424
|
+
margin-left: 8px; }
|
425
|
+
|
414
426
|
.one-of-eight, .eight-columns > * {
|
415
427
|
-webkit-box-flex: 0;
|
416
428
|
-ms-flex: 0 1 12.5%;
|
@@ -2603,18 +2615,6 @@ input::-moz-focus-inner {
|
|
2603
2615
|
.slider-input.fill ~ .slider-track .filled .slider-segment-mark[data-index]:after {
|
2604
2616
|
box-shadow: #1f8bf8 0 0 0 1px; }
|
2605
2617
|
|
2606
|
-
.grow {
|
2607
|
-
-webkit-box-flex: 1;
|
2608
|
-
-ms-flex-positive: 1;
|
2609
|
-
flex-grow: 1; }
|
2610
|
-
|
2611
|
-
.flex-row {
|
2612
|
-
display: -webkit-box;
|
2613
|
-
display: -ms-flexbox;
|
2614
|
-
display: flex; }
|
2615
|
-
.flex-row > * ~ * {
|
2616
|
-
margin-left: 8px; }
|
2617
|
-
|
2618
2618
|
.input-row {
|
2619
2619
|
margin-top: 20px;
|
2620
2620
|
margin-bottom: 20px;
|
@@ -2707,7 +2707,7 @@ th.sub-heading {
|
|
2707
2707
|
background-image: linear-gradient(#fff, #ebf5fe);
|
2708
2708
|
background-position: left top;
|
2709
2709
|
background-repeat: no-repeat;
|
2710
|
-
background-size: 100%
|
2710
|
+
background-size: 100% 250%; }
|
2711
2711
|
.table-drawer-handle.toggle-handle:hover .drawer-indicator button {
|
2712
2712
|
color: #0094fd; }
|
2713
2713
|
.table-drawer-handle.toggle-handle:hover td {
|
@@ -2718,7 +2718,9 @@ th.sub-heading {
|
|
2718
2718
|
.table-drawer-handle.open + .table-drawer .table-drawer-content-wrapper {
|
2719
2719
|
max-height: 240vh; }
|
2720
2720
|
.table-drawer-handle.open + .table-drawer .table-drawer-content {
|
2721
|
-
opacity: 1;
|
2721
|
+
opacity: 1;
|
2722
|
+
-webkit-transform: scale(1);
|
2723
|
+
transform: scale(1); }
|
2722
2724
|
.table-drawer-handle.closed + .table-drawer .table-drawer-content-wrapper {
|
2723
2725
|
max-height: 0;
|
2724
2726
|
-webkit-transition-duration: .3s;
|
@@ -2726,7 +2728,11 @@ th.sub-heading {
|
|
2726
2728
|
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
2727
2729
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
2728
2730
|
.table-drawer-handle.closed + .table-drawer .table-drawer-content {
|
2729
|
-
opacity: 0;
|
2731
|
+
opacity: 0;
|
2732
|
+
-webkit-transform: scale(0.99);
|
2733
|
+
transform: scale(0.99);
|
2734
|
+
-webkit-transition-delay: .1s, .1s;
|
2735
|
+
transition-delay: .1s, .1s; }
|
2730
2736
|
|
2731
2737
|
.table-drawer td {
|
2732
2738
|
padding: 0;
|
@@ -2741,8 +2747,12 @@ th.sub-heading {
|
|
2741
2747
|
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
2742
2748
|
box-shadow: 0 1px 0 0 #dfe3e6 inset; }
|
2743
2749
|
.table-drawer-content {
|
2744
|
-
-webkit-transition: opacity .2s .
|
2745
|
-
transition: opacity .2s .
|
2750
|
+
-webkit-transition: opacity .2s, -webkit-transform .2s;
|
2751
|
+
transition: opacity .2s, -webkit-transform .2s;
|
2752
|
+
transition: opacity .2s, transform .2s;
|
2753
|
+
transition: opacity .2s, transform .2s, -webkit-transform .2s;
|
2754
|
+
-webkit-transition-delay: .16s, .2s;
|
2755
|
+
transition-delay: .16s, .2s;
|
2746
2756
|
padding: 8px; }
|
2747
2757
|
.table-drawer-content > :last-child {
|
2748
2758
|
margin-bottom: 0; }
|
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.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
@@ -283,14 +283,14 @@ files:
|
|
283
283
|
- lib/tungsten.rb
|
284
284
|
- lib/tungsten/helper.rb
|
285
285
|
- lib/tungsten/version.rb
|
286
|
-
- public/code-0.1.
|
287
|
-
- public/code-0.1.
|
288
|
-
- public/code-0.1.
|
289
|
-
- public/tungsten-0.1.
|
290
|
-
- public/tungsten-0.1.
|
291
|
-
- public/tungsten-0.1.
|
292
|
-
- public/tungsten-0.1.
|
293
|
-
- public/tungsten-0.1.
|
286
|
+
- public/code-0.1.37.js
|
287
|
+
- public/code-0.1.37.js.gz
|
288
|
+
- public/code-0.1.37.map.json
|
289
|
+
- public/tungsten-0.1.37.css
|
290
|
+
- public/tungsten-0.1.37.css.gz
|
291
|
+
- public/tungsten-0.1.37.js
|
292
|
+
- public/tungsten-0.1.37.js.gz
|
293
|
+
- public/tungsten-0.1.37.map.json
|
294
294
|
homepage:
|
295
295
|
licenses:
|
296
296
|
- MIT
|
Binary file
|