liquid_cms 0.3.0.4 → 0.3.0.5
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.
|
@@ -32,7 +32,7 @@ module Cms::CommonHelper
|
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
javascript_tag do
|
|
35
|
-
<<-JS
|
|
35
|
+
js = <<-JS
|
|
36
36
|
var editor = CodeMirror.fromTextArea("#{content_id}", {
|
|
37
37
|
#{js_options}
|
|
38
38
|
path: "/cms/codemirror/js/",
|
|
@@ -46,6 +46,7 @@ module Cms::CommonHelper
|
|
|
46
46
|
}
|
|
47
47
|
});
|
|
48
48
|
JS
|
|
49
|
+
js.html_safe
|
|
49
50
|
end
|
|
50
51
|
end
|
|
51
52
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background: url("/cms/images/trentacinque.gif") repeat scroll 0 0 transparent;
|
|
3
|
+
}
|
|
4
|
+
#header, #sidebar h2 {
|
|
5
|
+
background: #111;
|
|
6
|
+
background: -moz-linear-gradient(270deg, #555555 0%, #222 40%, #000 100%) repeat scroll 0 0 transparent;
|
|
7
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#555), color-stop(0.40,#222), color-stop(1.0,#000));
|
|
8
|
+
}
|
|
9
|
+
#content h2 {
|
|
10
|
+
color: #AAA;
|
|
11
|
+
}
|
|
12
|
+
.cms_documentation #content {
|
|
13
|
+
color: #EEE;
|
|
14
|
+
}
|
|
15
|
+
.cms_documentation #content a {
|
|
16
|
+
color: #FFE900;
|
|
17
|
+
}
|
|
18
|
+
.cms_documentation span.function {
|
|
19
|
+
color: #49FF3F;
|
|
20
|
+
}
|
|
21
|
+
.cms_documentation .cms_info {
|
|
22
|
+
color: #333;
|
|
23
|
+
}
|
data/lib/liquid_cms/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: liquid_cms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 93
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
9
|
- 0
|
|
10
|
-
-
|
|
11
|
-
version: 0.3.0.
|
|
10
|
+
- 5
|
|
11
|
+
version: 0.3.0.5
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
14
|
- Andrew Kaspick
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2011-02-
|
|
20
|
+
date: 2011-02-15 00:00:00 -06:00
|
|
21
21
|
default_executable:
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|
|
@@ -1325,6 +1325,7 @@ files:
|
|
|
1325
1325
|
- lib/generators/liquid_cms/templates/public/cms/stylesheets/liquidcolors.css
|
|
1326
1326
|
- lib/generators/liquid_cms/templates/public/cms/stylesheets/simple_form.css
|
|
1327
1327
|
- lib/generators/liquid_cms/templates/public/cms/stylesheets/styles.css
|
|
1328
|
+
- lib/generators/liquid_cms/templates/public/cms/stylesheets/themes/dark.css
|
|
1328
1329
|
- lib/generators/liquid_cms/templates/setup_controller.rb
|
|
1329
1330
|
- lib/generators/liquid_cms/templates/vendor/plugins/liquid/CHANGELOG
|
|
1330
1331
|
- lib/generators/liquid_cms/templates/vendor/plugins/liquid/History.txt
|