titon-toolkit 2.1.2 → 2.1.3
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 +7 -0
- data/readme.md +1 -1
- data/scss/toolkit/base.scss +28 -9
- data/scss/toolkit/components/button.scss +0 -2
- data/scss/toolkit/components/form.scss +0 -1
- 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: 014b7119768d95e93f3344055485cb0636bd2109
|
4
|
+
data.tar.gz: a2f7202e70fc1f49002b336cc3f32acbf10aa7da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e75a07607962b27f70476ea88da9d238c4accd677740aae6cc878d62e749916b6b18cf801203bc3e8c8c78fa099594c727e4e98e4f787b4ecbe9c0cc6e8bd09
|
7
|
+
data.tar.gz: 113282ce6ecaf96d6d6b302544a4baa98319a25022eb16b927927607941cc919f56ce9f704ede6344eb3a3b1867b8c822a839f8c68898101eceaa20af36b2e55
|
data/changelog.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
Older versions can be found in the documentation changelogs.
|
4
4
|
|
5
|
+
## 2.1.3 ##
|
6
|
+
* Added responsive and fluid media support with the `.fluid-media` class
|
7
|
+
* Removed `outline: none` styles to encourage browser default focus outlines
|
8
|
+
* Components
|
9
|
+
* Flyout, Popover, Tooltip, TypeAhead
|
10
|
+
* Will now automatically hide when the window is resized
|
11
|
+
|
5
12
|
## 2.1.2 ##
|
6
13
|
* Updated NPM packages and improved Gulp workflow
|
7
14
|
* Components
|
data/readme.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
\/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
|
7
7
|
```
|
8
8
|
|
9
|
-
# Titon Toolkit v2.1.
|
9
|
+
# Titon Toolkit v2.1.3 #
|
10
10
|
[](http://titon.io)
|
11
11
|
[](https://travis-ci.org/titon/toolkit)
|
12
12
|
[](https://npmjs.com/package/titon-toolkit)
|
data/scss/toolkit/base.scss
CHANGED
@@ -32,13 +32,7 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
|
|
32
32
|
.hidden { display: none; }
|
33
33
|
.no-transition { transition: none !important; }
|
34
34
|
|
35
|
-
|
36
|
-
display: block;
|
37
|
-
width: 100%;
|
38
|
-
height: auto;
|
39
|
-
max-width: 100%;
|
40
|
-
}
|
41
|
-
|
35
|
+
// Accessibility
|
42
36
|
.sr-only {
|
43
37
|
position: absolute;
|
44
38
|
width: 1px;
|
@@ -79,7 +73,7 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
|
|
79
73
|
|
80
74
|
.clear-fix { @include clear-fix; }
|
81
75
|
|
82
|
-
//
|
76
|
+
// States
|
83
77
|
#{$shape-round-class} { border-radius: $round; }
|
84
78
|
.is-draggable { cursor: move; }
|
85
79
|
.is-dragging { cursor: grabbing; }
|
@@ -103,7 +97,7 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
|
|
103
97
|
.caret-left { border-right-color: inherit; }
|
104
98
|
.caret-right { border-left-color: inherit; }
|
105
99
|
|
106
|
-
|
100
|
+
// Characters
|
107
101
|
.x {
|
108
102
|
@include reset-inline-block;
|
109
103
|
font: bold 1.5rem/1rem Arial, sans-serif;
|
@@ -157,3 +151,28 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
|
|
157
151
|
@for $i from 1 through 12 {
|
158
152
|
.span-#{$i} { width: grid-span($i, 12); }
|
159
153
|
}
|
154
|
+
|
155
|
+
// Fluid
|
156
|
+
.fluid {
|
157
|
+
display: block;
|
158
|
+
max-width: 100%;
|
159
|
+
width: 100%;
|
160
|
+
height: auto;
|
161
|
+
}
|
162
|
+
|
163
|
+
.fluid-media {
|
164
|
+
@extend .fluid;
|
165
|
+
position: relative;
|
166
|
+
padding-bottom: 56.25%; /* 16:9 */
|
167
|
+
height: 0;
|
168
|
+
|
169
|
+
iframe,
|
170
|
+
object,
|
171
|
+
embed {
|
172
|
+
position: absolute;
|
173
|
+
top: 0;
|
174
|
+
left: 0;
|
175
|
+
width: 100%;
|
176
|
+
height: 100%;
|
177
|
+
}
|
178
|
+
}
|
data/version.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.3
|
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: 2.1.
|
4
|
+
version: 2.1.3
|
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: 2015-
|
12
|
+
date: 2015-05-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|