comfortable_mexican_sofa 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +10 -0
- data/CHANGELOG.rdoc +2 -0
- data/LICENSE +20 -0
- data/README.rdoc +55 -0
- data/Rakefile +88 -0
- data/VERSION +1 -0
- data/app/controllers/cms_admin/attachments_controller.rb +55 -0
- data/app/controllers/cms_admin/base_controller.rb +25 -0
- data/app/controllers/cms_admin/categories_controller.rb +69 -0
- data/app/controllers/cms_admin/layouts_controller.rb +71 -0
- data/app/controllers/cms_admin/pages_controller.rb +79 -0
- data/app/controllers/cms_admin/sections_controller.rb +17 -0
- data/app/controllers/cms_admin/snippets_controller.rb +58 -0
- data/app/controllers/cms_common/render_page.rb +47 -0
- data/app/controllers/cms_content_controller.rb +30 -0
- data/app/helpers/cms_helper.rb +12 -0
- data/app/models/cms_attachment.rb +17 -0
- data/app/models/cms_attachment_categorization.rb +5 -0
- data/app/models/cms_block.rb +15 -0
- data/app/models/cms_category.rb +36 -0
- data/app/models/cms_layout.rb +102 -0
- data/app/models/cms_page.rb +125 -0
- data/app/models/cms_page_categorization.rb +6 -0
- data/app/models/cms_snippet.rb +15 -0
- data/app/views/cms_admin/attachments/_details.html.haml +27 -0
- data/app/views/cms_admin/attachments/_form.html.haml +24 -0
- data/app/views/cms_admin/attachments/edit.html.haml +10 -0
- data/app/views/cms_admin/attachments/index.html.haml +36 -0
- data/app/views/cms_admin/attachments/new.html.haml +8 -0
- data/app/views/cms_admin/categories/_category.html.haml +21 -0
- data/app/views/cms_admin/categories/_category_subform.html.haml +12 -0
- data/app/views/cms_admin/categories/_form.html.haml +18 -0
- data/app/views/cms_admin/categories/_new.html.haml +7 -0
- data/app/views/cms_admin/categories/_toggle_link.html.haml +9 -0
- data/app/views/cms_admin/categories/_tree_branch.html.haml +36 -0
- data/app/views/cms_admin/categories/children.js.rjs +10 -0
- data/app/views/cms_admin/categories/create.js.rjs +9 -0
- data/app/views/cms_admin/categories/edit.html.haml +10 -0
- data/app/views/cms_admin/categories/index.html.haml +7 -0
- data/app/views/cms_admin/categories/new.html.haml +8 -0
- data/app/views/cms_admin/categories/show.html.haml +17 -0
- data/app/views/cms_admin/layouts/_details.html.haml +6 -0
- data/app/views/cms_admin/layouts/_form.html.haml +19 -0
- data/app/views/cms_admin/layouts/_toggle_link.html.haml +9 -0
- data/app/views/cms_admin/layouts/_tree_branch.html.haml +39 -0
- data/app/views/cms_admin/layouts/children.js.rjs +10 -0
- data/app/views/cms_admin/layouts/edit.html.haml +10 -0
- data/app/views/cms_admin/layouts/index.html.haml +7 -0
- data/app/views/cms_admin/layouts/new.html.haml +8 -0
- data/app/views/cms_admin/pages/_details.html.haml +25 -0
- data/app/views/cms_admin/pages/_form.html.haml +45 -0
- data/app/views/cms_admin/pages/_form_blocks.html.haml +48 -0
- data/app/views/cms_admin/pages/_toggle_link.html.haml +10 -0
- data/app/views/cms_admin/pages/_tree_branch.html.haml +41 -0
- data/app/views/cms_admin/pages/children.js.rjs +10 -0
- data/app/views/cms_admin/pages/edit.html.haml +11 -0
- data/app/views/cms_admin/pages/form_blocks.js.rjs +1 -0
- data/app/views/cms_admin/pages/index.html.haml +6 -0
- data/app/views/cms_admin/pages/new.html.haml +9 -0
- data/app/views/cms_admin/sections/show.html.haml +23 -0
- data/app/views/cms_admin/snippets/_form.html.haml +10 -0
- data/app/views/cms_admin/snippets/edit.html.haml +10 -0
- data/app/views/cms_admin/snippets/index.html.haml +26 -0
- data/app/views/cms_admin/snippets/new.html.haml +8 -0
- data/app/views/cms_content/show.xml.rxml +27 -0
- data/app/views/cms_content/sitemap.xml.rxml +16 -0
- data/app/views/layouts/cms_admin.html.haml +44 -0
- data/comfortable_mexican_sofa.gemspec +254 -0
- data/config/cms_routes.rb +25 -0
- data/generators/cms/cms_generator.rb +55 -0
- data/generators/cms/templates/README +32 -0
- data/generators/cms/templates/images/arrow_bottom.gif +0 -0
- data/generators/cms/templates/images/arrow_right.gif +0 -0
- data/generators/cms/templates/images/icon_attachment.gif +0 -0
- data/generators/cms/templates/images/icon_category.gif +0 -0
- data/generators/cms/templates/images/icon_draft.gif +0 -0
- data/generators/cms/templates/images/icon_layout.gif +0 -0
- data/generators/cms/templates/images/icon_move.gif +0 -0
- data/generators/cms/templates/images/icon_regular.gif +0 -0
- data/generators/cms/templates/images/icon_snippet.gif +0 -0
- data/generators/cms/templates/images/logo.png +0 -0
- data/generators/cms/templates/initializers/cms.rb +14 -0
- data/generators/cms/templates/initializers/paperclip.rb +14 -0
- data/generators/cms/templates/javascripts/codemirror_init.js +16 -0
- data/generators/cms/templates/javascripts/mce_init.js +17 -0
- data/generators/cms/templates/javascripts/utilities.js +27 -0
- data/generators/cms/templates/migrations/create_cms.rb +113 -0
- data/generators/cms/templates/stylesheets/cms_master.sass +414 -0
- data/init.rb +1 -0
- data/lib/comfortable_mexican_sofa.rb +46 -0
- data/lib/comfortable_mexican_sofa/acts_as_categorized.rb +87 -0
- data/lib/comfortable_mexican_sofa/acts_as_published.rb +60 -0
- data/lib/comfortable_mexican_sofa/cms_acts_as_tree.rb +108 -0
- data/lib/comfortable_mexican_sofa/cms_rails_extensions.rb +12 -0
- data/lib/comfortable_mexican_sofa/cms_tag.rb +109 -0
- data/lib/comfortable_mexican_sofa/cms_tags/attachment.rb +3 -0
- data/lib/comfortable_mexican_sofa/cms_tags/block.rb +117 -0
- data/lib/comfortable_mexican_sofa/cms_tags/helper.rb +3 -0
- data/lib/comfortable_mexican_sofa/cms_tags/page_block.rb +119 -0
- data/lib/comfortable_mexican_sofa/cms_tags/partial.rb +19 -0
- data/lib/comfortable_mexican_sofa/cms_tags/snippet.rb +19 -0
- data/rails/init.rb +1 -0
- data/test/fixtures/cms_attachment_categorizations.yml +7 -0
- data/test/fixtures/cms_attachments.yml +6 -0
- data/test/fixtures/cms_blocks.yml +38 -0
- data/test/fixtures/cms_categories.yml +19 -0
- data/test/fixtures/cms_layouts.yml +41 -0
- data/test/fixtures/cms_page_categorizations.yml +15 -0
- data/test/fixtures/cms_pages.yml +38 -0
- data/test/fixtures/cms_snippets.yml +7 -0
- data/test/fixtures/files/upload_file.txt +1 -0
- data/test/functional/cms_admin/attachments_controller_test.rb +63 -0
- data/test/functional/cms_admin/categories_controller_test.rb +86 -0
- data/test/functional/cms_admin/layouts_controller_test.rb +77 -0
- data/test/functional/cms_admin/pages_controller_test.rb +153 -0
- data/test/functional/cms_admin/sections_controller_test.rb +9 -0
- data/test/functional/cms_admin/snippets_controller_test.rb +63 -0
- data/test/functional/cms_content_controller_test.rb +52 -0
- data/test/models/cms_attachment_test.rb +16 -0
- data/test/models/cms_block_test.rb +11 -0
- data/test/models/cms_categorization_test.rb +39 -0
- data/test/models/cms_category_test.rb +71 -0
- data/test/models/cms_layout_test.rb +44 -0
- data/test/models/cms_page_test.rb +55 -0
- data/test/models/cms_snippet_test.rb +16 -0
- data/test/models/cms_tag_test.rb +70 -0
- data/test/rails_root/README +243 -0
- data/test/rails_root/Rakefile +10 -0
- data/test/rails_root/app/controllers/application_controller.rb +10 -0
- data/test/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails_root/app/views/cms/under-development.html.haml +1 -0
- data/test/rails_root/app/views/complex_page/_example.html.erb +1 -0
- data/test/rails_root/config/boot.rb +110 -0
- data/test/rails_root/config/database.yml +22 -0
- data/test/rails_root/config/environment.rb +48 -0
- data/test/rails_root/config/environments/development.rb +17 -0
- data/test/rails_root/config/environments/production.rb +28 -0
- data/test/rails_root/config/environments/test.rb +28 -0
- data/test/rails_root/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails_root/config/initializers/new_rails_defaults.rb +19 -0
- data/test/rails_root/config/initializers/session_store.rb +15 -0
- data/test/rails_root/config/locales/en.yml +5 -0
- data/test/rails_root/config/routes.rb +43 -0
- data/test/rails_root/doc/README_FOR_APP +2 -0
- data/test/rails_root/public/404.html +30 -0
- data/test/rails_root/public/422.html +30 -0
- data/test/rails_root/public/500.html +30 -0
- data/test/rails_root/public/favicon.ico +0 -0
- data/test/rails_root/public/images/rails.png +0 -0
- data/test/rails_root/public/index.html +275 -0
- data/test/rails_root/public/javascripts/application.js +2 -0
- data/test/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails_root/public/javascripts/dragdrop.js +973 -0
- data/test/rails_root/public/javascripts/effects.js +1128 -0
- data/test/rails_root/public/javascripts/prototype.js +4320 -0
- data/test/rails_root/public/robots.txt +5 -0
- data/test/rails_root/public/stylesheets/sass/cms_master.sass +414 -0
- data/test/rails_root/script/about +4 -0
- data/test/rails_root/script/console +3 -0
- data/test/rails_root/script/dbconsole +3 -0
- data/test/rails_root/script/destroy +3 -0
- data/test/rails_root/script/generate +3 -0
- data/test/rails_root/script/performance/benchmarker +3 -0
- data/test/rails_root/script/performance/profiler +3 -0
- data/test/rails_root/script/plugin +3 -0
- data/test/rails_root/script/runner +3 -0
- data/test/rails_root/script/server +3 -0
- data/test/test_helper.rb +17 -0
- metadata +303 -0
@@ -0,0 +1,414 @@
|
|
1
|
+
// -------------------------------------------------------------------- Reset
|
2
|
+
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td
|
3
|
+
margin: 0
|
4
|
+
padding: 0
|
5
|
+
border: 0
|
6
|
+
outline: 0
|
7
|
+
font-size: 100%
|
8
|
+
vertical-align: baseline
|
9
|
+
background: transparent
|
10
|
+
font-weight: normal
|
11
|
+
body
|
12
|
+
line-height: 1
|
13
|
+
ol, ul
|
14
|
+
list-style: none
|
15
|
+
blockquote, q
|
16
|
+
quotes: none
|
17
|
+
blockquote:before, blockquote:after, q:before, q:after
|
18
|
+
content: ''
|
19
|
+
content: none
|
20
|
+
*:focus
|
21
|
+
outline: 0
|
22
|
+
ins
|
23
|
+
text-decoration: none
|
24
|
+
del
|
25
|
+
text-decoration: line-through
|
26
|
+
table
|
27
|
+
border-collapse: collapse
|
28
|
+
border-spacing: 0
|
29
|
+
caption, th
|
30
|
+
text-align: left
|
31
|
+
|
32
|
+
// --------------------------------------------------------------- Typography
|
33
|
+
body
|
34
|
+
font: 13px Tahoma, "Lucida Grande", arial, verdana, clean, sans-serif
|
35
|
+
_font-size: small
|
36
|
+
_font: x-small
|
37
|
+
table
|
38
|
+
font-size: inherit
|
39
|
+
font: 100%
|
40
|
+
th
|
41
|
+
font-weight: bold
|
42
|
+
pre, code
|
43
|
+
font: 115% monospace
|
44
|
+
_font-size: 100%
|
45
|
+
|
46
|
+
a
|
47
|
+
color: #1F6FBA
|
48
|
+
text-decoration: none
|
49
|
+
a:hover
|
50
|
+
text-decoration: underline
|
51
|
+
|
52
|
+
h2
|
53
|
+
font: 20px/30px Georgia, serif
|
54
|
+
margin-bottom: 15px
|
55
|
+
border-bottom: 2px solid #444
|
56
|
+
|
57
|
+
// ------------------------------------------------------------------- Common
|
58
|
+
a.big_button
|
59
|
+
float: right
|
60
|
+
background-color: #404040
|
61
|
+
color: #fff
|
62
|
+
text-decoration: none
|
63
|
+
padding: 0px 10px
|
64
|
+
-moz-border-radius: 4px
|
65
|
+
font: 12px/24px Tahoma, "Lucida Grande", sans-serif
|
66
|
+
|
67
|
+
.filter_form
|
68
|
+
float: right
|
69
|
+
margin-bottom: 15px
|
70
|
+
|
71
|
+
// ---------------------------------------------------------------- Structure
|
72
|
+
body
|
73
|
+
background-color: #292E35
|
74
|
+
.header
|
75
|
+
height: 45px
|
76
|
+
background-color: #292E35
|
77
|
+
padding: 0px 15px
|
78
|
+
h1
|
79
|
+
padding: 0px
|
80
|
+
margin: 0px
|
81
|
+
a
|
82
|
+
display: block
|
83
|
+
background: url(/images/cms/logo.png) left center no-repeat
|
84
|
+
padding-left: 60px
|
85
|
+
font: 18px/45px Georgia, serif
|
86
|
+
color: #fff
|
87
|
+
text-decoration: none
|
88
|
+
.content_wrapper
|
89
|
+
overflow: hidden
|
90
|
+
background: #d4d4d4
|
91
|
+
.left_navigation_column
|
92
|
+
width: 145px
|
93
|
+
padding: 5px 0px 5px 5px
|
94
|
+
float: left
|
95
|
+
.content_column
|
96
|
+
background-color: #fff
|
97
|
+
margin-left: 150px
|
98
|
+
padding: 15px
|
99
|
+
border-left: 1px solid #aaa
|
100
|
+
overflow: hidden
|
101
|
+
min-height: 300px
|
102
|
+
.flash.notice
|
103
|
+
padding: 10px
|
104
|
+
text-align: center
|
105
|
+
background-color: #2E9442
|
106
|
+
color: #fff
|
107
|
+
margin-bottom: 15px
|
108
|
+
font-size: 16px
|
109
|
+
.footer
|
110
|
+
padding: 15px
|
111
|
+
color: #fff
|
112
|
+
|
113
|
+
// -------------------------------------------------------------- Left Column
|
114
|
+
.left_navigation_column
|
115
|
+
ul
|
116
|
+
-moz-border-radius-topleft: 4px
|
117
|
+
-moz-border-radius-bottomleft: 4px
|
118
|
+
margin-bottom: 5px
|
119
|
+
padding: 5px 0px
|
120
|
+
background-color: #545B66
|
121
|
+
li
|
122
|
+
a
|
123
|
+
display: block
|
124
|
+
padding: 5px 10px
|
125
|
+
font: 13px Georgia, serif
|
126
|
+
color: #fff
|
127
|
+
border: 1px solid transparent
|
128
|
+
a.active, a:hover
|
129
|
+
text-decoration: none
|
130
|
+
background-color: #fff
|
131
|
+
-moz-border-radius-topleft: 4px
|
132
|
+
-moz-border-radius-bottomleft: 4px
|
133
|
+
border: 1px solid #aaa
|
134
|
+
border-right: none
|
135
|
+
margin-right: -1px
|
136
|
+
margin-left: 5px
|
137
|
+
padding-left: 5px
|
138
|
+
color: #000
|
139
|
+
a:hover
|
140
|
+
color: #fff
|
141
|
+
background-color: transparent
|
142
|
+
border-style: dotted
|
143
|
+
border-right: none
|
144
|
+
a.active:hover
|
145
|
+
border-color: #aaa
|
146
|
+
background-color: #fff
|
147
|
+
color: #000
|
148
|
+
// ----------------------------------------------------------- Tree Structure
|
149
|
+
.tree_structure
|
150
|
+
ul
|
151
|
+
li
|
152
|
+
margin-left: 35px
|
153
|
+
border-top: 1px solid #eee
|
154
|
+
|
155
|
+
a.tree_toggle
|
156
|
+
margin-top: 5px
|
157
|
+
width: 20px
|
158
|
+
height: 28px
|
159
|
+
float: left
|
160
|
+
margin-left: -35px
|
161
|
+
font: 10px/25px Arial, sans-serif
|
162
|
+
background: url(/images/cms/arrow_bottom.gif) right center no-repeat
|
163
|
+
padding-right: 15px
|
164
|
+
color: #ccc
|
165
|
+
text-align: right
|
166
|
+
a.tree_toggle.closed
|
167
|
+
background-image: url(/images/cms/arrow_right.gif)
|
168
|
+
a.tree_toggle:hover
|
169
|
+
text-decoration: none
|
170
|
+
color: #000
|
171
|
+
|
172
|
+
.item
|
173
|
+
padding: 5px 0px 5px 35px
|
174
|
+
overflow: hidden
|
175
|
+
|
176
|
+
.icon
|
177
|
+
margin-left: -35px
|
178
|
+
float: left
|
179
|
+
width: 28px
|
180
|
+
height: 28px
|
181
|
+
background: url(/images/cms/icon_draft.gif)
|
182
|
+
.dragger
|
183
|
+
width: 28px
|
184
|
+
height: 28px
|
185
|
+
cursor: move
|
186
|
+
.dragger:hover
|
187
|
+
background: url(/images/cms/icon_move.gif)
|
188
|
+
|
189
|
+
a.label
|
190
|
+
font: 14px Georgia, serif
|
191
|
+
color: #000
|
192
|
+
.url
|
193
|
+
font-size: 10px
|
194
|
+
|
195
|
+
.action_links
|
196
|
+
visibility: hidden
|
197
|
+
font-size: 10px
|
198
|
+
|
199
|
+
table.details
|
200
|
+
font-size: 10px
|
201
|
+
margin: 5px 15px
|
202
|
+
border-left: 3px solid #ccc
|
203
|
+
th
|
204
|
+
padding: 0px 5px 0px 10px
|
205
|
+
font-weight: normal
|
206
|
+
|
207
|
+
.item:hover
|
208
|
+
background-color: #f5f5f5
|
209
|
+
.action_links
|
210
|
+
visibility: visible
|
211
|
+
|
212
|
+
// ---------------------------------------------------------- Formatted Table
|
213
|
+
table.formatted
|
214
|
+
width: 100%
|
215
|
+
margin-bottom: 15px
|
216
|
+
th, td
|
217
|
+
padding: 5px
|
218
|
+
vertical-align: top
|
219
|
+
border-bottom: 1px solid #eee
|
220
|
+
th
|
221
|
+
background-color: #eee
|
222
|
+
font-size: 10px
|
223
|
+
text-transform: uppercase
|
224
|
+
border-bottom: 1px solid #444
|
225
|
+
td.main, th.main
|
226
|
+
width: 100%
|
227
|
+
white-space: normal
|
228
|
+
td, th
|
229
|
+
white-space: nowrap
|
230
|
+
th.first
|
231
|
+
-moz-border-radius-topleft: 4px
|
232
|
+
th.last
|
233
|
+
-moz-border-radius-topright: 4px
|
234
|
+
tr:hover
|
235
|
+
background-color: #f5f5f5
|
236
|
+
|
237
|
+
// -------------------------------------------------------------------- Forms
|
238
|
+
.form_element_group
|
239
|
+
background-color: #e5e5e5
|
240
|
+
-moz-border-radius: 4px
|
241
|
+
-moz-box-shadow: 1px 1px 2px 2px #aaa
|
242
|
+
padding: 10px
|
243
|
+
margin-bottom: 15px
|
244
|
+
.form_element
|
245
|
+
margin-bottom: 5px
|
246
|
+
overflow: hidden
|
247
|
+
.label
|
248
|
+
text-transform: uppercase
|
249
|
+
font-size: 11px
|
250
|
+
.field
|
251
|
+
input, select, textarea
|
252
|
+
width: 100%
|
253
|
+
.codemirror
|
254
|
+
background-color: #fff
|
255
|
+
border: 1px inset #e5e5e5
|
256
|
+
.fieldWithErrors label
|
257
|
+
color: #9E0B0F
|
258
|
+
.form_element.time, .form_element.date, .form_element.checkbox
|
259
|
+
select, input
|
260
|
+
width: auto
|
261
|
+
|
262
|
+
.form_element_group.horizontal
|
263
|
+
.form_element
|
264
|
+
.label
|
265
|
+
width: 90px
|
266
|
+
float: left
|
267
|
+
text-align: right
|
268
|
+
line-height: 20px
|
269
|
+
.field
|
270
|
+
margin-left: 100px
|
271
|
+
.form_element.large
|
272
|
+
label
|
273
|
+
font-size: 16px
|
274
|
+
line-height: 26px
|
275
|
+
.field
|
276
|
+
input
|
277
|
+
font-size: 16px
|
278
|
+
|
279
|
+
.form_element_group.publishing
|
280
|
+
.form_element .field
|
281
|
+
input
|
282
|
+
width: 200px
|
283
|
+
|
284
|
+
.form_element_group.categories
|
285
|
+
.label
|
286
|
+
border-bottom: 2px solid #fff
|
287
|
+
padding-bottom: 5px
|
288
|
+
margin-bottom: 5px
|
289
|
+
ul#root_categories
|
290
|
+
margin-bottom: 10px
|
291
|
+
li li
|
292
|
+
padding-left: 15px
|
293
|
+
input
|
294
|
+
width: auto
|
295
|
+
#new_category
|
296
|
+
input, select
|
297
|
+
margin-bottom: 5px
|
298
|
+
input.submit_button
|
299
|
+
width: auto
|
300
|
+
|
301
|
+
.form_left_column
|
302
|
+
margin-right: 265px
|
303
|
+
.form_right_column
|
304
|
+
float: right
|
305
|
+
width: 250px
|
306
|
+
|
307
|
+
form
|
308
|
+
.errorExplanation
|
309
|
+
background-color: #9E0B0F
|
310
|
+
padding: 10px
|
311
|
+
margin-bottom: 15px
|
312
|
+
color: #fff
|
313
|
+
-moz-border-radius: 4px
|
314
|
+
font-size: 12px
|
315
|
+
h2
|
316
|
+
padding: 0px 5px
|
317
|
+
margin: -5px -5px 5px -5px
|
318
|
+
-moz-border-radius: 4px
|
319
|
+
background-color: #000
|
320
|
+
font-size: 16px
|
321
|
+
border: none
|
322
|
+
|
323
|
+
// --------------------------------------------------------------- Pagination
|
324
|
+
.pagination
|
325
|
+
margin-bottom: 15px
|
326
|
+
float: right
|
327
|
+
a, span
|
328
|
+
background: #404040
|
329
|
+
color: #fff
|
330
|
+
padding: 2px 5px
|
331
|
+
font-size: 11px
|
332
|
+
-moz-border-radius: 2px
|
333
|
+
a:hover
|
334
|
+
text-decoration: none
|
335
|
+
span.disabled
|
336
|
+
display: none
|
337
|
+
span.current
|
338
|
+
background-color: #999
|
339
|
+
|
340
|
+
// ------------------------------------------------------------------ Layouts
|
341
|
+
#cms_admin_layouts_index
|
342
|
+
.icon
|
343
|
+
background-image: url(/images/cms/icon_layout.gif)
|
344
|
+
|
345
|
+
// --------------------------------------------------------------- Categories
|
346
|
+
#cms_admin_categories_index
|
347
|
+
.icon
|
348
|
+
background-image: url(/images/cms/icon_category.gif)
|
349
|
+
.categorizations
|
350
|
+
font-size: 10px
|
351
|
+
#cms_admin_categories_show
|
352
|
+
h3
|
353
|
+
font-size: 12px
|
354
|
+
text-transform: uppercase
|
355
|
+
border-bottom: 1px solid #ccc
|
356
|
+
color: #ccc
|
357
|
+
margin-bottom: 15px
|
358
|
+
.pages, .attachments
|
359
|
+
margin-bottom: 15px
|
360
|
+
overflow: hidden
|
361
|
+
a.page, a.attachment
|
362
|
+
width: 150px
|
363
|
+
float: left
|
364
|
+
height: 30px
|
365
|
+
padding-left: 35px
|
366
|
+
font: 14px/30px Georgia, serif
|
367
|
+
color: #000
|
368
|
+
margin: 0px 5px 5px 0px
|
369
|
+
a.page
|
370
|
+
background: url(/images/cms/icon_regular.gif) left center no-repeat
|
371
|
+
a.attachment
|
372
|
+
background: url(/images/cms/icon_attachment.gif) left center no-repeat
|
373
|
+
// -------------------------------------------------------------------- Pages
|
374
|
+
#cms_admin_pages_index
|
375
|
+
.icon.published
|
376
|
+
background-image: url(/images/cms/icon_regular.gif)
|
377
|
+
|
378
|
+
// ----------------------------------------------------------------- Snippets
|
379
|
+
#cms_admin_snippets_index
|
380
|
+
a.label
|
381
|
+
font: 14px Georgia, serif
|
382
|
+
color: #000
|
383
|
+
a.slug
|
384
|
+
font-size: 10px
|
385
|
+
.icon
|
386
|
+
width: 28px
|
387
|
+
height: 28px
|
388
|
+
background: url(/images/cms/icon_snippet.gif)
|
389
|
+
|
390
|
+
// -------------------------------------------------------------- Attachments
|
391
|
+
#cms_admin_attachments_index
|
392
|
+
a.label
|
393
|
+
font: 14px Georgia, serif
|
394
|
+
color: #000
|
395
|
+
a.url
|
396
|
+
font-size: 10px
|
397
|
+
.icon
|
398
|
+
width: 28px
|
399
|
+
height: 28px
|
400
|
+
background: url(/images/cms/icon_attachment.gif)
|
401
|
+
|
402
|
+
// ----------------------------------------------------------------- Sections
|
403
|
+
#cms_admin_sections_show
|
404
|
+
a.label
|
405
|
+
font: 14px Georgia, serif
|
406
|
+
color: #000
|
407
|
+
a.url
|
408
|
+
font-size: 10px
|
409
|
+
.icon
|
410
|
+
width: 28px
|
411
|
+
height: 28px
|
412
|
+
background: url(/images/cms/icon_draft.gif)
|
413
|
+
.icon.published
|
414
|
+
background-image: url(/images/cms/icon_regular.gif)
|