uxunity 0.1.0 → 0.1.1

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/README.md +0 -15
  4. data/lib/.DS_Store +0 -0
  5. data/lib/stylesheets/README.txt +1 -0
  6. data/lib/stylesheets/_uxunity.scss +1 -0
  7. data/lib/stylesheets/base/README.txt +1 -0
  8. data/lib/stylesheets/base/_forms.scss +0 -0
  9. data/lib/stylesheets/base/_lists.scss +0 -0
  10. data/lib/stylesheets/base/_media.scss +4 -0
  11. data/lib/stylesheets/base/_tables.scss +0 -0
  12. data/lib/stylesheets/base/_typography.scss +0 -0
  13. data/lib/stylesheets/components/.DS_Store +0 -0
  14. data/lib/stylesheets/components/README.txt +1 -0
  15. data/lib/stylesheets/components/blocks/.DS_Store +0 -0
  16. data/lib/stylesheets/components/blocks/README.txt +1 -0
  17. data/lib/stylesheets/components/blocks/footer.scss +76 -0
  18. data/lib/stylesheets/components/blocks/front-page.scss +399 -0
  19. data/lib/stylesheets/components/blocks/login-popup.scss +15 -0
  20. data/lib/stylesheets/components/blocks/menus.scss +179 -0
  21. data/lib/stylesheets/components/blocks/nav_index.scss +342 -0
  22. data/lib/stylesheets/components/blocks/region_side_bar.scss +106 -0
  23. data/lib/stylesheets/components/blocks/search.scss +104 -0
  24. data/lib/stylesheets/components/blocks/spinner.scss +90 -0
  25. data/lib/stylesheets/components/blocks/treeStyles.scss +97 -0
  26. data/lib/stylesheets/components/blocks/treeview.scss +154 -0
  27. data/lib/stylesheets/components/node/README.txt +1 -0
  28. data/lib/stylesheets/components/node/asset.scss +3 -0
  29. data/lib/stylesheets/components/node/basic_page.scss +42 -0
  30. data/lib/stylesheets/components/node/blog.scss +75 -0
  31. data/lib/stylesheets/components/node/bulk_photo_nodes_default.scss +125 -0
  32. data/lib/stylesheets/components/node/edit.scss +33 -0
  33. data/lib/stylesheets/components/node/magnify.scss +31 -0
  34. data/lib/stylesheets/components/node/node.scss +398 -0
  35. data/lib/stylesheets/components/node/pattern.scss +134 -0
  36. data/lib/stylesheets/components/node/spec_style.scss +131 -0
  37. data/lib/stylesheets/components/node/webform.scss +17 -0
  38. data/lib/stylesheets/components/views/README.txt +1 -0
  39. data/lib/stylesheets/components/views/assets.scss +19 -0
  40. data/lib/stylesheets/components/views/taxonomy.scss +63 -0
  41. data/lib/stylesheets/components/views/test-views-search-php.html +70 -0
  42. data/lib/stylesheets/mixins/_mixins.scss +49 -0
  43. data/lib/stylesheets/mixins/_prefix-mixins.scss +158 -0
  44. data/lib/stylesheets/utility/.DS_Store +0 -0
  45. data/lib/stylesheets/utility/README.txt +1 -0
  46. data/lib/stylesheets/utility/_dependencies.scss +5 -0
  47. data/lib/stylesheets/utility/abstractions/README.txt +1 -0
  48. data/lib/stylesheets/utility/variables/README.txt +1 -0
  49. data/lib/stylesheets/utility/variables/_breakpoints.scss +5 -0
  50. data/lib/stylesheets/utility/variables/_colors.scss +144 -0
  51. data/lib/stylesheets/utility/variables/_forms.scss +0 -0
  52. data/lib/stylesheets/utility/variables/_globals.scss +31 -0
  53. data/lib/stylesheets/utility/variables/_grid.scss +12 -0
  54. data/lib/stylesheets/utility/variables/_legacy.scss +4 -0
  55. data/lib/stylesheets/utility/variables/_typography.scss +21 -0
  56. data/lib/stylesheets/ux/.DS_Store +0 -0
  57. data/lib/stylesheets/ux/_lists.scss +28 -0
  58. data/lib/stylesheets/ux/_ux-buttons.scss +156 -0
  59. data/lib/stylesheets/ux/_ux-tooltips.scss +8 -0
  60. data/lib/stylesheets/ux/_ux-utils.scss +67 -0
  61. data/lib/stylesheets/ux/ux-dropdown.scss +71 -0
  62. data/lib/uxunity/version.rb +1 -1
  63. data/uxunity-0.1.0.gem +0 -0
  64. data/uxunity.gemspec +1 -0
  65. metadata +74 -1
@@ -0,0 +1,8 @@
1
+ // Include the variables.
2
+ @import "../../utility/variables/*";
3
+
4
+
5
+
6
+ .tooltip {
7
+
8
+ }
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Various useful functions used in UX SASS
3
+ *
4
+ */
5
+
6
+ /**
7
+ * Get a selector for all the headings specified
8
+ */
9
+ @function headings($from:1, $to:6) {
10
+ $headings: ();
11
+ @for $i from $from through $to {
12
+ $headings: $headings, 'h'+$i;
13
+ }
14
+ @return ($headings);
15
+ }
16
+
17
+ /**
18
+ * Get a selector for all the input types specified
19
+ */
20
+ @function inputs($types...) {
21
+ $inputs: ();
22
+ @each $type in $types {
23
+ $inputs: $inputs, 'input[type='+$type+']';
24
+ }
25
+ @return ($inputs);
26
+ }
27
+
28
+ %force-wrap {
29
+ // hard force is required for firefox and other finicky browsers, not awesome, but necessary
30
+ @include word-break('break-all');
31
+ -webkit-hyphens: auto;
32
+ -moz-hyphens: auto;
33
+ -ms-hyphens: auto;
34
+ hyphens: auto;
35
+ }
36
+
37
+ %force-break {
38
+ @include word-break('break-all');
39
+ }
40
+ .force-break {
41
+ // this is useful for long strings of text that we want to break but don't want hyphenated. like domain names.
42
+ @extend %force-break;
43
+ }
44
+
45
+ %break-word {
46
+ // this will force strings to break between words. it will not hyphenate.
47
+ word-wrap: normal; // options: normal, break-word, initial, inherit
48
+ word-break: normal; // options: normal, break-all, keep-all, initial, inherit
49
+ }
50
+
51
+
52
+ %appearance-normal {
53
+ -webkit-appearance: normal; // not-supported well in all browsers. Options: icon, window, buton, menu, field, normal
54
+ -moz-appearance: normal; // not-supported well in all browsers
55
+ margin: 0;
56
+ padding: 0;
57
+ border: none;
58
+ border-radius: 0;
59
+ outline: none;
60
+ box-shadow: none;
61
+ box-sizing: content-box;
62
+ background: none;
63
+
64
+ &:focus {
65
+ outline: none;
66
+ }
67
+ }
@@ -0,0 +1,71 @@
1
+
2
+
3
+ .ux-dropdown-grp {
4
+ position: relative;
5
+ float: left;
6
+ min-height: 1px;
7
+ outline: none;
8
+ padding-left: 1em;
9
+ padding-right: 1em;
10
+
11
+ .ux-dropdown-content {
12
+ background: #e6e6e6;
13
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e6e6e6), to(#ffffff));
14
+ background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
15
+ background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
16
+ background: -moz-linear-gradient(top, #e6e6e6, #ffffff);
17
+ /* FF3.6+ */
18
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#e6e6e6', EndColorStr='#ffffff')";
19
+ background-image: -webkit-linear-gradient(bottom, #e6e6e6, #ffffff);
20
+ background-image: linear-gradient(to top, #e6e6e6, #ffffff);
21
+ border-radius: 3px;
22
+ border: 1px solid #d0d0d0;
23
+ cursor: pointer;
24
+ outline: none;
25
+ position: relative;
26
+ width: 100%;
27
+ margin: 0 auto;
28
+ padding: 9px 15px;
29
+ line-height: 10px;
30
+
31
+ .current-selection {
32
+ font-size: 0.875rem;
33
+ color: #666666;
34
+ }
35
+ ul {
36
+ position: absolute;
37
+ display: none; // display on hover
38
+ top: 2em;
39
+ left: 0;
40
+ right: 0;
41
+ background: white;
42
+ border-radius: inherit;
43
+ border: 1px solid #d0d0d0;
44
+ box-shadow: 0 1px 3px 0px #888;
45
+ font-weight: normal;
46
+ list-style: none;
47
+ pointer-events: none;
48
+ margin: 0;
49
+ max-height: 350px;
50
+ overflow: auto;
51
+ padding-bottom: 0.66em;
52
+ padding-top: 0.66em;
53
+
54
+ li {
55
+ padding: 0px 20px;
56
+ line-height: 30px;
57
+ font-size: 0.875rem;
58
+ position: relative;
59
+ }
60
+ li.separator {
61
+ border-top: dotted 1px #333333;
62
+ }
63
+ li:hover {
64
+ background-color: #e1f2f7;
65
+ }
66
+ &:hover {
67
+ display: block;
68
+ }
69
+ }
70
+ } //ux-dropdown-content
71
+ } //ux-dropdown-grp
@@ -1,3 +1,3 @@
1
1
  module Uxunity
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
Binary file
@@ -30,4 +30,5 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "rake", "~> 10.0"
31
31
 
32
32
  spec.add_dependency "compass"
33
+ spec.add_dependency "sass-globbing"
33
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uxunity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ron Snow
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sass-globbing
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  description: VMware Unity theme assets for SASS as a compass extension.
56
70
  email:
57
71
  - ronsnow-gem@menloworld.com
@@ -59,6 +73,7 @@ executables: []
59
73
  extensions: []
60
74
  extra_rdoc_files: []
61
75
  files:
76
+ - ".DS_Store"
62
77
  - ".gitignore"
63
78
  - ".travis.yml"
64
79
  - CODE_OF_CONDUCT.md
@@ -68,11 +83,69 @@ files:
68
83
  - Rakefile
69
84
  - bin/console
70
85
  - bin/setup
86
+ - lib/.DS_Store
87
+ - lib/stylesheets/README.txt
71
88
  - lib/stylesheets/_uxunity.scss
89
+ - lib/stylesheets/base/README.txt
90
+ - lib/stylesheets/base/_forms.scss
91
+ - lib/stylesheets/base/_lists.scss
92
+ - lib/stylesheets/base/_media.scss
93
+ - lib/stylesheets/base/_tables.scss
94
+ - lib/stylesheets/base/_typography.scss
95
+ - lib/stylesheets/components/.DS_Store
96
+ - lib/stylesheets/components/README.txt
97
+ - lib/stylesheets/components/blocks/.DS_Store
98
+ - lib/stylesheets/components/blocks/README.txt
99
+ - lib/stylesheets/components/blocks/footer.scss
100
+ - lib/stylesheets/components/blocks/front-page.scss
101
+ - lib/stylesheets/components/blocks/login-popup.scss
102
+ - lib/stylesheets/components/blocks/menus.scss
103
+ - lib/stylesheets/components/blocks/nav_index.scss
104
+ - lib/stylesheets/components/blocks/region_side_bar.scss
105
+ - lib/stylesheets/components/blocks/search.scss
106
+ - lib/stylesheets/components/blocks/spinner.scss
107
+ - lib/stylesheets/components/blocks/treeStyles.scss
108
+ - lib/stylesheets/components/blocks/treeview.scss
109
+ - lib/stylesheets/components/node/README.txt
110
+ - lib/stylesheets/components/node/asset.scss
111
+ - lib/stylesheets/components/node/basic_page.scss
112
+ - lib/stylesheets/components/node/blog.scss
113
+ - lib/stylesheets/components/node/bulk_photo_nodes_default.scss
114
+ - lib/stylesheets/components/node/edit.scss
115
+ - lib/stylesheets/components/node/magnify.scss
116
+ - lib/stylesheets/components/node/node.scss
117
+ - lib/stylesheets/components/node/pattern.scss
118
+ - lib/stylesheets/components/node/spec_style.scss
119
+ - lib/stylesheets/components/node/webform.scss
120
+ - lib/stylesheets/components/views/README.txt
121
+ - lib/stylesheets/components/views/assets.scss
122
+ - lib/stylesheets/components/views/taxonomy.scss
123
+ - lib/stylesheets/components/views/test-views-search-php.html
124
+ - lib/stylesheets/mixins/_mixins.scss
125
+ - lib/stylesheets/mixins/_prefix-mixins.scss
126
+ - lib/stylesheets/utility/.DS_Store
127
+ - lib/stylesheets/utility/README.txt
128
+ - lib/stylesheets/utility/_dependencies.scss
129
+ - lib/stylesheets/utility/abstractions/README.txt
130
+ - lib/stylesheets/utility/variables/README.txt
131
+ - lib/stylesheets/utility/variables/_breakpoints.scss
132
+ - lib/stylesheets/utility/variables/_colors.scss
133
+ - lib/stylesheets/utility/variables/_forms.scss
134
+ - lib/stylesheets/utility/variables/_globals.scss
135
+ - lib/stylesheets/utility/variables/_grid.scss
136
+ - lib/stylesheets/utility/variables/_legacy.scss
137
+ - lib/stylesheets/utility/variables/_typography.scss
138
+ - lib/stylesheets/ux/.DS_Store
139
+ - lib/stylesheets/ux/_lists.scss
140
+ - lib/stylesheets/ux/_ux-buttons.scss
141
+ - lib/stylesheets/ux/_ux-tooltips.scss
142
+ - lib/stylesheets/ux/_ux-utils.scss
143
+ - lib/stylesheets/ux/ux-dropdown.scss
72
144
  - lib/uxunity.rb
73
145
  - lib/uxunity/version.rb
74
146
  - templates/project/manifest.rb
75
147
  - templates/project/screen.sass
148
+ - uxunity-0.1.0.gem
76
149
  - uxunity.gemspec
77
150
  homepage: https://github.com/ronsnow/ux-unity
78
151
  licenses: