pg_rails 7.4.2 → 7.4.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c92bec79721ca86a7228a00acdf6ee2e968c240a1739cdd4b7c61a0f2a7784b5
|
4
|
+
data.tar.gz: 0701cd071509d9ef7a0fbd7ed8d0cc6e4122b40fe865d021e981b94e96a618e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9888c6b99cf12f74e07aee5bcd4b93d84aa8449ff4854926a8ba9357bf9a20144936337d4b9bb6e1bc8a4dc064d45eaccd44a38986a8816a9aef53939a96fd44
|
7
|
+
data.tar.gz: 8acb411a451cc8685e3a3cf84bfdfe44ea2c90ae9ffe24d3bcf45ae566ae0c3efe2ea79e96dc74ded65c226ac698d6b660e0d4ce5a547984e65c0bba360bfc6c
|
@@ -22,7 +22,7 @@ div
|
|
22
22
|
thead.table-light
|
23
23
|
tr
|
24
24
|
- atributos_para_listar.each do |att|
|
25
|
-
th = encabezado att, ordenable: true
|
25
|
+
th.text-nowrap style="font-size: 0.8em" = encabezado att, ordenable: true
|
26
26
|
th.text-end
|
27
27
|
- unless @export_link == false
|
28
28
|
= @clase_modelo.new.decorate.export_link(request.url)
|
@@ -1,16 +1,22 @@
|
|
1
1
|
h1 Tables
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
h4 None
|
4
|
+
.table-responsive
|
5
|
+
table.table
|
6
|
+
tr
|
7
|
+
td.text-nowrap = Faker::Lorem.sentence(word_count: 80)
|
8
|
+
td.text-nowrap = Faker::Lorem.sentence(word_count: 40)
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
10
|
+
h4 30-70
|
11
|
+
.table-responsive
|
12
|
+
table.table
|
13
|
+
tr
|
14
|
+
td.column-truncate-30 = Faker::Lorem.sentence(word_count: 80)
|
15
|
+
td.column-truncate-70 = Faker::Lorem.sentence(word_count: 40)
|
12
16
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
+
h4 80-
|
18
|
+
.table-responsive
|
19
|
+
table.table
|
20
|
+
tr
|
21
|
+
td.column-truncate-80 = Faker::Lorem.sentence(word_count: 80)
|
22
|
+
td.text-nowrap = Faker::Lorem.sentence(word_count: 4)
|
data/pg_rails/lib/version.rb
CHANGED
data/pg_rails/scss/pg_rails.scss
CHANGED