titon-toolkit 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 193ea0548bb212597019412a810e1a5dd72f4c4e
4
- data.tar.gz: f717e67f29fbf3dab96391bb0f887bae217fed8d
3
+ metadata.gz: 465c8929ea57b9d8d367f8fdec89404c25417434
4
+ data.tar.gz: e7bef8a168aaa03e9488d12913652db9e1ac0930
5
5
  SHA512:
6
- metadata.gz: 4d62d194d4881250449b8301bfe89581ed389b297e51cd833fe170922382695675dd52c999eb05d21ef16c2bbd3cf985d920f2d293c9e4fe2c4c8ac0cdae7830
7
- data.tar.gz: f5bef3161ce546fcb41007fde80738381a0beb47568dffb9286c6d432df7fd22f2ab8241d5b3e90ab9d2498304196ff30a689760a2f31b34126aac8497ed6224
6
+ metadata.gz: 3df1b925b85d5e6aecafe6d3796b7d034b612026a5607ddca771ae3db01f33ecb8fc713ecbfd5482ff997226556d3c39d664df441dd9952473bfa55f89fdb4c1
7
+ data.tar.gz: 734ef63a3a2a1b9b44964b8b1d362279a08812844d3f477a89b99a99dc7c4817757b3d670a81055afec4f6e38803758fccf73fc56a97419b0b851a75d64a8590
data/changelog.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog #
2
2
 
3
+ ### 1.0.5 ###
4
+ * Added `composer.json` allowing the project to be installed via Composer
5
+ * Fixed a prototype inheritance bug that caused Popovers to trigger Tooltips that capture all click events
6
+ * Updated `hover` modes to default to click on touch devices; will pass-through to anchor link on second click
7
+
3
8
  ### 1.0.4 ###
4
9
  * Added `.vertical-center` class
5
10
  * Added `!important` to Responsive display properties
data/readme.md CHANGED
@@ -6,111 +6,19 @@
6
6
  \/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Toolkit v1.0.4 #
9
+ # Toolkit v1.0.5 #
10
10
  Titon Toolkit is a collection of very powerful user interface components and utility classes.
11
- Each component represents encapsulated HTML, CSS and JS functionality for role specific page elements.
11
+ Each component represents encapsulated HTML, CSS, and JavaScript functionality for role specific page elements.
12
12
 
13
13
  Titon makes use of the latest and greatest technology. This includes CSS3 for animation (fade, slide, etc),
14
14
  Sass for CSS pre-processing, and Grunt for task and package management.
15
15
 
16
- #### Why Toolkit? ####
17
- Toolkit was built from the ground up with the following concepts and philosophies in mind.
18
- If any of these concepts align with your thought process or your projects requirements, than Toolkit is right for you.
16
+ * [Official Website](http://titon.io/toolkit)
17
+ * [Features](http://titon.io/toolkit#features)
18
+ * [Components](http://titon.io/toolkit#components)
19
19
 
20
- * Mobile first design philosophy
21
- * Progressive enhancement and graceful degradation
22
- * Cascading CSS inheritance
23
- * Configuration over convention
24
- * Responsive and fluid as first class
25
- * Relative scaling with `em` and `rem`
26
- * Animations and transitions purely with CSS
27
-
28
- #### Demo ####
29
- An interactive demo can be found here: http://titon.io/toolkit
30
-
31
- #### Requirements ####
32
- * **HTML5**
33
- * **CSS3**
34
- * **jQuery**
35
- * (or)
36
- * **MooTools**
37
- * More/Class.Binds
38
- * More/Elements.From
39
- * More/Element.Shortcuts
40
- * More/Element.Measure
41
- * More/Drag (optional for Modal)
42
- * More/Element.Event.Pseudos (for LazyLoad, Pin, Stalker, Tooltip)
43
-
44
- #### Browser Support ####
45
- * Chrome 11+
46
- * Firefox 4+
47
- * Internet Explorer 10+
48
- * Opera 11+
49
- * Safari 5+
50
-
51
- **What about IE8 and 9?**
52
-
53
- IE9 does not support CSS3 transitions; all animations will fallback to a simple show/hide.
54
-
55
- IE8 does not support CSS3 transitions, rem/em scaling, media queries and specific HTML 5 elements.
56
- To support media queries and responsiveness, use [respond.js](https://github.com/scottjehl/Respond).
57
- To support HTML 5 features, use [modernizr](http://modernizr.com).
58
-
59
- Furthermore, the following Toolkit components do not work in IE8: Input, Matrix.
60
-
61
- ## Javascript Components ##
62
- #### Modules ####
63
- * `Accordion` - Provides collapsible support to a list of sections
64
- * `Blackout` - Displays a transparent black element over the document
65
- * `Carousel` - Provides a 16:9 responsive carousel with panels that slide or fade in
66
- * `Dropdown` - Allows for toggleable dropdown menus with support for nested menus
67
- * `Flyout` - Displays nested flyout menus that appear below an element that activates it
68
- * `Input` - Replaces select boxes, checkboxes and radios with custom basic functionality
69
- * `LazyLoad` - Provides an easy way to lazy-load images (inline and background) while scrolling
70
- * `Matrix` - Reorganizes elements into a modular cascading grid (masonry style)
71
- * `Modal` - Displays dynamic modals that will display above the content
72
- * `Pin` - Pin an element in a container that stays within the viewport while scrolling
73
- * `Popover` - Displays dynamic notification elements over an element
74
- * `Showcase` - Provides a lightbox style image gallery
75
- * `Stalker` - Monitors the scroll of an element and notifies a target when a marker is reached
76
- * `Tabs` - Provides tabbed support to an element containing navigation tabs and sections
77
- * `Tooltip` - Displays dynamic tooltips over an element or the mouse cursor
78
- * `TypeAhead` - Displays a list of possible options below an input while typing
79
-
80
- #### Extensions ####
81
- Titon also provides classes that build upon MooTools itself. These classes do not require the Titon library.
82
-
83
- * `Timers` - Provides timer and interval management within the class layer
84
- * `Cache` - Provides local and session storage within the class layer
85
-
86
- ## CSS Components ##
87
- #### Layout ####
88
- * `Base` - Provides utility and helper classes
89
- * `Code` - Styles for code blocks
90
- * `Form` - Allows for vertical, horizontal and inline forms; also provides default styles
91
- * `Responsive` - Responsive classes for mobile, tablet and desktop resolutions
92
- * `Typography` - Resets and default styles for typography
93
-
94
- #### UI ####
95
- * `Breadcrumb` - Styles for bread crumb navigation trails
96
- * `Button` - Styles for generic cross-browser compatible buttons
97
- * `ButtonGroup` - Allows for the grouping of multiple buttons into 1 visual styled button
98
- * `Grid` - Implements a fluid 12 column grid system with responsive support for all devices
99
- * `Icon` - Allows for inline image sprites to be used at 12, 16, 24, 32, and 64 sizes
100
- * `InputGroup` - Allows for the grouping of inputs with buttons and static blocks
101
- * `Label` - Styles for inline tag labels
102
- * `Notice` - Styles for block level notification messages
103
- * `Pagination` - Styles for pagination lists
104
- * `Progress` - Basic styles for progress bars
105
- * `Table` - Styles for tables
106
-
107
- #### Themes ####
108
- * `Titon` - Titon specific theme used for examples
109
-
110
- ## Authors ##
111
- * [Miles Johnson](https://github.com/milesj)
112
-
113
- ## Known Issues ##
114
- * Zepto is currently not supported (too different of an API)
115
- * Slide in modal animations do not work correctly in Chrome/IE
116
- * Flip modal animations do not work in Opera
20
+ ## Learn More ##
21
+ * [Getting Started](https://github.com/titon/toolkit/blob/master/docs/pages/en/setup/getting-started.md)
22
+ * [Downloading & Installing](https://github.com/titon/toolkit/blob/master/docs/pages/en/setup/installing.md)
23
+ * [Custom Builds](https://github.com/titon/toolkit/blob/master/docs/pages/en/setup/custom-builds.md)
24
+ * [Browser Compatibility](https://github.com/titon/toolkit/blob/master/docs/pages/en/support/compatibility.md)
@@ -17,7 +17,7 @@ code,
17
17
  var,
18
18
  kbd {
19
19
  display: inline-block;
20
- background: $gray-dark;
20
+ background: $gray;
21
21
  border-radius: $round;
22
22
  padding: .2em .4em;
23
23
  }
@@ -26,8 +26,8 @@ a {
26
26
 
27
27
  blockquote cite { color: $default; }
28
28
 
29
- code { background: $info-light; color: $info-dark; }
30
- var { background: $error-light; color: $error-dark; }
29
+ //code { background: $info-light; color: $info-dark; }
30
+ //var { background: $error-light; color: $error-dark; }
31
31
  mark { background: lighten($warning-light, 25%); }
32
32
 
33
33
  //-------------------- Accordion --------------------//
data/version.md CHANGED
@@ -1 +1 @@
1
- 1.0.4
1
+ 1.0.5
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.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-30 00:00:00.000000000 Z
12
+ date: 2014-01-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass