togostanza 0.0.3 → 0.0.4
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/assets/stanza.css +28 -14
- data/lib/togostanza/cli.rb +1 -1
- data/lib/togostanza/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f475ea5f00c9b5b323d50f3c129186cd37f3cda2
|
|
4
|
+
data.tar.gz: 8df394980d0445c507356cdbd4f20fc463c9704c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b33ea83721ac7d02ca31322e6f18a9cff521abe29e6571ac975993e2dd1123386108bd8aef9e847f484af2556bb766f9421d510ed10d580481a6d436db181dec
|
|
7
|
+
data.tar.gz: d54b39c41ee9f35141453a19516e28d8e5ed08091fe3c093e57758b44eb1d077b210e2b67c42e4abe8e60a8a9c6033a80c7ade5e63df97bfcc6c286bebf8e6a5
|
data/assets/stanza.css
CHANGED
|
@@ -48,11 +48,11 @@ body > div {
|
|
|
48
48
|
|
|
49
49
|
body > .table {
|
|
50
50
|
border-style: solid;
|
|
51
|
-
border-color:
|
|
51
|
+
border-color: #fff;
|
|
52
52
|
border-top-width: 5px;
|
|
53
53
|
border-bottom-width: 5px;
|
|
54
|
-
border-left-width:
|
|
55
|
-
border-right-width:
|
|
54
|
+
border-left-width: 20px;
|
|
55
|
+
border-right-width: 20px;
|
|
56
56
|
}
|
|
57
57
|
.table {
|
|
58
58
|
margin-bottom: 0;
|
|
@@ -71,11 +71,6 @@ body > .table {
|
|
|
71
71
|
border-top-left-radius: 4px;
|
|
72
72
|
border-top-right-radius: 4px;
|
|
73
73
|
}
|
|
74
|
-
.table tr:before, .table tr:after {
|
|
75
|
-
content: "";
|
|
76
|
-
display: table-cell;
|
|
77
|
-
width: 20px;
|
|
78
|
-
}
|
|
79
74
|
.table thead th, .table thead td {
|
|
80
75
|
border-bottom: 1px solid #555;
|
|
81
76
|
}
|
|
@@ -95,15 +90,16 @@ th > .table, td > .table {
|
|
|
95
90
|
margin: -10px -4px;
|
|
96
91
|
width: 100%;
|
|
97
92
|
}
|
|
98
|
-
th > .table > tbody > tr:before,
|
|
99
|
-
td > .table > tbody > tr:before,
|
|
100
|
-
th > .table > tbody > tr:after,
|
|
101
|
-
td > .table > tbody > tr:after {
|
|
102
|
-
content: none;
|
|
103
|
-
}
|
|
104
93
|
.table li + li {
|
|
105
94
|
margin-top: 4px;
|
|
106
95
|
}
|
|
96
|
+
td.numeric {
|
|
97
|
+
text-align: right;
|
|
98
|
+
}
|
|
99
|
+
th.nowrap,
|
|
100
|
+
td.nowrap {
|
|
101
|
+
white-space: nowrap;
|
|
102
|
+
}
|
|
107
103
|
|
|
108
104
|
pre {
|
|
109
105
|
background-color:#daf1f5;
|
|
@@ -111,3 +107,21 @@ pre {
|
|
|
111
107
|
border:1px solid rgba(0,0,0,0.15);
|
|
112
108
|
padding: 8px 16px;
|
|
113
109
|
}
|
|
110
|
+
|
|
111
|
+
/* grid */
|
|
112
|
+
.span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11, .span12 {
|
|
113
|
+
-moz-box-sizing: border-box;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
}
|
|
116
|
+
.span1 { width: 8.3333%; }
|
|
117
|
+
.span2 { width: 16.6666%; }
|
|
118
|
+
.span3 { width: 25%; }
|
|
119
|
+
.span4 { width: 33.3333%; }
|
|
120
|
+
.span5 { width: 41.6666%; }
|
|
121
|
+
.span6 { width: 50%; }
|
|
122
|
+
.span7 { width: 58.3333%; }
|
|
123
|
+
.span8 { width: 66.6666%; }
|
|
124
|
+
.span9 { width: 75%; }
|
|
125
|
+
.span10 { width: 83.3333%; }
|
|
126
|
+
.span11 { width: 91.6666%; }
|
|
127
|
+
.span12 { width: 100%; }
|
data/lib/togostanza/cli.rb
CHANGED
data/lib/togostanza/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: togostanza
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keita Urashima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|