active_scaffold 3.1.17 → 3.1.18
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/images/{add.gif → active_scaffold/add.gif} +0 -0
- data/app/assets/images/{arrow_down.gif → active_scaffold/arrow_down.gif} +0 -0
- data/app/assets/images/{arrow_up.gif → active_scaffold/arrow_up.gif} +0 -0
- data/app/assets/images/{close.gif → active_scaffold/close.gif} +0 -0
- data/app/assets/images/{close_touch.png → active_scaffold/close_touch.png} +0 -0
- data/app/assets/images/{config.png → active_scaffold/config.png} +0 -0
- data/app/assets/images/{cross.png → active_scaffold/cross.png} +0 -0
- data/app/assets/images/{gears.png → active_scaffold/gears.png} +0 -0
- data/app/assets/images/{indicator-small.gif → active_scaffold/indicator-small.gif} +0 -0
- data/app/assets/images/{indicator.gif → active_scaffold/indicator.gif} +0 -0
- data/app/assets/images/{magnifier.png → active_scaffold/magnifier.png} +0 -0
- data/app/assets/javascripts/jquery/active_scaffold.js +125 -125
- data/app/assets/javascripts/jquery/date_picker_bridge.js.erb +5 -5
- data/app/assets/javascripts/jquery/draggable_lists.js +9 -9
- data/app/assets/javascripts/jquery/tiny_mce_bridge.js +2 -2
- data/app/assets/stylesheets/active_scaffold.css.erb +166 -147
- data/app/assets/stylesheets/active_scaffold.css.erb~ +182 -147
- data/app/assets/stylesheets/blue-theme.css +74 -0
- data/app/assets/stylesheets/blue-theme.css~ +1150 -0
- data/frontends/default/views/_search.html.erb +3 -3
- data/lib/active_scaffold/actions/nested.rb +2 -2
- data/lib/active_scaffold/actions/nested.rb~ +3 -3
- data/lib/active_scaffold/data_structures/nested_info.rb +6 -2
- data/lib/active_scaffold/data_structures/nested_info.rb~ +7 -3
- data/lib/active_scaffold/helpers/search_column_helpers.rb +3 -1
- data/lib/active_scaffold/helpers/view_helpers.rb +1 -1
- data/lib/active_scaffold/version.rb +1 -1
- data/lib/active_scaffold.rb +2 -1
- data/lib/active_scaffold.rb~ +14 -4
- metadata +21 -19
@@ -0,0 +1,74 @@
|
|
1
|
+
/*
|
2
|
+
ActiveScaffold Blue Theme
|
3
|
+
(c) 2007 Richard White <rrwhite@gmail.com>
|
4
|
+
|
5
|
+
ActiveScaffold is freely distributable under the terms of an MIT-style license.
|
6
|
+
|
7
|
+
For details, see the ActiveScaffold web site: http://www.activescaffold.com/
|
8
|
+
|
9
|
+
*/
|
10
|
+
|
11
|
+
/* Header
|
12
|
+
======================== */
|
13
|
+
|
14
|
+
.blue-theme .active-scaffold-header {
|
15
|
+
background-color: #005CB8;
|
16
|
+
}
|
17
|
+
|
18
|
+
.blue-theme .active-scaffold-header h2 {
|
19
|
+
color: #fff;
|
20
|
+
padding: 2px 5px 4px 5px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.blue-theme .active-scaffold-header div.actions a {
|
24
|
+
color: #fff;
|
25
|
+
}
|
26
|
+
|
27
|
+
.blue-theme .active-scaffold-header div.actions a.disabled {
|
28
|
+
color: #fff;
|
29
|
+
opacity: 0.5;
|
30
|
+
}
|
31
|
+
|
32
|
+
.blue-theme .active-scaffold-header div.actions a:hover {
|
33
|
+
background-color: #378CDF;
|
34
|
+
}
|
35
|
+
|
36
|
+
.blue-theme .active-scaffold .active-scaffold-header,
|
37
|
+
.blue-theme .active-scaffold .active-scaffold-footer {
|
38
|
+
background-color: #1F7F00;
|
39
|
+
background: transparent;
|
40
|
+
}
|
41
|
+
|
42
|
+
.blue-theme .active-scaffold .active-scaffold-header h2 {
|
43
|
+
color: #444;
|
44
|
+
}
|
45
|
+
|
46
|
+
.blue-theme .active-scaffold .active-scaffold-header div.actions a,
|
47
|
+
.blue-theme .active-scaffold .active-scaffold-header div.actions a:visited {
|
48
|
+
color: #06c;
|
49
|
+
}
|
50
|
+
|
51
|
+
.blue-theme .active-scaffold .active-scaffold-header div.actions a:hover {
|
52
|
+
background-color: #ff8;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* Footer
|
56
|
+
========================== */
|
57
|
+
|
58
|
+
.blue-theme .active-scaffold-footer {
|
59
|
+
background-color: #005CB8;
|
60
|
+
color: #ccc;
|
61
|
+
}
|
62
|
+
|
63
|
+
.blue-theme .active-scaffold-footer .active-scaffold-records {
|
64
|
+
margin-left: 5px;
|
65
|
+
}
|
66
|
+
|
67
|
+
.blue-theme .active-scaffold-footer a,
|
68
|
+
.blue-theme .active-scaffold-footer a:visited {
|
69
|
+
color: #fff;
|
70
|
+
}
|
71
|
+
|
72
|
+
.blue-theme .active-scaffold-footer a:hover {
|
73
|
+
background-color: #378CDF;
|
74
|
+
}
|