torino 0.1.3 → 0.1.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/lib/torino/version.rb +1 -1
- data/vendor/assets/stylesheets/torino.css +46 -9
- 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: 5048a7b0db60e1ff05d8d941502aa0b77057993a
|
4
|
+
data.tar.gz: 33c4fb8c0c090cc2b3eda7e8d30f51949f0ec6ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 857d89d97fcc16f08d909a839038907c3966ba8a50a12d016baf2bb2eb43aaae018ee81b902c1dbfabfb67e344a4a1ffd0d73600e7f28017fb60f1962500a28e
|
7
|
+
data.tar.gz: 2a9d65c924f56f0a99ec522ae496589f3da42bc25894ef269625ff7f89c248ba49b616cc7855316845136eca9c6af10c95d87b2efbb5fda0b916ef27334a0205
|
data/lib/torino/version.rb
CHANGED
@@ -90,6 +90,10 @@ a.button.mini, a.button.mini:hover, a.button.mini:visited {
|
|
90
90
|
* Forms
|
91
91
|
* ------------------------------------------
|
92
92
|
*/
|
93
|
+
.field_with_errors {
|
94
|
+
display: inline-block;
|
95
|
+
}
|
96
|
+
|
93
97
|
.actions {
|
94
98
|
margin-top: 20px;
|
95
99
|
}
|
@@ -106,14 +110,14 @@ input {
|
|
106
110
|
margin: 0 10px 14px 0;
|
107
111
|
}
|
108
112
|
|
109
|
-
input[type=text] {
|
113
|
+
input[type=text], input[type=password] {
|
110
114
|
border: none;
|
111
115
|
border-bottom: #FFE57F solid 1px;
|
112
116
|
font-size: inherit;
|
113
117
|
width: 400px;
|
114
118
|
}
|
115
119
|
|
116
|
-
input[type=text]:focus {
|
120
|
+
input[type=text]:focus, input[type=password]:focus {
|
117
121
|
border-bottom: #009688 solid 1px;
|
118
122
|
}
|
119
123
|
|
@@ -125,16 +129,22 @@ input:focus, textarea:focus {
|
|
125
129
|
* Labels
|
126
130
|
* ------------------------------------------
|
127
131
|
*/
|
128
|
-
label {
|
129
|
-
|
130
|
-
|
132
|
+
form.label-width-100 label {
|
133
|
+
width: 100px;
|
134
|
+
max-width: 100px;
|
135
|
+
min-width: 100px;
|
131
136
|
}
|
132
137
|
|
133
|
-
label
|
138
|
+
form.label-width-200 label {
|
139
|
+
width: 200px;
|
140
|
+
max-width: 200px;
|
141
|
+
min-width: 200px;
|
142
|
+
}
|
143
|
+
|
144
|
+
label {
|
145
|
+
color: #757575;
|
134
146
|
display: inline-block;
|
135
|
-
|
136
|
-
max-width: 160px;
|
137
|
-
min-width: 160px;
|
147
|
+
margin-right: 18px;
|
138
148
|
}
|
139
149
|
|
140
150
|
/*
|
@@ -207,9 +217,18 @@ table.wide {
|
|
207
217
|
width: 100%;
|
208
218
|
}
|
209
219
|
|
220
|
+
table.rows tr {
|
221
|
+
border-bottom: 1px solid #CFD8DC;
|
222
|
+
}
|
223
|
+
|
224
|
+
table.rows tr:last-child {
|
225
|
+
border: none
|
226
|
+
}
|
227
|
+
|
210
228
|
th, td {
|
211
229
|
text-align: left;
|
212
230
|
padding: 10px 30px 10px 14px;
|
231
|
+
vertical-align: top;
|
213
232
|
}
|
214
233
|
|
215
234
|
th:last-child, td:last-child {
|
@@ -219,3 +238,21 @@ th:last-child, td:last-child {
|
|
219
238
|
th {
|
220
239
|
background-color: #CFD8DC;
|
221
240
|
}
|
241
|
+
|
242
|
+
|
243
|
+
/*
|
244
|
+
* Misc
|
245
|
+
* ------------------------------------------
|
246
|
+
*/
|
247
|
+
pre {
|
248
|
+
background-color: #E0F2F1;
|
249
|
+
padding: 6px;
|
250
|
+
}
|
251
|
+
|
252
|
+
hr {
|
253
|
+
border: 1px solid #FFE57F;
|
254
|
+
}
|
255
|
+
|
256
|
+
hr.strong {
|
257
|
+
border: 2px solid #FFE57F;
|
258
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: torino
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- blackchestnut
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|