comfortable_mexican_sofa 1.3.8 → 1.4.0
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.
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/VERSION +1 -1
- data/app/assets/images/comfortable_mexican_sofa/jquery_ui/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
- data/app/assets/javascripts/comfortable_mexican_sofa/application.js +38 -25
- data/app/assets/javascripts/comfortable_mexican_sofa/jquery_ui.js +176 -174
- data/app/assets/stylesheets/comfortable_mexican_sofa/content.css +142 -32
- data/app/assets/stylesheets/comfortable_mexican_sofa/form.css +12 -0
- data/app/assets/stylesheets/comfortable_mexican_sofa/jquery_ui.css +16 -16
- data/app/assets/stylesheets/comfortable_mexican_sofa/structure.css +3 -2
- data/app/assets/stylesheets/comfortable_mexican_sofa/widgets.css +2 -1
- data/app/controllers/cms_admin/categories_controller.rb +33 -0
- data/app/controllers/cms_admin/files_controller.rb +82 -0
- data/app/controllers/cms_admin/pages_controller.rb +8 -4
- data/app/controllers/cms_admin/snippets_controller.rb +1 -1
- data/app/models/cms/categorization.rb +17 -0
- data/app/models/cms/category.rb +22 -0
- data/app/models/cms/{upload.rb → file.rb} +17 -3
- data/app/models/cms/page.rb +1 -0
- data/app/models/cms/site.rb +1 -1
- data/app/models/cms/snippet.rb +2 -0
- data/app/views/cms_admin/categories/_categories.html.erb +6 -0
- data/app/views/cms_admin/categories/_edit.html.erb +7 -0
- data/app/views/cms_admin/categories/_form.html.erb +12 -0
- data/app/views/cms_admin/categories/_index.html.erb +31 -0
- data/app/views/cms_admin/categories/_show.html.erb +16 -0
- data/app/views/cms_admin/categories/create.js.erb +7 -0
- data/app/views/cms_admin/categories/destroy.js.erb +3 -0
- data/app/views/cms_admin/categories/edit.js.erb +3 -0
- data/app/views/cms_admin/categories/update.js.erb +6 -0
- data/app/views/cms_admin/{uploads → files}/_file.html.erb +1 -1
- data/app/views/cms_admin/files/_form.html.erb +15 -0
- data/app/views/cms_admin/files/_index.html.erb +13 -0
- data/app/views/cms_admin/files/create.js.erb +3 -0
- data/app/views/cms_admin/files/destroy.js.erb +3 -0
- data/app/views/cms_admin/files/edit.html.erb +5 -0
- data/app/views/cms_admin/files/index.html.erb +25 -0
- data/app/views/cms_admin/files/new.html.erb +5 -0
- data/app/views/cms_admin/layouts/_form.html.erb +1 -1
- data/app/views/cms_admin/pages/_form.html.erb +3 -1
- data/app/views/cms_admin/pages/_index_branch.html.erb +6 -4
- data/app/views/cms_admin/pages/index.html.erb +2 -0
- data/app/views/cms_admin/snippets/_form.html.erb +3 -1
- data/app/views/cms_admin/snippets/index.html.erb +3 -0
- data/app/views/layouts/cms_admin/_head.html.erb +2 -6
- data/app/views/layouts/cms_admin/_left.html.erb +1 -0
- data/comfortable_mexican_sofa.gemspec +44 -21
- data/config/database.yml +2 -8
- data/config/locales/en.yml +35 -2
- data/config/locales/es.yml +38 -5
- data/config/routes.rb +3 -2
- data/db/migrate/01_create_cms.rb +23 -4
- data/db/migrate/upgrades/05_upgrade_to_1_4_0.rb +33 -0
- data/lib/comfortable_mexican_sofa.rb +6 -5
- data/lib/comfortable_mexican_sofa/{acts_as_tree.rb → extensions/acts_as_tree.rb} +0 -0
- data/lib/comfortable_mexican_sofa/{has_revisions.rb → extensions/has_revisions.rb} +0 -0
- data/lib/comfortable_mexican_sofa/extensions/is_categorized.rb +45 -0
- data/lib/comfortable_mexican_sofa/{is_mirrored.rb → extensions/is_mirrored.rb} +0 -0
- data/lib/comfortable_mexican_sofa/{rails_extensions.rb → extensions/rails.rb} +0 -0
- data/lib/comfortable_mexican_sofa/tag.rb +2 -2
- data/lib/comfortable_mexican_sofa/tags/{upload.rb → file.rb} +6 -6
- data/test/fixtures/cms/categories.yml +3 -0
- data/test/fixtures/cms/categorizations.yml +3 -0
- data/test/fixtures/cms/{uploads.yml → files.yml} +3 -1
- data/test/functional/cms_admin/categories_controller_test.rb +70 -0
- data/test/functional/cms_admin/files_controller_test.rb +168 -0
- data/test/functional/cms_admin/pages_controller_test.rb +19 -1
- data/test/functional/cms_admin/snippets_controller_test.rb +18 -0
- data/test/unit/models/block_test.rb +1 -1
- data/test/unit/models/categorization_test.rb +76 -0
- data/test/unit/models/category_test.rb +39 -0
- data/test/unit/models/file_test.rb +33 -0
- data/test/unit/models/site_test.rb +9 -0
- data/test/unit/tags/asset_test.rb +1 -1
- data/test/unit/tags/field_datetime_test.rb +1 -1
- data/test/unit/tags/field_integer_test.rb +1 -1
- data/test/unit/tags/field_string_test.rb +1 -1
- data/test/unit/tags/field_text_test.rb +1 -1
- data/test/unit/tags/file_test.rb +67 -0
- data/test/unit/tags/helper_test.rb +1 -1
- data/test/unit/tags/page_datetime_test.rb +1 -1
- data/test/unit/tags/page_integer_test.rb +1 -1
- data/test/unit/tags/page_rich_text.rb +1 -1
- data/test/unit/tags/page_string_test.rb +1 -1
- data/test/unit/tags/page_text_test.rb +1 -1
- data/test/unit/tags/partial_test.rb +1 -1
- data/test/unit/tags/snippet_test.rb +1 -1
- metadata +49 -26
- data/app/assets/javascripts/comfortable_mexican_sofa/plupload/plupload.html5.js +0 -1
- data/app/assets/javascripts/comfortable_mexican_sofa/plupload/plupload.js +0 -2
- data/app/controllers/cms_admin/uploads_controller.rb +0 -29
- data/app/views/cms_admin/uploads/_index.html.erb +0 -10
- data/app/views/cms_admin/uploads/destroy.js.erb +0 -3
- data/test/functional/cms_admin/uploads_controller_test.rb +0 -26
- data/test/unit/models/upload_test.rb +0 -32
- data/test/unit/tags/upload_test.rb +0 -67
|
@@ -1,31 +1,43 @@
|
|
|
1
1
|
/* -- Mirrors widget ----------------------------------------------------- */
|
|
2
|
-
#mirrors.box select {
|
|
2
|
+
#cms_body #mirrors.box select {
|
|
3
3
|
width: 100%;
|
|
4
4
|
}
|
|
5
|
-
|
|
6
5
|
/* -- Page saving widget ------------------------------------------------- */
|
|
7
|
-
#page_save button {
|
|
6
|
+
#cms_body #page_save button {
|
|
8
7
|
float: right;
|
|
9
8
|
}
|
|
10
|
-
#page_save label {
|
|
9
|
+
#cms_body #page_save label {
|
|
11
10
|
line-height: 20px;
|
|
12
11
|
padding-left: 5px;
|
|
13
12
|
}
|
|
14
|
-
#page_save input {
|
|
13
|
+
#cms_body #page_save input {
|
|
15
14
|
margin-right: 5px;
|
|
16
15
|
}
|
|
17
16
|
/* -- File Upload widget ------------------------------------------------- */
|
|
18
|
-
#file_uploads
|
|
17
|
+
#cms_body #file_uploads form {
|
|
18
|
+
position: relative;
|
|
19
|
+
height: 21px;
|
|
20
|
+
overflow: hidden
|
|
21
|
+
}
|
|
22
|
+
#cms_body #file_uploads form input {
|
|
23
|
+
position: absolute;
|
|
24
|
+
margin-top: -1px;
|
|
25
|
+
right: 0px;
|
|
26
|
+
top: 0px;
|
|
27
|
+
font-size: 220px;
|
|
28
|
+
opacity: 0;
|
|
29
|
+
}
|
|
30
|
+
#cms_body #file_uploads .actions {
|
|
19
31
|
overflow: hidden;
|
|
20
32
|
}
|
|
21
|
-
#file_uploads .actions a.button {
|
|
33
|
+
#cms_body #file_uploads .actions a.button {
|
|
22
34
|
float: right;
|
|
23
35
|
}
|
|
24
|
-
#file_uploads #uploaded_files {
|
|
36
|
+
#cms_body #file_uploads #uploaded_files {
|
|
25
37
|
max-height: 500px;
|
|
26
38
|
overflow-y: auto;
|
|
27
39
|
}
|
|
28
|
-
#file_uploads #uploaded_files .file {
|
|
40
|
+
#cms_body #file_uploads #uploaded_files .file {
|
|
29
41
|
position: relative;
|
|
30
42
|
overflow: hidden;
|
|
31
43
|
font-size: 11px;
|
|
@@ -36,16 +48,16 @@
|
|
|
36
48
|
border-radius: 2px;
|
|
37
49
|
-moz-border-radius: 2px;
|
|
38
50
|
}
|
|
39
|
-
#file_uploads #uploaded_files .file.pending {
|
|
51
|
+
#cms_body #file_uploads #uploaded_files .file.pending {
|
|
40
52
|
opacity: 0.3;
|
|
41
53
|
}
|
|
42
|
-
#file_uploads #uploaded_files .file:hover {
|
|
54
|
+
#cms_body #file_uploads #uploaded_files .file:hover {
|
|
43
55
|
opacity: 1;
|
|
44
56
|
}
|
|
45
|
-
#file_uploads #uploaded_files .file a {
|
|
57
|
+
#cms_body #file_uploads #uploaded_files .file a {
|
|
46
58
|
color: #fff;
|
|
47
59
|
}
|
|
48
|
-
#file_uploads #uploaded_files .file a.delete {
|
|
60
|
+
#cms_body #file_uploads #uploaded_files .file a.delete {
|
|
49
61
|
position: absolute;
|
|
50
62
|
display: block;
|
|
51
63
|
right: 0px;
|
|
@@ -54,10 +66,92 @@
|
|
|
54
66
|
width: 13px;
|
|
55
67
|
font-weight: bold;
|
|
56
68
|
}
|
|
57
|
-
#file_uploads #uploaded_files .file:hover a.delete {
|
|
69
|
+
#cms_body #file_uploads #uploaded_files .file:hover a.delete {
|
|
58
70
|
color: #9e0b0f;
|
|
59
71
|
}
|
|
60
|
-
|
|
72
|
+
/* -- Categories Widget -------------------------------------------------- */
|
|
73
|
+
#cms_body .categories_widget {
|
|
74
|
+
margin-bottom: 10px;
|
|
75
|
+
background-color: #252525;
|
|
76
|
+
padding: 5px 5px 0px 10px;
|
|
77
|
+
border-radius: 5px;
|
|
78
|
+
color: #fff;
|
|
79
|
+
}
|
|
80
|
+
#cms_body .categories_widget .label {
|
|
81
|
+
float: left;
|
|
82
|
+
font: 12px 'Lucida Grande', Tahoma, sans-serif;
|
|
83
|
+
width: 100px;
|
|
84
|
+
}
|
|
85
|
+
#cms_body .categories_widget a.action_link {
|
|
86
|
+
float: right;
|
|
87
|
+
margin-left: 10px;
|
|
88
|
+
padding: 2px 4px;
|
|
89
|
+
border: 0px;
|
|
90
|
+
border-radius: 2px;
|
|
91
|
+
}
|
|
92
|
+
#cms_body .categories_widget .categories {
|
|
93
|
+
overflow: hidden;
|
|
94
|
+
margin: 0px 50px 0px 110px;
|
|
95
|
+
}
|
|
96
|
+
#cms_body .categories_widget .category {
|
|
97
|
+
float: left;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
background-color: #484848;
|
|
100
|
+
border-radius: 3px;
|
|
101
|
+
color: #fff;
|
|
102
|
+
height: 9px;
|
|
103
|
+
padding: 3px 5px;
|
|
104
|
+
margin: 0px 5px 5px 0px;
|
|
105
|
+
}
|
|
106
|
+
#cms_body .categories_widget .category.active {
|
|
107
|
+
background-color: #f7f7f7;
|
|
108
|
+
}
|
|
109
|
+
#cms_body .categories_widget .category.active a,
|
|
110
|
+
#cms_body .categories_widget .category.active a:hover {
|
|
111
|
+
color: #000;
|
|
112
|
+
}
|
|
113
|
+
#cms_body .categories_widget .category a {
|
|
114
|
+
float: left;
|
|
115
|
+
color: #a3a3a3;
|
|
116
|
+
font: 9px/9px Arial, serif;
|
|
117
|
+
text-transform: uppercase;
|
|
118
|
+
}
|
|
119
|
+
#cms_body .categories_widget .category a:hover {
|
|
120
|
+
color: #fff;
|
|
121
|
+
}
|
|
122
|
+
#cms_body .categories_widget .category a.delete {
|
|
123
|
+
float: right;
|
|
124
|
+
margin-left: 5px;
|
|
125
|
+
background-color: #b7b7b7;
|
|
126
|
+
color: #000;
|
|
127
|
+
font: bold 7px/7px Arial, sans-serif;
|
|
128
|
+
padding: 1px 3px;
|
|
129
|
+
border-radius: 4px;
|
|
130
|
+
}
|
|
131
|
+
#cms_body .categories_widget .category a.delete:hover {
|
|
132
|
+
background-color: #fff;
|
|
133
|
+
}
|
|
134
|
+
#cms_body .categories_widget .category.new,
|
|
135
|
+
#cms_body .categories_widget .category.edit {
|
|
136
|
+
height: 15px;
|
|
137
|
+
padding: 0px;
|
|
138
|
+
}
|
|
139
|
+
#cms_body .categories_widget form input[type='text'] {
|
|
140
|
+
float: left;
|
|
141
|
+
width: 120px;
|
|
142
|
+
border: 0px;
|
|
143
|
+
padding: 1px 2px;
|
|
144
|
+
font: 11px/11px Arial, serif;
|
|
145
|
+
border-radius: 2px;
|
|
146
|
+
}
|
|
147
|
+
#cms_body .categories_widget form input[type='submit'] {
|
|
148
|
+
float: right;
|
|
149
|
+
font: 9px Arial, sans-serif;
|
|
150
|
+
padding: 1px 2px;
|
|
151
|
+
border: 0px;
|
|
152
|
+
border-radius: 2px;
|
|
153
|
+
margin-left: 5px;
|
|
154
|
+
}
|
|
61
155
|
/* -- Listings ----------------------------------------------------------- */
|
|
62
156
|
#cms_body ul.list li .item {
|
|
63
157
|
overflow: hidden;
|
|
@@ -108,6 +202,15 @@
|
|
|
108
202
|
font-size: 14px;
|
|
109
203
|
font-weight: bold;
|
|
110
204
|
}
|
|
205
|
+
#cms_body ul.list li .item .label span.category {
|
|
206
|
+
display: inline-block;
|
|
207
|
+
padding: 2px 5px;
|
|
208
|
+
font: 9px/9px Arial, sans-serif;
|
|
209
|
+
background-color: #e0e0e0;
|
|
210
|
+
border-radius: 3px;
|
|
211
|
+
text-transform: uppercase;
|
|
212
|
+
color: #888;
|
|
213
|
+
}
|
|
111
214
|
#cms_body ul.list li .item .label .sublabel {
|
|
112
215
|
font-size: 10px;
|
|
113
216
|
font-weight: normal;
|
|
@@ -125,45 +228,52 @@
|
|
|
125
228
|
#cms_body ul.list li .item:hover {
|
|
126
229
|
background-color: #fff;
|
|
127
230
|
}
|
|
128
|
-
|
|
231
|
+
/* -- Missing Translations ---------------------------------------------- */
|
|
232
|
+
#cms_body .translation_missing {
|
|
233
|
+
text-decoration: blink;
|
|
234
|
+
}
|
|
129
235
|
/* -- Page Specific stuff ------------------------------------------------ */
|
|
130
|
-
.c_cms_admin_sites.a_index ul.list li .item .label,
|
|
131
|
-
.c_cms_admin_layouts.a_index ul.list li .item .label,
|
|
132
|
-
.c_cms_admin_snippets.a_index ul.list li .item .label
|
|
236
|
+
#cms_body.c_cms_admin_sites.a_index ul.list li .item .label,
|
|
237
|
+
#cms_body.c_cms_admin_layouts.a_index ul.list li .item .label,
|
|
238
|
+
#cms_body.c_cms_admin_snippets.a_index ul.list li .item .label,
|
|
239
|
+
#cms_body.c_cms_admin_files.a_index ul.list li .item .label {
|
|
133
240
|
margin-left: 32px;
|
|
134
241
|
}
|
|
135
|
-
.c_cms_admin_layouts.a_index ul.list li .item .icon {
|
|
242
|
+
#cms_body.c_cms_admin_layouts.a_index ul.list li .item .icon {
|
|
136
243
|
background-image: url(/assets/comfortable_mexican_sofa/icon_layout.gif);
|
|
137
244
|
}
|
|
138
|
-
.c_cms_admin_snippets.a_index ul.list li .item .icon {
|
|
245
|
+
#cms_body.c_cms_admin_snippets.a_index ul.list li .item .icon {
|
|
139
246
|
background-image: url(/assets/comfortable_mexican_sofa/icon_snippet.gif);
|
|
140
247
|
}
|
|
248
|
+
#cms_body.c_cms_admin_files textarea#file_description {
|
|
249
|
+
height: 100px;
|
|
250
|
+
}
|
|
141
251
|
/* -- Revisions ---------------------------------------------------------- */
|
|
142
|
-
.c_cms_admin_revisions.a_show .form_element.submit_element .value {
|
|
252
|
+
#cms_body.c_cms_admin_revisions.a_show .form_element.submit_element .value {
|
|
143
253
|
margin-left: 0px;
|
|
144
254
|
}
|
|
145
|
-
.c_cms_admin_revisions.a_show .current {
|
|
255
|
+
#cms_body.c_cms_admin_revisions.a_show .current {
|
|
146
256
|
width: 50%;
|
|
147
257
|
float: left;
|
|
148
258
|
}
|
|
149
|
-
.c_cms_admin_revisions.a_show .versioned {
|
|
259
|
+
#cms_body.c_cms_admin_revisions.a_show .versioned {
|
|
150
260
|
width: 50%;
|
|
151
261
|
float: right;
|
|
152
262
|
}
|
|
153
|
-
.c_cms_admin_revisions.a_show .title,
|
|
154
|
-
.c_cms_admin_revisions.a_show .content {
|
|
263
|
+
#cms_body.c_cms_admin_revisions.a_show .title,
|
|
264
|
+
#cms_body.c_cms_admin_revisions.a_show .content {
|
|
155
265
|
padding: 2px 5px;
|
|
156
266
|
margin: 0px 3px;
|
|
157
267
|
}
|
|
158
|
-
.c_cms_admin_revisions.a_show .title {
|
|
268
|
+
#cms_body.c_cms_admin_revisions.a_show .title {
|
|
159
269
|
background: #f1f1f1;
|
|
160
270
|
border-bottom: 2px solid #bbb;
|
|
161
271
|
}
|
|
162
|
-
.c_cms_admin_revisions.a_show .content {
|
|
272
|
+
#cms_body.c_cms_admin_revisions.a_show .content {
|
|
163
273
|
min-height: 16px;
|
|
164
274
|
border: 1px dashed #f1f1f1;
|
|
165
275
|
}
|
|
166
|
-
.c_cms_admin_revisions.a_show .revisions a {
|
|
276
|
+
#cms_body.c_cms_admin_revisions.a_show .revisions a {
|
|
167
277
|
display: block;
|
|
168
278
|
background-color: #252525;
|
|
169
279
|
border-radius: 2px;
|
|
@@ -172,10 +282,10 @@
|
|
|
172
282
|
margin-bottom: 2px;
|
|
173
283
|
color: #fff;
|
|
174
284
|
}
|
|
175
|
-
.c_cms_admin_revisions.a_show .revisions a:hover,
|
|
176
|
-
.c_cms_admin_revisions.a_show .revisions a.active {
|
|
285
|
+
#cms_body.c_cms_admin_revisions.a_show .revisions a:hover,
|
|
286
|
+
#cms_body.c_cms_admin_revisions.a_show .revisions a.active {
|
|
177
287
|
opacity: 1;
|
|
178
288
|
}
|
|
179
|
-
.c_cms_admin_revisions.a_show .revisions a:last-child {
|
|
289
|
+
#cms_body.c_cms_admin_revisions.a_show .revisions a:last-child {
|
|
180
290
|
margin-bottom: 0px;
|
|
181
291
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
#cms_body .form_element .value {
|
|
21
21
|
margin-left: 150px;
|
|
22
|
+
margin-right: -140px;
|
|
22
23
|
overflow: hidden;
|
|
23
24
|
}
|
|
24
25
|
#cms_body .form_element .value input[type='text'],
|
|
@@ -103,6 +104,7 @@
|
|
|
103
104
|
border-radius: 3px;
|
|
104
105
|
-moz-border-radius: 3px;
|
|
105
106
|
padding: 5px;
|
|
107
|
+
margin-right: 0px;
|
|
106
108
|
}
|
|
107
109
|
#cms_body .form_element.submit_element label {
|
|
108
110
|
margin: 0px 5px;
|
|
@@ -119,4 +121,14 @@
|
|
|
119
121
|
padding: 5px;
|
|
120
122
|
border-radius: 3px;
|
|
121
123
|
-moz-border-radius: 3px;
|
|
124
|
+
}
|
|
125
|
+
#cms_body .form_element.categories .value label {
|
|
126
|
+
display: inline-block;
|
|
127
|
+
padding: 3px 5px;
|
|
128
|
+
background-color: #484848;
|
|
129
|
+
border-radius: 3px;
|
|
130
|
+
font: 9px/14px 'Arial', serif;
|
|
131
|
+
text-transform: uppercase;
|
|
132
|
+
color: #fff;
|
|
133
|
+
margin-bottom: 3px;
|
|
122
134
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* jQuery UI CSS Framework 1.8.
|
|
2
|
+
* jQuery UI CSS Framework 1.8.16
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
5
5
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
/*
|
|
45
|
-
* jQuery UI CSS Framework 1.8.
|
|
45
|
+
* jQuery UI CSS Framework 1.8.16
|
|
46
46
|
*
|
|
47
47
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
48
48
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
*
|
|
51
51
|
* http://docs.jquery.com/UI/Theming/API
|
|
52
52
|
*
|
|
53
|
-
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=
|
|
53
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=11px&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
|
54
54
|
*/
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
/* Component containers
|
|
58
58
|
----------------------------------*/
|
|
59
|
-
.ui-widget { font-family: Verdana,Arial,sans-serif; font-size:
|
|
59
|
+
.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 11px; }
|
|
60
60
|
.ui-widget .ui-widget { font-size: 1em; }
|
|
61
61
|
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
|
|
62
62
|
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(/assets/comfortable_mexican_sofa/jquery_ui/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
----------------------------------*/
|
|
79
79
|
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(/assets/comfortable_mexican_sofa/jquery_ui/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
|
|
80
80
|
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
|
81
|
-
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(/assets/comfortable_mexican_sofa/jquery_ui/ui-
|
|
81
|
+
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(/assets/comfortable_mexican_sofa/jquery_ui/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x; color: #cd0a0a; }
|
|
82
82
|
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
|
|
83
83
|
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
|
|
84
84
|
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
/* Overlays */
|
|
289
289
|
.ui-widget-overlay { background: #aaaaaa url(/assets/comfortable_mexican_sofa/jquery_ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
|
|
290
290
|
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(/assets/comfortable_mexican_sofa/jquery_ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
|
|
291
|
-
* jQuery UI Resizable 1.8.
|
|
291
|
+
* jQuery UI Resizable 1.8.16
|
|
292
292
|
*
|
|
293
293
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
294
294
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
|
308
308
|
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
|
309
309
|
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
|
|
310
|
-
* jQuery UI Selectable 1.8.
|
|
310
|
+
* jQuery UI Selectable 1.8.16
|
|
311
311
|
*
|
|
312
312
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
313
313
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
*/
|
|
318
318
|
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
|
319
319
|
/*
|
|
320
|
-
* jQuery UI Accordion 1.8.
|
|
320
|
+
* jQuery UI Accordion 1.8.16
|
|
321
321
|
*
|
|
322
322
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
323
323
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
|
|
337
337
|
.ui-accordion .ui-accordion-content-active { display: block; }
|
|
338
338
|
/*
|
|
339
|
-
* jQuery UI Autocomplete 1.8.
|
|
339
|
+
* jQuery UI Autocomplete 1.8.16
|
|
340
340
|
*
|
|
341
341
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
342
342
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
|
351
351
|
|
|
352
352
|
/*
|
|
353
|
-
* jQuery UI Menu 1.8.
|
|
353
|
+
* jQuery UI Menu 1.8.16
|
|
354
354
|
*
|
|
355
355
|
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
356
356
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
margin: -1px;
|
|
390
390
|
}
|
|
391
391
|
/*
|
|
392
|
-
* jQuery UI Button 1.8.
|
|
392
|
+
* jQuery UI Button 1.8.16
|
|
393
393
|
*
|
|
394
394
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
395
395
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -427,7 +427,7 @@ input.ui-button { padding: .4em 1em; }
|
|
|
427
427
|
/* workarounds */
|
|
428
428
|
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
|
429
429
|
/*
|
|
430
|
-
* jQuery UI Dialog 1.8.
|
|
430
|
+
* jQuery UI Dialog 1.8.16
|
|
431
431
|
*
|
|
432
432
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
433
433
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -448,7 +448,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
|
448
448
|
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
|
449
449
|
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
|
450
450
|
/*
|
|
451
|
-
* jQuery UI Slider 1.8.
|
|
451
|
+
* jQuery UI Slider 1.8.16
|
|
452
452
|
*
|
|
453
453
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
454
454
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -471,7 +471,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
|
471
471
|
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
|
472
472
|
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
|
473
473
|
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
|
|
474
|
-
* jQuery UI Tabs 1.8.
|
|
474
|
+
* jQuery UI Tabs 1.8.16
|
|
475
475
|
*
|
|
476
476
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
477
477
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -489,7 +489,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
|
489
489
|
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
|
490
490
|
.ui-tabs .ui-tabs-hide { display: none !important; }
|
|
491
491
|
/*
|
|
492
|
-
* jQuery UI Datepicker 1.8.
|
|
492
|
+
* jQuery UI Datepicker 1.8.16
|
|
493
493
|
*
|
|
494
494
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
495
495
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -556,7 +556,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
|
556
556
|
width: 200px; /*must have*/
|
|
557
557
|
height: 200px; /*must have*/
|
|
558
558
|
}/*
|
|
559
|
-
* jQuery UI Progressbar 1.8.
|
|
559
|
+
* jQuery UI Progressbar 1.8.16
|
|
560
560
|
*
|
|
561
561
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
562
562
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
@@ -85,12 +85,13 @@ html, body#cms_body {
|
|
|
85
85
|
#cms_body input[type='reset'],
|
|
86
86
|
#cms_body input[type='file'],
|
|
87
87
|
#cms_body .action_links a,
|
|
88
|
-
#cms_body a.
|
|
88
|
+
#cms_body a.action_link {
|
|
89
89
|
margin-left: 3px;
|
|
90
90
|
background-color: #b4b4b4;
|
|
91
91
|
color: #1b1b1b;
|
|
92
92
|
padding: 3px 5px;
|
|
93
93
|
font: 9px Arial, sans-serif;
|
|
94
|
+
letter-spacing: 0.3px;
|
|
94
95
|
text-transform: uppercase;
|
|
95
96
|
border-radius: 3px;
|
|
96
97
|
-moz-border-radius: 3px;
|
|
@@ -106,7 +107,7 @@ html, body#cms_body {
|
|
|
106
107
|
#cms_body input[type='reset']:hover,
|
|
107
108
|
#cms_body input[type='file']:hover,
|
|
108
109
|
#cms_body .action_links a:hover,
|
|
109
|
-
#cms_body a.
|
|
110
|
+
#cms_body a.action_link:hover {
|
|
110
111
|
box-shadow: inset 0px 0px 5px #aaa;
|
|
111
112
|
-moz-box-shadow: inset 0px 0px 5px #aaa;
|
|
112
113
|
-webkit-box-shadow: inset 0px 0px 5px #aaa;
|