titon-toolkit 1.5.2 → 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5a69ab343a2ef9d0c1a46f9dab8f0baf8448cb3
4
- data.tar.gz: bbb1ce4f6819d1b09462aebc6e68f2f79ab82747
3
+ metadata.gz: ce251c935a16fcf1636fad480fc331f4602636d8
4
+ data.tar.gz: 46f34924e0576107f6d3eca626ded9522cc0efd4
5
5
  SHA512:
6
- metadata.gz: a35798f933f84d245c16118b14c797ed5c3b8208f358ac5b18ca3fc5c1deaa392709178a9caeeee86df90792423fc81ae8db0fafb130186b6388f66cf356242e
7
- data.tar.gz: d69251b58b30e3c3ae31e297462eedbbe5798dbe672872c82a62d14259d33a97ab2d1f78bc59153a2e62d62d80f64b9d75ccf75a0554e05d06062f6ffabc02ca
6
+ metadata.gz: d9ccafe1ee64fceea710c9155acb8eb628ed7e1c5457dc994675ec9db406a47debc287aea3a4550ffdcb7de5732bbe1f6a392d1e7e7dab9a610a935cfa19a645
7
+ data.tar.gz: 0fe4fb2d1994509915e967a3093ecde1bc839adae90efecd53c18370fb62f5e18e6e9ade45f095b56aadaab64188c3ff34600b97221c5d55a7fed245ff6cbb94
data/changelog.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 1.5.3 ##
6
+ * Updated the competitor comparison
7
+ * Carousel
8
+ * Fixed an issue where direct descendants were not being used and `ul li`s were conflicting with nested lists
9
+
5
10
  ## 1.5.2 ##
6
11
  * Matrix
7
12
  * Added defer rendering support to items either appended or prepended
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Toolkit v1.5.2 #
9
+ # Toolkit v1.5.3 #
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,
data/roadmap.md CHANGED
@@ -19,6 +19,7 @@ All releases will contain bug fixing and polishing for current features.
19
19
  * Rename Tabs to Tab.
20
20
  * Remove cookie dependency.
21
21
  * Take Google fundamentals into consideration - https://developers.google.com/web/fundamentals/
22
+ * Gracefully handle situations where components are nested within the same component. How to handle event delegation?
22
23
 
23
24
  ### 3.0.0 ###
24
25
  * Remove jQuery dependency and go straight vanilla?
@@ -23,7 +23,7 @@
23
23
  overflow: hidden;
24
24
  position: relative;
25
25
 
26
- ul {
26
+ > ul {
27
27
  @include reset-list;
28
28
  position: absolute;
29
29
  top: 0;
@@ -73,7 +73,7 @@
73
73
  //-------------------- Animations --------------------//
74
74
 
75
75
  .#{$vendor-prefix}carousel.slide {
76
- .#{$vendor-prefix}carousel-items ul {
76
+ .#{$vendor-prefix}carousel-items > ul {
77
77
  > li {
78
78
  float: left;
79
79
  }
@@ -83,7 +83,7 @@
83
83
  }
84
84
 
85
85
  .#{$vendor-prefix}carousel.fade {
86
- .#{$vendor-prefix}carousel-items ul {
86
+ .#{$vendor-prefix}carousel-items > ul {
87
87
  position: relative;
88
88
 
89
89
  > li {
data/version.md CHANGED
@@ -1 +1 @@
1
- 1.5.2
1
+ 1.5.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: 1.5.2
4
+ version: 1.5.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: 2014-08-25 00:00:00.000000000 Z
12
+ date: 2014-09-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -46,8 +46,13 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - changelog.md
49
50
  - lib/titon-toolkit.rb
51
+ - license.md
52
+ - readme.md
53
+ - roadmap.md
50
54
  - scss/normalize.scss
55
+ - scss/toolkit.scss
51
56
  - scss/toolkit/_common.scss
52
57
  - scss/toolkit/components/accordion.scss
53
58
  - scss/toolkit/components/blackout.scss
@@ -99,11 +104,6 @@ files:
99
104
  - scss/toolkit/mixins/_state.scss
100
105
  - scss/toolkit/mixins/_unit.scss
101
106
  - scss/toolkit/themes/demo.scss
102
- - scss/toolkit.scss
103
- - changelog.md
104
- - license.md
105
- - readme.md
106
- - roadmap.md
107
107
  - version.md
108
108
  homepage: http://titon.io
109
109
  licenses:
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  version: '0'
126
126
  requirements: []
127
127
  rubyforge_project:
128
- rubygems_version: 2.1.11
128
+ rubygems_version: 2.4.1
129
129
  signing_key:
130
130
  specification_version: 4
131
131
  summary: Provides Titon Toolkit Sass files for use in projects.