kentucky 1.1.0 → 1.2.0

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: 3590765d3c7c74b8fb7d2b2065d73a7b58c531bc
4
- data.tar.gz: 0ff0c3dc8f6e47240511498ffb7ee468fdb915f6
3
+ metadata.gz: 94d69004bd9499770ed4c41b8a6e41951519d1ae
4
+ data.tar.gz: 0387f591f099c5cb52557a5b61954c7e19b3e0f6
5
5
  SHA512:
6
- metadata.gz: 13c50615879c704998211742f8e3fd3ea05dee422c28fa99e96aaf0660281dc8af017117434785c2937f7def3fafac210fc8c6da95e3a8b34a57c8ae8bf1b378
7
- data.tar.gz: 10aecf47faac94fc70bcebd7afcfe89b27eb8920acdb3c8fe8d741d3dd22797c5715dc8c090dd4cbde19409901c50ee6465cd5544c9982930eb714b9515bbc05
6
+ metadata.gz: 63d8bcbfa51ab62d0ac69dba79f693ac6c042d1c55179c597395cdc251b6c3d46ef2a5c9339c01f1736d364b3b31f61ad06472a1da1c105a993b34fde4357594
7
+ data.tar.gz: 9f8e67fb1f0e1ce831c9050a2010714174c17eab7c97251d35501283d20bcb3ec304068782cd0652efa233ee8e08a89907a4eea7d13d2a95998b6d42779a8539
data/.gitignore CHANGED
@@ -8,3 +8,5 @@ tags
8
8
  app/assets/stylesheets/kentucky/config.codekit
9
9
 
10
10
  /app/assets/config.codekit
11
+
12
+ /app/assets/stylesheets/kentucky/.DS_Store
@@ -1,4 +1,16 @@
1
- # 1.0.5
1
+ # 1.2.0
2
+
3
+ ### Revision
4
+
5
+ * Moved forms, typography, and normalize outside of base folder to better signify that users can and should use these to edit base styles, instead of creating files that do essentially the same things
6
+ * Changed link hover variable to be more BEM friendly
7
+
8
+ ### Removed
9
+
10
+ * Removed tint-shade, alignment, capslock and show-hide as they weren't being used and/or are built into SASS in some way
11
+
12
+ ---
13
+ # 1.1.0
2
14
 
3
15
  ### Feature
4
16
 
@@ -11,7 +11,6 @@
11
11
  // Functions
12
12
  @import "functions/gradient-functions";
13
13
  @import "functions/remify";
14
- @import "functions/tint-shade";
15
14
  @import "functions/strip-units";
16
15
 
17
16
  // Mixins
@@ -27,12 +26,9 @@
27
26
  @import "helpers/truncate";
28
27
 
29
28
  // Extends
30
- @import "helpers/alignment";
31
29
  @import "helpers/breadcrumbs";
32
- @import "helpers/capslock";
33
30
  @import "helpers/go";
34
31
  @import "helpers/mute";
35
- @import "helpers/show-hide";
36
32
 
37
33
  // Addons
38
34
  @import "helpers/anti-aliased";
@@ -55,12 +51,6 @@
55
51
  // Base
56
52
  // ------------------------------------------------------------------- //
57
53
 
58
- @import "base/normalize";
59
- @import "base/forms";
60
- @import "base/typography";
61
-
62
- // ------------------------------------------------------------------- //
63
- // Debug (If Required)
64
- // ------------------------------------------------------------------- //
65
-
66
- // @import "debug";
54
+ @import "normalize";
55
+ @import "forms";
56
+ @import "typography";
@@ -61,7 +61,7 @@ $brand-color: #477DCA; // Blue
61
61
 
62
62
  // Link Colors
63
63
  $base-link-color: $brand-color;
64
- $hover-link-color: lighten($brand-color, 10%);
64
+ $base-link-color--hover: lighten($brand-color, 10%);
65
65
 
66
66
 
67
67
  // ------------------------------------------------------------------- //
@@ -113,11 +113,10 @@ h6,
113
113
  a{
114
114
  color: $base-link-color;
115
115
  text-decoration: none;
116
- @include transition(color .3s linear);
117
116
 
118
117
  &:hover,
119
118
  &:active,
120
119
  &:focus{
121
- color: $hover-link-color;
120
+ color: $base-link-color--hover;
122
121
  }
123
122
  }
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kentucky
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Clemmer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-05-27 00:00:00.000000000 Z
13
+ date: 2014-06-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -83,22 +83,18 @@ files:
83
83
  - Gemfile.lock
84
84
  - LICENSE
85
85
  - Rakefile
86
- - app/assets/stylesheets/kentucky/_debug.scss
86
+ - app/assets/stylesheets/kentucky/_forms.scss
87
87
  - app/assets/stylesheets/kentucky/_kentucky.scss
88
+ - app/assets/stylesheets/kentucky/_normalize.scss
88
89
  - app/assets/stylesheets/kentucky/_project-settings.scss
89
- - app/assets/stylesheets/kentucky/base/_forms.scss
90
- - app/assets/stylesheets/kentucky/base/_normalize.scss
91
- - app/assets/stylesheets/kentucky/base/_typography.scss
90
+ - app/assets/stylesheets/kentucky/_typography.scss
92
91
  - app/assets/stylesheets/kentucky/functions/_gradient-functions.scss
93
92
  - app/assets/stylesheets/kentucky/functions/_remify.scss
94
93
  - app/assets/stylesheets/kentucky/functions/_strip-units.scss
95
- - app/assets/stylesheets/kentucky/functions/_tint-shade.scss
96
94
  - app/assets/stylesheets/kentucky/grid/_grid.scss
97
- - app/assets/stylesheets/kentucky/helpers/_alignment.scss
98
95
  - app/assets/stylesheets/kentucky/helpers/_anti-aliased.scss
99
96
  - app/assets/stylesheets/kentucky/helpers/_border.scss
100
97
  - app/assets/stylesheets/kentucky/helpers/_breadcrumbs.scss
101
- - app/assets/stylesheets/kentucky/helpers/_capslock.scss
102
98
  - app/assets/stylesheets/kentucky/helpers/_clearfix.scss
103
99
  - app/assets/stylesheets/kentucky/helpers/_font-size.scss
104
100
  - app/assets/stylesheets/kentucky/helpers/_go.scss
@@ -110,7 +106,6 @@ files:
110
106
  - app/assets/stylesheets/kentucky/helpers/_position.scss
111
107
  - app/assets/stylesheets/kentucky/helpers/_prefixer.scss
112
108
  - app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss
113
- - app/assets/stylesheets/kentucky/helpers/_show-hide.scss
114
109
  - app/assets/stylesheets/kentucky/helpers/_size.scss
115
110
  - app/assets/stylesheets/kentucky/helpers/_strip-unit.scss
116
111
  - app/assets/stylesheets/kentucky/helpers/_transitions.scss
@@ -1,89 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Debug - Only active if variable set to TRUE in _project-settings.scss
3
- // Use to determine CSS issues within the site
4
- // ------------------------------------------------------------------- //
5
-
6
- // Red == Definite Error
7
- // Yellow == Double-check
8
- // None == Should be okiedokie
9
-
10
- // Empty page elements?
11
-
12
- :empty{
13
- outline: 5px solid yellow;
14
- }
15
-
16
-
17
- // Images require 'alt' attributes, empty 'alt's are fine
18
- // No 'alt' is bad, flagged in red
19
-
20
- img{
21
- outline: 5px solid red;
22
-
23
- &[alt]{
24
- outline: none;
25
- }
26
- &[alt=""]{
27
- outline: 5px solid yellow;
28
- }
29
- }
30
-
31
-
32
- // Links benefit from 'title' attributes
33
- // Not severe, but good to check
34
-
35
- a{
36
- outline: 5px solid yellow;
37
-
38
- &[title]{
39
- outline: none;
40
- }
41
- }
42
-
43
-
44
- // Esnure lists only contain 'li's as children
45
-
46
- ul,
47
- ol{
48
- > *:not(li){
49
- outline: 5px solid red;
50
- }
51
- }
52
-
53
-
54
- // 'tr's as children of 'table's isn't great, did you need 'thead'/'tbody'?
55
-
56
- table > tr{
57
- outline: 5px solid yellow;
58
- }
59
-
60
-
61
- // Various form-field types have required attributes
62
- // 'input's need 'type'
63
- // 'textarea's need 'rows' and 'cols'
64
- // 'submit' buttons need 'value'
65
-
66
- textarea,
67
- input{
68
- outline: 5px solid yellow;
69
- }
70
- input[type]{
71
- outline: none;
72
- }
73
- textarea[rows][cols]{
74
- outline: none;
75
- }
76
- input[type=submit]{
77
- outline: 5px solid red;
78
-
79
- &[value]{
80
- outline: none;
81
- }
82
- }
83
-
84
-
85
- // Avoid inline styles like the plague that they are
86
-
87
- [style]{
88
- outline: 5px solid red;
89
- }
@@ -1,12 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Tint & Shade (from Bourbon)
3
- // ------------------------------------------------------------------- //
4
-
5
- @function tint($color, $percent){
6
- @return mix(white, $color, $percent);
7
- }
8
-
9
- // Add percentage of black to a color
10
- @function shade($color, $percent){
11
- @return mix(black, $color, $percent);
12
- }
@@ -1,13 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Text Alignment
3
- // ------------------------------------------------------------------- //
4
-
5
- %text-left{
6
- text-align: left;
7
- }
8
- %text-right{
9
- text-align: right;
10
- }
11
- %text-center{
12
- text-align: center;
13
- }
@@ -1,7 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Caps Lock - Calm down there, champ...
3
- // ------------------------------------------------------------------- //
4
-
5
- %caps{
6
- text-transform: uppercase;
7
- }
@@ -1,11 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Show / Hide Elements
3
- // To be used in jQuery as a toggle class
4
- // ------------------------------------------------------------------- //
5
-
6
- .is-shown{
7
- display: block;
8
- }
9
- .is-hidden{
10
- display: none;
11
- }