gridstack-js-rails 0.2.3
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/.gitignore +21 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +132 -0
- data/gridstack-js-rails.gemspec +23 -0
- data/lib/gridstack-js-rails.rb +6 -0
- data/lib/gridstack-js-rails/rails.rb +2 -0
- data/lib/gridstack-js-rails/rails/engine.rb +6 -0
- data/lib/gridstack-js-rails/rails/version.rb +5 -0
- data/vendor/assets/javascripts/gridstack-js-rails-underscore.js +7 -0
- data/vendor/assets/javascripts/gridstack-js-rails.js +7 -0
- data/vendor/assets/javascripts/gridstack/gridstack.js +874 -0
- data/vendor/assets/stylesheets/gridstack-js-rails.css +6 -0
- data/vendor/assets/stylesheets/gridstack/gridstack-extra.css +983 -0
- data/vendor/assets/stylesheets/gridstack/gridstack.css +318 -0
- metadata +126 -0
@@ -0,0 +1,983 @@
|
|
1
|
+
.grid-stack.grid-stack-1 > .grid-stack-item {
|
2
|
+
min-width: 100%;
|
3
|
+
}
|
4
|
+
.grid-stack.grid-stack-1 > .grid-stack-item[data-gs-width='1'] {
|
5
|
+
width: 100%;
|
6
|
+
}
|
7
|
+
.grid-stack.grid-stack-1 > .grid-stack-item[data-gs-x='1'] {
|
8
|
+
left: 100%;
|
9
|
+
}
|
10
|
+
.grid-stack.grid-stack-1 > .grid-stack-item[data-gs-min-width='1'] {
|
11
|
+
min-width: 100%;
|
12
|
+
}
|
13
|
+
.grid-stack.grid-stack-1 > .grid-stack-item[data-gs-max-width='1'] {
|
14
|
+
max-width: 100%;
|
15
|
+
}
|
16
|
+
|
17
|
+
.grid-stack.grid-stack-2 > .grid-stack-item {
|
18
|
+
min-width: 50%;
|
19
|
+
}
|
20
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-width='1'] {
|
21
|
+
width: 50%;
|
22
|
+
}
|
23
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-x='1'] {
|
24
|
+
left: 50%;
|
25
|
+
}
|
26
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-min-width='1'] {
|
27
|
+
min-width: 50%;
|
28
|
+
}
|
29
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-max-width='1'] {
|
30
|
+
max-width: 50%;
|
31
|
+
}
|
32
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-width='2'] {
|
33
|
+
width: 100%;
|
34
|
+
}
|
35
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-x='2'] {
|
36
|
+
left: 100%;
|
37
|
+
}
|
38
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-min-width='2'] {
|
39
|
+
min-width: 100%;
|
40
|
+
}
|
41
|
+
.grid-stack.grid-stack-2 > .grid-stack-item[data-gs-max-width='2'] {
|
42
|
+
max-width: 100%;
|
43
|
+
}
|
44
|
+
|
45
|
+
.grid-stack.grid-stack-3 > .grid-stack-item {
|
46
|
+
min-width: 33.33333333%;
|
47
|
+
}
|
48
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-width='1'] {
|
49
|
+
width: 33.33333333%;
|
50
|
+
}
|
51
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-x='1'] {
|
52
|
+
left: 33.33333333%;
|
53
|
+
}
|
54
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-min-width='1'] {
|
55
|
+
min-width: 33.33333333%;
|
56
|
+
}
|
57
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-max-width='1'] {
|
58
|
+
max-width: 33.33333333%;
|
59
|
+
}
|
60
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-width='2'] {
|
61
|
+
width: 66.66666667%;
|
62
|
+
}
|
63
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-x='2'] {
|
64
|
+
left: 66.66666667%;
|
65
|
+
}
|
66
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-min-width='2'] {
|
67
|
+
min-width: 66.66666667%;
|
68
|
+
}
|
69
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-max-width='2'] {
|
70
|
+
max-width: 66.66666667%;
|
71
|
+
}
|
72
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-width='3'] {
|
73
|
+
width: 100%;
|
74
|
+
}
|
75
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-x='3'] {
|
76
|
+
left: 100%;
|
77
|
+
}
|
78
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-min-width='3'] {
|
79
|
+
min-width: 100%;
|
80
|
+
}
|
81
|
+
.grid-stack.grid-stack-3 > .grid-stack-item[data-gs-max-width='3'] {
|
82
|
+
max-width: 100%;
|
83
|
+
}
|
84
|
+
|
85
|
+
.grid-stack.grid-stack-4 > .grid-stack-item {
|
86
|
+
min-width: 25%;
|
87
|
+
}
|
88
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-width='1'] {
|
89
|
+
width: 25%;
|
90
|
+
}
|
91
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-x='1'] {
|
92
|
+
left: 25%;
|
93
|
+
}
|
94
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-min-width='1'] {
|
95
|
+
min-width: 25%;
|
96
|
+
}
|
97
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-max-width='1'] {
|
98
|
+
max-width: 25%;
|
99
|
+
}
|
100
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-width='2'] {
|
101
|
+
width: 50%;
|
102
|
+
}
|
103
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-x='2'] {
|
104
|
+
left: 50%;
|
105
|
+
}
|
106
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-min-width='2'] {
|
107
|
+
min-width: 50%;
|
108
|
+
}
|
109
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-max-width='2'] {
|
110
|
+
max-width: 50%;
|
111
|
+
}
|
112
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-width='3'] {
|
113
|
+
width: 75%;
|
114
|
+
}
|
115
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-x='3'] {
|
116
|
+
left: 75%;
|
117
|
+
}
|
118
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-min-width='3'] {
|
119
|
+
min-width: 75%;
|
120
|
+
}
|
121
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-max-width='3'] {
|
122
|
+
max-width: 75%;
|
123
|
+
}
|
124
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-width='4'] {
|
125
|
+
width: 100%;
|
126
|
+
}
|
127
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-x='4'] {
|
128
|
+
left: 100%;
|
129
|
+
}
|
130
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-min-width='4'] {
|
131
|
+
min-width: 100%;
|
132
|
+
}
|
133
|
+
.grid-stack.grid-stack-4 > .grid-stack-item[data-gs-max-width='4'] {
|
134
|
+
max-width: 100%;
|
135
|
+
}
|
136
|
+
|
137
|
+
.grid-stack.grid-stack-5 > .grid-stack-item {
|
138
|
+
min-width: 20%;
|
139
|
+
}
|
140
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-width='1'] {
|
141
|
+
width: 20%;
|
142
|
+
}
|
143
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-x='1'] {
|
144
|
+
left: 20%;
|
145
|
+
}
|
146
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-min-width='1'] {
|
147
|
+
min-width: 20%;
|
148
|
+
}
|
149
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-max-width='1'] {
|
150
|
+
max-width: 20%;
|
151
|
+
}
|
152
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-width='2'] {
|
153
|
+
width: 40%;
|
154
|
+
}
|
155
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-x='2'] {
|
156
|
+
left: 40%;
|
157
|
+
}
|
158
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-min-width='2'] {
|
159
|
+
min-width: 40%;
|
160
|
+
}
|
161
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-max-width='2'] {
|
162
|
+
max-width: 40%;
|
163
|
+
}
|
164
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-width='3'] {
|
165
|
+
width: 60%;
|
166
|
+
}
|
167
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-x='3'] {
|
168
|
+
left: 60%;
|
169
|
+
}
|
170
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-min-width='3'] {
|
171
|
+
min-width: 60%;
|
172
|
+
}
|
173
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-max-width='3'] {
|
174
|
+
max-width: 60%;
|
175
|
+
}
|
176
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-width='4'] {
|
177
|
+
width: 80%;
|
178
|
+
}
|
179
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-x='4'] {
|
180
|
+
left: 80%;
|
181
|
+
}
|
182
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-min-width='4'] {
|
183
|
+
min-width: 80%;
|
184
|
+
}
|
185
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-max-width='4'] {
|
186
|
+
max-width: 80%;
|
187
|
+
}
|
188
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-width='5'] {
|
189
|
+
width: 100%;
|
190
|
+
}
|
191
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-x='5'] {
|
192
|
+
left: 100%;
|
193
|
+
}
|
194
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-min-width='5'] {
|
195
|
+
min-width: 100%;
|
196
|
+
}
|
197
|
+
.grid-stack.grid-stack-5 > .grid-stack-item[data-gs-max-width='5'] {
|
198
|
+
max-width: 100%;
|
199
|
+
}
|
200
|
+
|
201
|
+
.grid-stack.grid-stack-6 > .grid-stack-item {
|
202
|
+
min-width: 16.66666667%;
|
203
|
+
}
|
204
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='1'] {
|
205
|
+
width: 16.66666667%;
|
206
|
+
}
|
207
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='1'] {
|
208
|
+
left: 16.66666667%;
|
209
|
+
}
|
210
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='1'] {
|
211
|
+
min-width: 16.66666667%;
|
212
|
+
}
|
213
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='1'] {
|
214
|
+
max-width: 16.66666667%;
|
215
|
+
}
|
216
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='2'] {
|
217
|
+
width: 33.33333333%;
|
218
|
+
}
|
219
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='2'] {
|
220
|
+
left: 33.33333333%;
|
221
|
+
}
|
222
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='2'] {
|
223
|
+
min-width: 33.33333333%;
|
224
|
+
}
|
225
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='2'] {
|
226
|
+
max-width: 33.33333333%;
|
227
|
+
}
|
228
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='3'] {
|
229
|
+
width: 50%;
|
230
|
+
}
|
231
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='3'] {
|
232
|
+
left: 50%;
|
233
|
+
}
|
234
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='3'] {
|
235
|
+
min-width: 50%;
|
236
|
+
}
|
237
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='3'] {
|
238
|
+
max-width: 50%;
|
239
|
+
}
|
240
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='4'] {
|
241
|
+
width: 66.66666667%;
|
242
|
+
}
|
243
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='4'] {
|
244
|
+
left: 66.66666667%;
|
245
|
+
}
|
246
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='4'] {
|
247
|
+
min-width: 66.66666667%;
|
248
|
+
}
|
249
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='4'] {
|
250
|
+
max-width: 66.66666667%;
|
251
|
+
}
|
252
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='5'] {
|
253
|
+
width: 83.33333333%;
|
254
|
+
}
|
255
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='5'] {
|
256
|
+
left: 83.33333333%;
|
257
|
+
}
|
258
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='5'] {
|
259
|
+
min-width: 83.33333333%;
|
260
|
+
}
|
261
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='5'] {
|
262
|
+
max-width: 83.33333333%;
|
263
|
+
}
|
264
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-width='6'] {
|
265
|
+
width: 100%;
|
266
|
+
}
|
267
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-x='6'] {
|
268
|
+
left: 100%;
|
269
|
+
}
|
270
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-min-width='6'] {
|
271
|
+
min-width: 100%;
|
272
|
+
}
|
273
|
+
.grid-stack.grid-stack-6 > .grid-stack-item[data-gs-max-width='6'] {
|
274
|
+
max-width: 100%;
|
275
|
+
}
|
276
|
+
|
277
|
+
.grid-stack.grid-stack-7 > .grid-stack-item {
|
278
|
+
min-width: 14.28571429%;
|
279
|
+
}
|
280
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='1'] {
|
281
|
+
width: 14.28571429%;
|
282
|
+
}
|
283
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='1'] {
|
284
|
+
left: 14.28571429%;
|
285
|
+
}
|
286
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='1'] {
|
287
|
+
min-width: 14.28571429%;
|
288
|
+
}
|
289
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='1'] {
|
290
|
+
max-width: 14.28571429%;
|
291
|
+
}
|
292
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='2'] {
|
293
|
+
width: 28.57142857%;
|
294
|
+
}
|
295
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='2'] {
|
296
|
+
left: 28.57142857%;
|
297
|
+
}
|
298
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='2'] {
|
299
|
+
min-width: 28.57142857%;
|
300
|
+
}
|
301
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='2'] {
|
302
|
+
max-width: 28.57142857%;
|
303
|
+
}
|
304
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='3'] {
|
305
|
+
width: 42.85714286%;
|
306
|
+
}
|
307
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='3'] {
|
308
|
+
left: 42.85714286%;
|
309
|
+
}
|
310
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='3'] {
|
311
|
+
min-width: 42.85714286%;
|
312
|
+
}
|
313
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='3'] {
|
314
|
+
max-width: 42.85714286%;
|
315
|
+
}
|
316
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='4'] {
|
317
|
+
width: 57.14285714%;
|
318
|
+
}
|
319
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='4'] {
|
320
|
+
left: 57.14285714%;
|
321
|
+
}
|
322
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='4'] {
|
323
|
+
min-width: 57.14285714%;
|
324
|
+
}
|
325
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='4'] {
|
326
|
+
max-width: 57.14285714%;
|
327
|
+
}
|
328
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='5'] {
|
329
|
+
width: 71.42857143%;
|
330
|
+
}
|
331
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='5'] {
|
332
|
+
left: 71.42857143%;
|
333
|
+
}
|
334
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='5'] {
|
335
|
+
min-width: 71.42857143%;
|
336
|
+
}
|
337
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='5'] {
|
338
|
+
max-width: 71.42857143%;
|
339
|
+
}
|
340
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='6'] {
|
341
|
+
width: 85.71428571%;
|
342
|
+
}
|
343
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='6'] {
|
344
|
+
left: 85.71428571%;
|
345
|
+
}
|
346
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='6'] {
|
347
|
+
min-width: 85.71428571%;
|
348
|
+
}
|
349
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='6'] {
|
350
|
+
max-width: 85.71428571%;
|
351
|
+
}
|
352
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-width='7'] {
|
353
|
+
width: 100%;
|
354
|
+
}
|
355
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-x='7'] {
|
356
|
+
left: 100%;
|
357
|
+
}
|
358
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-min-width='7'] {
|
359
|
+
min-width: 100%;
|
360
|
+
}
|
361
|
+
.grid-stack.grid-stack-7 > .grid-stack-item[data-gs-max-width='7'] {
|
362
|
+
max-width: 100%;
|
363
|
+
}
|
364
|
+
|
365
|
+
.grid-stack.grid-stack-8 > .grid-stack-item {
|
366
|
+
min-width: 12.5%;
|
367
|
+
}
|
368
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='1'] {
|
369
|
+
width: 12.5%;
|
370
|
+
}
|
371
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='1'] {
|
372
|
+
left: 12.5%;
|
373
|
+
}
|
374
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='1'] {
|
375
|
+
min-width: 12.5%;
|
376
|
+
}
|
377
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='1'] {
|
378
|
+
max-width: 12.5%;
|
379
|
+
}
|
380
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='2'] {
|
381
|
+
width: 25%;
|
382
|
+
}
|
383
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='2'] {
|
384
|
+
left: 25%;
|
385
|
+
}
|
386
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='2'] {
|
387
|
+
min-width: 25%;
|
388
|
+
}
|
389
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='2'] {
|
390
|
+
max-width: 25%;
|
391
|
+
}
|
392
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='3'] {
|
393
|
+
width: 37.5%;
|
394
|
+
}
|
395
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='3'] {
|
396
|
+
left: 37.5%;
|
397
|
+
}
|
398
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='3'] {
|
399
|
+
min-width: 37.5%;
|
400
|
+
}
|
401
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='3'] {
|
402
|
+
max-width: 37.5%;
|
403
|
+
}
|
404
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='4'] {
|
405
|
+
width: 50%;
|
406
|
+
}
|
407
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='4'] {
|
408
|
+
left: 50%;
|
409
|
+
}
|
410
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='4'] {
|
411
|
+
min-width: 50%;
|
412
|
+
}
|
413
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='4'] {
|
414
|
+
max-width: 50%;
|
415
|
+
}
|
416
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='5'] {
|
417
|
+
width: 62.5%;
|
418
|
+
}
|
419
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='5'] {
|
420
|
+
left: 62.5%;
|
421
|
+
}
|
422
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='5'] {
|
423
|
+
min-width: 62.5%;
|
424
|
+
}
|
425
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='5'] {
|
426
|
+
max-width: 62.5%;
|
427
|
+
}
|
428
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='6'] {
|
429
|
+
width: 75%;
|
430
|
+
}
|
431
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='6'] {
|
432
|
+
left: 75%;
|
433
|
+
}
|
434
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='6'] {
|
435
|
+
min-width: 75%;
|
436
|
+
}
|
437
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='6'] {
|
438
|
+
max-width: 75%;
|
439
|
+
}
|
440
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='7'] {
|
441
|
+
width: 87.5%;
|
442
|
+
}
|
443
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='7'] {
|
444
|
+
left: 87.5%;
|
445
|
+
}
|
446
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='7'] {
|
447
|
+
min-width: 87.5%;
|
448
|
+
}
|
449
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='7'] {
|
450
|
+
max-width: 87.5%;
|
451
|
+
}
|
452
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-width='8'] {
|
453
|
+
width: 100%;
|
454
|
+
}
|
455
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-x='8'] {
|
456
|
+
left: 100%;
|
457
|
+
}
|
458
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-min-width='8'] {
|
459
|
+
min-width: 100%;
|
460
|
+
}
|
461
|
+
.grid-stack.grid-stack-8 > .grid-stack-item[data-gs-max-width='8'] {
|
462
|
+
max-width: 100%;
|
463
|
+
}
|
464
|
+
|
465
|
+
.grid-stack.grid-stack-9 > .grid-stack-item {
|
466
|
+
min-width: 11.11111111%;
|
467
|
+
}
|
468
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='1'] {
|
469
|
+
width: 11.11111111%;
|
470
|
+
}
|
471
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='1'] {
|
472
|
+
left: 11.11111111%;
|
473
|
+
}
|
474
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='1'] {
|
475
|
+
min-width: 11.11111111%;
|
476
|
+
}
|
477
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='1'] {
|
478
|
+
max-width: 11.11111111%;
|
479
|
+
}
|
480
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='2'] {
|
481
|
+
width: 22.22222222%;
|
482
|
+
}
|
483
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='2'] {
|
484
|
+
left: 22.22222222%;
|
485
|
+
}
|
486
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='2'] {
|
487
|
+
min-width: 22.22222222%;
|
488
|
+
}
|
489
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='2'] {
|
490
|
+
max-width: 22.22222222%;
|
491
|
+
}
|
492
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='3'] {
|
493
|
+
width: 33.33333333%;
|
494
|
+
}
|
495
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='3'] {
|
496
|
+
left: 33.33333333%;
|
497
|
+
}
|
498
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='3'] {
|
499
|
+
min-width: 33.33333333%;
|
500
|
+
}
|
501
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='3'] {
|
502
|
+
max-width: 33.33333333%;
|
503
|
+
}
|
504
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='4'] {
|
505
|
+
width: 44.44444444%;
|
506
|
+
}
|
507
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='4'] {
|
508
|
+
left: 44.44444444%;
|
509
|
+
}
|
510
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='4'] {
|
511
|
+
min-width: 44.44444444%;
|
512
|
+
}
|
513
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='4'] {
|
514
|
+
max-width: 44.44444444%;
|
515
|
+
}
|
516
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='5'] {
|
517
|
+
width: 55.55555556%;
|
518
|
+
}
|
519
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='5'] {
|
520
|
+
left: 55.55555556%;
|
521
|
+
}
|
522
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='5'] {
|
523
|
+
min-width: 55.55555556%;
|
524
|
+
}
|
525
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='5'] {
|
526
|
+
max-width: 55.55555556%;
|
527
|
+
}
|
528
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='6'] {
|
529
|
+
width: 66.66666667%;
|
530
|
+
}
|
531
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='6'] {
|
532
|
+
left: 66.66666667%;
|
533
|
+
}
|
534
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='6'] {
|
535
|
+
min-width: 66.66666667%;
|
536
|
+
}
|
537
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='6'] {
|
538
|
+
max-width: 66.66666667%;
|
539
|
+
}
|
540
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='7'] {
|
541
|
+
width: 77.77777778%;
|
542
|
+
}
|
543
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='7'] {
|
544
|
+
left: 77.77777778%;
|
545
|
+
}
|
546
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='7'] {
|
547
|
+
min-width: 77.77777778%;
|
548
|
+
}
|
549
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='7'] {
|
550
|
+
max-width: 77.77777778%;
|
551
|
+
}
|
552
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='8'] {
|
553
|
+
width: 88.88888889%;
|
554
|
+
}
|
555
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='8'] {
|
556
|
+
left: 88.88888889%;
|
557
|
+
}
|
558
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='8'] {
|
559
|
+
min-width: 88.88888889%;
|
560
|
+
}
|
561
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='8'] {
|
562
|
+
max-width: 88.88888889%;
|
563
|
+
}
|
564
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-width='9'] {
|
565
|
+
width: 100%;
|
566
|
+
}
|
567
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-x='9'] {
|
568
|
+
left: 100%;
|
569
|
+
}
|
570
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-min-width='9'] {
|
571
|
+
min-width: 100%;
|
572
|
+
}
|
573
|
+
.grid-stack.grid-stack-9 > .grid-stack-item[data-gs-max-width='9'] {
|
574
|
+
max-width: 100%;
|
575
|
+
}
|
576
|
+
|
577
|
+
.grid-stack.grid-stack-10 > .grid-stack-item {
|
578
|
+
min-width: 10%;
|
579
|
+
}
|
580
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='1'] {
|
581
|
+
width: 10%;
|
582
|
+
}
|
583
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='1'] {
|
584
|
+
left: 10%;
|
585
|
+
}
|
586
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='1'] {
|
587
|
+
min-width: 10%;
|
588
|
+
}
|
589
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='1'] {
|
590
|
+
max-width: 10%;
|
591
|
+
}
|
592
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='2'] {
|
593
|
+
width: 20%;
|
594
|
+
}
|
595
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='2'] {
|
596
|
+
left: 20%;
|
597
|
+
}
|
598
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='2'] {
|
599
|
+
min-width: 20%;
|
600
|
+
}
|
601
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='2'] {
|
602
|
+
max-width: 20%;
|
603
|
+
}
|
604
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='3'] {
|
605
|
+
width: 30%;
|
606
|
+
}
|
607
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='3'] {
|
608
|
+
left: 30%;
|
609
|
+
}
|
610
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='3'] {
|
611
|
+
min-width: 30%;
|
612
|
+
}
|
613
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='3'] {
|
614
|
+
max-width: 30%;
|
615
|
+
}
|
616
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='4'] {
|
617
|
+
width: 40%;
|
618
|
+
}
|
619
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='4'] {
|
620
|
+
left: 40%;
|
621
|
+
}
|
622
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='4'] {
|
623
|
+
min-width: 40%;
|
624
|
+
}
|
625
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='4'] {
|
626
|
+
max-width: 40%;
|
627
|
+
}
|
628
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='5'] {
|
629
|
+
width: 50%;
|
630
|
+
}
|
631
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='5'] {
|
632
|
+
left: 50%;
|
633
|
+
}
|
634
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='5'] {
|
635
|
+
min-width: 50%;
|
636
|
+
}
|
637
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='5'] {
|
638
|
+
max-width: 50%;
|
639
|
+
}
|
640
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='6'] {
|
641
|
+
width: 60%;
|
642
|
+
}
|
643
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='6'] {
|
644
|
+
left: 60%;
|
645
|
+
}
|
646
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='6'] {
|
647
|
+
min-width: 60%;
|
648
|
+
}
|
649
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='6'] {
|
650
|
+
max-width: 60%;
|
651
|
+
}
|
652
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='7'] {
|
653
|
+
width: 70%;
|
654
|
+
}
|
655
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='7'] {
|
656
|
+
left: 70%;
|
657
|
+
}
|
658
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='7'] {
|
659
|
+
min-width: 70%;
|
660
|
+
}
|
661
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='7'] {
|
662
|
+
max-width: 70%;
|
663
|
+
}
|
664
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='8'] {
|
665
|
+
width: 80%;
|
666
|
+
}
|
667
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='8'] {
|
668
|
+
left: 80%;
|
669
|
+
}
|
670
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='8'] {
|
671
|
+
min-width: 80%;
|
672
|
+
}
|
673
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='8'] {
|
674
|
+
max-width: 80%;
|
675
|
+
}
|
676
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='9'] {
|
677
|
+
width: 90%;
|
678
|
+
}
|
679
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='9'] {
|
680
|
+
left: 90%;
|
681
|
+
}
|
682
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='9'] {
|
683
|
+
min-width: 90%;
|
684
|
+
}
|
685
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='9'] {
|
686
|
+
max-width: 90%;
|
687
|
+
}
|
688
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-width='10'] {
|
689
|
+
width: 100%;
|
690
|
+
}
|
691
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-x='10'] {
|
692
|
+
left: 100%;
|
693
|
+
}
|
694
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-min-width='10'] {
|
695
|
+
min-width: 100%;
|
696
|
+
}
|
697
|
+
.grid-stack.grid-stack-10 > .grid-stack-item[data-gs-max-width='10'] {
|
698
|
+
max-width: 100%;
|
699
|
+
}
|
700
|
+
|
701
|
+
.grid-stack.grid-stack-11 > .grid-stack-item {
|
702
|
+
min-width: 9.09090909%;
|
703
|
+
}
|
704
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='1'] {
|
705
|
+
width: 9.09090909%;
|
706
|
+
}
|
707
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='1'] {
|
708
|
+
left: 9.09090909%;
|
709
|
+
}
|
710
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='1'] {
|
711
|
+
min-width: 9.09090909%;
|
712
|
+
}
|
713
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='1'] {
|
714
|
+
max-width: 9.09090909%;
|
715
|
+
}
|
716
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='2'] {
|
717
|
+
width: 18.18181818%;
|
718
|
+
}
|
719
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='2'] {
|
720
|
+
left: 18.18181818%;
|
721
|
+
}
|
722
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='2'] {
|
723
|
+
min-width: 18.18181818%;
|
724
|
+
}
|
725
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='2'] {
|
726
|
+
max-width: 18.18181818%;
|
727
|
+
}
|
728
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='3'] {
|
729
|
+
width: 27.27272727%;
|
730
|
+
}
|
731
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='3'] {
|
732
|
+
left: 27.27272727%;
|
733
|
+
}
|
734
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='3'] {
|
735
|
+
min-width: 27.27272727%;
|
736
|
+
}
|
737
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='3'] {
|
738
|
+
max-width: 27.27272727%;
|
739
|
+
}
|
740
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='4'] {
|
741
|
+
width: 36.36363636%;
|
742
|
+
}
|
743
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='4'] {
|
744
|
+
left: 36.36363636%;
|
745
|
+
}
|
746
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='4'] {
|
747
|
+
min-width: 36.36363636%;
|
748
|
+
}
|
749
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='4'] {
|
750
|
+
max-width: 36.36363636%;
|
751
|
+
}
|
752
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='5'] {
|
753
|
+
width: 45.45454545%;
|
754
|
+
}
|
755
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='5'] {
|
756
|
+
left: 45.45454545%;
|
757
|
+
}
|
758
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='5'] {
|
759
|
+
min-width: 45.45454545%;
|
760
|
+
}
|
761
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='5'] {
|
762
|
+
max-width: 45.45454545%;
|
763
|
+
}
|
764
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='6'] {
|
765
|
+
width: 54.54545455%;
|
766
|
+
}
|
767
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='6'] {
|
768
|
+
left: 54.54545455%;
|
769
|
+
}
|
770
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='6'] {
|
771
|
+
min-width: 54.54545455%;
|
772
|
+
}
|
773
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='6'] {
|
774
|
+
max-width: 54.54545455%;
|
775
|
+
}
|
776
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='7'] {
|
777
|
+
width: 63.63636364%;
|
778
|
+
}
|
779
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='7'] {
|
780
|
+
left: 63.63636364%;
|
781
|
+
}
|
782
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='7'] {
|
783
|
+
min-width: 63.63636364%;
|
784
|
+
}
|
785
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='7'] {
|
786
|
+
max-width: 63.63636364%;
|
787
|
+
}
|
788
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='8'] {
|
789
|
+
width: 72.72727273%;
|
790
|
+
}
|
791
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='8'] {
|
792
|
+
left: 72.72727273%;
|
793
|
+
}
|
794
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='8'] {
|
795
|
+
min-width: 72.72727273%;
|
796
|
+
}
|
797
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='8'] {
|
798
|
+
max-width: 72.72727273%;
|
799
|
+
}
|
800
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='9'] {
|
801
|
+
width: 81.81818182%;
|
802
|
+
}
|
803
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='9'] {
|
804
|
+
left: 81.81818182%;
|
805
|
+
}
|
806
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='9'] {
|
807
|
+
min-width: 81.81818182%;
|
808
|
+
}
|
809
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='9'] {
|
810
|
+
max-width: 81.81818182%;
|
811
|
+
}
|
812
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='10'] {
|
813
|
+
width: 90.90909091%;
|
814
|
+
}
|
815
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='10'] {
|
816
|
+
left: 90.90909091%;
|
817
|
+
}
|
818
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='10'] {
|
819
|
+
min-width: 90.90909091%;
|
820
|
+
}
|
821
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='10'] {
|
822
|
+
max-width: 90.90909091%;
|
823
|
+
}
|
824
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-width='11'] {
|
825
|
+
width: 100.0%;
|
826
|
+
}
|
827
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-x='11'] {
|
828
|
+
left: 100.0%;
|
829
|
+
}
|
830
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-min-width='11'] {
|
831
|
+
min-width: 100.0%;
|
832
|
+
}
|
833
|
+
.grid-stack.grid-stack-11 > .grid-stack-item[data-gs-max-width='11'] {
|
834
|
+
max-width: 100.0%;
|
835
|
+
}
|
836
|
+
|
837
|
+
.grid-stack.grid-stack-12 > .grid-stack-item {
|
838
|
+
min-width: 8.33333333%;
|
839
|
+
}
|
840
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='1'] {
|
841
|
+
width: 8.33333333%;
|
842
|
+
}
|
843
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='1'] {
|
844
|
+
left: 8.33333333%;
|
845
|
+
}
|
846
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='1'] {
|
847
|
+
min-width: 8.33333333%;
|
848
|
+
}
|
849
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='1'] {
|
850
|
+
max-width: 8.33333333%;
|
851
|
+
}
|
852
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='2'] {
|
853
|
+
width: 16.66666667%;
|
854
|
+
}
|
855
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='2'] {
|
856
|
+
left: 16.66666667%;
|
857
|
+
}
|
858
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='2'] {
|
859
|
+
min-width: 16.66666667%;
|
860
|
+
}
|
861
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='2'] {
|
862
|
+
max-width: 16.66666667%;
|
863
|
+
}
|
864
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='3'] {
|
865
|
+
width: 25%;
|
866
|
+
}
|
867
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='3'] {
|
868
|
+
left: 25%;
|
869
|
+
}
|
870
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='3'] {
|
871
|
+
min-width: 25%;
|
872
|
+
}
|
873
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='3'] {
|
874
|
+
max-width: 25%;
|
875
|
+
}
|
876
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='4'] {
|
877
|
+
width: 33.33333333%;
|
878
|
+
}
|
879
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='4'] {
|
880
|
+
left: 33.33333333%;
|
881
|
+
}
|
882
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='4'] {
|
883
|
+
min-width: 33.33333333%;
|
884
|
+
}
|
885
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='4'] {
|
886
|
+
max-width: 33.33333333%;
|
887
|
+
}
|
888
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='5'] {
|
889
|
+
width: 41.66666667%;
|
890
|
+
}
|
891
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='5'] {
|
892
|
+
left: 41.66666667%;
|
893
|
+
}
|
894
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='5'] {
|
895
|
+
min-width: 41.66666667%;
|
896
|
+
}
|
897
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='5'] {
|
898
|
+
max-width: 41.66666667%;
|
899
|
+
}
|
900
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='6'] {
|
901
|
+
width: 50%;
|
902
|
+
}
|
903
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='6'] {
|
904
|
+
left: 50%;
|
905
|
+
}
|
906
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='6'] {
|
907
|
+
min-width: 50%;
|
908
|
+
}
|
909
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='6'] {
|
910
|
+
max-width: 50%;
|
911
|
+
}
|
912
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='7'] {
|
913
|
+
width: 58.33333333%;
|
914
|
+
}
|
915
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='7'] {
|
916
|
+
left: 58.33333333%;
|
917
|
+
}
|
918
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='7'] {
|
919
|
+
min-width: 58.33333333%;
|
920
|
+
}
|
921
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='7'] {
|
922
|
+
max-width: 58.33333333%;
|
923
|
+
}
|
924
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='8'] {
|
925
|
+
width: 66.66666667%;
|
926
|
+
}
|
927
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='8'] {
|
928
|
+
left: 66.66666667%;
|
929
|
+
}
|
930
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='8'] {
|
931
|
+
min-width: 66.66666667%;
|
932
|
+
}
|
933
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='8'] {
|
934
|
+
max-width: 66.66666667%;
|
935
|
+
}
|
936
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='9'] {
|
937
|
+
width: 75%;
|
938
|
+
}
|
939
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='9'] {
|
940
|
+
left: 75%;
|
941
|
+
}
|
942
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='9'] {
|
943
|
+
min-width: 75%;
|
944
|
+
}
|
945
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='9'] {
|
946
|
+
max-width: 75%;
|
947
|
+
}
|
948
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='10'] {
|
949
|
+
width: 83.33333333%;
|
950
|
+
}
|
951
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='10'] {
|
952
|
+
left: 83.33333333%;
|
953
|
+
}
|
954
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='10'] {
|
955
|
+
min-width: 83.33333333%;
|
956
|
+
}
|
957
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='10'] {
|
958
|
+
max-width: 83.33333333%;
|
959
|
+
}
|
960
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='11'] {
|
961
|
+
width: 91.66666667%;
|
962
|
+
}
|
963
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='11'] {
|
964
|
+
left: 91.66666667%;
|
965
|
+
}
|
966
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='11'] {
|
967
|
+
min-width: 91.66666667%;
|
968
|
+
}
|
969
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='11'] {
|
970
|
+
max-width: 91.66666667%;
|
971
|
+
}
|
972
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-width='12'] {
|
973
|
+
width: 100%;
|
974
|
+
}
|
975
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-x='12'] {
|
976
|
+
left: 100%;
|
977
|
+
}
|
978
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-min-width='12'] {
|
979
|
+
min-width: 100%;
|
980
|
+
}
|
981
|
+
.grid-stack.grid-stack-12 > .grid-stack-item[data-gs-max-width='12'] {
|
982
|
+
max-width: 100%;
|
983
|
+
}
|