english_tea 1.17.0 → 1.18.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '05878ba863697c68320093bbbc9a195252279c2fa3f737ce48cb757039df8464'
|
4
|
+
data.tar.gz: b3777520128a1b69dd63bffb7a9444e34b61866db91e70329f76de9af9f38e26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a79a46a7aa101b27d873266dbb37339f4c0e6ff205eab34f981a3e4508a9ec982471a643387dc06637c8907e033acfce6e33a50b0de3726f6831b1100564ba5
|
7
|
+
data.tar.gz: 3bc1fbd49b2ddc9cd3fb601ca3926023b69dd56d8f16f68eb451a20a4f5b08c6f1dedbd7178bb4ac9cd4256e6b6ccbaf24590724290111120741321f867e1a8d
|
@@ -7,77 +7,31 @@
|
|
7
7
|
|
8
8
|
.field-range {
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
&.noUi-horizontal {
|
11
|
+
height: _rem($base-rhythm);
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
&::-webkit-slider-runnable-track {
|
17
|
-
background: map-get($colors, 3);
|
18
|
-
}
|
19
|
-
&::-ms-fill-lower {
|
20
|
-
background: map-get($colors, 4);
|
21
|
-
}
|
22
|
-
&::-ms-fill-upper {
|
23
|
-
background: map-get($colors, 3);
|
24
|
-
}
|
13
|
+
.noUi-handle {
|
14
|
+
width: _rem($base-rhythm * 2);
|
15
|
+
height: _rem($base-rhythm * 2);
|
25
16
|
}
|
17
|
+
}
|
26
18
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
&::-webkit-slider-thumb {
|
36
|
-
height: 12px;
|
37
|
-
width: 12px;
|
38
|
-
border-radius: 6px;
|
39
|
-
background: map-get($colors, 10);;
|
40
|
-
cursor: pointer;
|
41
|
-
-webkit-appearance: none;
|
42
|
-
margin-top: -4.5px;
|
43
|
-
}
|
44
|
-
|
45
|
-
&::-moz-range-track {
|
46
|
-
width: 100%;
|
47
|
-
height: 3px;
|
48
|
-
cursor: pointer;
|
49
|
-
background: map-get($colors, 3);
|
50
|
-
border-radius: 0px;
|
51
|
-
}
|
52
|
-
|
53
|
-
&::-moz-range-progress {
|
54
|
-
background: map-get($colors, 4);
|
55
|
-
}
|
19
|
+
.noUi-handle {
|
20
|
+
background: map-get($colors, 10);
|
21
|
+
border: none;
|
22
|
+
border-radius: _rem($base-rhythm);
|
23
|
+
box-shadow: none;
|
24
|
+
cursor: pointer;
|
25
|
+
outline: none;
|
56
26
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
border-radius: 6px;
|
61
|
-
background: #000000;
|
62
|
-
cursor: pointer;
|
63
|
-
}
|
27
|
+
&:before {
|
28
|
+
display: none
|
29
|
+
}
|
64
30
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
cursor: pointer;
|
69
|
-
background: transparent;
|
70
|
-
border-color: transparent;
|
71
|
-
color: transparent;
|
72
|
-
}
|
31
|
+
&:after {
|
32
|
+
display: none
|
33
|
+
}
|
73
34
|
|
74
|
-
&::-ms-thumb {
|
75
|
-
height: 12px;
|
76
|
-
width: 12px;
|
77
|
-
border-radius: 6px;
|
78
|
-
background: map-get($colors, 10);;
|
79
|
-
cursor: pointer;
|
80
|
-
height: 3px;
|
81
|
-
}
|
82
35
|
}
|
36
|
+
|
83
37
|
}
|
@@ -104,17 +104,19 @@
|
|
104
104
|
.select2-selection__clear,
|
105
105
|
.select2-selection__choice__remove
|
106
106
|
{
|
107
|
-
$_icon-size: map-get($icon-scale, base);
|
107
|
+
$_icon-size: map-get($icon-scale, base) / 1.5;
|
108
108
|
|
109
|
-
|
109
|
+
float: right;
|
110
|
+
background: transparent url('data:image/svg+xml,#{$icon-close-rev}') no-repeat center center;
|
110
111
|
background-size: _rem($_icon-size);
|
111
112
|
display: block;
|
112
113
|
@include flex-shrink(0 !important);
|
113
|
-
height:
|
114
|
-
|
114
|
+
height: _rem($_icon-size);
|
115
|
+
margin-left: _rem($base-rhythm);
|
115
116
|
text-indent: -999em; // ¯\_(ツ)_/¯
|
116
|
-
width:
|
117
|
+
width: _rem($_icon-size);
|
117
118
|
@include transition(opacity $transition-timing-border $transition-easing-border);
|
119
|
+
@include order(999);
|
118
120
|
|
119
121
|
&:active,
|
120
122
|
&:focus,
|
@@ -126,7 +128,12 @@
|
|
126
128
|
|
127
129
|
.select2-selection__choice
|
128
130
|
{
|
129
|
-
|
131
|
+
font-size: map-get(map-get($type-scale, 1), size);
|
132
|
+
margin-right: _rem($base-rhythm-half);
|
133
|
+
background-color: map-get($colors, 10);
|
134
|
+
color: map-get($colors, 1);
|
135
|
+
padding: _rem($base-rhythm / 3) _rem($base-rhythm / 1.8) _rem($base-rhythm / 3) _rem($base-rhythm);
|
136
|
+
border-radius: _rem($base-gutter);
|
130
137
|
}
|
131
138
|
|
132
139
|
// ---
|
@@ -419,6 +426,15 @@
|
|
419
426
|
right: _rem($base-rhythm * 2);
|
420
427
|
}
|
421
428
|
|
429
|
+
.choices__input {
|
430
|
+
background-color: transparent;
|
431
|
+
margin-bottom: 0;
|
432
|
+
@include _placeholder-prefix()
|
433
|
+
{
|
434
|
+
color: map-get($colors, 3);
|
435
|
+
}
|
436
|
+
}
|
437
|
+
|
422
438
|
.choices__inner {
|
423
439
|
border: 1px solid map-get($colors, 2);
|
424
440
|
}
|
@@ -438,6 +454,25 @@
|
|
438
454
|
padding: 0;
|
439
455
|
}
|
440
456
|
|
457
|
+
.choices__list--multiple .choices__item {
|
458
|
+
background-color: map-get($colors, 10);
|
459
|
+
border: none;
|
460
|
+
margin-bottom: 2px;
|
461
|
+
font-weight: normal;
|
462
|
+
}
|
463
|
+
|
464
|
+
.choices__list--multiple .choices__item.is-highlighted {
|
465
|
+
background-color: map-get($colors, 6);
|
466
|
+
border: inherit;
|
467
|
+
}
|
468
|
+
|
469
|
+
.choices[data-type*="select-multiple"] .choices__button,
|
470
|
+
.choices[data-type*="text"] .choices__button {
|
471
|
+
border: none;
|
472
|
+
margin-right: 0;
|
473
|
+
opacity: 1;
|
474
|
+
}
|
475
|
+
|
441
476
|
.is-open .choices__inner, .choices__list--dropdown {
|
442
477
|
border-radius: 0;
|
443
478
|
}
|
@@ -47,6 +47,10 @@ $icon-next-rev: '%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3
|
|
47
47
|
|
48
48
|
$icon-check-simple: '%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M9%2016.2L4.8%2012l-1.4%201.4L9%2019%2021%207l-1.4-1.4L9%2016.2z%22%20fill%3D%22%23ffffff%22/%3E%3C/svg%3E';
|
49
49
|
|
50
|
+
$icon-close: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3C%2Fsvg%3E';
|
51
|
+
|
52
|
+
$icon-close-rev: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%20fill%3D%22%23ffffff%22%20%2F%3E%3C%2Fsvg%3E';
|
53
|
+
|
50
54
|
$icon-delete: '%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M6%2019c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2V7H6v12zm2.46-7.12l1.41-1.41L12%2012.59l2.12-2.12%201.41%201.41L13.41%2014l2.12%202.12-1.41%201.41L12%2015.41l-2.12%202.12-1.41-1.41L10.59%2014l-2.13-2.12zM15.5%204l-1-1h-5l-1%201H5v2h14V4z%22/%3E%3C/svg%3E';
|
51
55
|
|
52
56
|
$icon-search: '%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M15.5%2014h-.79l-.28-.27C15.41%2012.59%2016%2011.11%2016%209.5%2016%205.91%2013.09%203%209.5%203S3%205.91%203%209.5%205.91%2016%209.5%2016c1.61%200%203.09-.59%204.23-1.57l.27.28v.79l5%204.99L20.49%2019l-4.99-5zm-6%200C7.01%2014%205%2011.99%205%209.5S7.01%205%209.5%205%2014%207.01%2014%209.5%2011.99%2014%209.5%2014z%22%20/%3E%3C/svg%3E';
|
data/lib/english_tea/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: english_tea
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Parr
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-05-
|
12
|
+
date: 2018-05-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|