active_scaffold 3.1.19 → 3.1.20

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.
@@ -0,0 +1,11 @@
1
+ /*
2
+ ActiveScaffold
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
+ *= require active_scaffold_layout
9
+ *= require active_scaffold_colors
10
+ *= require active_scaffold_default
11
+ */
@@ -0,0 +1,11 @@
1
+ /*
2
+ ActiveScaffold
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
+ *= require active_scaffold_layout
9
+ *= require active_scaffold_colors
10
+ *= require active_scaffold_default
11
+ */
@@ -0,0 +1,11 @@
1
+ /*
2
+ ActiveScaffold
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
+ *= require active_scaffold_layout
9
+ *= require active_scaffold_default
10
+ */
11
+ @import 'active_scaffold_colors';
@@ -0,0 +1,244 @@
1
+ /*
2
+ ActiveScaffold
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
+ .active-scaffold a.disabled {
11
+ color: #999999; }
12
+
13
+ .active-scaffold a:hover, .active-scaffold div.hover, .active-scaffold td span.hover {
14
+ background-color: #ffff88; }
15
+
16
+ noscript.active-scaffold {
17
+ border-color: #ff6666;
18
+ background-color: #ffbbbb;
19
+ color: #333333; }
20
+
21
+ /* Header
22
+ ======================== */
23
+ .active-scaffold-header h2 {
24
+ color: #555555; }
25
+
26
+ .active-scaffold-header div.actions a.disabled {
27
+ color: #666666; }
28
+
29
+ /* Table :: Column Headers
30
+ ============================= */
31
+ .active-scaffold th {
32
+ background-color: #555555; }
33
+
34
+ .active-scaffold th a,
35
+ .active-scaffold th p {
36
+ background-color: #555555; }
37
+
38
+ .active-scaffold th a, .active-scaffold th a:visited {
39
+ color: white; }
40
+
41
+ .active-scaffold th p {
42
+ color: #eeeeee; }
43
+
44
+ .active-scaffold th a:hover {
45
+ background-color: black;
46
+ color: #ffff88; }
47
+
48
+ .active-scaffold th.sorted {
49
+ background-color: #333333; }
50
+
51
+ .active-scaffold th.asc a,
52
+ .active-scaffold th.asc a:hover,
53
+ .active-scaffold th.desc a,
54
+ .active-scaffold th.desc a:hover,
55
+ .active-scaffold th.loading a,
56
+ .active-scaffold th.loading a:hover {
57
+ background-color: #333333; }
58
+
59
+ /* Table :: Record Rows
60
+ ============================= */
61
+ .active-scaffold tr.record {
62
+ background-color: #e6f2ff; }
63
+
64
+ .active-scaffold tr.record td {
65
+ color: #333333;
66
+ border-color: #c5dbf7; }
67
+
68
+ .active-scaffold tr.even-record {
69
+ background-color: white; }
70
+
71
+ .active-scaffold tr.even-record td {
72
+ border-left-color: #dddddd; }
73
+
74
+ .active-scaffold tr.record td.sorted {
75
+ background-color: #b9dcff;
76
+ border-bottom-color: #afd0f5; }
77
+
78
+ .active-scaffold tr.even-record td.sorted {
79
+ background-color: #e6f2ff;
80
+ border-bottom-color: #afd0f5; }
81
+
82
+ .active-scaffold tbody.records td.empty {
83
+ color: #999999; }
84
+
85
+ /* Table :: Actions (Edit, Delete)
86
+ ============================= */
87
+ .active-scaffold tr.record td.actions {
88
+ border-color: #cccccc; }
89
+
90
+ .active-scaffold tr.record td.actions a.disabled {
91
+ color: #666666; }
92
+
93
+ .active-scaffold .actions .action_group div:hover {
94
+ background-color: #ffff88; }
95
+
96
+ .active-scaffold .actions .action_group {
97
+ color: #0066cc; }
98
+
99
+ .active-scaffold .actions .action_group ul {
100
+ border-color: #005cb8; }
101
+
102
+ .active-scaffold .actions .action_group ul li {
103
+ background-color: #eeeeee;
104
+ border-color: #222222; }
105
+
106
+ .active-scaffold .actions .action_group ul li a {
107
+ color: #333333; }
108
+
109
+ /* Table :: Inline Adapter
110
+ ============================= */
111
+ .active-scaffold .view {
112
+ background-color: #daffcd;
113
+ border-color: #7fcf00; }
114
+
115
+ /* Nested
116
+ ======================== */
117
+ .active-scaffold .active-scaffold .active-scaffold-footer {
118
+ color: #444444; }
119
+
120
+ .active-scaffold .active-scaffold td {
121
+ background-color: #ecffe7;
122
+ border-color: #c5dbf7; }
123
+
124
+ .active-scaffold .active-scaffold td.inline-adapter-cell {
125
+ background-color: #ffffbb;
126
+ border-color: #dddf37; }
127
+
128
+ .active-scaffold .active-scaffold .active-scaffold td.inline-adapter-cell {
129
+ background-color: #daffcd;
130
+ border-color: #7fcf00; }
131
+
132
+ /* Footer
133
+ ========================== */
134
+ .active-scaffold-calculations td {
135
+ background-color: #eeeeee;
136
+ border-color: #005cb8; }
137
+
138
+ .active-scaffold-footer .next {
139
+ border-color: #cccccc; }
140
+
141
+ .active-scaffold-footer .previous {
142
+ border-color: #cccccc; }
143
+
144
+ /* Messages
145
+ ========================= */
146
+ .active-scaffold .empty-message, .active-scaffold .filtered-message {
147
+ background-color: #e8e8e8;
148
+ color: #666666; }
149
+
150
+ .active-scaffold .message {
151
+ color: #333333; }
152
+
153
+ .active-scaffold .error-message {
154
+ border-color: #ff6666;
155
+ background-color: #ffbbbb; }
156
+
157
+ .active-scaffold .warning-message {
158
+ border-color: #ffff66;
159
+ background-color: #ffffbb; }
160
+
161
+ .active-scaffold .info-message {
162
+ border-color: #6666ff;
163
+ background-color: #bbbbff; }
164
+
165
+ /* Error Styling
166
+ ========================== */
167
+ .active-scaffold .errorExplanation {
168
+ background-color: #ffbbbb;
169
+ border-color: #ff6666; }
170
+
171
+ .active-scaffold .errorExplanation h2 {
172
+ color: #333333;
173
+ background-color: #ff6666; }
174
+
175
+ /* Show
176
+ ============================= */
177
+ .active-scaffold .show-view dt {
178
+ color: #555555; }
179
+
180
+ /* Form
181
+ ============================== */
182
+ .active-scaffold h4,
183
+ .active-scaffold h5 {
184
+ color: #1f7f00; }
185
+
186
+ /* Form :: Fields
187
+ ============================== */
188
+ .active-scaffold label {
189
+ color: #555555; }
190
+
191
+ .active-scaffold .description {
192
+ color: #999999; }
193
+
194
+ .active-scaffold label.example {
195
+ color: #aaaaaa; }
196
+
197
+ .active-scaffold input.text-input,
198
+ .active-scaffold select {
199
+ border-color: #1f7f00; }
200
+
201
+ .active-scaffold .fieldWithErrors input,
202
+ .active-scaffold .field_with_errors input,
203
+ .active-scaffold .fieldWithErrors textarea,
204
+ .active-scaffold .field_with_errors textarea,
205
+ .active-scaffold .fieldWithErrors select,
206
+ .active-scaffold .field_with_errors select {
207
+ border-color: red; }
208
+
209
+ .active-scaffold input.example {
210
+ color: #aaaaaa; }
211
+
212
+ .active-scaffold select:focus,
213
+ .active-scaffold input.text-input:focus {
214
+ background-color: #ffffcc; }
215
+
216
+ .active-scaffold textarea {
217
+ border-color: #1f7f00; }
218
+
219
+ .active-scaffold .draggable-list {
220
+ background-color: #ffff88; }
221
+
222
+ .active-scaffold .draggable-list.selected {
223
+ background-color: #7fcf00; }
224
+
225
+ /* Form :: Association Sub-Forms
226
+ ============================== */
227
+ .active-scaffold .sub-form table th {
228
+ color: #555555; }
229
+
230
+ .active-scaffold .sub-form .checkbox-list {
231
+ background-color: white;
232
+ border-color: #1f7f00; }
233
+
234
+ .active-scaffold .sub-form .checkbox-list label {
235
+ display: block; }
236
+
237
+ .active-scaffold .sub-form table td {
238
+ color: #999999; }
239
+
240
+ .active-scaffold .sub-form .footer {
241
+ color: #999999; }
242
+
243
+ .as_touch th a, .as_touch th a:visited {
244
+ color: white; }