kentucky 0.5.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/app/assets/stylesheets/kentucky/_debug.scss +70 -74
  4. data/app/assets/stylesheets/kentucky/_kentucky.scss +47 -16
  5. data/app/assets/stylesheets/kentucky/_project-settings.scss +80 -41
  6. data/app/assets/stylesheets/kentucky/base/_forms.scss +65 -0
  7. data/app/assets/stylesheets/kentucky/base/_normalize.scss +33 -7
  8. data/app/assets/stylesheets/kentucky/base/_typography.scss +38 -29
  9. data/app/assets/stylesheets/kentucky/functions/_gradient-functions.scss +214 -0
  10. data/app/assets/stylesheets/kentucky/functions/_remify.scss +39 -0
  11. data/app/assets/stylesheets/kentucky/{extends/_mute.scss → functions/_strip-units.scss} +3 -4
  12. data/app/assets/stylesheets/kentucky/functions/_tint-shade.scss +12 -0
  13. data/app/assets/stylesheets/kentucky/grid/_grid.scss +114 -0
  14. data/app/assets/stylesheets/kentucky/{extends → helpers}/_alignment.scss +0 -0
  15. data/app/assets/stylesheets/kentucky/helpers/_anti-aliased.scss +8 -0
  16. data/app/assets/stylesheets/kentucky/helpers/_border.scss +32 -0
  17. data/app/assets/stylesheets/kentucky/{extends → helpers}/_breadcrumbs.scss +0 -0
  18. data/app/assets/stylesheets/kentucky/{extends → helpers}/_capslock.scss +0 -0
  19. data/app/assets/stylesheets/kentucky/helpers/_clearfix.scss +14 -0
  20. data/app/assets/stylesheets/kentucky/{mixins → helpers}/_font-size.scss +4 -5
  21. data/app/assets/stylesheets/kentucky/{extends → helpers}/_go.scss +0 -0
  22. data/app/assets/stylesheets/kentucky/helpers/_headings.scss +11 -0
  23. data/app/assets/stylesheets/kentucky/helpers/_hide-text.scss +9 -0
  24. data/app/assets/stylesheets/kentucky/helpers/_html5-input-types.scss +30 -0
  25. data/app/assets/stylesheets/kentucky/helpers/_linear-gradient.scss +42 -0
  26. data/app/assets/stylesheets/kentucky/helpers/_mute.scss +15 -0
  27. data/app/assets/stylesheets/kentucky/helpers/_position.scss +42 -0
  28. data/app/assets/stylesheets/kentucky/helpers/_prefixer.scss +34 -0
  29. data/app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss +24 -0
  30. data/app/assets/stylesheets/kentucky/{extends → helpers}/_show-hide.scss +0 -0
  31. data/app/assets/stylesheets/kentucky/helpers/_size.scss +44 -0
  32. data/app/assets/stylesheets/kentucky/helpers/_strip-unit.scss +7 -0
  33. data/app/assets/stylesheets/kentucky/helpers/_transitions.scss +34 -0
  34. data/app/assets/stylesheets/kentucky/helpers/_triangle.scss +49 -0
  35. data/app/assets/stylesheets/kentucky/helpers/_truncate.scss +19 -0
  36. data/kentucky.gemspec +3 -3
  37. data/lib/kentucky/version.rb +1 -1
  38. data/readme.md +14 -36
  39. metadata +34 -19
  40. data/Kentucky.sublime-workspace +0 -556
  41. data/app/assets/stylesheets/kentucky/mixins/_borders.scss +0 -10
  42. data/app/assets/stylesheets/kentucky/mixins/_headings.scss +0 -23
  43. data/app/assets/stylesheets/kentucky/mixins/_sprite.scss +0 -9
  44. data/app/assets/stylesheets/kentucky/mixins/_truncate.scss +0 -14
  45. data/app/assets/stylesheets/style.scss +0 -12
@@ -0,0 +1,44 @@
1
+ // Sizing mixin
2
+ @mixin size($size){
3
+
4
+ // If only one value is present
5
+ @if length($size) == 1{
6
+
7
+ @if unitless($size){
8
+ width: $size + px;
9
+ height: $size + px;
10
+ }
11
+
12
+ @else if not(unitless($size)){
13
+ width: $size;
14
+ height: $size;
15
+ }
16
+ }
17
+
18
+ // If both values are present
19
+ @if length($size) == 2{
20
+
21
+ $width: nth($size, 1);
22
+ $height: nth($size, 2);
23
+
24
+ @if $width == auto{
25
+ width: $width;
26
+ }
27
+ @else if unitless($width){
28
+ width: $width + px;
29
+ }
30
+ @else if not(unitless($width)){
31
+ width: $width;
32
+ }
33
+
34
+ @if $height == auto{
35
+ height: $height;
36
+ }
37
+ @if unitless($height){
38
+ height: $height + px;
39
+ }
40
+ @else if not(unitless($height)){
41
+ height: $height;
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,7 @@
1
+ // ------------------------------------------------------------------- //
2
+ // Strip a value of it's unit
3
+ // ------------------------------------------------------------------- //
4
+
5
+ @function strip-unit($value){
6
+ @return $value / ($value * 0 + 1);
7
+ }
@@ -0,0 +1,34 @@
1
+ // Shorthand mixin. Supports multiple parentheses-deliminated values for each variable.
2
+ // Example: @include transition (all 2s ease-in-out);
3
+ // @include transition (opacity 1s ease-in 2s, width 2s ease-out);
4
+ // @include transition-property (transform, opacity);
5
+
6
+ @mixin transition ($properties...) {
7
+ @if length($properties) >= 1 {
8
+ @include prefixer(transition, $properties, webkit moz spec);
9
+ }
10
+
11
+ @else {
12
+ $properties: all 0.15s ease-out 0s;
13
+ @include prefixer(transition, $properties, webkit moz spec);
14
+ }
15
+ }
16
+
17
+ @mixin transition-property ($properties...) {
18
+ -webkit-transition-property: transition-property-names($properties, 'webkit');
19
+ -moz-transition-property: transition-property-names($properties, 'moz');
20
+ transition-property: transition-property-names($properties, false);
21
+ }
22
+
23
+ @mixin transition-duration ($times...) {
24
+ @include prefixer(transition-duration, $times, webkit moz spec);
25
+ }
26
+
27
+ @mixin transition-timing-function ($motions...) {
28
+ // ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
29
+ @include prefixer(transition-timing-function, $motions, webkit moz spec);
30
+ }
31
+
32
+ @mixin transition-delay ($times...) {
33
+ @include prefixer(transition-delay, $times, webkit moz spec);
34
+ }
@@ -0,0 +1,49 @@
1
+ // ------------------------------------------------------------------- //
2
+ // CSS Triangles
3
+ //
4
+ // Credit to Bourbon for triangle mixin
5
+ // ------------------------------------------------------------------- //
6
+
7
+ @mixin triangle($size, $color, $direction){
8
+ @include size(0);
9
+
10
+ @if ($direction == up) or ($direction == down) or ($direction == left) or ($direction == right){
11
+ border: solid transparent;
12
+ border-width: $size / 2;
13
+
14
+ @if $direction == up {
15
+ border-bottom-color: $color;
16
+
17
+ } @else if $direction == right {
18
+ border-left-color: $color;
19
+
20
+ } @else if $direction == down {
21
+ border-top-color: $color;
22
+
23
+ } @else if $direction == left {
24
+ border-right-color: $color;
25
+ }
26
+ }
27
+
28
+ @else if ($direction == up-right) or ($direction == up-left) {
29
+ border-top: $size solid $color;
30
+
31
+ @if $direction == up-right {
32
+ border-left: $size solid transparent;
33
+
34
+ } @else if $direction == up-left {
35
+ border-right: $size solid transparent;
36
+ }
37
+ }
38
+
39
+ @else if ($direction == down-right) or ($direction == down-left) {
40
+ border-bottom: $size solid $color;
41
+
42
+ @if $direction == down-right {
43
+ border-left: $size solid transparent;
44
+
45
+ } @else if $direction == down-left {
46
+ border-right: $size solid transparent;
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,19 @@
1
+ // Truncate single-lined elements
2
+
3
+ @mixin truncate($truncate-width){
4
+
5
+ display: inline-block;
6
+
7
+ // Ensure width has a value
8
+ @if unitless($truncate-width){
9
+ max-width: $truncate-width + px;
10
+ }
11
+ @else {
12
+ max-width: $truncate-width;
13
+ }
14
+
15
+ white-space: nowrap;
16
+ overflow: hidden;
17
+ text-overflow: ellipsis;
18
+
19
+ }
data/kentucky.gemspec CHANGED
@@ -9,10 +9,10 @@ Gem::Specification.new do |s|
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.authors = ["Aaron Clemmer", "Greg Bruening", "Chris Brinson"]
11
11
  s.email = ["greg@lookthink.com"]
12
- s.homepage = "https://bitbucket.org/lookthink/kentucky"
13
- s.summary = "Kentucky Bourbon, Neat Grid System and SCSS Mixins"
12
+ s.homepage = "https://github.com/geebru/Kentucky"
13
+ s.summary = "SCSS-based grid system and mixin library"
14
14
  s.description = <<-DESC
15
- Kentucky is LookThink's contribution to further enhance an already stellar SCSS library put together by the people at ThoughtBot. Their mixin library (Bourbon) and grid system (Neat) now serve as the base to all LookThink projects. Kentucky also includes a variety of mixins from various projects that we find useful and weren't included in Bourbon. Additionally, it includes a handy-dandy file (_defaults.scss) for handling all of your variables, keeping them centralized and easy to maintain.
15
+ Kentucky is LookThink's contribution to the CSS framework world with the unique difference of being entirely written in SCSS. This means no class restrictions muddling up your HTML. Kentucky is a collection of mixins, extends, and functions that you can use with your own HTML/CSS semantics to create responsive-ready websites.
16
16
  DESC
17
17
 
18
18
  #s.rubyforge_project = "bourbon"
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "0.5.2"
2
+ VERSION = "1.0.0"
3
3
  end
data/readme.md CHANGED
@@ -5,52 +5,30 @@
5
5
 
6
6
  ***
7
7
 
8
- ## What is Kentucky?
9
- Kentucky is LookThink's contribution to further enhance an already stellar SCSS library put together by the people at [ThoughtBot](http://www.thoughtbot.com/). Their mixin library, [Bourbon](http://bourbon.io/), and grid system, [Neat](http://neat.bourbon.io/), now serve as the base to all LookThink projects.
8
+ ## CHANGELOG
10
9
 
11
- Kentucky also includes a variety of mixins from various projects that we find useful and weren't included in Bourbon. Additionally, it includes a handy-dandy file (_defaults.scss) for handling all of your variables, keeping them centralized and easy to maintain.
10
+ **1.0.0 - The big one!**
12
11
 
13
- ***
14
-
15
- ## What's changed?
16
- LookThink now uses SCSS exclusively as it's CSS preprocessor language of choice. The previous framework was written in LESS and we've taken steps to continually evolve how we code projects.
12
+ Finished custom grid system for Kentucky
17
13
 
18
- We've also lessened the maintenance burden by relying on libraries that already exist and do the exact same things our previous framework did. The new method for acquiring the framework also means you'll always have the most up to date version of the components.
14
+ Spruced up project settings to be more inclusive
19
15
 
20
- Lastly, we've opened a Trello board for all feedback, issue / bug reporting, and additions to the framework. You can track it's growth as well as alert us to potential or existing problems in Kentucky.
16
+ Shifted from rem-based gutters to pixels
21
17
 
22
- ***
18
+ **0.9.0**
23
19
 
24
- ## How do I get Kentucky?
25
- To install Kentucky:
20
+ Additional functionality added to the grid: center span-col and set row as "block"
26
21
 
27
- + Open Terminal.
28
- + Navigate to your project folder (`cd LookThink/Project`).
22
+ Removed grid "gap" functionality; replaced with shift additions
29
23
 
30
- At this point there are two options - you may install Kentucky in an existing SCSS folder or, for static (non-CMS) projects, you may install a full project directory.
24
+ Added !global variable to all-inputs target (may break libsass, sorry)
31
25
 
32
- + **For CMS or existing folder structures:**
33
- + Navigate to your SCSS/styles folder (`cd scss`).
34
- + Type `gem install kentucky`.
35
- + Type `kentucky install`.
36
-
37
- + **For static, non-CMS projects:**
38
- + Type `gem install kentucky`.
39
- + Type `kentucky install --dir`.
40
-
41
- After installing Kentucky, you need to set SCSS to watch your stylesheets for changes and compile your usable CSS file.
26
+ **0.8.0**
42
27
 
43
- + Navigate to your project's home folder (if you are in the SCSS folder, type `cd ../`)
44
- + Type `sass --watch input:output` (i.e., `sass --watch scss/style.scss:css/style.css`)
28
+ Major restructuring to become independent from Bourbon/Neat
45
29
 
46
- Now, whenever a change is made to an SCSS file, your code will be compiled and exported to the location dictated.
47
-
48
- ***
30
+ Created custom grid system
49
31
 
50
- ## Need help?
51
- Fear not! Bourbon and Neat are fully documented and easy to follow. Need more general help? The SCSS documentation isn't grand, but it's better than not having any. See the list below for help with coding out your projects!
32
+ Set up remify function
52
33
 
53
- + [Official SCSS Reference](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#)
54
- + [Bourbon Documentation](http://bourbon.io/docs/)
55
- + [Neat Documentation](http://neat.bourbon.io/docs/)
56
- + *Updated code manual coming soon!*
34
+ Adjustments to single-direction margins and typography
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: 0.5.2
4
+ version: 1.0.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: 2013-11-15 00:00:00.000000000 Z
13
+ date: 2014-04-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -97,7 +97,7 @@ dependencies:
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  description: |
100
- Kentucky is LookThink's contribution to further enhance an already stellar SCSS library put together by the people at ThoughtBot. Their mixin library (Bourbon) and grid system (Neat) now serve as the base to all LookThink projects. Kentucky also includes a variety of mixins from various projects that we find useful and weren't included in Bourbon. Additionally, it includes a handy-dandy file (_defaults.scss) for handling all of your variables, keeping them centralized and easy to maintain.
100
+ Kentucky is LookThink's contribution to the CSS framework world with the unique difference of being entirely written in SCSS. This means no class restrictions muddling up your HTML. Kentucky is a collection of mixins, extends, and functions that you can use with your own HTML/CSS semantics to create responsive-ready websites.
101
101
  email:
102
102
  - greg@lookthink.com
103
103
  executables:
@@ -108,26 +108,41 @@ files:
108
108
  - .gitignore
109
109
  - Gemfile
110
110
  - Gemfile.lock
111
- - Kentucky.sublime-workspace
112
111
  - LICENSE
113
112
  - Rakefile
114
113
  - app/assets/stylesheets/kentucky/_debug.scss
115
114
  - app/assets/stylesheets/kentucky/_kentucky.scss
116
115
  - app/assets/stylesheets/kentucky/_project-settings.scss
116
+ - app/assets/stylesheets/kentucky/base/_forms.scss
117
117
  - app/assets/stylesheets/kentucky/base/_normalize.scss
118
118
  - app/assets/stylesheets/kentucky/base/_typography.scss
119
- - app/assets/stylesheets/kentucky/extends/_alignment.scss
120
- - app/assets/stylesheets/kentucky/extends/_breadcrumbs.scss
121
- - app/assets/stylesheets/kentucky/extends/_capslock.scss
122
- - app/assets/stylesheets/kentucky/extends/_go.scss
123
- - app/assets/stylesheets/kentucky/extends/_mute.scss
124
- - app/assets/stylesheets/kentucky/extends/_show-hide.scss
125
- - app/assets/stylesheets/kentucky/mixins/_borders.scss
126
- - app/assets/stylesheets/kentucky/mixins/_font-size.scss
127
- - app/assets/stylesheets/kentucky/mixins/_headings.scss
128
- - app/assets/stylesheets/kentucky/mixins/_sprite.scss
129
- - app/assets/stylesheets/kentucky/mixins/_truncate.scss
130
- - app/assets/stylesheets/style.scss
119
+ - app/assets/stylesheets/kentucky/functions/_gradient-functions.scss
120
+ - app/assets/stylesheets/kentucky/functions/_remify.scss
121
+ - app/assets/stylesheets/kentucky/functions/_strip-units.scss
122
+ - app/assets/stylesheets/kentucky/functions/_tint-shade.scss
123
+ - app/assets/stylesheets/kentucky/grid/_grid.scss
124
+ - app/assets/stylesheets/kentucky/helpers/_alignment.scss
125
+ - app/assets/stylesheets/kentucky/helpers/_anti-aliased.scss
126
+ - app/assets/stylesheets/kentucky/helpers/_border.scss
127
+ - app/assets/stylesheets/kentucky/helpers/_breadcrumbs.scss
128
+ - app/assets/stylesheets/kentucky/helpers/_capslock.scss
129
+ - app/assets/stylesheets/kentucky/helpers/_clearfix.scss
130
+ - app/assets/stylesheets/kentucky/helpers/_font-size.scss
131
+ - app/assets/stylesheets/kentucky/helpers/_go.scss
132
+ - app/assets/stylesheets/kentucky/helpers/_headings.scss
133
+ - app/assets/stylesheets/kentucky/helpers/_hide-text.scss
134
+ - app/assets/stylesheets/kentucky/helpers/_html5-input-types.scss
135
+ - app/assets/stylesheets/kentucky/helpers/_linear-gradient.scss
136
+ - app/assets/stylesheets/kentucky/helpers/_mute.scss
137
+ - app/assets/stylesheets/kentucky/helpers/_position.scss
138
+ - app/assets/stylesheets/kentucky/helpers/_prefixer.scss
139
+ - app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss
140
+ - app/assets/stylesheets/kentucky/helpers/_show-hide.scss
141
+ - app/assets/stylesheets/kentucky/helpers/_size.scss
142
+ - app/assets/stylesheets/kentucky/helpers/_strip-unit.scss
143
+ - app/assets/stylesheets/kentucky/helpers/_transitions.scss
144
+ - app/assets/stylesheets/kentucky/helpers/_triangle.scss
145
+ - app/assets/stylesheets/kentucky/helpers/_truncate.scss
131
146
  - bin/kentucky
132
147
  - features/install.feature
133
148
  - features/step_definitions/kentucky_steps.rb
@@ -142,7 +157,7 @@ files:
142
157
  - lib/kentucky/version.rb
143
158
  - lib/tasks/install.rake
144
159
  - readme.md
145
- homepage: https://bitbucket.org/lookthink/kentucky
160
+ homepage: https://github.com/geebru/Kentucky
146
161
  licenses:
147
162
  - MIT
148
163
  metadata: {}
@@ -162,10 +177,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
177
  version: '0'
163
178
  requirements: []
164
179
  rubyforge_project:
165
- rubygems_version: 2.1.11
180
+ rubygems_version: 2.0.3
166
181
  signing_key:
167
182
  specification_version: 4
168
- summary: Kentucky Bourbon, Neat Grid System and SCSS Mixins
183
+ summary: SCSS-based grid system and mixin library
169
184
  test_files:
170
185
  - features/install.feature
171
186
  - features/step_definitions/kentucky_steps.rb
@@ -1,556 +0,0 @@
1
- {
2
- "auto_complete":
3
- {
4
- "selected_items":
5
- [
6
- ]
7
- },
8
- "buffers":
9
- [
10
- {
11
- "file": "app/assets/stylesheets/kentucky/_defaults.scss",
12
- "settings":
13
- {
14
- "buffer_size": 3897,
15
- "line_ending": "Unix"
16
- }
17
- },
18
- {
19
- "file": "app/assets/stylesheets/kentucky/generic/_helpers.scss",
20
- "settings":
21
- {
22
- "buffer_size": 2190,
23
- "line_ending": "Unix"
24
- }
25
- }
26
- ],
27
- "build_system": "",
28
- "command_palette":
29
- {
30
- "height": 93.0,
31
- "selected_items":
32
- [
33
- [
34
- "git push",
35
- "Git: Push"
36
- ],
37
- [
38
- "git pull",
39
- "Git: Pull"
40
- ],
41
- [
42
- "git com",
43
- "Git: Commit"
44
- ],
45
- [
46
- "git ad",
47
- "Git: Add Current File"
48
- ],
49
- [
50
- "git commit",
51
- "Git: Quick Commit"
52
- ],
53
- [
54
- "git add",
55
- "Git: Add Current File"
56
- ],
57
- [
58
- "git quick",
59
- "Git: Quick Commit"
60
- ],
61
- [
62
- "git comi",
63
- "Git: Quick Commit"
64
- ],
65
- [
66
- "git status",
67
- "Git: Status"
68
- ],
69
- [
70
- "git log",
71
- "Git: Log All"
72
- ],
73
- [
74
- "git pus",
75
- "Git: Push"
76
- ],
77
- [
78
- "git comm",
79
- "Git: Commit"
80
- ],
81
- [
82
- "remove",
83
- "Package Control: Remove Package"
84
- ],
85
- [
86
- "synta html",
87
- "Set Syntax: HTML"
88
- ],
89
- [
90
- "git re",
91
- "Git: Reset (unstage) All"
92
- ],
93
- [
94
- "git pul",
95
- "Git: Pull"
96
- ],
97
- [
98
- "git statu",
99
- "Git: Status"
100
- ],
101
- [
102
- "git ",
103
- "Git: Commit history"
104
- ],
105
- [
106
- "git co",
107
- "Git: Commit"
108
- ],
109
- [
110
- "synta scs",
111
- "Set Syntax: SCSS"
112
- ],
113
- [
114
- "git mes",
115
- "Set Syntax: Git Commit Message"
116
- ],
117
- [
118
- "instal",
119
- "Package Control: Install Package"
120
- ],
121
- [
122
- "install",
123
- "Package Control: Install Package"
124
- ],
125
- [
126
- "syntax html",
127
- "Set Syntax: HTML"
128
- ],
129
- [
130
- "syn html",
131
- "Set Syntax: HTML"
132
- ],
133
- [
134
- "syntax htm",
135
- "Set Syntax: HTML"
136
- ],
137
- [
138
- "search",
139
- "Search In Project"
140
- ],
141
- [
142
- "package",
143
- "Package Control: Remove Package"
144
- ],
145
- [
146
- "tidy",
147
- "TidyHTML"
148
- ],
149
- [
150
- "insta",
151
- "Package Control: Install Package"
152
- ],
153
- [
154
- "inst",
155
- "Package Control: Install Package"
156
- ],
157
- [
158
- "Package Control",
159
- "Package Control: Install Package"
160
- ]
161
- ],
162
- "width": 579.0
163
- },
164
- "console":
165
- {
166
- "height": 125.0
167
- },
168
- "distraction_free":
169
- {
170
- "menu_visible": true,
171
- "show_minimap": false,
172
- "show_open_files": false,
173
- "show_tabs": false,
174
- "side_bar_visible": false,
175
- "status_bar_visible": false
176
- },
177
- "file_history":
178
- [
179
- "/Users/Greg/Kentucky/app/assets/stylesheets/kentucky/generic/_mixins.scss",
180
- "/Users/Greg/Kentucky/app/assets/stylesheets/kentucky/generic/_brand.scss",
181
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/css/styles.css",
182
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_product.scss",
183
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_industry.scss",
184
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_footer.scss",
185
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_challenge.scss",
186
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_mixins.scss",
187
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_layout.scss",
188
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_newsroom.scss",
189
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_resources.scss",
190
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/SFTP/Default (OSX).sublime-keymap",
191
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Default (OSX).sublime-keymap",
192
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/HTML-CSS-JS Prettify/.jsbeautifyrc",
193
- "/Users/Greg/LookThink/calamp/build-dev/themes/seven/style.css",
194
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/_calamp-backend.scss",
195
- "/Users/Greg/Library/Caches/Cleanup At Startup/Transmit/442EE7C6-0D9D-450B-A61B-5249F3810705/styles.css",
196
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/challenges.js",
197
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_home.scss",
198
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Preferences.sublime-settings",
199
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Default/Preferences.sublime-settings",
200
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/resources.js",
201
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/responsiveslides.js",
202
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/script.js",
203
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/GitGutter.sublime-settings",
204
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/GitGutter/GitGutter.sublime-settings",
205
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/products.js",
206
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Git/Git.sublime-settings",
207
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_header.scss",
208
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_icons.scss",
209
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_spcp.scss",
210
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_company.scss",
211
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_hero.scss",
212
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp/_buttons.scss",
213
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/kentucky/_defaults.scss",
214
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/kentucky/_normalize.scss",
215
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp.scss",
216
- "/Users/Greg/Desktop/frontify.js",
217
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/HTML-CSS-JS Prettify/HTMLPrettify.sublime-settings",
218
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/SublimeCodeIntel.sublime-settings",
219
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/SublimeCodeIntel/SublimeCodeIntel.sublime-settings",
220
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/SublimeCodeIntel/Default (OSX).sublime-mousemap",
221
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/ds_layouts/product_detail/product_detail.inc",
222
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/ds_layouts/product_detail/product-detail.tpl.php",
223
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/views-view-unformatted--product-landing-categories-hardware.tpl.php",
224
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/neat/settings/_grid.scss",
225
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/js/badonkatrunc.js",
226
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/AdvancedNewFile/README.md",
227
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/css/README.txt",
228
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/page--content3.tpl.php",
229
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/views-view-field--block--field-resource-category-1.tpl.php",
230
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/views-view-unformatted--resources.tpl.php",
231
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/block--sidebar_first.tpl.php",
232
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/block.tpl.php",
233
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/ds_layouts/challenge_landing/challenge_landing.inc",
234
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/ds_layouts/challenge_landing/challenge-landing.tpl.php",
235
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/bh_core.sublime-settings",
236
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/BracketHighlighter/bh_core.sublime-settings",
237
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Alignment/Base File.sublime-settings",
238
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/kentucky/_helpers.scss",
239
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/sftp-config.json",
240
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/SFTP.sublime-settings",
241
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/SFTP/SFTP.sublime-settings",
242
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/kentucky/_shame.scss",
243
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Tomorrow Color Schemes/Tomorrow-Night-Eighties.tmTheme",
244
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu",
245
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/SCSS Autocomplete.py",
246
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Comment Block.sublime-snippet",
247
- "/Users/Greg/Desktop/footer.html",
248
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/TidyHTML5/TidyHTML.sublime-settings",
249
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Comment Block",
250
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Package Control.sublime-settings",
251
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Package Control/Package Control.sublime-settings",
252
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/ds-1col--node-challenge-listing.tpl.php",
253
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/views-view-field--block--field-product-category-1.tpl.php",
254
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/templates/views-view-field--block--field-product-industry.tpl.php",
255
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Tomorrow Color Schemes/Tomorrow-Night-Bright.tmTheme",
256
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/SideBarEnhancements/messages/11.13.2012.1305.0.txt",
257
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Emmet/Default (OSX).sublime-keymap",
258
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/User/Emmet.sublime-settings",
259
- "/Users/Greg/Library/Application Support/Sublime Text 2/Packages/Emmet/Emmet.sublime-settings",
260
- "/Users/Greg/Sublime Text 2",
261
- "/Users/Greg/open",
262
- "/tmp/subl stdin w82po8.txt"
263
- ],
264
- "find":
265
- {
266
- "height": 37.0
267
- },
268
- "find_in_files":
269
- {
270
- "height": 0.0,
271
- "where_history":
272
- [
273
- "",
274
- "/Users/Greg/LookThink/calamp/build-dev/sites/all/themes/calamp/scss/calamp",
275
- "scss",
276
- ""
277
- ]
278
- },
279
- "find_state":
280
- {
281
- "case_sensitive": false,
282
- "find_history":
283
- [
284
- "challenge__results",
285
- "chosen",
286
- "child",
287
- "color: $brand-color-1d;",
288
- "<a href=\"\">Learn More </a>",
289
- "data-feature-id=\"",
290
- "<div class=\"member__position\">",
291
- "about__right",
292
- ".sidebar",
293
- ".sidebar .learn-more",
294
- ".learn-more",
295
- "#00ACED",
296
- "arrow",
297
- ".png",
298
- "%icon-base;",
299
- "imce-icon",
300
- "href",
301
- "hero",
302
- "industry",
303
- "f",
304
- "uppercase",
305
- "$brand-color-1c"
306
- ],
307
- "highlight": true,
308
- "in_selection": false,
309
- "preserve_case": false,
310
- "regex": false,
311
- "replace_history":
312
- [
313
- "<p class=\"member__position\">",
314
- "$brand-color-1d",
315
- "f"
316
- ],
317
- "reverse": false,
318
- "show_context": true,
319
- "use_buffer2": true,
320
- "whole_word": false,
321
- "wrap": true
322
- },
323
- "groups":
324
- [
325
- {
326
- "selected": 1,
327
- "sheets":
328
- [
329
- {
330
- "buffer": 0,
331
- "file": "app/assets/stylesheets/kentucky/_defaults.scss",
332
- "settings":
333
- {
334
- "buffer_size": 3897,
335
- "regions":
336
- {
337
- },
338
- "selection":
339
- [
340
- [
341
- 662,
342
- 662
343
- ]
344
- ],
345
- "settings":
346
- {
347
- "BracketHighlighterBusy": false,
348
- "bh_regions":
349
- [
350
- "bh_regex",
351
- "bh_regex_center",
352
- "bh_regex_open",
353
- "bh_regex_close",
354
- "bh_double_quote",
355
- "bh_double_quote_center",
356
- "bh_double_quote_open",
357
- "bh_double_quote_close",
358
- "bh_square",
359
- "bh_square_center",
360
- "bh_square_open",
361
- "bh_square_close",
362
- "bh_angle",
363
- "bh_angle_center",
364
- "bh_angle_open",
365
- "bh_angle_close",
366
- "bh_curly",
367
- "bh_curly_center",
368
- "bh_curly_open",
369
- "bh_curly_close",
370
- "bh_default",
371
- "bh_default_center",
372
- "bh_default_open",
373
- "bh_default_close",
374
- "bh_unmatched",
375
- "bh_unmatched_center",
376
- "bh_unmatched_open",
377
- "bh_unmatched_close",
378
- "bh_round",
379
- "bh_round_center",
380
- "bh_round_open",
381
- "bh_round_close",
382
- "bh_tag",
383
- "bh_tag_center",
384
- "bh_tag_open",
385
- "bh_tag_close",
386
- "bh_single_quote",
387
- "bh_single_quote_center",
388
- "bh_single_quote_open",
389
- "bh_single_quote_close"
390
- ],
391
- "incomplete_sync": null,
392
- "remote_loading": false,
393
- "synced": false,
394
- "syntax": "Packages/SCSS/SCSS.tmLanguage",
395
- "tab_size": 2,
396
- "translate_tabs_to_spaces": true
397
- },
398
- "translation.x": 0.0,
399
- "translation.y": 0.0,
400
- "zoom_level": 1.0
401
- },
402
- "type": "text"
403
- },
404
- {
405
- "buffer": 1,
406
- "file": "app/assets/stylesheets/kentucky/generic/_helpers.scss",
407
- "settings":
408
- {
409
- "buffer_size": 2190,
410
- "regions":
411
- {
412
- },
413
- "selection":
414
- [
415
- [
416
- 2123,
417
- 2123
418
- ]
419
- ],
420
- "settings":
421
- {
422
- "BracketHighlighterBusy": false,
423
- "bh_regions":
424
- [
425
- "bh_regex",
426
- "bh_regex_center",
427
- "bh_regex_open",
428
- "bh_regex_close",
429
- "bh_double_quote",
430
- "bh_double_quote_center",
431
- "bh_double_quote_open",
432
- "bh_double_quote_close",
433
- "bh_square",
434
- "bh_square_center",
435
- "bh_square_open",
436
- "bh_square_close",
437
- "bh_angle",
438
- "bh_angle_center",
439
- "bh_angle_open",
440
- "bh_angle_close",
441
- "bh_curly",
442
- "bh_curly_center",
443
- "bh_curly_open",
444
- "bh_curly_close",
445
- "bh_default",
446
- "bh_default_center",
447
- "bh_default_open",
448
- "bh_default_close",
449
- "bh_unmatched",
450
- "bh_unmatched_center",
451
- "bh_unmatched_open",
452
- "bh_unmatched_close",
453
- "bh_round",
454
- "bh_round_center",
455
- "bh_round_open",
456
- "bh_round_close",
457
- "bh_tag",
458
- "bh_tag_center",
459
- "bh_tag_open",
460
- "bh_tag_close",
461
- "bh_single_quote",
462
- "bh_single_quote_center",
463
- "bh_single_quote_open",
464
- "bh_single_quote_close"
465
- ],
466
- "incomplete_sync": null,
467
- "remote_loading": false,
468
- "synced": false,
469
- "syntax": "Packages/SCSS/SCSS.tmLanguage",
470
- "tab_size": 2,
471
- "translate_tabs_to_spaces": true
472
- },
473
- "translation.x": 0.0,
474
- "translation.y": 134.0,
475
- "zoom_level": 1.0
476
- },
477
- "type": "text"
478
- }
479
- ]
480
- }
481
- ],
482
- "incremental_find":
483
- {
484
- "height": 0.0
485
- },
486
- "input":
487
- {
488
- "height": 33.0
489
- },
490
- "layout":
491
- {
492
- "cells":
493
- [
494
- [
495
- 0,
496
- 0,
497
- 1,
498
- 1
499
- ]
500
- ],
501
- "cols":
502
- [
503
- 0.0,
504
- 1.0
505
- ],
506
- "rows":
507
- [
508
- 0.0,
509
- 1.0
510
- ]
511
- },
512
- "menu_visible": true,
513
- "output.exec":
514
- {
515
- "height": 102.0
516
- },
517
- "output.git":
518
- {
519
- "height": 141.0
520
- },
521
- "output.sftp":
522
- {
523
- "height": 71.0
524
- },
525
- "output.tooltips":
526
- {
527
- "height": 102.0
528
- },
529
- "replace":
530
- {
531
- "height": 66.0
532
- },
533
- "save_all_on_build": true,
534
- "select_file":
535
- {
536
- "height": 0.0,
537
- "selected_items":
538
- [
539
- ],
540
- "width": 0.0
541
- },
542
- "select_project":
543
- {
544
- "height": 0.0,
545
- "selected_items":
546
- [
547
- ],
548
- "width": 0.0
549
- },
550
- "show_minimap": true,
551
- "show_open_files": true,
552
- "show_tabs": false,
553
- "side_bar_visible": true,
554
- "side_bar_width": 244.0,
555
- "status_bar_visible": true
556
- }