tagmanager-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,107 @@
1
+ .myTag
2
+ {
3
+ background: none repeat scroll 0 0 #CDE69C;
4
+ border: 1px solid #A5D24A;
5
+ border-radius: 3px 3px 3px 3px;
6
+ color: #638421;
7
+
8
+ // to be tested
9
+ display: block;
10
+ float: left;
11
+ //
12
+
13
+ font-family: helvetica;
14
+ font-size: 13px;
15
+ margin-bottom: 5px;
16
+ margin-right: 5px;
17
+ //padding-top: 6px;
18
+ //padding-bottom: 5px;
19
+ padding: 6px 5px 5px 5px;
20
+ text-decoration: none;
21
+
22
+ vertical-align: middle;
23
+ line-height: 18px;
24
+ height:18px;
25
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
26
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
27
+ }
28
+ .myTagError
29
+ {
30
+ background-color: #F2DEDE;
31
+ }
32
+ .myTagRemover
33
+ {
34
+ color:silver;
35
+ }
36
+ .tagManager
37
+ {
38
+ border-radius: 3px 3px 3px 3px;
39
+ margin-top:0;
40
+ }
41
+
42
+ .myFramedTag
43
+ {
44
+ background: none repeat scroll 0 0 #CDE69C;
45
+ border: 1px solid #A5D24A;
46
+ border-radius: 3px 3px 3px 3px;
47
+ color: #638421;
48
+ //display: block;
49
+ //float: left;
50
+ font-family: helvetica;
51
+ font-size: 11px;
52
+ margin-bottom: 5px;
53
+ margin-right: 5px;
54
+ //padding-top: 6px;
55
+ //padding-bottom: 5px;
56
+ padding: 5px 4px 4px 4px;
57
+ text-decoration: none;
58
+ white-space: nowrap;
59
+
60
+ vertical-align: middle;
61
+ line-height: 18px;
62
+ //height:18px;
63
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
64
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
65
+ }
66
+
67
+ .myMinTag
68
+ {
69
+ background: none repeat scroll 0 0 #CDE69C;
70
+ border: 1px solid #A5D24A;
71
+ border-radius: 3px 3px 3px 3px;
72
+ color: #638421;
73
+ //display: block;
74
+ //float: left;
75
+ font-family: helvetica;
76
+ font-size: 11px;
77
+ margin-bottom: 5px;
78
+ margin-right: 5px;
79
+ //padding-top: 6px;
80
+ //padding-bottom: 5px;
81
+ padding: 2px 4px 2px 4px;
82
+ text-decoration: none;
83
+
84
+ vertical-align: middle;
85
+ line-height: 18px;
86
+ //height:18px;
87
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
88
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
89
+ }
90
+
91
+ .myMinNonTag
92
+ {
93
+ font-family: helvetica;
94
+ font-size: 11px;
95
+ margin-bottom: 5px;
96
+ margin-right: 5px;
97
+ //padding-top: 6px;
98
+ //padding-bottom: 5px;
99
+ padding: 2px 4px 2px 4px;
100
+ text-decoration: none;
101
+
102
+ vertical-align: middle;
103
+ line-height: 18px;
104
+ //height:18px;
105
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
106
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
107
+ }
@@ -0,0 +1,105 @@
1
+ //
2
+ // Bootstrap tagmanager
3
+ // --------------------------------------------------
4
+
5
+ .myTag {
6
+ background: none repeat scroll 0 0 @successBackground;
7
+ border: 1px solid @linkColor;
8
+ border-radius: 3px 3px 3px 3px;
9
+ color: @linkColor;
10
+ // to be tested
11
+ display: block;
12
+ float: left;
13
+
14
+ font-family: @sansFontFamily;
15
+ font-size: @baseFontSize;
16
+ margin-bottom: 5px;
17
+ margin-right: 5px;
18
+ //padding-top: 6px;
19
+ //padding-bottom: 5px;
20
+ padding: 4px 5px;
21
+ text-decoration: none;
22
+
23
+ vertical-align: middle;
24
+ line-height: @baseLineHeight;
25
+ height: @baseLineHeight;
26
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
27
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
28
+ }
29
+ .myTagError {
30
+ background-color: @btnDangerBackground;
31
+ }
32
+ .myTagRemover {
33
+ color: @gray;
34
+ }
35
+ .myTagRemover:hover {
36
+ text-decoration: none;
37
+ }
38
+ .tagManager {
39
+ border-radius: 3px 3px 3px 3px;
40
+ margin-top:0;
41
+ }
42
+
43
+ .myFramedTag {
44
+ background: none repeat scroll 0 0 @successBackground;
45
+ border: 1px solid @linkColor;
46
+ border-radius: 3px 3px 3px 3px;
47
+ color: @linkColor;
48
+ //display: block;
49
+ //float: left;
50
+ font-family: @sansFontFamily;
51
+ font-size: @baseFontSize;
52
+ margin-bottom: 5px;
53
+ margin-right: 5px;
54
+ //padding-top: 6px;
55
+ //padding-bottom: 5px;
56
+ padding: 5px 4px 4px 4px;
57
+ text-decoration: none;
58
+ white-space: nowrap;
59
+
60
+ vertical-align: middle;
61
+ line-height: @baseLineHeight;
62
+ //height:18px;
63
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
64
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
65
+ }
66
+
67
+ .myMinTag {
68
+ background: none repeat scroll 0 0 @successBackground;
69
+ border: 1px solid @linkColor;
70
+ border-radius: 3px 3px 3px 3px;
71
+ color: @linkColor;
72
+ //display: block;
73
+ //float: left;
74
+ font-family: @sansFontFamily;
75
+ font-size: @baseFontSize;
76
+ margin-bottom: 5px;
77
+ margin-right: 5px;
78
+ //padding-top: 6px;
79
+ //padding-bottom: 5px;
80
+ padding: 2px 4px 2px 4px;
81
+ text-decoration: none;
82
+
83
+ vertical-align: middle;
84
+ line-height: @baseLineHeight;
85
+ //height:18px;
86
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
87
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
88
+ }
89
+
90
+ .myMinNonTag {
91
+ font-family: @sansFontFamily;
92
+ font-size: @baseFontSize;
93
+ margin-bottom: 5px;
94
+ margin-right: 5px;
95
+ //padding-top: 6px;
96
+ //padding-bottom: 5px;
97
+ padding: 2px 4px 2px 4px;
98
+ text-decoration: none;
99
+
100
+ vertical-align: middle;
101
+ line-height: 18px;
102
+ //height:18px;
103
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
104
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
105
+ }
@@ -0,0 +1,105 @@
1
+ //
2
+ // Bootstrap tagmanager
3
+ // --------------------------------------------------
4
+
5
+ .myTag {
6
+ background: none repeat scroll 0 0 $successBackground;
7
+ border: 1px solid $linkColor;
8
+ border-radius: 3px 3px 3px 3px;
9
+ color: $linkColor;
10
+ // to be tested
11
+ display: block;
12
+ float: left;
13
+
14
+ font-family: $sansFontFamily;
15
+ font-size: $baseFontSize;
16
+ margin-bottom: 5px;
17
+ margin-right: 5px;
18
+ //padding-top: 6px;
19
+ //padding-bottom: 5px;
20
+ padding: 4px 5px;
21
+ text-decoration: none;
22
+
23
+ vertical-align: middle;
24
+ line-height: $baseLineHeight;
25
+ height: $baseLineHeight;
26
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
27
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
28
+ }
29
+ .myTagError {
30
+ background-color: $btnDangerBackground;
31
+ }
32
+ .myTagRemover {
33
+ color: $gray;
34
+ }
35
+ .myTagRemover:hover {
36
+ text-decoration: none;
37
+ }
38
+ .tagManager {
39
+ border-radius: 3px 3px 3px 3px;
40
+ margin-top:0;
41
+ }
42
+
43
+ .myFramedTag {
44
+ background: none repeat scroll 0 0 $successBackground;
45
+ border: 1px solid $linkColor;
46
+ border-radius: 3px 3px 3px 3px;
47
+ color: $linkColor;
48
+ //display: block;
49
+ //float: left;
50
+ font-family: $sansFontFamily;
51
+ font-size: $baseFontSize;
52
+ margin-bottom: 5px;
53
+ margin-right: 5px;
54
+ //padding-top: 6px;
55
+ //padding-bottom: 5px;
56
+ padding: 5px 4px 4px 4px;
57
+ text-decoration: none;
58
+ white-space: nowrap;
59
+
60
+ vertical-align: middle;
61
+ line-height: $baseLineHeight;
62
+ //height:18px;
63
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
64
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
65
+ }
66
+
67
+ .myMinTag {
68
+ background: none repeat scroll 0 0 $successBackground;
69
+ border: 1px solid $linkColor;
70
+ border-radius: 3px 3px 3px 3px;
71
+ color: $linkColor;
72
+ //display: block;
73
+ //float: left;
74
+ font-family: $sansFontFamily;
75
+ font-size: $baseFontSize;
76
+ margin-bottom: 5px;
77
+ margin-right: 5px;
78
+ //padding-top: 6px;
79
+ //padding-bottom: 5px;
80
+ padding: 2px 4px 2px 4px;
81
+ text-decoration: none;
82
+
83
+ vertical-align: middle;
84
+ line-height: $baseLineHeight;
85
+ //height:18px;
86
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
87
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
88
+ }
89
+
90
+ .myMinNonTag {
91
+ font-family: $sansFontFamily;
92
+ font-size: $baseFontSize;
93
+ margin-bottom: 5px;
94
+ margin-right: 5px;
95
+ //padding-top: 6px;
96
+ //padding-bottom: 5px;
97
+ padding: 2px 4px 2px 4px;
98
+ text-decoration: none;
99
+
100
+ vertical-align: middle;
101
+ line-height: 18px;
102
+ //height:18px;
103
+ -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
104
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
105
+ }
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tagmanager-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tobias L. Maier
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ - - <
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ description: This gem provides Tag Manager for your Rails 3 application.
34
+ email:
35
+ - tobias.maier@baucloud.com
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - lib/tag_manager/rails/engine.rb
41
+ - lib/tag_manager/rails/version.rb
42
+ - lib/tag_manager/rails.rb
43
+ - lib/tagmanager-rails.rb
44
+ - vendor/assets/javascripts/bootstrap-tagmanager.js
45
+ - vendor/assets/LICENSE
46
+ - vendor/assets/stylesheets/bootstrap-tagmanager.css
47
+ - vendor/assets/stylesheets/bootstrap-tagmanager.css.less
48
+ - vendor/assets/stylesheets/bootstrap-tagmanager.css.scss
49
+ - LICENSE
50
+ - Rakefile
51
+ - README.md
52
+ homepage: https://github.com/tmaier/tagmanager-rails
53
+ licenses:
54
+ - MIT
55
+ metadata: {}
56
+ post_install_message:
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ! '>='
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: 1.3.6
70
+ requirements: []
71
+ rubyforge_project:
72
+ rubygems_version: 2.0.3
73
+ signing_key:
74
+ specification_version: 4
75
+ summary: Use Tag Manager with Rails 3
76
+ test_files: []