muck-engine 3.2.6 → 3.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/layouts/admin/_head.html.erb +4 -3
- data/muck-engine.gemspec +3 -3
- data/public/stylesheets/admin.css +20 -1
- metadata +5 -5
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.7
|
@@ -1,18 +1,19 @@
|
|
1
1
|
<title><%= @page_title || MuckEngine.configuration.application_name %></title>
|
2
2
|
<meta http-equiv="content-type" content="text/xhtml; charset=utf-8" />
|
3
|
-
<%= google_load_jquery_ui_css(http_protocol, 'smoothness', '1.8.
|
3
|
+
<%= google_load_jquery_ui_css(http_protocol, 'smoothness', '1.8.9') %>
|
4
4
|
<%= stylesheet_link_tag 'blueprint/print.css', :media => "print" %>
|
5
5
|
<!--[if IE]><link rel="stylesheet" href="/stylesheets/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
|
6
6
|
<%= stylesheet_link_tag %W{ reset styles blueprint/liquid_screen jquery/jquery.autocomplete jquery/jquery.fancybox fgmenu/fg.menu.css admin }, :cache => 'admin_styles' %>
|
7
7
|
<%= stylesheet_link_tag MuckEngine.configuration.muck_admin_css -%>
|
8
|
-
<%= google_load_jquery(http_protocol, '1.
|
9
|
-
<%= google_load_jquery_ui(http_protocol, '1.8.
|
8
|
+
<%= google_load_jquery(http_protocol, '1.5.1') %>
|
9
|
+
<%= google_load_jquery_ui(http_protocol, '1.8.9') %>
|
10
10
|
<%= javascript_include_tag %w{
|
11
11
|
jquery/jquery.form.js
|
12
12
|
jquery/jquery.jgrowl.js
|
13
13
|
jquery/jquery.tips.js
|
14
14
|
jquery/jquery.fancybox.js
|
15
15
|
jquery/fg.menu.js
|
16
|
+
rails.js
|
16
17
|
muck_admin.js
|
17
18
|
muck.js
|
18
19
|
application.js }, :cache => 'admin_js_cached' %>
|
data/muck-engine.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-engine}
|
8
|
-
s.version = "3.2.
|
8
|
+
s.version = "3.2.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Justin Ball", "Joel Duffin"]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-03-14}
|
13
13
|
s.description = %q{The base engine for the muck system. Contains common tables, custom for, css and javascript.}
|
14
14
|
s.email = %q{justin@tatemae.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -221,7 +221,7 @@ Gem::Specification.new do |s|
|
|
221
221
|
]
|
222
222
|
s.homepage = %q{http://github.com/tatemae/muck-engine}
|
223
223
|
s.require_paths = ["lib"]
|
224
|
-
s.rubygems_version = %q{1.
|
224
|
+
s.rubygems_version = %q{1.6.0}
|
225
225
|
s.summary = %q{The base engine for the muck system.}
|
226
226
|
|
227
227
|
if s.respond_to? :specification_version then
|
@@ -59,4 +59,23 @@ button.fg-button { width:auto; overflow:visible; } /* removes extra button width
|
|
59
59
|
.tabs ul li a{color:#000;text-decoration:none;}
|
60
60
|
.tabs ul li a:hover{color:#333;}
|
61
61
|
.tabs ul li a.active{background-position:0 bottom;color:#fff;}
|
62
|
-
.tabs ul li a.active span{background-position:right bottom;}
|
62
|
+
.tabs ul li a.active span{background-position:right bottom;}
|
63
|
+
/* forms */
|
64
|
+
input{margin:0 10px 5px 0;padding:4px;font-size:1.3em;}
|
65
|
+
input[type="text"],input[type="password"]{border:1px solid #8f8685;}
|
66
|
+
input[type="checkbox"]{border:none;margin-bottom:0px;}
|
67
|
+
input[type="radio"]{border:none;}
|
68
|
+
textarea{font-size:1.4em;margin:0 10px 0 0;padding:4px;border:1px solid #8f8685;}
|
69
|
+
label{font-size:1.2em;font-weight:bold;margin:0 10px 5px 0;padding:0px;display:block;}
|
70
|
+
form em{color:#b61e12;font-style:normal;font-size:90%;}
|
71
|
+
form hr{border:1px solid #e3e0c3;height:1px;margin:15px 0;}
|
72
|
+
fieldset span.var{margin:2px 5px 5px 18px;display:block;}
|
73
|
+
fieldset{border:none;margin:0;padding:0;}
|
74
|
+
form fieldset{margin:0 0 2px;padding:0px;}
|
75
|
+
form fieldset input[type="text"],form fieldset input[type="password"]{width:500px;}
|
76
|
+
.form-help{font-size:12px;}
|
77
|
+
|
78
|
+
.checkbox-label{display:inline-block;}
|
79
|
+
.checklist{padding:0px;margin:0px 0 0 10px;}
|
80
|
+
.checklist input[type="checkbox"]{float:left;clear:left;}
|
81
|
+
.checklist label{display:inline;}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 3.2.
|
9
|
+
- 7
|
10
|
+
version: 3.2.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Justin Ball
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-
|
19
|
+
date: 2011-03-14 00:00:00 -06:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -515,7 +515,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
515
515
|
requirements: []
|
516
516
|
|
517
517
|
rubyforge_project:
|
518
|
-
rubygems_version: 1.
|
518
|
+
rubygems_version: 1.6.0
|
519
519
|
signing_key:
|
520
520
|
specification_version: 3
|
521
521
|
summary: The base engine for the muck system.
|