rtrain 0.0.4 → 0.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.
- checksums.yaml +4 -4
- data/lib/generators/templates/rtrain_scaffold.scss +104 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be7007e91460e7a59dabb1017ff216654f2aaf9a
|
|
4
|
+
data.tar.gz: ce205194b1769bd80c1643c72c0866e9806e4af2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0256c81f911b077ee7c30b6a2d9125ad464e31c0aa5524f8298d9c367043c45983f785fde370e7038794295ae7e1c397adbdc9b7a91529b6722a92ab7ccfa8c
|
|
7
|
+
data.tar.gz: b68aaaf7d526f36629557a60b08aa2b884d9535c321dbe67969e88c73089c3435a369907819245335c2b8f574c914735a1c7ede7f62e915110e362a001b14046
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background-color: #fff;
|
|
3
|
+
color: #333;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body, p, ol, ul, td {
|
|
7
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
|
8
|
+
font-size: 13px;
|
|
9
|
+
line-height: 18px;
|
|
10
|
+
margin: 33px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
pre {
|
|
14
|
+
background-color: #eee;
|
|
15
|
+
padding: 10px;
|
|
16
|
+
font-size: 11px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
a:visited {
|
|
24
|
+
color: #666;
|
|
25
|
+
}
|
|
26
|
+
table{
|
|
27
|
+
border: 1px solid #cccccc;
|
|
28
|
+
border-spacing: 0px;
|
|
29
|
+
}
|
|
30
|
+
a:hover {
|
|
31
|
+
color: #fff;
|
|
32
|
+
background-color: #000;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
th {
|
|
36
|
+
border-bottom: 1px solid #cccccc;
|
|
37
|
+
height: 15px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
td {
|
|
41
|
+
padding-bottom: 7px;
|
|
42
|
+
padding-left: 5px;
|
|
43
|
+
padding-right: 5px;
|
|
44
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
|
45
|
+
border-left: none;
|
|
46
|
+
border-bottom: 1px solid #cccccc;
|
|
47
|
+
border-right: 1px solid #cccccc;
|
|
48
|
+
vertical-align: top;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
color: inherit;
|
|
51
|
+
border-top: solid 1px transparent;
|
|
52
|
+
white-space: normal;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
tr:nth-child(even) {
|
|
56
|
+
background: #f2f2f2
|
|
57
|
+
}
|
|
58
|
+
tr:nth-child(odd) {
|
|
59
|
+
background: #FFF
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
div.field,
|
|
63
|
+
div.actions {
|
|
64
|
+
margin-bottom: 10px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
#notice {
|
|
68
|
+
color: green;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.field_with_errors {
|
|
72
|
+
padding: 2px;
|
|
73
|
+
background-color: red;
|
|
74
|
+
display: table;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#error_explanation {
|
|
78
|
+
width: 450px;
|
|
79
|
+
border: 2px solid red;
|
|
80
|
+
padding: 7px;
|
|
81
|
+
padding-bottom: 0;
|
|
82
|
+
margin-bottom: 20px;
|
|
83
|
+
background-color: #f0f0f0;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
#error_explanation h2 {
|
|
87
|
+
text-align: left;
|
|
88
|
+
font-weight: bold;
|
|
89
|
+
padding: 5px 5px 5px 15px;
|
|
90
|
+
font-size: 12px;
|
|
91
|
+
margin: -7px;
|
|
92
|
+
margin-bottom: 0;
|
|
93
|
+
background-color: #c00;
|
|
94
|
+
color: #fff;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
#error_explanation ul li {
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
list-style: square;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
label {
|
|
103
|
+
display: block;
|
|
104
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rtrain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Lynn
|
|
@@ -16,6 +16,7 @@ executables: []
|
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
18
18
|
files:
|
|
19
|
+
- lib/generators/templates/rtrain_scaffold.scss
|
|
19
20
|
- lib/rtrain.rb
|
|
20
21
|
homepage: http://rubygems.org/gems/rtrain
|
|
21
22
|
licenses:
|