kitsune 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/app/views/layouts/admin/kitsune.html.erb +6 -4
- data/generators/kitsune/templates/stylesheets/global.css +13 -12
- data/lib/kitsune.rb +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rake'
|
|
2
2
|
|
3
3
|
gem_spec = Gem::Specification.new do |gem_spec|
|
4
4
|
gem_spec.name = "kitsune"
|
5
|
-
gem_spec.version = "0.0.
|
5
|
+
gem_spec.version = "0.0.11"
|
6
6
|
gem_spec.summary = "Integrated Rails Content Management System."
|
7
7
|
gem_spec.email = "matt@toastyapps.com"
|
8
8
|
gem_spec.homepage = "http://github.com/toastyapps/kitsune"
|
@@ -7,10 +7,15 @@
|
|
7
7
|
<body>
|
8
8
|
<div id='content'>
|
9
9
|
<div id='header'>
|
10
|
-
<h1
|
10
|
+
<h1><%= link_to 'Kitsune CMS', :controller => 'admin/kitsune/models' %></h1>
|
11
11
|
<a href='/'>View Site</a>
|
12
12
|
</div>
|
13
13
|
<div class='kitsune_container'>
|
14
|
+
<div class='kitsune_right_container'>
|
15
|
+
<div class='kitsune_right'>
|
16
|
+
<%= yield %>
|
17
|
+
</div>
|
18
|
+
</div>
|
14
19
|
<div class='kitsune_left'>
|
15
20
|
<% @models.each do |model| %>
|
16
21
|
<% if model.is_a? Hash %>
|
@@ -27,9 +32,6 @@
|
|
27
32
|
<% end %>
|
28
33
|
<% end %>
|
29
34
|
</div>
|
30
|
-
<div class='kitsune_right'>
|
31
|
-
<%= yield %>
|
32
|
-
</div>
|
33
35
|
</div>
|
34
36
|
</div>
|
35
37
|
</body>
|
@@ -121,29 +121,30 @@ body {
|
|
121
121
|
}
|
122
122
|
|
123
123
|
.kitsune_container {
|
124
|
-
width:100%;
|
125
|
-
|
126
|
-
margin-left: -250px;
|
124
|
+
width: 100%;
|
125
|
+
clear: both;
|
127
126
|
}
|
128
127
|
|
129
128
|
.kitsune_left {
|
130
|
-
margin-top: 15px;
|
131
|
-
width: 250px;
|
132
|
-
padding: 15px;
|
133
|
-
float: left;
|
134
129
|
background: #FFF;
|
135
130
|
border: 1px solid #CCC;
|
136
|
-
|
131
|
+
padding: 15px;
|
132
|
+
float: left;
|
133
|
+
width: 240px;
|
134
|
+
margin: 20px 0 0 20px;
|
137
135
|
}
|
138
136
|
|
137
|
+
.kitsune_right_container {
|
138
|
+
float: right;
|
139
|
+
width: 100%;
|
140
|
+
margin: 20px 0 0 -310px;
|
141
|
+
}
|
139
142
|
|
140
143
|
.kitsune_right {
|
141
|
-
margin-left: 310px;
|
142
|
-
margin-right: 15px;
|
143
|
-
margin-top: 15px;
|
144
|
-
padding: 15px;
|
145
144
|
background: #FFF;
|
146
145
|
border: 1px solid #CCC;
|
146
|
+
padding: 15px;
|
147
|
+
margin: 0 20px 0 310px;
|
147
148
|
}
|
148
149
|
|
149
150
|
#kitsune_record_header {
|
data/lib/kitsune.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitsune
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Mongeau <matt@toastyapps.com>
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-01 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|