beef-admin_area 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. data/.document +5 -0
  2. data/.gitignore +5 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +7 -0
  5. data/Rakefile +59 -0
  6. data/VERSION +1 -0
  7. data/admin_area.gemspec +168 -0
  8. data/app/controllers/admin/base_controller.rb +8 -0
  9. data/app/controllers/admin/settings_controller.rb +43 -0
  10. data/app/controllers/admin/users_controller.rb +74 -0
  11. data/app/helpers/admin/base_helper.rb +59 -0
  12. data/app/helpers/admin/settings_helper.rb +8 -0
  13. data/app/helpers/admin/users_helper.rb +2 -0
  14. data/app/models/settings.rb +92 -0
  15. data/app/views/admin/base/index.html.erb +2 -0
  16. data/app/views/admin/settings/_form.html.erb +31 -0
  17. data/app/views/admin/settings/update.js.rjs +1 -0
  18. data/app/views/admin/users/index.html.erb +39 -0
  19. data/app/views/admin/users/show.html.erb +37 -0
  20. data/app/views/layouts/admin.html.erb +68 -0
  21. data/config/routes.rb +8 -0
  22. data/generators/admin_area_files/USAGE +8 -0
  23. data/generators/admin_area_files/admin_area_files_generator.rb +114 -0
  24. data/generators/admin_area_files/lib/insert_commands.rb +47 -0
  25. data/generators/admin_area_files/templates/app/models/content_sweeper.rb +43 -0
  26. data/generators/admin_area_files/templates/app/views/admin/settings/show.html.erb +52 -0
  27. data/generators/admin_area_files/templates/config/initializers/admin_area.rb +2 -0
  28. data/generators/admin_area_files/templates/config/initializers/settings.rb +8 -0
  29. data/generators/admin_area_files/templates/lib/tasks/admin_area.rake +10 -0
  30. data/generators/admin_area_files/templates/migration.rb +21 -0
  31. data/generators/admin_area_files/templates/public/images/admin/accept_button.gif +0 -0
  32. data/generators/admin_area_files/templates/public/images/admin/add.png +0 -0
  33. data/generators/admin_area_files/templates/public/images/admin/application_cascade.png +0 -0
  34. data/generators/admin_area_files/templates/public/images/admin/arrow_left.gif +0 -0
  35. data/generators/admin_area_files/templates/public/images/admin/arrow_right.gif +0 -0
  36. data/generators/admin_area_files/templates/public/images/admin/button_bg.gif +0 -0
  37. data/generators/admin_area_files/templates/public/images/admin/cancel_button.gif +0 -0
  38. data/generators/admin_area_files/templates/public/images/admin/cursor_arrow.gif +0 -0
  39. data/generators/admin_area_files/templates/public/images/admin/delete_button.gif +0 -0
  40. data/generators/admin_area_files/templates/public/images/admin/down_icon.gif +0 -0
  41. data/generators/admin_area_files/templates/public/images/admin/edit_button.gif +0 -0
  42. data/generators/admin_area_files/templates/public/images/admin/file-uploads.png +0 -0
  43. data/generators/admin_area_files/templates/public/images/admin/folder.png +0 -0
  44. data/generators/admin_area_files/templates/public/images/admin/folder_image.png +0 -0
  45. data/generators/admin_area_files/templates/public/images/admin/head_bg.gif +0 -0
  46. data/generators/admin_area_files/templates/public/images/admin/image_add.png +0 -0
  47. data/generators/admin_area_files/templates/public/images/admin/images-pointer.png +0 -0
  48. data/generators/admin_area_files/templates/public/images/admin/info_bg.gif +0 -0
  49. data/generators/admin_area_files/templates/public/images/admin/nav_bg.gif +0 -0
  50. data/generators/admin_area_files/templates/public/images/admin/over_button_bg.gif +0 -0
  51. data/generators/admin_area_files/templates/public/images/admin/page_bg.gif +0 -0
  52. data/generators/admin_area_files/templates/public/images/admin/page_white.png +0 -0
  53. data/generators/admin_area_files/templates/public/images/admin/page_white_get.png +0 -0
  54. data/generators/admin_area_files/templates/public/images/admin/page_white_link.png +0 -0
  55. data/generators/admin_area_files/templates/public/images/admin/page_white_stack.png +0 -0
  56. data/generators/admin_area_files/templates/public/images/admin/picture.png +0 -0
  57. data/generators/admin_area_files/templates/public/images/admin/picture_medium.png +0 -0
  58. data/generators/admin_area_files/templates/public/images/admin/picture_square.png +0 -0
  59. data/generators/admin_area_files/templates/public/images/admin/picture_thumb.png +0 -0
  60. data/generators/admin_area_files/templates/public/images/admin/pictures.png +0 -0
  61. data/generators/admin_area_files/templates/public/images/admin/unapproved.png +0 -0
  62. data/generators/admin_area_files/templates/public/images/admin/up_icon.gif +0 -0
  63. data/generators/admin_area_files/templates/public/images/lightwindow/Thumbs.db +0 -0
  64. data/generators/admin_area_files/templates/public/images/lightwindow/ajax-loading.gif +0 -0
  65. data/generators/admin_area_files/templates/public/images/lightwindow/arrow-down.gif +0 -0
  66. data/generators/admin_area_files/templates/public/images/lightwindow/arrow-up.gif +0 -0
  67. data/generators/admin_area_files/templates/public/images/lightwindow/black-70.png +0 -0
  68. data/generators/admin_area_files/templates/public/images/lightwindow/black.png +0 -0
  69. data/generators/admin_area_files/templates/public/images/lightwindow/nextlabel.gif +0 -0
  70. data/generators/admin_area_files/templates/public/images/lightwindow/pattern_148-70.png +0 -0
  71. data/generators/admin_area_files/templates/public/images/lightwindow/pattern_148.gif +0 -0
  72. data/generators/admin_area_files/templates/public/images/lightwindow/prevlabel.gif +0 -0
  73. data/generators/admin_area_files/templates/public/images/textile-editor/background.png +0 -0
  74. data/generators/admin_area_files/templates/public/images/textile-editor/blockquote.png +0 -0
  75. data/generators/admin_area_files/templates/public/images/textile-editor/bold.png +0 -0
  76. data/generators/admin_area_files/templates/public/images/textile-editor/center.png +0 -0
  77. data/generators/admin_area_files/templates/public/images/textile-editor/h1.png +0 -0
  78. data/generators/admin_area_files/templates/public/images/textile-editor/h2.png +0 -0
  79. data/generators/admin_area_files/templates/public/images/textile-editor/h3.png +0 -0
  80. data/generators/admin_area_files/templates/public/images/textile-editor/h4.png +0 -0
  81. data/generators/admin_area_files/templates/public/images/textile-editor/h5.png +0 -0
  82. data/generators/admin_area_files/templates/public/images/textile-editor/h6.png +0 -0
  83. data/generators/admin_area_files/templates/public/images/textile-editor/indent.png +0 -0
  84. data/generators/admin_area_files/templates/public/images/textile-editor/italic.png +0 -0
  85. data/generators/admin_area_files/templates/public/images/textile-editor/justify.png +0 -0
  86. data/generators/admin_area_files/templates/public/images/textile-editor/left.png +0 -0
  87. data/generators/admin_area_files/templates/public/images/textile-editor/link.png +0 -0
  88. data/generators/admin_area_files/templates/public/images/textile-editor/list_bullets.png +0 -0
  89. data/generators/admin_area_files/templates/public/images/textile-editor/list_numbers.png +0 -0
  90. data/generators/admin_area_files/templates/public/images/textile-editor/omega.png +0 -0
  91. data/generators/admin_area_files/templates/public/images/textile-editor/outdent.png +0 -0
  92. data/generators/admin_area_files/templates/public/images/textile-editor/paragraph.png +0 -0
  93. data/generators/admin_area_files/templates/public/images/textile-editor/preview.png +0 -0
  94. data/generators/admin_area_files/templates/public/images/textile-editor/right.png +0 -0
  95. data/generators/admin_area_files/templates/public/images/textile-editor/strikethrough.png +0 -0
  96. data/generators/admin_area_files/templates/public/images/textile-editor/underline.png +0 -0
  97. data/generators/admin_area_files/templates/public/javascripts/admin/application.js +185 -0
  98. data/generators/admin_area_files/templates/public/javascripts/lightwindow.js +1921 -0
  99. data/generators/admin_area_files/templates/public/javascripts/textile-editor-config.js +107 -0
  100. data/generators/admin_area_files/templates/public/javascripts/textile-editor.js +788 -0
  101. data/generators/admin_area_files/templates/public/stylesheets/admin/handheld.css +6 -0
  102. data/generators/admin_area_files/templates/public/stylesheets/admin/ie.css +21 -0
  103. data/generators/admin_area_files/templates/public/stylesheets/admin/print.css +27 -0
  104. data/generators/admin_area_files/templates/public/stylesheets/admin/screen.css +996 -0
  105. data/generators/admin_area_files/templates/public/stylesheets/admin/theme-1.0.css +131 -0
  106. data/generators/admin_area_files/templates/public/stylesheets/lightwindow.css +376 -0
  107. data/generators/admin_area_files/templates/public/stylesheets/textile-editor.css +60 -0
  108. data/generators/admin_scaffold/USAGE +8 -0
  109. data/generators/admin_scaffold/admin_scaffold_generator.rb +53 -0
  110. data/generators/admin_scaffold/lib/insert_commands.rb +61 -0
  111. data/generators/admin_scaffold/templates/admin_controller.rb +83 -0
  112. data/generators/admin_scaffold/templates/admin_index.html.erb +38 -0
  113. data/generators/admin_scaffold/templates/admin_show.html.erb +16 -0
  114. data/generators/admin_scaffold/templates/helper.rb +2 -0
  115. data/generators/admin_scaffold/templates/helper_test.rb +4 -0
  116. data/generators/admin_scaffold/templates/layout.html.erb +17 -0
  117. data/generators/admin_scaffold/templates/style.css +54 -0
  118. data/generators/admin_scaffold/templates/view_controller.rb +14 -0
  119. data/generators/admin_scaffold/templates/view_index.html.erb +17 -0
  120. data/lib/admin_area.rb +82 -0
  121. data/rails/init.rb +4 -0
  122. data/test/admin_area_test.rb +7 -0
  123. data/test/test_helper.rb +10 -0
  124. metadata +206 -0
@@ -0,0 +1,131 @@
1
+ /*
2
+ <p id="main-choice"><%= link_to 'New article', new_admin_article_path, :class => "button" %></p>
3
+ <img alt="Comments" src="http://demo.opensourcecms.com/wordpress/wp-admin/images/comment-grey-bubble.png"/>
4
+ <h2>Main</h2>
5
+ <h2>Configuration</h2>
6
+ <h2>Description</h2>
7
+ <h2>Publish</h2>
8
+ */
9
+
10
+ body.index div#main-content h1 {
11
+ float: left;
12
+ }
13
+
14
+ div#main-content h1, div.module h2, div#sub-content h2 {
15
+ border-bottom: 0;
16
+ }
17
+
18
+ div#sub-content {
19
+ padding-bottom: 0;
20
+ }
21
+
22
+ dl#asset-browser {
23
+ border-bottom: 0;
24
+ }
25
+
26
+ ul.choices {
27
+ border-bottom: 5px solid #b2bd3e;
28
+ background: #f6f7e7;
29
+ margin-bottom: 2px;
30
+ list-style: none;
31
+ height: 25px;
32
+ clear: both;
33
+ -moz-border-radius-topleft:6px;
34
+ -moz-border-radius-topright:6px;
35
+
36
+ -webkit-border-top-left-radius:6px;
37
+ -webkit-border-top-right-radius:6px;
38
+ }
39
+
40
+ div#main-content, div#sub-content {
41
+ background-color: none;
42
+ padding: 0;
43
+ }
44
+
45
+ .module {
46
+ background-color: #fff;
47
+ padding: 0 10px 10px 10px;
48
+ margin-bottom: 10px;
49
+ -moz-border-radius-topleft: 6px;
50
+ -moz-border-radius-topright: 6px;
51
+ -moz-border-radius-bottomleft: 6px;
52
+ -moz-border-radius-bottomright: 6px;
53
+
54
+ -webkit-border-top-left-radius: 6px;
55
+ -webkit-border-top-right-radius: 6px;
56
+ -webkit-border-bottom-left-radius: 6px;
57
+ -webkit-border-bottom-right-radius: 6px;
58
+ }
59
+
60
+ body#base .module {
61
+ float: left;
62
+ width: 40%;
63
+ margin-right: 10px;
64
+ }
65
+
66
+ body#base #main-content {
67
+ width: 100%;
68
+ }
69
+
70
+
71
+
72
+ p.commit {
73
+ -moz-border-radius-bottomleft:6px;
74
+ -moz-border-radius-bottomright:6px;
75
+
76
+ -webkit-border-bottom-left-radius:6px;
77
+ -webkit-border-bottom-right-radius:6px;
78
+
79
+ background-color: #ccc;
80
+ margin: 0;
81
+ padding: 10px;
82
+ }
83
+
84
+ .button {
85
+
86
+ line-height:1.2em !important;
87
+ padding:4px 10px !important;
88
+ text-shadow:0 1px 0 #FFFFFF !important;
89
+ background:#F2F2F2 url(http://demo.opensourcecms.com/wordpress/wp-admin/images/white-grad.png) repeat-x scroll left top !important;
90
+ border-color:#BBBBBB !important;
91
+ color:#464646 !important;
92
+ border-style:solid !important;
93
+ border-width:1px !important;
94
+
95
+ -moz-border-radius-bottomleft:11px;
96
+ -moz-border-radius-bottomright:11px;
97
+ -moz-border-radius-topleft:11px;
98
+ -moz-border-radius-topright:11px;
99
+
100
+ -webkit-border-bottom-left-radius:11px;
101
+ -webkit-border-bottom-right-radius:11px;
102
+ -webkit-border-top-left-radius:11px;
103
+ -webkit-border-top-right-radius:11px;
104
+
105
+ min-width:80px;
106
+ cursor:pointer !important;
107
+ font-size:11px !important;
108
+ margin:0 !important;
109
+ outline-style:none;
110
+ outline-width:0;
111
+ text-decoration: none;
112
+ }
113
+
114
+ .button:hover {
115
+ border-color:#666666 !important;
116
+ color:#000000 !important;
117
+ }
118
+
119
+ .pagination {
120
+
121
+ -moz-border-radius-topleft: 6px;
122
+ -moz-border-radius-topright: 6px;
123
+ -moz-border-radius-bottomleft: 6px;
124
+ -moz-border-radius-bottomright: 6px;
125
+
126
+ -webkit-border-top-left-radius: 6px;
127
+ -webkit-border-top-right-radius: 6px;
128
+ -webkit-border-bottom-left-radius: 6px;
129
+ -webkit-border-bottom-right-radius: 6px;
130
+
131
+ }
@@ -0,0 +1,376 @@
1
+ #lightwindow_overlay {
2
+ /* REQUIRED */
3
+ display: none;
4
+ visibility: hidden;
5
+ position: absolute;
6
+ top: 0;
7
+ left: 0;
8
+ width: 100%;
9
+ height: 100px;
10
+ z-index: 500;
11
+ /* REQUIRED */
12
+ }
13
+
14
+ #lightwindow {
15
+ /* REQUIRED */
16
+ /* Of Note - The height and width of this element are set to 0px */
17
+ display: none;
18
+ visibility: hidden;
19
+ position: absolute;
20
+ z-index: 999;
21
+ line-height: 0px;
22
+ /* REQUIRED */
23
+ }
24
+
25
+ #lightwindow_container {
26
+ /* REQUIRED */
27
+ display: none;
28
+ visibility: hidden;
29
+ position: absolute;
30
+ /* REQUIRED */
31
+ padding: 0 0 0 0;
32
+ margin: 0 0 0 0;
33
+ }
34
+
35
+ /* IE6 needs this or it messes with our positioning */
36
+ * html #lightwindow_container {
37
+ overflow: hidden;
38
+ }
39
+
40
+ #lightwindow_contents {
41
+ overflow: hidden;
42
+ z-index: 0;
43
+ position: relative;
44
+ border: 10px solid #ffffff;
45
+ background-color: #ffffff;
46
+ }
47
+
48
+ #lightwindow_loading {
49
+ /* REQUIRED */
50
+ height: 100%;
51
+ width: 100%;
52
+ top: 0px;
53
+ left: 0px;
54
+ z-index: 9999;
55
+ position: absolute;
56
+ /* REQUIRED */
57
+ background-color: #f0f0f0;
58
+ padding: 10px;
59
+ }
60
+
61
+ #lightwindow_loading_shim {
62
+ display: none;
63
+ left: 0px;
64
+ position: absolute;
65
+ top: 0px;
66
+ width: 100%;
67
+ height: 100%;
68
+ }
69
+
70
+ #lightwindow_loading span {
71
+ font-size: 12px;
72
+ line-height: 32px;
73
+ color: #444444;
74
+ float: left;
75
+ padding: 0 10px 0 0;
76
+ }
77
+
78
+ #lightwindow_loading span a,
79
+ #lightwindow_loading span a:link,
80
+ #lightwindow_loading span a:visited {
81
+ color: #09F;
82
+ text-decoration: none;
83
+ cursor: pointer;
84
+ }
85
+
86
+ #lightwindow_loading span a:hover,
87
+ #lightwindow_loading span a:active {
88
+ text-decoration: underline;
89
+ }
90
+
91
+
92
+ #lightwindow_loading img {
93
+ float: left;
94
+ margin: 0 10px 0 0;
95
+ }
96
+
97
+
98
+ /*-----------------------------------------------------------------------------------------------
99
+ I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
100
+ I mean let's face it, it works really well and is very easy to figure out.
101
+ -----------------------------------------------------------------------------------------------*/
102
+
103
+ #lightwindow_navigation {
104
+ /* REQUIRED */
105
+ position: absolute;
106
+ top: 0px;
107
+ left: 0px;
108
+ display: none;
109
+ /* REQUIRED */
110
+ }
111
+ /* We need to shim the navigation for IE, though its more of a sub-floor */
112
+ #lightwindow_navigation_shim {
113
+ /* REQUIRED */
114
+ display: none;
115
+ left: 0px;
116
+ position: absolute;
117
+ top: 0px;
118
+ width: 100%;
119
+ height: 100%;
120
+ /* REQUIRED */
121
+ }
122
+
123
+ #lightwindow_navigation a,
124
+ #lightwindow_navigation a:link,
125
+ #lightwindow_navigation a:visited,
126
+ #lightwindow_navigation a:hover,
127
+ #lightwindow_navigation a:active {
128
+ /* REQUIRED */
129
+ outline: none;
130
+ /* REQUIRED */
131
+ }
132
+
133
+ #lightwindow_previous,
134
+ #lightwindow_next {
135
+ width: 49%;
136
+ height: 100%;
137
+ background: transparent url(../images/lightwindow/blank.gif) no-repeat; /* Trick IE into showing hover */
138
+ display: block;
139
+ }
140
+
141
+ #lightwindow_previous {
142
+ float: left;
143
+ left: 0px;
144
+ }
145
+
146
+ #lightwindow_next {
147
+ float: right;
148
+ right: 0px;
149
+ }
150
+
151
+ #lightwindow_previous:hover,
152
+ #lightwindow_previous:active {
153
+ background: url(../images/lightwindow/prevlabel.gif) left 15% no-repeat;
154
+ }
155
+
156
+ #lightwindow_next:hover,
157
+ #lightwindow_next:active {
158
+ background: url(../images/lightwindow/nextlabel.gif) right 15% no-repeat;
159
+ }
160
+
161
+ #lightwindow_previous_title,
162
+ #lightwindow_next_title {
163
+ display: none;
164
+ }
165
+
166
+ #lightwindow_galleries {
167
+ width: 100%;
168
+ position: absolute;
169
+ z-index: 50;
170
+ display: none;
171
+ overflow: hidden;
172
+ margin: 0 0 0 10px;
173
+ bottom: 0px;
174
+ left: 0px;
175
+ }
176
+
177
+ #lightwindow_galleries_tab_container {
178
+ width: 100%;
179
+ height: 0px;
180
+ overflow: hidden;
181
+ }
182
+
183
+ a#lightwindow_galleries_tab,
184
+ a:link#lightwindow_galleries_tab,
185
+ a:visited#lightwindow_galleries_tab {
186
+ display: block;
187
+ height: 20px;
188
+ width: 77px;
189
+ float: right;
190
+ line-height: 22px;
191
+ color: #ffffff;
192
+ text-decoration: none;
193
+ font-weight: bold;
194
+ cursor: pointer;
195
+ font-size: 11px;
196
+ color: #ffffbe;
197
+ background: url(../images/lightwindow/black-70.png) repeat 0 0 transparent;
198
+ }
199
+
200
+ * html a#lightwindow_galleries_tab,
201
+ * html a:link#lightwindow_galleries_tab,
202
+ * html a:visited#lightwindow_galleries_tab {
203
+ background: none;
204
+ background-color: #000000;
205
+ opacity: .70;
206
+ filter: alpha(opacity=70);
207
+ }
208
+
209
+ a:hover#lightwindow_galleries_tab,
210
+ a:active#lightwindow_galleries_tab {
211
+ color: #ffffbe;
212
+
213
+ }
214
+
215
+ #lightwindow_galleries_tab_span {
216
+ display: block;
217
+ height: 20px;
218
+ width: 63px;
219
+ padding: 0 7px 0 7px;
220
+ }
221
+
222
+ #lightwindow_galleries_tab .up {
223
+ background: url(../images/lightwindow/arrow-up.gif) no-repeat 60px 5px transparent;
224
+ }
225
+
226
+ #lightwindow_galleries_tab .down {
227
+ background: url(../images/lightwindow/arrow-down.gif) no-repeat 60px 6px transparent;
228
+ }
229
+
230
+ #lightwindow_galleries_list {
231
+ background: url(../images/lightwindow/black-70.png) repeat 0 0 transparent;
232
+ overflow: hidden;
233
+ height: 0px;
234
+ }
235
+
236
+ * html #lightwindow_galleries_list {
237
+ background: none;
238
+ background-color: #000000;
239
+ opacity: .70;
240
+ filter: alpha(opacity=70);
241
+ }
242
+
243
+ .lightwindow_galleries_list {
244
+ width: 200px;
245
+ float: left;
246
+ margin: 0 0 10px 0;
247
+ padding: 10px;
248
+ }
249
+
250
+ .lightwindow_galleries_list h1 {
251
+ color: #09F;
252
+ text-decoration: none;
253
+ font-weight: bold;
254
+ cursor: pointer;
255
+ padding: 10px 0 5px 0;
256
+ font-size: 16px;
257
+ }
258
+
259
+ .lightwindow_galleries_list li {
260
+ margin: 5px 0 5px 0;
261
+ list-style-type: none;
262
+ }
263
+
264
+ .lightwindow_galleries_list a,
265
+ .lightwindow_galleries_list a:link,
266
+ .lightwindow_galleries_list a:visited {
267
+ display: block;
268
+ line-height: 22px;
269
+ color: #ffffff;
270
+ text-decoration: none;
271
+ font-weight: bold;
272
+ cursor: pointer;
273
+ padding: 0 0 0 10px;
274
+ font-size: 11px;
275
+ }
276
+
277
+ .lightwindow_galleries_list a:hover,
278
+ .lightwindow_galleries_list a:active {
279
+ background: #000000;
280
+ color: #ffffbe;
281
+ border-left: 3px solid #ffffbe;
282
+ padding: 0 0 0 7px;
283
+ }
284
+
285
+ #lightwindow_data {
286
+ /* REQUIRED */
287
+ position: absolute;
288
+ /* REQUIRED */
289
+ }
290
+
291
+ #lightwindow_data_slide {
292
+ /* REQUIRED */
293
+ position: relative;
294
+ /* REQUIRED */
295
+ }
296
+
297
+ #lightwindow_data_slide_inner {
298
+ background-color: #ffffff;
299
+ padding: 0 10px 10px 10px;
300
+ }
301
+
302
+ #lightwindow_data_caption {
303
+ padding: 10px 0 0 0;
304
+ color: #666666;
305
+ line-height: 25px;
306
+ background-color: #ffffff;
307
+ clear: both;
308
+ }
309
+
310
+ #lightwindow_data_details {
311
+ background-color: #f0f0f0;
312
+ padding: 0 10px 0 10px;
313
+ height: 20px;
314
+ }
315
+
316
+ #lightwindow_data_author_container {
317
+ width: 40%;
318
+ text-align: right;
319
+ color: #666666;
320
+ font-style: italic;
321
+ font-size: 10px;
322
+ line-height: 20px;
323
+ float: right;
324
+ overflow: hidden;
325
+ }
326
+
327
+ #lightwindow_data_gallery_container {
328
+ font-size: 10px;
329
+ width: 40%;
330
+ text-align: left;
331
+ color: #666666;
332
+ line-height: 20px;
333
+ float: left;
334
+ overflow: hidden;
335
+ }
336
+
337
+ #lightwindow_title_bar {
338
+ height: 25px;
339
+ overflow: hidden;
340
+ }
341
+
342
+ #lightwindow_title_bar_title {
343
+ color: #ffffbe;
344
+ font-size: 14px;
345
+ line-height: 25px;
346
+ text-align: left;
347
+ float: left;
348
+ }
349
+
350
+ a#lightwindow_title_bar_close_link,
351
+ a:link#lightwindow_title_bar_close_link,
352
+ a:visited#lightwindow_title_bar_close_link {
353
+ float: right;
354
+ text-align: right;
355
+ cursor: pointer;
356
+ color: #ffffbe;
357
+ line-height: 25px;
358
+ padding: 0;
359
+ margin: 0;
360
+ }
361
+
362
+ a:hover#lightwindow_title_bar_close_link,
363
+ a:active#lightwindow_title_bar_close_link {
364
+ color: #ffffff;
365
+ }
366
+
367
+ /*-----------------------------------------------------------------------------------------------
368
+ Theme styling stuff
369
+ -----------------------------------------------------------------------------------------------*/
370
+
371
+ #lightwindow p {
372
+ color: #000000;
373
+ padding-right: 10px;
374
+ }
375
+
376
+