titon-toolkit 1.0.2 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/changelog.md +28 -0
- data/readme.md +1 -1
- data/roadmap.md +4 -4
- data/scss/toolkit/layout/base.scss +11 -13
- data/scss/toolkit/layout/code.scss +1 -0
- data/scss/toolkit/layout/responsive.scss +47 -49
- data/scss/toolkit/layout/typography.scss +4 -1
- data/version.md +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 193ea0548bb212597019412a810e1a5dd72f4c4e
|
4
|
+
data.tar.gz: f717e67f29fbf3dab96391bb0f887bae217fed8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
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
|
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
|
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
|
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-
|
92
|
-
.arrow-left:before {
|
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 {
|
@@ -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
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
}
|
18
|
+
// Desktop states
|
19
|
+
@include in-desktop {
|
20
|
+
.show-tablet,
|
21
|
+
.show-mobile,
|
22
|
+
.hide-desktop { display: none !important; }
|
23
|
+
}
|
25
24
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
25
|
+
// Tablet states
|
26
|
+
@include in-tablet {
|
27
|
+
.show-desktop,
|
28
|
+
.show-mobile,
|
29
|
+
.hide-tablet { display: none !important; }
|
30
|
+
}
|
32
31
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
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
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
}
|
39
|
+
// Large states
|
40
|
+
@include in-large {
|
41
|
+
.show-medium,
|
42
|
+
.show-small,
|
43
|
+
.hide-large { display: none !important; }
|
44
|
+
}
|
48
45
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
// Medium states
|
47
|
+
@include in-medium {
|
48
|
+
.show-large,
|
49
|
+
.show-small,
|
50
|
+
.hide-medium { display: none !important; }
|
51
|
+
}
|
55
52
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
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
|
-
|
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
|
-
|
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
|
}
|
data/version.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
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.
|
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-
|
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
|