picky-generators 1.3.4 → 1.4.0
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.
- data/prototypes/client/sinatra/book.rb +1 -1
- data/prototypes/client/sinatra/javascripts/jquery-1.5.0.min.js +16 -0
- data/prototypes/client/sinatra/javascripts/picky.min.js +17 -17
- data/prototypes/client/sinatra/stylesheets/application.css +22 -0
- data/prototypes/client/sinatra/stylesheets/picky.css +135 -0
- data/prototypes/client/sinatra/views/search.haml +78 -50
- data/prototypes/server/shared_unicorn/config.ru +4 -2
- data/prototypes/server/shared_unicorn/unicorn.ru +5 -3
- metadata +7 -8
- data/prototypes/client/sinatra/javascripts/jquery.scrollTo-1.4.2.js +0 -215
- data/prototypes/client/sinatra/javascripts/jquery.timer.js +0 -75
- data/prototypes/client/sinatra/stylesheets/stylesheet.css +0 -184
- data/prototypes/client/sinatra/stylesheets/stylesheet.sass +0 -225
@@ -1,225 +0,0 @@
|
|
1
|
-
body
|
2
|
-
:text-align center
|
3
|
-
:font-family Lucida Grande
|
4
|
-
|
5
|
-
img
|
6
|
-
:margin -2px 0px 0px
|
7
|
-
|
8
|
-
p
|
9
|
-
span.explanation
|
10
|
-
:color #999
|
11
|
-
|
12
|
-
pre
|
13
|
-
:padding 10px
|
14
|
-
:background-color #EFEDE5
|
15
|
-
|
16
|
-
div.content
|
17
|
-
:width 800px
|
18
|
-
:margin 0 auto
|
19
|
-
:text-align left
|
20
|
-
|
21
|
-
#picky
|
22
|
-
:text-align left
|
23
|
-
:margin 0px auto
|
24
|
-
:width 560px
|
25
|
-
|
26
|
-
.dashboard
|
27
|
-
:position relative
|
28
|
-
:overflow hidden
|
29
|
-
:background-color lightGrey
|
30
|
-
:padding 5px 5px 7px 5px
|
31
|
-
:height 26px
|
32
|
-
:margin-bottom 3px
|
33
|
-
|
34
|
-
.status
|
35
|
-
:float left
|
36
|
-
:width 45px
|
37
|
-
:height 26px
|
38
|
-
:line-height 26px
|
39
|
-
:text-align center
|
40
|
-
:padding 0 0 0 2px
|
41
|
-
:font-weight bold
|
42
|
-
:color white
|
43
|
-
:margin-right 5px
|
44
|
-
.status.alert
|
45
|
-
:background-color lightgreen
|
46
|
-
|
47
|
-
.results
|
48
|
-
:margin-top 0px
|
49
|
-
:padding 0px
|
50
|
-
|
51
|
-
div.book
|
52
|
-
:background-color #ffeeee
|
53
|
-
:padding 5px 25px
|
54
|
-
:margin 3px 0px
|
55
|
-
|
56
|
-
em
|
57
|
-
:font-style normal
|
58
|
-
:background-color #FFF196
|
59
|
-
|
60
|
-
.item
|
61
|
-
:display block
|
62
|
-
:padding 10px
|
63
|
-
|
64
|
-
.addination
|
65
|
-
:position relative
|
66
|
-
:text-align center
|
67
|
-
:padding 7px 5px 5px 5px
|
68
|
-
:background-color #eee
|
69
|
-
:color #276ABB
|
70
|
-
:cursor pointer
|
71
|
-
|
72
|
-
.tothetop
|
73
|
-
:position absolute
|
74
|
-
:top 4px
|
75
|
-
:right 0px
|
76
|
-
|
77
|
-
a
|
78
|
-
:display block
|
79
|
-
:width 20px
|
80
|
-
:height 20px
|
81
|
-
|
82
|
-
.info
|
83
|
-
:color #555
|
84
|
-
:background-color #eee
|
85
|
-
:padding 6px 5px 5px 8px
|
86
|
-
|
87
|
-
.tothetop
|
88
|
-
:float right
|
89
|
-
:margin-top -4px
|
90
|
-
|
91
|
-
:overflow hidden
|
92
|
-
|
93
|
-
// width only set because of IE
|
94
|
-
.feedback
|
95
|
-
:width 460px
|
96
|
-
:float left
|
97
|
-
:border 1px solid #ccc
|
98
|
-
:padding 0
|
99
|
-
:margin 0
|
100
|
-
|
101
|
-
.reset
|
102
|
-
:float right
|
103
|
-
:width 18px
|
104
|
-
:height 18px
|
105
|
-
:margin 3px 3px 0px 0px
|
106
|
-
:cursor pointer
|
107
|
-
:opacity 0
|
108
|
-
|
109
|
-
// Blue
|
110
|
-
.empty
|
111
|
-
.status
|
112
|
-
:background-color #8cacda
|
113
|
-
.feedback
|
114
|
-
:background-color #D0E2FF
|
115
|
-
// Red
|
116
|
-
.none
|
117
|
-
.status
|
118
|
-
:background-color #ff0000
|
119
|
-
.feedback
|
120
|
-
:background-color #ffdddd
|
121
|
-
// Orange
|
122
|
-
.support
|
123
|
-
.status
|
124
|
-
:background-color #ff6600
|
125
|
-
.feedback
|
126
|
-
:background-color #faf3d0
|
127
|
-
// Green
|
128
|
-
.ok
|
129
|
-
.status
|
130
|
-
:background-color #09be01
|
131
|
-
.feedback
|
132
|
-
:background-color #bcf0b3
|
133
|
-
|
134
|
-
input.search_button
|
135
|
-
:margin 5px 15px
|
136
|
-
|
137
|
-
input.query
|
138
|
-
:float left
|
139
|
-
:width 380px
|
140
|
-
:height 100%
|
141
|
-
:font-size 1em
|
142
|
-
:font-weight bold
|
143
|
-
:border-style solid
|
144
|
-
:border-width 0px 0px 3px 0px
|
145
|
-
:border-color transparent
|
146
|
-
:margin 0
|
147
|
-
:padding 4px 0 0 0
|
148
|
-
:outline none
|
149
|
-
:background none
|
150
|
-
|
151
|
-
.allocations
|
152
|
-
:clear both
|
153
|
-
:overflow hidden
|
154
|
-
:background-color white
|
155
|
-
:padding-bottom 2px
|
156
|
-
|
157
|
-
ol.hidden
|
158
|
-
:display none
|
159
|
-
|
160
|
-
ol.more:hover
|
161
|
-
:background-color #ccc
|
162
|
-
:cursor pointer
|
163
|
-
ol.more
|
164
|
-
:background-color #eee
|
165
|
-
:display none
|
166
|
-
:text-align center
|
167
|
-
:height 32px
|
168
|
-
:line-height 32px
|
169
|
-
|
170
|
-
li
|
171
|
-
:text-align center
|
172
|
-
|
173
|
-
ol
|
174
|
-
:list-style-position outside
|
175
|
-
:list-style none
|
176
|
-
:padding 0
|
177
|
-
:margin 0px
|
178
|
-
:overflow hidden
|
179
|
-
|
180
|
-
li
|
181
|
-
:margin 0px
|
182
|
-
:margin-bottom 3px
|
183
|
-
:padding 10px 13px
|
184
|
-
:cursor pointer
|
185
|
-
:display block
|
186
|
-
:font menu
|
187
|
-
:font-size 1em
|
188
|
-
:line-height 16px
|
189
|
-
:background-color #f3f3f3
|
190
|
-
:overflow hidden
|
191
|
-
:color #276ABB
|
192
|
-
|
193
|
-
.text
|
194
|
-
:max-width 90%
|
195
|
-
:float left
|
196
|
-
|
197
|
-
.count
|
198
|
-
:float right
|
199
|
-
:color #ccc
|
200
|
-
|
201
|
-
li:hover
|
202
|
-
:background-color #D0E2FF
|
203
|
-
|
204
|
-
.company, .person
|
205
|
-
:width 49%
|
206
|
-
.person
|
207
|
-
:float left
|
208
|
-
:margin-right 10px
|
209
|
-
.company
|
210
|
-
:float right
|
211
|
-
|
212
|
-
.no_results
|
213
|
-
:display none
|
214
|
-
:clear both
|
215
|
-
:overflow hidden
|
216
|
-
|
217
|
-
ul
|
218
|
-
:list-style-type disc
|
219
|
-
:padding-left 13px
|
220
|
-
|
221
|
-
a
|
222
|
-
:display block
|
223
|
-
|
224
|
-
& > .info
|
225
|
-
:display none
|