promethee 4.1.11 → 4.1.12
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c791f3fc87492c74cf0943f04ee9d7c65731ed6769688294dfbe45baee5d663
|
|
4
|
+
data.tar.gz: e584208ada91f6c1d8e38f2f10d10e6605d3e44db13219c2dbb5f9300e235f43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c1de9aed61106c72bc8db3e9dcd3fc2481edc42bddfc5ca8adc3015b5cb6620e84f0b991f61a3b7d58f7bbef4eb34eda76705d2265f1d9ce315aac05462d83a
|
|
7
|
+
data.tar.gz: 0e829aabd72bd3e964cd6d0d8d0ce5872d05f69281e88f114e87d72aaae5268f44e50c4e4206f74331312f07eacf7949be2ff9cc11d70bcda565c9f4e35fb147
|
|
@@ -160,6 +160,14 @@ $black: #000000 !default
|
|
|
160
160
|
.fontawesome-carousel-control .fa
|
|
161
161
|
font-size: 30px
|
|
162
162
|
|
|
163
|
+
&__table
|
|
164
|
+
tr.empty
|
|
165
|
+
background-color: #EEEEEE
|
|
166
|
+
td
|
|
167
|
+
line-height: 1px
|
|
168
|
+
padding-bottom: 1px
|
|
169
|
+
padding-top: 1px
|
|
170
|
+
|
|
163
171
|
|
|
164
172
|
// component direct in root
|
|
165
173
|
&__page > &__blockquote,
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
<% end %>
|
|
10
10
|
</div>
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
<% if component[:children].many? %>
|
|
13
|
+
<a class="left carousel-control fontawesome-carousel-control carousel-control-prev" href="#<%= promethee_id_for component %>" data-slide="prev">
|
|
14
|
+
<%= icon('fa', 'chevron-left') %>
|
|
15
|
+
</a>
|
|
16
|
+
<a class="right carousel-control fontawesome-carousel-control carousel-control-next" href="#<%= promethee_id_for component %>" data-slide="next">
|
|
17
|
+
<%= icon('fa', 'chevron-right') %>
|
|
18
|
+
</a>
|
|
19
|
+
<% end %>
|
|
18
20
|
</div>
|
|
@@ -26,7 +26,13 @@
|
|
|
26
26
|
</thead>
|
|
27
27
|
<tbody>
|
|
28
28
|
<% rows.each do |row| %>
|
|
29
|
-
|
|
29
|
+
<%
|
|
30
|
+
row_class = 'empty'
|
|
31
|
+
row.each do |cell|
|
|
32
|
+
row_class = '' unless cell[:text].blank?
|
|
33
|
+
end
|
|
34
|
+
%>
|
|
35
|
+
<tr class="<%= row_class %>">
|
|
30
36
|
<% row.each do |cell| %>
|
|
31
37
|
<td><%= cell[:text] %></td>
|
|
32
38
|
<% end %>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: promethee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sébastien Gaya
|
|
@@ -504,7 +504,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
504
504
|
- !ruby/object:Gem::Version
|
|
505
505
|
version: '0'
|
|
506
506
|
requirements: []
|
|
507
|
-
rubygems_version: 3.
|
|
507
|
+
rubygems_version: 3.0.3
|
|
508
508
|
signing_key:
|
|
509
509
|
specification_version: 4
|
|
510
510
|
summary: Bring fire to your page
|