semantic_ui_rails 0.0.2

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 (78) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +20 -0
  5. data/README.md +4 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/semantic/icons.eot +0 -0
  8. data/app/assets/fonts/semantic/icons.svg +450 -0
  9. data/app/assets/fonts/semantic/icons.ttf +0 -0
  10. data/app/assets/fonts/semantic/icons.woff +0 -0
  11. data/app/assets/images/semantic/loader-large-inverted.gif +0 -0
  12. data/app/assets/images/semantic/loader-large.gif +0 -0
  13. data/app/assets/images/semantic/loader-medium-inverted.gif +0 -0
  14. data/app/assets/images/semantic/loader-medium.gif +0 -0
  15. data/app/assets/images/semantic/loader-mini-inverted.gif +0 -0
  16. data/app/assets/images/semantic/loader-mini.gif +0 -0
  17. data/app/assets/images/semantic/loader-small-inverted.gif +0 -0
  18. data/app/assets/images/semantic/loader-small.gif +0 -0
  19. data/app/assets/javascript/semantic/accordion.js +411 -0
  20. data/app/assets/javascript/semantic/behavior/api.js +666 -0
  21. data/app/assets/javascript/semantic/behavior/colorize.js +271 -0
  22. data/app/assets/javascript/semantic/behavior/form.js +703 -0
  23. data/app/assets/javascript/semantic/behavior/state.js +752 -0
  24. data/app/assets/javascript/semantic/chatroom.js +766 -0
  25. data/app/assets/javascript/semantic/checkbox.js +348 -0
  26. data/app/assets/javascript/semantic/dimmer.js +524 -0
  27. data/app/assets/javascript/semantic/dropdown.js +707 -0
  28. data/app/assets/javascript/semantic/modal.js +478 -0
  29. data/app/assets/javascript/semantic/nag.js +542 -0
  30. data/app/assets/javascript/semantic/popup.js +721 -0
  31. data/app/assets/javascript/semantic/rating.js +358 -0
  32. data/app/assets/javascript/semantic/search.js +769 -0
  33. data/app/assets/javascript/semantic/shape.js +776 -0
  34. data/app/assets/javascript/semantic/sidebar.js +489 -0
  35. data/app/assets/javascript/semantic/tab.js +674 -0
  36. data/app/assets/javascript/semantic/transition.js +650 -0
  37. data/app/assets/javascript/semantic/video.js +459 -0
  38. data/app/assets/stylesheets/semantic/accordion.css +97 -0
  39. data/app/assets/stylesheets/semantic/breadcrumb.css +66 -0
  40. data/app/assets/stylesheets/semantic/button.css +993 -0
  41. data/app/assets/stylesheets/semantic/chatroom.css +242 -0
  42. data/app/assets/stylesheets/semantic/checkbox.css +300 -0
  43. data/app/assets/stylesheets/semantic/comment.css +178 -0
  44. data/app/assets/stylesheets/semantic/dimmer.css +185 -0
  45. data/app/assets/stylesheets/semantic/divider.css +155 -0
  46. data/app/assets/stylesheets/semantic/dropdown.css +415 -0
  47. data/app/assets/stylesheets/semantic/feed.css +126 -0
  48. data/app/assets/stylesheets/semantic/form.css +427 -0
  49. data/app/assets/stylesheets/semantic/grid.css +561 -0
  50. data/app/assets/stylesheets/semantic/header.css +277 -0
  51. data/app/assets/stylesheets/semantic/icon.css +811 -0
  52. data/app/assets/stylesheets/semantic/image.css +143 -0
  53. data/app/assets/stylesheets/semantic/input.css +225 -0
  54. data/app/assets/stylesheets/semantic/item.css +564 -0
  55. data/app/assets/stylesheets/semantic/label.css +687 -0
  56. data/app/assets/stylesheets/semantic/list.css +418 -0
  57. data/app/assets/stylesheets/semantic/loader.css +148 -0
  58. data/app/assets/stylesheets/semantic/menu.css +1409 -0
  59. data/app/assets/stylesheets/semantic/message.css +242 -0
  60. data/app/assets/stylesheets/semantic/modal.css +123 -0
  61. data/app/assets/stylesheets/semantic/nag.css +130 -0
  62. data/app/assets/stylesheets/semantic/popup.css +209 -0
  63. data/app/assets/stylesheets/semantic/progress.css +257 -0
  64. data/app/assets/stylesheets/semantic/rating.css +120 -0
  65. data/app/assets/stylesheets/semantic/reveal.css +283 -0
  66. data/app/assets/stylesheets/semantic/search.css +222 -0
  67. data/app/assets/stylesheets/semantic/segment.css +362 -0
  68. data/app/assets/stylesheets/semantic/shape.css +87 -0
  69. data/app/assets/stylesheets/semantic/sidebar.css +100 -0
  70. data/app/assets/stylesheets/semantic/step.css +240 -0
  71. data/app/assets/stylesheets/semantic/tab.css +52 -0
  72. data/app/assets/stylesheets/semantic/table.css +468 -0
  73. data/app/assets/stylesheets/semantic/transition.css +867 -0
  74. data/app/assets/stylesheets/semantic/video.css +81 -0
  75. data/lib/semantic_ui_rails/version.rb +3 -0
  76. data/lib/semantic_ui_rails.rb +7 -0
  77. data/semantic_ui_rails.gemspec +23 -0
  78. metadata +149 -0
@@ -0,0 +1,81 @@
1
+ /*
2
+ * # Semantic Video
3
+ * http://github.com/quirkyinc/semantic
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ * Released: July 30, 2013
11
+ */
12
+ /*******************************
13
+ Video
14
+ *******************************/
15
+ .ui.video {
16
+ position: relative;
17
+ max-width: 100%;
18
+ }
19
+ /*--------------
20
+ Content
21
+ ---------------*/
22
+ /* Placeholder Image */
23
+ .ui.video .placeholder {
24
+ background-color: #333333;
25
+ }
26
+ /* Play Icon Overlay */
27
+ .ui.video .play {
28
+ cursor: pointer;
29
+ position: absolute;
30
+ top: 0px;
31
+ left: 0px;
32
+ z-index: 10;
33
+ width: 100%;
34
+ height: 100%;
35
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
36
+ filter: alpha(opacity=60);
37
+ opacity: 0.6;
38
+ -webkit-transition: opacity 0.3s;
39
+ -moz-transition: opacity 0.3s;
40
+ -o-transition: opacity 0.3s;
41
+ -ms-transition: opacity 0.3s;
42
+ transition: opacity 0.3s;
43
+ }
44
+ .ui.video .play.icon:before {
45
+ position: absolute;
46
+ top: 50%;
47
+ left: 50%;
48
+ z-index: 11;
49
+ font-size: 6rem;
50
+ margin: -3rem 0em 0em -3rem;
51
+ color: #FFFFFF;
52
+ text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
53
+ }
54
+ .ui.video .placeholder {
55
+ display: block;
56
+ width: 100%;
57
+ height: 100%;
58
+ }
59
+ /* IFrame Embed */
60
+ .ui.video .embed {
61
+ display: none;
62
+ }
63
+ /*******************************
64
+ States
65
+ *******************************/
66
+ /*--------------
67
+ Hover
68
+ ---------------*/
69
+ .ui.video .play:hover {
70
+ opacity: 1;
71
+ }
72
+ /*--------------
73
+ Active
74
+ ---------------*/
75
+ .ui.video.active .play,
76
+ .ui.video.active .placeholder {
77
+ display: none;
78
+ }
79
+ .ui.video.active .embed {
80
+ display: block;
81
+ }
@@ -0,0 +1,3 @@
1
+ module SemanticRails
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'semantic_ui_rails/version'
2
+ require 'rails'
3
+
4
+ module Semantic
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'semantic_ui_rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "semantic_ui_rails"
8
+ spec.version = SemanticRails::VERSION
9
+ spec.authors = ["amirolahmad"]
10
+ spec.email = ["9w2pdf@gmail.com"]
11
+ spec.description = %q{This is a gem for Semantic UI based on version 0.0.2.}
12
+ spec.summary = %q{Semantic empowers designers and developers by creating a language for sharing UI.}
13
+ spec.homepage = "https://github.com/amirolahmad/semantic-ui-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: semantic_ui_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - amirolahmad
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: This is a gem for Semantic UI based on version 0.0.2.
42
+ email:
43
+ - 9w2pdf@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE
51
+ - README.md
52
+ - Rakefile
53
+ - app/assets/fonts/semantic/icons.eot
54
+ - app/assets/fonts/semantic/icons.svg
55
+ - app/assets/fonts/semantic/icons.ttf
56
+ - app/assets/fonts/semantic/icons.woff
57
+ - app/assets/images/semantic/loader-large-inverted.gif
58
+ - app/assets/images/semantic/loader-large.gif
59
+ - app/assets/images/semantic/loader-medium-inverted.gif
60
+ - app/assets/images/semantic/loader-medium.gif
61
+ - app/assets/images/semantic/loader-mini-inverted.gif
62
+ - app/assets/images/semantic/loader-mini.gif
63
+ - app/assets/images/semantic/loader-small-inverted.gif
64
+ - app/assets/images/semantic/loader-small.gif
65
+ - app/assets/javascript/semantic/accordion.js
66
+ - app/assets/javascript/semantic/behavior/api.js
67
+ - app/assets/javascript/semantic/behavior/colorize.js
68
+ - app/assets/javascript/semantic/behavior/form.js
69
+ - app/assets/javascript/semantic/behavior/state.js
70
+ - app/assets/javascript/semantic/chatroom.js
71
+ - app/assets/javascript/semantic/checkbox.js
72
+ - app/assets/javascript/semantic/dimmer.js
73
+ - app/assets/javascript/semantic/dropdown.js
74
+ - app/assets/javascript/semantic/modal.js
75
+ - app/assets/javascript/semantic/nag.js
76
+ - app/assets/javascript/semantic/popup.js
77
+ - app/assets/javascript/semantic/rating.js
78
+ - app/assets/javascript/semantic/search.js
79
+ - app/assets/javascript/semantic/shape.js
80
+ - app/assets/javascript/semantic/sidebar.js
81
+ - app/assets/javascript/semantic/tab.js
82
+ - app/assets/javascript/semantic/transition.js
83
+ - app/assets/javascript/semantic/video.js
84
+ - app/assets/stylesheets/semantic/accordion.css
85
+ - app/assets/stylesheets/semantic/breadcrumb.css
86
+ - app/assets/stylesheets/semantic/button.css
87
+ - app/assets/stylesheets/semantic/chatroom.css
88
+ - app/assets/stylesheets/semantic/checkbox.css
89
+ - app/assets/stylesheets/semantic/comment.css
90
+ - app/assets/stylesheets/semantic/dimmer.css
91
+ - app/assets/stylesheets/semantic/divider.css
92
+ - app/assets/stylesheets/semantic/dropdown.css
93
+ - app/assets/stylesheets/semantic/feed.css
94
+ - app/assets/stylesheets/semantic/form.css
95
+ - app/assets/stylesheets/semantic/grid.css
96
+ - app/assets/stylesheets/semantic/header.css
97
+ - app/assets/stylesheets/semantic/icon.css
98
+ - app/assets/stylesheets/semantic/image.css
99
+ - app/assets/stylesheets/semantic/input.css
100
+ - app/assets/stylesheets/semantic/item.css
101
+ - app/assets/stylesheets/semantic/label.css
102
+ - app/assets/stylesheets/semantic/list.css
103
+ - app/assets/stylesheets/semantic/loader.css
104
+ - app/assets/stylesheets/semantic/menu.css
105
+ - app/assets/stylesheets/semantic/message.css
106
+ - app/assets/stylesheets/semantic/modal.css
107
+ - app/assets/stylesheets/semantic/nag.css
108
+ - app/assets/stylesheets/semantic/popup.css
109
+ - app/assets/stylesheets/semantic/progress.css
110
+ - app/assets/stylesheets/semantic/rating.css
111
+ - app/assets/stylesheets/semantic/reveal.css
112
+ - app/assets/stylesheets/semantic/search.css
113
+ - app/assets/stylesheets/semantic/segment.css
114
+ - app/assets/stylesheets/semantic/shape.css
115
+ - app/assets/stylesheets/semantic/sidebar.css
116
+ - app/assets/stylesheets/semantic/step.css
117
+ - app/assets/stylesheets/semantic/tab.css
118
+ - app/assets/stylesheets/semantic/table.css
119
+ - app/assets/stylesheets/semantic/transition.css
120
+ - app/assets/stylesheets/semantic/video.css
121
+ - lib/semantic_ui_rails.rb
122
+ - lib/semantic_ui_rails/version.rb
123
+ - semantic_ui_rails.gemspec
124
+ homepage: https://github.com/amirolahmad/semantic-ui-rails
125
+ licenses:
126
+ - MIT
127
+ metadata: {}
128
+ post_install_message:
129
+ rdoc_options: []
130
+ require_paths:
131
+ - lib
132
+ required_ruby_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - '>='
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ required_rubygems_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ requirements: []
143
+ rubyforge_project:
144
+ rubygems_version: 2.1.4
145
+ signing_key:
146
+ specification_version: 4
147
+ summary: Semantic empowers designers and developers by creating a language for sharing
148
+ UI.
149
+ test_files: []