lalala 4.0.0.dev.244 → 4.0.0.dev.246

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
  SHA1:
3
- metadata.gz: 7ce1f53a1f309fa9d141d23e635bed9277d8b672
4
- data.tar.gz: 81e4731a057dc05b044376a2b00265401a36e490
3
+ metadata.gz: bf1af9f05211fe2c365b13f1fb96f37524361105
4
+ data.tar.gz: e6d0bfa79ae75e71dc936e8fdc0a26271e7076c8
5
5
  SHA512:
6
- metadata.gz: 340fbc89670a17a4f6671a53718a101d20d931c31fff2585692e346e36f2dcd1345c02a09ac5e8e859614bd0c6056b9f94f48b6e67d46e4cfee742e31a78bd07
7
- data.tar.gz: 8bbed67458af23a6931e808a65f3525ce636cdd624727f956a7b93a6e2f96d53ee275c770f9ce7d865b5ef4172fd6e8adc8bca4f4bca378c8ffe50be46e73b3f
6
+ metadata.gz: 3ab8a8effde66dc7c915c3d5caa1c9385ebda0f50ff3a4d06b4071ad47cbb1f004c714f9e2941c7d5dc8406853c866ec071ed7be62e139d0d7ea6b01364151f9
7
+ data.tar.gz: 41ae0805aaacd22642f1777dcb6bdbbbceea619fa8c9f4d96c63d899bad7b8ff0d74624edfbe9141f7662e7232aef6bd9bc8952d2f7979e70974e4bbbb226a83
data/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  *.rbc
3
3
  .bundle
4
4
  .config
5
+ .DS_Store
5
6
  .ruby-version
6
7
  .yardoc
7
8
  _yardoc
@@ -35,3 +35,4 @@
35
35
  @import "lalala/modules/grid";
36
36
  @import "lalala/modules/scopes";
37
37
  @import "lalala/modules/dashboard";
38
+ @import "lalala/modules/panel";
@@ -19,6 +19,7 @@ body.lalala_dashboard {
19
19
 
20
20
  .column {
21
21
  float: left;
22
+ margin-bottom: 20px;
22
23
 
23
24
  .panel {
24
25
  @include border-radius(10px);
@@ -0,0 +1,32 @@
1
+ body.show {
2
+
3
+ .panel {
4
+
5
+ h3 {
6
+ font-size: 18px;
7
+ font-weight: bold;
8
+ margin: 0 0 20px 18px;
9
+ }
10
+
11
+ // set table tbody tr th lighter
12
+ table {
13
+ @include border-radius(10px);
14
+ background-color: #e0e0e0 !important;
15
+ border: 1px solid #e0e0e0;
16
+
17
+ tbody tr th {
18
+ color: $gray_lighter;
19
+ width: 15% !important;
20
+ }
21
+
22
+ ul {
23
+ list-style-style: circle;
24
+ }
25
+
26
+ }
27
+
28
+ }
29
+
30
+
31
+
32
+ }
@@ -1,6 +1,6 @@
1
1
  module Lalala
2
2
  VERSION = "4.0.0"
3
- BUILD = "244"
3
+ BUILD = "246"
4
4
 
5
5
  if BUILD != ("{{BUILD_NUMBER" + "}}") # prevent sed replacement (see script/ci)
6
6
  BUILD_VERSION = "#{VERSION}.dev.#{BUILD}"
@@ -43,5 +43,21 @@ ActiveAdmin.register_page "Dashboard" do
43
43
  end
44
44
 
45
45
  end
46
+
47
+
48
+ columns do
49
+ column :span => 2 do
50
+ panel "Recent Posts List" do
51
+ ul do
52
+ Article.all.map do |article|
53
+ li link_to(article.title, edit_lalala_article_path(article))
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ end
60
+
61
+
46
62
  end # content
47
63
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lalala
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.dev.244
4
+ version: 4.0.0.dev.246
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Menke
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2013-12-05 00:00:00.000000000 Z
16
+ date: 2013-12-16 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: activeadmin
@@ -1348,6 +1348,7 @@ files:
1348
1348
  - app/assets/stylesheets/lalala/modules/_index-as-tree-table.css.scss
1349
1349
  - app/assets/stylesheets/lalala/modules/_index-footer.css.scss
1350
1350
  - app/assets/stylesheets/lalala/modules/_login.css.scss
1351
+ - app/assets/stylesheets/lalala/modules/_panel.css.scss
1351
1352
  - app/assets/stylesheets/lalala/modules/_scopes.css.scss
1352
1353
  - app/assets/stylesheets/lalala/modules/_sidebar-section.css.scss
1353
1354
  - app/assets/stylesheets/lalala/modules/_table-tools.css.scss