notee 0.2.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/notee/application.js +23756 -834
- data/app/assets/stylesheets/notee/lighttaste.css +446 -0
- data/app/assets/stylesheets/notee/normalize.css +427 -0
- data/lib/notee/engine.rb +1 -4
- data/lib/notee/version.rb +1 -1
- metadata +3 -4
- data/app/assets/stylesheets/notee/images.css +0 -4
- data/app/assets/stylesheets/notee/posts.css +0 -4
- data/app/assets/stylesheets/scaffold.css +0 -56
data/lib/notee/engine.rb
CHANGED
@@ -2,12 +2,9 @@ module Notee
|
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
isolate_namespace Notee
|
4
4
|
|
5
|
-
config.generators do |g|
|
6
|
-
g.template_engine :slim
|
7
|
-
end
|
8
|
-
|
9
5
|
initializer "notee.assets.precompile" do |app|
|
10
6
|
app.config.assets.precompile += %w(*.js *.css)
|
11
7
|
end
|
8
|
+
|
12
9
|
end
|
13
10
|
end
|
data/lib/notee/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- takujifunao
|
@@ -106,10 +106,9 @@ files:
|
|
106
106
|
- app/assets/javascripts/application.js
|
107
107
|
- app/assets/javascripts/notee/application.js
|
108
108
|
- app/assets/stylesheets/notee/application.css
|
109
|
-
- app/assets/stylesheets/notee/
|
110
|
-
- app/assets/stylesheets/notee/
|
109
|
+
- app/assets/stylesheets/notee/lighttaste.css
|
110
|
+
- app/assets/stylesheets/notee/normalize.css
|
111
111
|
- app/assets/stylesheets/notee/preview.scss
|
112
|
-
- app/assets/stylesheets/scaffold.css
|
113
112
|
- app/controllers/notee/application_controller.rb
|
114
113
|
- app/controllers/notee/categories_controller.rb
|
115
114
|
- app/controllers/notee/images_controller.rb
|
@@ -1,56 +0,0 @@
|
|
1
|
-
body { background-color: #fff; color: #333; }
|
2
|
-
|
3
|
-
body, p, ol, ul, td {
|
4
|
-
font-family: verdana, arial, helvetica, sans-serif;
|
5
|
-
font-size: 13px;
|
6
|
-
line-height: 18px;
|
7
|
-
}
|
8
|
-
|
9
|
-
pre {
|
10
|
-
background-color: #eee;
|
11
|
-
padding: 10px;
|
12
|
-
font-size: 11px;
|
13
|
-
}
|
14
|
-
|
15
|
-
a { color: #000; }
|
16
|
-
a:visited { color: #666; }
|
17
|
-
a:hover { color: #fff; background-color:#000; }
|
18
|
-
|
19
|
-
div.field, div.actions {
|
20
|
-
margin-bottom: 10px;
|
21
|
-
}
|
22
|
-
|
23
|
-
#notice {
|
24
|
-
color: green;
|
25
|
-
}
|
26
|
-
|
27
|
-
.field_with_errors {
|
28
|
-
padding: 2px;
|
29
|
-
background-color: red;
|
30
|
-
display: table;
|
31
|
-
}
|
32
|
-
|
33
|
-
#error_explanation {
|
34
|
-
width: 450px;
|
35
|
-
border: 2px solid red;
|
36
|
-
padding: 7px;
|
37
|
-
padding-bottom: 0;
|
38
|
-
margin-bottom: 20px;
|
39
|
-
background-color: #f0f0f0;
|
40
|
-
}
|
41
|
-
|
42
|
-
#error_explanation h2 {
|
43
|
-
text-align: left;
|
44
|
-
font-weight: bold;
|
45
|
-
padding: 5px 5px 5px 15px;
|
46
|
-
font-size: 12px;
|
47
|
-
margin: -7px;
|
48
|
-
margin-bottom: 0px;
|
49
|
-
background-color: #c00;
|
50
|
-
color: #fff;
|
51
|
-
}
|
52
|
-
|
53
|
-
#error_explanation ul li {
|
54
|
-
font-size: 12px;
|
55
|
-
list-style: square;
|
56
|
-
}
|