titon-toolkit 1.3.1 → 1.3.2
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/changelog.md +9 -0
- data/readme.md +1 -1
- data/scss/toolkit/components/button.scss +1 -1
- data/scss/toolkit/components/modal.scss +7 -0
- data/scss/toolkit/layout/form.scss +4 -0
- data/version.md +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dbb1d48da8f0317038e027c31c9408adb76e47a
|
|
4
|
+
data.tar.gz: 6f5cc50f508fcd16899298189264b01d30328e21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 377990b3751c233e006b87300f7fffc7dc301a35853636ee15cd21febe0a6c881329632c027bfebf392a01f6f0c496f074494c11122bcd3c489bdfee1340017e
|
|
7
|
+
data.tar.gz: 683c2289a6c01c9875f553096e0eb2bb41ab5fd13f8f34d44d7a1135b8754464c10f8f2cffa36c97a990f4888d2c1d27059204b6d5a7b231ec51d5f8b29e4d7b
|
data/changelog.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Older versions can be found in the documentation changelogs.
|
|
4
4
|
|
|
5
|
+
## 1.3.2 ##
|
|
6
|
+
* Updated `clickout` events to trigger for `touchstart` events
|
|
7
|
+
* Button, Form
|
|
8
|
+
* Reset browser specific styles, specifically in iOS
|
|
9
|
+
* Modal
|
|
10
|
+
* Added mobile specific styles that span the width of the viewport
|
|
11
|
+
* TypeAhead
|
|
12
|
+
* Turned off `autocapitalize`, `autocorrect`, and `spellcheck` on the input field
|
|
13
|
+
|
|
5
14
|
## 1.3.1 ##
|
|
6
15
|
* Updated `event.target` to `event.currentTarget` where applicable
|
|
7
16
|
|
data/readme.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
\/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
# Toolkit v1.3.
|
|
9
|
+
# Toolkit v1.3.2 #
|
|
10
10
|
|
|
11
11
|
Titon Toolkit is a collection of very powerful user interface components and utility classes
|
|
12
12
|
for the responsive, mobile, and modern web. Each component represents encapsulated HTML, CSS,
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
border: 0;
|
|
12
12
|
margin: 0;
|
|
13
13
|
padding: 0;
|
|
14
|
+
border-radius: 0;
|
|
14
15
|
cursor: pointer;
|
|
15
16
|
text-align: center;
|
|
16
17
|
font-weight: normal;
|
|
@@ -25,7 +26,6 @@
|
|
|
25
26
|
@include is-large(true, true) { @include size-large; }
|
|
26
27
|
|
|
27
28
|
&.#{$shape-round-class} { border-radius: $round; }
|
|
28
|
-
&.#{$shape-square-class} { border-radius: 0; }
|
|
29
29
|
|
|
30
30
|
@include is-disabled {
|
|
31
31
|
cursor: not-allowed;
|
|
@@ -50,6 +50,13 @@
|
|
|
50
50
|
margin: $margin;
|
|
51
51
|
pointer-events: auto; // allow within modal
|
|
52
52
|
transform: translateX(-50%);
|
|
53
|
+
|
|
54
|
+
@include if-max($breakpoint-mobile-landscape) {
|
|
55
|
+
width: auto;
|
|
56
|
+
left: auto;
|
|
57
|
+
right: auto;
|
|
58
|
+
transform: translateX(0);
|
|
59
|
+
}
|
|
53
60
|
}
|
|
54
61
|
|
|
55
62
|
.#{$vendor-prefix}modal-inner {
|
|
@@ -29,6 +29,7 @@ select[size] { height: auto; }
|
|
|
29
29
|
// Override normalize
|
|
30
30
|
input[type="search"] {
|
|
31
31
|
box-sizing: border-box;
|
|
32
|
+
-webkit-appearance: none;
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
// Required values to match browser restrictions
|
|
@@ -47,6 +48,9 @@ label,
|
|
|
47
48
|
@include reset-inline-block;
|
|
48
49
|
line-height: normal;
|
|
49
50
|
border: 1px solid $gray-dark;
|
|
51
|
+
border-radius: 0;
|
|
52
|
+
box-shadow: none;
|
|
53
|
+
-webkit-appearance: none; // Remove inner shadow on iOS
|
|
50
54
|
@include size-medium;
|
|
51
55
|
|
|
52
56
|
@include is-small(true, true) { @include size-small; }
|
data/version.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.2
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: titon-toolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Project Titon
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-04-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: sass
|