titon-toolkit 1.0.2 → 1.0.4

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: 89f46ffb01286e3d8c0d4f4289488dfc6317406f
4
- data.tar.gz: 5db5be3f888f3b9d457771188719a1e33b0913fe
3
+ metadata.gz: 193ea0548bb212597019412a810e1a5dd72f4c4e
4
+ data.tar.gz: f717e67f29fbf3dab96391bb0f887bae217fed8d
5
5
  SHA512:
6
- metadata.gz: 66fd73f1e551df75751b34e86e0fd595eacca68bca951c0632baa49b61a4ae0b20723b1d2d5439727c2a16870741b456ff0246c9e06087f94c7c283cdaa7515b
7
- data.tar.gz: 5419683e1a09e80ff936a504f9cd37d88ceb44ac1cb6cefb7cc9c386c9e0ed3120c18ded2ffa610021c2c07b5c116aba94bf5ddeabcedc65c531412afe95ed28
6
+ metadata.gz: 4d62d194d4881250449b8301bfe89581ed389b297e51cd833fe170922382695675dd52c999eb05d21ef16c2bbd3cf985d920f2d293c9e4fe2c4c8ac0cdae7830
7
+ data.tar.gz: f5bef3161ce546fcb41007fde80738381a0beb47568dffb9286c6d432df7fd22f2ab8241d5b3e90ab9d2498304196ff30a689760a2f31b34126aac8497ed6224
data/changelog.md ADDED
@@ -0,0 +1,28 @@
1
+ # Changelog #
2
+
3
+ ### 1.0.4 ###
4
+ * Added `.vertical-center` class
5
+ * Added `!important` to Responsive display properties
6
+ * Changed `.arrow` classes to use the `bigtriangleup` entity
7
+ * Removed Responsive conditionals to allow all classes
8
+ * Updated `pre code` to display block
9
+
10
+ ### 1.0.3 ###
11
+ * Changed default Tooltip position to `topCenter`
12
+ * Removed `stopPropagation()` calls
13
+
14
+ ### 1.0.2 ###
15
+ * Changed bower package name
16
+ * Fixed Modal not loading the correct content
17
+ * Updated MooTools to not use `$` functions
18
+
19
+ ### 1.0.1 ###
20
+ * Added variables for prefixing classes with vendor names and state prefixes
21
+ * Added missing Input component to manifest
22
+ * Fixed incorrect methods being called in jQuery Modal
23
+ * Fixed a Modal bug where switching between AJAX and DOM loading caused issues
24
+ * Updated Matrix deferred loading to render immediately if no images are found
25
+ * Updated Modal target reading by swapping href to last
26
+
27
+ ### 1.0.0 ###
28
+ * Released! Aww yiisss
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Toolkit v1.0.2 #
9
+ # Toolkit v1.0.4 #
10
10
  Titon Toolkit is a collection of very powerful user interface components and utility classes.
11
11
  Each component represents encapsulated HTML, CSS and JS functionality for role specific page elements.
12
12
 
data/roadmap.md CHANGED
@@ -2,20 +2,20 @@
2
2
 
3
3
  All releases will contain bug fixing and polishing for current features.
4
4
 
5
- ### 1.1.0 - December 2013 ###
5
+ ### 1.1.0 ###
6
6
  * Marquee - A component that displays multiple slides at once and allows for cycling through a variable amount. A sister component to the carousel.
7
7
  * Mask - A component that will mask a target element with a blackout.
8
8
  * Improvements for Input by adding custom select dropdowns and multi-select support
9
9
 
10
- ### 1.2.0 - January 2014 ###
10
+ ### 1.2.0 ###
11
11
  * Step - A component that highlights a step in a series of consecutive steps (represented by an arrow based navigation).
12
12
  * Dialog - A component that prompts the user for an action. Sister to the modal component.
13
13
 
14
- ### 1.3.0 - February 2014 ###
14
+ ### 1.3.0 ###
15
15
  * Guide - A component that displays introduction guides (popovers) in a sequential order. Useful for show casing new features and functionality.
16
16
  * Divider - A component for dividing content horizontally or vertically.
17
17
 
18
- ### 2.0.0 - TBD ###
18
+ ### 2.0.0 ###
19
19
  * Remove the MooTools port.
20
20
  * Drop IE 8/9 support and upgrade to jQuery 2.
21
21
  * Replace JS option callbacks with namespaced element events.
@@ -43,6 +43,13 @@
43
43
  padding: 0;
44
44
  }
45
45
 
46
+ .vertical-center {
47
+ position: absolute;
48
+ left: 50%;
49
+ top: 50%;
50
+ @include transform(translate(-50%, -50%));
51
+ }
52
+
46
53
  // Styles
47
54
  .round { border-radius: $round; }
48
55
  .#{$state-is-prefix}draggable { cursor: move; }
@@ -86,21 +93,12 @@
86
93
  .arrow-right:before {
87
94
  display: inline-block;
88
95
  position: relative;
96
+ content: "\025B3"; /* bigtriangleup */
89
97
  }
90
98
 
91
- .arrow-up:before,
92
- .arrow-left:before { content: "\000AB"; /* laquo */ }
93
- .arrow-down:before,
94
- .arrow-right:before { content: "\000BB"; /* raquo */ }
95
-
96
- .arrow-left:before,
97
- .arrow-right:before { top: -2px; }
98
-
99
- .arrow-up:before,
100
- .arrow-down:before {
101
- right: -2px;
102
- @include transform(rotate(90deg));
103
- }
99
+ .arrow-right:before { @include transform(rotate(90deg)); }
100
+ .arrow-left:before { @include transform(rotate(-90deg)); }
101
+ .arrow-down:before { @include transform(rotate(180deg)); }
104
102
 
105
103
  // Bullets
106
104
  .bullets {
@@ -42,6 +42,7 @@ pre {
42
42
  white-space: pre-wrap;
43
43
  background: transparent;
44
44
  border: none;
45
+ display: block;
45
46
  }
46
47
 
47
48
  &.#{$state-is-prefix}scrollable {
@@ -13,78 +13,76 @@ img, video, canvas {
13
13
  }
14
14
 
15
15
  .show-retina,
16
- .show-print { display: none; }
16
+ .show-print { display: none !important; }
17
17
 
18
- @if $responsive-size == "device" or $responsive-size == "both" {
19
- // Desktop states
20
- @include in-desktop {
21
- .show-tablet,
22
- .show-mobile,
23
- .hide-desktop { display: none; }
24
- }
18
+ // Desktop states
19
+ @include in-desktop {
20
+ .show-tablet,
21
+ .show-mobile,
22
+ .hide-desktop { display: none !important; }
23
+ }
25
24
 
26
- // Tablet states
27
- @include in-tablet {
28
- .show-desktop,
29
- .show-mobile,
30
- .hide-tablet { display: none; }
31
- }
25
+ // Tablet states
26
+ @include in-tablet {
27
+ .show-desktop,
28
+ .show-mobile,
29
+ .hide-tablet { display: none !important; }
30
+ }
32
31
 
33
- // Mobile states
34
- @include in-mobile {
35
- .show-desktop,
36
- .show-tablet,
37
- .hide-mobile { display: none; }
38
- }
32
+ // Mobile states
33
+ @include in-mobile {
34
+ .show-desktop,
35
+ .show-tablet,
36
+ .hide-mobile { display: none !important; }
39
37
  }
40
38
 
41
- @if $responsive-size == "size" or $responsive-size == "both" {
42
- // Large states
43
- @include in-large {
44
- .show-medium,
45
- .show-small,
46
- .hide-large { display: none; }
47
- }
39
+ // Large states
40
+ @include in-large {
41
+ .show-medium,
42
+ .show-small,
43
+ .hide-large { display: none !important; }
44
+ }
48
45
 
49
- // Medium states
50
- @include in-medium {
51
- .show-large,
52
- .show-small,
53
- .hide-medium { display: none; }
54
- }
46
+ // Medium states
47
+ @include in-medium {
48
+ .show-large,
49
+ .show-small,
50
+ .hide-medium { display: none !important; }
51
+ }
55
52
 
56
- // Small states
57
- @include in-small {
58
- .show-large,
59
- .show-medium,
60
- .hide-small { display: none; }
61
- }
53
+ // Small states
54
+ @include in-small {
55
+ .show-large,
56
+ .show-medium,
57
+ .hide-small { display: none !important; }
62
58
  }
63
59
 
64
60
  // Orientation states
65
61
  @include if-portrait {
66
62
  .show-landscape,
67
- .hide-portrait { display: none; }
63
+ .hide-portrait { display: none !important; }
68
64
  }
69
65
 
70
66
  @include if-landscape {
71
67
  .show-portrait,
72
- .hide-landscape { display: none; }
68
+ .hide-landscape { display: none !important; }
73
69
  }
74
70
 
75
71
  // Type states
76
72
  @include if-retina {
77
- .hide-retina { display: none; }
78
- .show-retina { display: block; }
79
- tr.show-retina { display: table-row; }
73
+ .hide-retina { display: none !important; }
74
+ .show-retina { display: block !important; }
75
+ table.show-retina { display: table !important; }
76
+ tr.show-retina { display: table-row !important; }
80
77
  td.show-retina,
81
- th.show-retina { display: table-cell; }
78
+ th.show-retina { display: table-cell !important; }
82
79
  }
83
80
 
84
81
  @media print {
85
- .hide-print { display: none; }
86
- .show-print { display: block; }
87
- tr.show-print { display: table-row; }
82
+ .hide-print { display: none !important; }
83
+ .show-print { display: block !important; }
84
+ table.show-print { display: table !important; }
85
+ tr.show-print { display: table-row !important; }
88
86
  td.show-print,
89
- th.show-print { display: table-cell; }
87
+ th.show-print { display: table-cell !important; }
90
88
  }
@@ -6,7 +6,10 @@
6
6
 
7
7
  @import "../common";
8
8
 
9
- html { font-size: $base-size; line-height: $base-line-height; }
9
+ html {
10
+ font-size: $base-size;
11
+ line-height: $base-line-height;
12
+ }
10
13
 
11
14
  h1 { font-size: $h1-size; }
12
15
  h2 { font-size: $h2-size; }
data/version.md CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.4
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.2
4
+ version: 1.0.4
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-18 00:00:00.000000000 Z
12
+ date: 2013-12-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -92,6 +92,7 @@ files:
92
92
  - scss/toolkit/mixins/_unit.scss
93
93
  - scss/toolkit/themes/titon.scss
94
94
  - scss/toolkit.scss
95
+ - changelog.md
95
96
  - license.md
96
97
  - readme.md
97
98
  - roadmap.md