Merge lp:~quam-plures-core/quam-plures/qp-no_admin_skins into lp:quam-plures

Proposed by EdB
Status: Merged
Merged at revision: not available
Proposed branch: lp:~quam-plures-core/quam-plures/qp-no_admin_skins
Merge into: lp:quam-plures
Diff against target: 2459 lines (+0/-2376)
8 files modified
templates_adm/evo/_adminUI.class.php (+0/-188)
templates_adm/evo/rsc/css/style.css (+0/-698)
templates_adm/legacy/_adminUI.class.php (+0/-198)
templates_adm/legacy/rsc/css/desert.css (+0/-17)
templates_adm/legacy/rsc/css/desertbase.css (+0/-191)
templates_adm/legacy/rsc/css/legacy.css (+0/-262)
templates_adm/legacy/rsc/css/legbase.css (+0/-741)
templates_adm/legacy/rsc/css/variation.css (+0/-81)
To merge this branch: bzr merge lp:~quam-plures-core/quam-plures/qp-no_admin_skins
Reviewer Review Type Date Requested Status
Tilman Blumenbach (community) merge Approve
Review via email: mp+18313@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Tilman Blumenbach (tblue) :
review: Approve (merge)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'apple-touch-icon.png'
2Binary files apple-touch-icon.png 2010-01-04 17:32:41 +0000 and apple-touch-icon.png 2010-01-30 18:18:15 +0000 differ
3=== modified file 'favicon.ico'
4Binary files favicon.ico 2010-01-04 17:32:41 +0000 and favicon.ico 2010-01-30 18:18:15 +0000 differ
5=== removed directory 'templates_adm/evo'
6=== removed file 'templates_adm/evo/_adminUI.class.php'
7--- templates_adm/evo/_adminUI.class.php 2010-01-02 08:34:34 +0000
8+++ templates_adm/evo/_adminUI.class.php 1970-01-01 00:00:00 +0000
9@@ -1,188 +0,0 @@
10-<?php
11-/**
12- * This file implements the Admin UI class for the evo template.
13- *
14- * This file is part of the Quam Plures project - {@link http://quamplures.net/}.
15- * See also {@link https://launchpad.net/quam-plures}.
16- *
17- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
18- * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}.
19- * Parts of this file are copyright (c)2005 by Daniel HAHLER - {@link http://thequod.de/contact}.
20- *
21- * @license http://quamplures.net/license.html GNU General Public License (GPL)
22- *
23- * {@internal Open Source relicensing agreement:
24- * Daniel HAHLER grants Francois PLANQUE the right to license
25- * Daniel HAHLER's contributions to this file and the b2evolution project
26- * under any OSI approved OSS license (http://www.opensource.org/licenses/).
27- * }}
28- *
29- * {@internal Below is a list of authors who have contributed to design/coding of this file: }}
30- * @author blueyed: Daniel HAHLER
31- *
32- * @package pond
33- */
34-if( !defined('QP_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
35-
36-/**
37- * Includes
38- */
39-require_once dirname(__FILE__).'/../_adminUI_general.class.php';
40-
41-
42-/**
43- * We'll use the default AdminUI templates etc.
44- *
45- * @package pond
46- */
47-class AdminUI extends AdminUI_general
48-{
49-
50- /**
51- * This function should init the templates - like adding Javascript through the {@link add_headline()} method.
52- */
53- function init_templates()
54- {
55- // This is included before controller specifc require_css() calls:
56- require_css( 'templates_adm/evo/rsc/css/style.css', true );
57- }
58-
59-
60- /**
61- * Get the top of the HTML <body>.
62- *
63- * @uses get_page_head()
64- * @return string
65- */
66- function get_body_top()
67- {
68- global $Messages;
69-
70- $r = '';
71-
72- if( empty($this->mode) )
73- { // We're not running in an special mode (bookmarklet...)
74-
75- $r .= $this->get_page_head();
76-
77- // Display MAIN menu:
78- $r .= $this->get_html_menu().'
79-
80- <div class="panelbody">
81- ';
82- }
83-
84- $r .= '
85-
86- <div id="payload">
87- ';
88-
89- $r .= $this->get_bloglist_buttons();
90-
91- // Display info & error messages
92- $r .= $Messages->display( NULL, NULL, false, 'all', NULL, NULL, 'action_messages' );
93-
94- return $r;
95- }
96-
97-
98- /**
99- * Close open div(s).
100- *
101- * @return string
102- */
103- function get_body_bottom()
104- {
105- global $rsc_url;
106-
107- $r = '';
108-
109- if( empty($this->mode) )
110- { // We're not running in an special mode (bookmarklet...)
111- $r .= "\n\t</div>";
112- }
113-
114- $r .= "</div>\n"; // Close right col.
115-
116- $r .= '<img src="'.$rsc_url.'/img/blank.gif" width="1" height="1" />';
117-
118- return $r;
119- }
120-
121-
122- /**
123- * GLOBAL HEADER - APP TITLE, LOGOUT, ETC.
124- *
125- * @return string
126- */
127- function get_page_head()
128- {
129- $r = '
130- <div id="header">
131- <h1>'.$this->get_title_for_titlearea().'</h1>
132- </div>
133- ';
134-
135- return $r;
136- }
137-
138- /**
139- * Get a template by name and depth.
140- *
141- * @param string The template name ('main', 'sub').
142- * @return array
143- */
144- function get_template( $name, $depth = 0 )
145- {
146- switch( $name )
147- {
148- case 'main':
149- // main level
150- global $app_shortname, $app_version;
151-
152- $r = parent::get_template( $name, $depth );
153- $r['after'] = "</ul>\n<p class=\"center\">$app_shortname v <strong>$app_version</strong></p>\n</div>";
154- return $r;
155- break;
156-
157-
158- case 'CollectionList':
159- // Template for a list of Collections (Blogs)
160- return array(
161- 'before' => '<div id="TitleArea">',
162- 'after' => '</div>',
163- 'select_start' => '<div class="collection_select">',
164- 'select_end' => '</div>',
165- 'buttons_start' => '',
166- 'buttons_end' => '',
167- 'beforeEach' => '',
168- 'afterEach' => '',
169- 'beforeEachSel' => '',
170- 'afterEachSel' => '',
171- );
172-
173-
174- default:
175- // Delegate to parent class:
176- return parent::get_template( $name, $depth );
177- }
178- }
179-
180- /**
181- * Get colors for page elements that can't be controlled by CSS (charts)
182- */
183- function get_color( $what )
184- {
185- switch( $what )
186- {
187- case 'payload_background':
188- return 'fbfbfb';
189- break;
190- }
191- debug_die( 'unknown color' );
192- }
193-
194-
195-}
196-
197-?>
198
199=== removed directory 'templates_adm/evo/rsc'
200=== removed directory 'templates_adm/evo/rsc/css'
201=== removed file 'templates_adm/evo/rsc/css/style.css'
202--- templates_adm/evo/rsc/css/style.css 2010-01-02 08:34:34 +0000
203+++ templates_adm/evo/rsc/css/style.css 1970-01-01 00:00:00 +0000
204@@ -1,698 +0,0 @@
205-/**
206- * Backoffice main Cascading Style Sheets definitions for Desert style.
207- *
208- * Quam Plures - {@link http://quamplures.net/}
209- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
210- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
211- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
212- *
213- * @package admin
214- */
215-
216-@import url("../../../../rsc/css/basic.css"); /* Import basic styles */
217-@import url("../../../../rsc/css/results.css"); /* Import results/tables styles */
218-@import url("../../../../rsc/css/item_base.css"); /* TODO: remove when templates have params */
219-@import url("../../../../rsc/css/fileman.css"); /* TODO: move to appropriate controller - Import filemanager styles */
220-@import url("../../../../rsc/css/admin.global.css"); /* Import basic admin styles */
221-
222-body {
223- margin: 0;
224- background-color: #fff;
225- color: #000;
226- font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
227- font-size: 84%;
228- background-image: url(../img/leftfade.png);
229- background-repeat: repeat-y;
230-}
231-
232-/* Titles */
233-#TitleArea h1 {
234- clear: both;
235- margin: 1ex 0;
236- padding: 1ex;
237- font-family: Arial, Helvetica, sans-serif;
238- color: #929292;
239- font-size: 112%;
240- font-weight:normal;
241- background-color: #efede0;
242- border: 1px solid #ddd;
243-}
244-h2 {
245- margin-top: 0ex;
246- margin-bottom: 1ex;
247- font-size: 130%;
248- background-color:#eee;
249- padding: 1px;
250-}
251-h3 {
252- font-size: 120%;
253-}
254-div.bSideItem h3,
255-div.browse_side_item h3 {
256- color: #929292;
257- margin: .5ex 0;
258-}
259-div.panelinfo h3 {
260- margin: 1ex 0;
261- padding: 0;
262-}
263-h4 {
264- font-size: 110%;
265- margin-bottom: 1ex;
266- color: #929292;
267-}
268-
269-/* Form elements: */
270-textarea,
271-input,
272-select {
273- border: 1px solid #aaa;
274- background-color: #f6f6f6;
275- padding: 1px;
276- margin: 1px;
277- vertical-align: middle;
278-}
279-input.checkbox,
280-input.radio {
281- background-color: #fff;
282- border: 0;
283- padding: 0;
284- margin: 0;
285-}
286-form.fform fieldset {
287- border-color: #ddd;
288-}
289-form.fform fieldset.fieldset fieldset {
290- border:transparent;
291-}
292-
293-div.collection_select,
294-div.collection_select form {
295- display: inline;
296-}
297-
298-/* Links and buttons: */
299-a {
300- background-color: transparent;
301- color: #008;
302- text-decoration: none;
303-}
304-a:hover {
305- color: #00b;
306- text-decoration: underline;
307-}
308-a.CurrentBlog,
309-a.OtherBlog,
310-a.ActionButton,
311-a.DeleteButton {
312- color:#333;
313- text-decoration: none;
314- padding: 2px 1ex;
315- border: 1px solid #aaa;
316- white-space:nowrap;
317-}
318-a.CurrentBlog {
319- font-weight: bold;
320- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
321- background-color: #fff;
322- border: 1px solid #888;
323-}
324-a.CurrentBlog:hover {
325- color: #000;
326- text-decoration: underline;
327- border: 1px solid #000;
328-}
329-a.OtherBlog,
330-a.ActionButton,
331-a.DeleteButton {
332- background-color: #ddd;
333-}
334-a.OtherBlog {
335- line-height: 3.5ex;
336-}
337-a.OtherBlog:hover,
338-a.ActionButton:hover {
339- color: #00b;
340- text-decoration: underline;
341- background-color: #fff;
342- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
343- border: 1px solid #00b;
344-}
345-a.DeleteButton:hover {
346- color: #c00;
347- text-decoration: underline;
348- background-color: #fff;
349- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
350- border: 1px solid #c00;
351-}
352-a.PublishButton {
353- color:#333;
354- background-color: transparent;
355- text-decoration: none;
356- font-weight: bold;
357- padding: 2px 1ex;
358- background-image: url(../../../legacy/rsc/img/desert-button.gif);
359- background-color: #ddd;
360- border: 1px solid #ccc5aa;
361- white-space:nowrap;
362-}
363-a.PublishButton:hover {
364- color: #c00;
365- text-decoration: underline;
366- background-color: #fff;
367- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
368- border: 1px solid #c00;
369-}
370-
371-input.search,
372-input.ActionButton,
373-input.SaveButton,
374-input.DeleteButton,
375-input.CancelButton,
376-input.ResetButton,
377-div.edit_actions input,
378-div.PostActionsArea input {
379- padding: 2px;
380- margin: .5ex 1px;
381- color:#333;
382- background-color: #ddd;
383- border: 1px solid #aaa;
384-}
385-div.edit_actions input,
386-div.PostActionsArea input {
387- margin: 1px 1px;
388-}
389-input.search:hover,
390-input.ActionButton:hover,
391-input.DeleteButton:hover,
392-input.CancelButton:hover,
393-div.edit_actions input:hover,
394-div.PostActionsArea input:hover {
395- color: #00b;
396- text-decoration: underline;
397- background-color: #fff;
398- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
399- border: 1px solid #00b;
400-}
401-
402-input.SaveButton,
403-input.DeleteButton,
404-input.CancelButton,
405-div.edit_actions input.SaveButton {
406- font-weight: bold;
407-}
408-input.SaveButton:hover,
409-input.DeleteButton:hover,
410-input.ResetButton:hover,
411-div.edit_actions input.SaveButton:hover,
412-div.edit_actions input.SaveEditButton:hover,
413-div.edit_actions input.DeleteButton:hover {
414- color: #c00;
415- border: 1px solid #c00;
416-}
417-
418-
419-/*
420- * Page layout:
421- */
422-#header {
423- font-size:85%;
424- background: #fff url(../../../legacy/rsc/img/bg_grey.gif) repeat-x bottom;
425- margin: 0;
426-}
427-
428-#TitleArea {
429- /* clear: both; */
430- margin: 1ex 1em 1ex 1em;
431- padding: .5ex;
432- background-color: #eee;
433- border: 1px solid #ddd; /* force moz to display float before */
434-}
435-
436-#header h1 {
437- margin: 0;
438- padding: .5ex;
439- font-size: 150%;
440-}
441-div#mainmenu {
442- clear:left;
443- float:left;
444- width:12em;
445- /* border: 1px solid #f0f; */
446-}
447-.panelbody {
448- margin: 0 0 0 12em;
449- padding: 0;
450- /* border: 1px solid #f00; */
451-}
452-#payload {
453- float:left;
454- width: 100%;
455- /* border: 1px solid #f00; */
456-}
457-div.action_messages /* Page top messages */
458-{
459- margin:1ex 1em;
460-}
461-.left_col {
462- clear: both;
463- vertical-align: top;
464- float: left;
465- width: 65%;
466- /* border: 1px solid #f00; */
467- margin: 1ex 0 0 0;
468- padding: 0;
469- overflow: hidden;
470-}
471-.right_col {
472- /* border: 1px solid #f00; */
473- width: 33%;
474- vertical-align: top;
475- float: right;
476- margin: 1ex 0 0 0;
477- padding: 0;
478- overflow: hidden;
479-}
480-div.panelinfo {
481- /* clear: both; */
482- background-color: #efede0;
483- border: 1px solid #ddd;
484- padding: 0 1ex;
485- margin: 1ex 1em;
486-}
487-div.tabbedpanelblock div.panelinfo {
488- /* when embeded, no margin: */
489- margin: 1ex 0;
490-}
491-div.panelinfo p {
492- margin: 1ex 0;
493- padding: 0;
494-}
495-div.panelblock {
496- border: 1px solid #ddd;
497- padding: 1ex;
498- margin: 1ex 1em;
499-}
500-.footer {
501- text-align: center;
502- font-size: 74%;
503- margin-top: 0ex;
504- margin-bottom: 0ex;
505- padding-bottom: 1ex;
506- clear: both;
507-}
508-
509-/* Main tabs: */
510-#mainmenu ul{
511- list-style: none;
512- margin: .5ex;
513- padding:0;
514-}
515-#mainmenu li{
516- border: 1px solid #ddd;
517- background: #fff;
518- margin: .5ex;
519- padding: 0;
520-}
521-#mainmenu li.current {
522- border: 1px solid #008;
523- background: #ddd;
524- font-weight: bold;
525-}
526-#mainmenu li:hover,
527-#mainmenu li.parent{
528- border: 1px solid #00b;
529- background: #f0f0f0;
530- font-weight: bold;
531-}
532-#mainmenu li.parent ul.submenu li {
533- font-weight:normal;
534-}
535-#mainmenu li a{ /* made mainmenu links clickable in whole li (at least with Mozilla) */
536- display:block;
537- padding:.5ex;
538-}
539-ul.tabs {
540- margin:0;
541- /* clear: both; */
542- padding: 0 1em 0;
543- list-style: none;
544-}
545-ul.tabs li {
546- float:left;
547- background:url(../../../legacy/rsc/img/tabs_left_grey.gif) no-repeat left top;
548- margin:0;
549- padding:0 0 0 9px;
550- border-bottom:1px solid #929292;
551-}
552-ul.tabs li a {
553- float:left;
554- display:block;
555- white-space:nowrap;
556- background: url(../../../legacy/rsc/img/tabs_right_grey.gif) no-repeat right top;
557- padding:4px 11px 3px 2px;
558- text-decoration:none;
559- color:#765;
560-}
561-/* Commented Backslash Hack: hides rule from IE5-Mac \*/
562-ul.tabs li a {float:none;}
563-/* End IE5-Mac hack */
564-ul.tabs li a:hover {
565- color:#33c;
566- text-decoration: underline; /* for IE */
567-}
568-ul.tabs li:hover { /* Won't work in IE */
569- background-position:0% -150px;
570- color:#333;
571-}
572-ul.tabs li:hover a { /* Won't work in IE */
573- background-position:100% -150px;
574- color:#33c;
575- /* text-decoration: none; */
576-}
577-ul.tabs li.current {
578- background-position:0% -150px;
579- border-width:0;
580-}
581-ul.tabs li.current a {
582- background-position:100% -150px;
583- color:#333;
584- padding-bottom:4px;
585-}
586-ul.tabs li.current a:hover {
587- text-decoration: underline;
588- color:#333;
589-}
590-
591-/* Sub-tabs */
592-ul.hack { /* fplanque: note: I'm not sure the hack is still needed now we have removed decimal ex paddings */
593- margin:0;
594- /* clear: both; */
595- padding: 2px 1em 0;
596- list-style: none;
597-}
598-ul.hack li {
599- display: none;
600-}
601-div.pt
602-{
603- margin: 0 1em;
604-}
605-div.panelblocktabs
606-{
607- /* clear: both; */
608- margin-top: 1ex;
609- float:left;
610- width:100%;
611- background: url(../../../legacy/rsc/img/tabs_bg.gif) repeat-x bottom;
612- font-size:85%;
613- line-height:normal;
614-}
615-div.tabbedpanelblock {
616- clear: both;
617- border: 1px solid #929292;
618- border-top: none;
619- background-color: #fbfbfb;
620- padding: 1ex 1em 1ex 1em;
621- margin: 0 1em 2ex 1em;
622-}
623-div.tabbedpanelblock fieldset {
624- border: 1px solid #ddd;
625- margin: 0 0 1ex 0;
626- background-color: #fff;
627- padding: .5ex 1ex;
628-}
629-div.tabbedpanelblock fieldset fieldset {
630- border: none;
631-}
632-
633-/* browse/ Edit Screen: */
634-table.browse {
635- width: 100%;
636-}
637-td.browse_left_col {
638- vertical-align:top;
639- padding: 1ex 0 0 0;
640-}
641-td.browse_right_col {
642- width: 19em;
643- vertical-align:top;
644- padding: 1ex 0 0 0;
645-}
646-.block_item {
647- border: 1px solid #ddd;
648- background-color: #fff;
649- padding: 1ex;
650- margin: 0 0 1em 0;
651-}
652-.browse_side_item {
653- border: 1px solid #ddd;
654- background-color: #fff;
655- padding: 1ex;
656- margin: 0 0 1em 1em;
657-}
658-
659-div.NavBar {
660- background-color: #eee;
661- border: 1px solid #ddd;
662- padding: 1ex;
663- margin: 0 0 1ex 0;
664-}
665-div.NavBar table {
666- width: 100%;
667-}
668-div.PostActionsArea,
669-div.CommentActionsArea {
670- clear: both;
671- background-color: #eee;
672- border-top: 1px solid #ddd;
673- border-bottom: 1px solid #ddd;
674- padding: 1ex;
675- margin: 0;
676-}
677-
678-div.bSideItem {
679- border: 1px solid #ddd;
680- padding: 1ex;
681- margin: 0 1em 1ex 0;
682-}
683-
684-.bSmallHead {
685- font-size: 85%;
686- padding: 1ex;
687- margin: 0;
688- color: #929292;
689- border-bottom: 1px solid #ddd;
690-}
691-.bSmallHeadRight {
692- float: right;
693- text-align: right;
694- padding-left: 1em; /* do not pad on text in .bSmallHead */
695-}
696-
697-/* Post colors on browse page */
698-div.bPost {
699- clear: both;
700- padding: 0;
701- margin: 0 0 1ex 0;
702-}
703-div.bPostpublished {
704- border: 1px solid #ddd;
705- background-color: #fff;
706-}
707-.bPostpublished span.Status {
708- color: #0b0;
709-}
710-.bPostprotected {
711- border: 1px solid #fc9;
712- background-color: #fff;
713- /* background-color: #fff7e7; */
714-}
715-.bPostprotected span.Status {
716- color: #ea0;
717-}
718-.bPostprotected > div.bSmallHead /* Direct child only */
719-{
720- border-bottom: 1px solid #fc9;
721-}
722-.bPostprivate {
723- border: 1px solid #f99;
724- background-color: #fff;
725- /* background-color: #fee; */
726-}
727-.bPostprivate span.Status {
728- color: #e00;
729-}
730-.bPostprivate > div.bSmallHead /* Direct child only */
731-{
732- border-bottom: 1px solid #f99;
733-}
734-.bPostdraft {
735- border: 1px dashed #ccc;
736- background-color: #f4f4f4;
737-}
738-.bPostdraft span.Status {
739- color: #666;
740-}
741-.bPostdraft > div.bSmallHead /* Direct child only */
742-{
743- border-bottom: 1px dashed #ccc;
744-}
745-.bPostdeprecated {
746- border: 1px dashed #000;
747- background-color: #d8d8d8;
748- color: #888;
749-}
750-.bPostdeprecated span.Status {
751- color: #000;
752-}
753-.bPostdeprecated > div.bSmallHead /* Direct child only */
754-{
755- border-bottom: 1px dashed #000;
756-}
757-
758-.bContent,
759-.bCommentContent,
760-.bFeedback {
761- margin: 1ex;
762-}
763-.bTitle {
764- font-weight: bold;
765- margin: 0;
766- padding: 0;
767-}
768-.bText {
769- margin: 0;
770- padding: 0;
771-}
772-a.permalink_right {
773- margin: .3ex .3ex 0 0;
774-}
775-
776-div.bComment, /* Entire comment block */
777-form.bComment /* New comment form */
778-{
779- border: 1px solid #ddd;
780- padding: 0;
781- margin: 1ex;
782-}
783-div.bComment > p { /* padding for e.g. "No feedback for this post yet..." */
784- padding: 1ex;
785-}
786-
787-.bSideItem ul,
788-.browse_side_item ul,
789-.right_col ul {
790- margin-left: 0ex;
791- padding-left: 0ex;
792- margin-top: .5ex;
793- margin-bottom: .5ex;
794- list-style-type:none;
795-}
796-.bSideItem ul ul,
797-.browse_side_item ul ul,
798-.right_col ul ul {
799- margin-left: 1ex;
800- padding-left: 1ex;
801-}
802-
803-input.SearchField {
804- width: 96%;
805- margin: .5ex auto 0 auto;
806- padding: 2px;
807-}
808-
809-
810-/* Write/compose Screen */
811-.left_col fieldset {
812- border: 1px solid #ddd;
813- margin: 0 0 1ex 1em;
814- padding: 0 1ex 1ex 1ex;
815-}
816-
817-.bSideItem fieldset div,
818-.browse_side_item fieldset div {
819- margin: 1ex 0ex;
820-}
821-
822-.right_col fieldset {
823- border: 1px solid #ddd;
824- margin: 0 1em 1ex 0;
825- padding: 0 1ex 1ex 1ex;
826-}
827-.bSideItem fieldset,
828-.browse_side_item fieldset
829-{
830- margin: 1ex 0;
831- clear: both;
832-}
833-
834-fieldset.extracats {
835- border: 1px solid #ddd;
836- padding: 0 0 0 1ex;
837- margin: 1ex 1em 1ex 0;
838- overflow: visible;
839-}
840-fieldset.extracats div.extracats {
841- /* border: 1px solid #f00; */
842- height: 44ex;
843- overflow: auto;
844- padding: 0 1ex 0 0;
845- margin: 0 0 0 0;
846-}
847-.extracatnote {
848- /* display: block; */
849- font-size: 80%;
850- margin: 1ex 0;
851- padding: 0;
852- color: #999;
853- /* border: 1px solid #f00; */
854-}
855-
856-div.edit_toolbars {
857- margin-top: 1ex;
858- width: 100%;
859- text-align: center;
860-}
861-div.edit_toolbar {
862- background-color: #eee;
863- border: 1px solid #ddd;
864- padding: 1px;
865- margin: 1px auto;
866- width: 98%;
867-}
868-div.edit_toolbar input {
869- color:#333;
870- background-color: #fff;
871- background-image: url(../../../legacy/rsc/img/desert-button-2.gif);
872- border: 1px solid #bbb;
873- margin: 0 1px;
874-}
875-div.edit_toolbar input:hover {
876- color: #000;
877- text-decoration: underline;
878- border: 1px solid #000;
879-}
880-div.edit_area {
881- width: 100%;
882- text-align: center;
883-}
884-div.edit_area textarea,
885-textarea.bComment {
886- width: 98%;
887- margin: 0 auto;
888-}
889-div.edit_actions {
890- background-color: #eee;
891- border: 1px solid #ddd;
892- padding: 1px;
893- margin: 1ex auto;
894- width: 98%;
895- text-align: center;
896-}
897-
898-/* User rights: */
899-span.checkall,
900-th.checkright {
901- font-size: 84%;
902-}
903
904=== removed directory 'templates_adm/evo/rsc/img'
905=== removed file 'templates_adm/evo/rsc/img/leftfade.png'
906Binary files templates_adm/evo/rsc/img/leftfade.png 2006-02-23 20:11:42 +0000 and templates_adm/evo/rsc/img/leftfade.png 1970-01-01 00:00:00 +0000 differ
907=== removed directory 'templates_adm/legacy'
908=== removed file 'templates_adm/legacy/_adminUI.class.php'
909--- templates_adm/legacy/_adminUI.class.php 2010-01-02 08:34:34 +0000
910+++ templates_adm/legacy/_adminUI.class.php 1970-01-01 00:00:00 +0000
911@@ -1,198 +0,0 @@
912-<?php
913-/**
914- * This file implements the Admin UI class.
915- * Alternate admin templates should derive from this class.
916- *
917- * This file is part of the Quam Plures project - {@link http://quamplures.net/}.
918- * See also {@link https://launchpad.net/quam-plures}.
919- *
920- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
921- * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}.
922- * Parts of this file are copyright (c)2005 by Daniel HAHLER - {@link http://thequod.de/contact}.
923- *
924- * @license http://quamplures.net/license.html GNU General Public License (GPL)
925- *
926- * {@internal Open Source relicensing agreement:
927- * Daniel HAHLER grants Francois PLANQUE the right to license
928- * Daniel HAHLER's contributions to this file and the b2evolution project
929- * under any OSI approved OSS license (http://www.opensource.org/licenses/).
930- * }}
931- *
932- * {@internal Below is a list of authors who have contributed to design/coding of this file: }}
933- * @author blueyed: Daniel HAHLER
934- *
935- * @package pond
936- */
937-if( !defined('QP_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
938-
939-/**
940- * Includes
941- */
942-require_once dirname(__FILE__).'/../_adminUI_general.class.php';
943-
944-
945-/**
946- * We define a special template for the main menu.
947- *
948- * @package pond
949- */
950-class AdminUI extends AdminUI_general
951-{
952- /**
953- * Get a template by name and depth.
954- *
955- * @param string The template name ('main', 'sub').
956- * @return array
957- */
958- function get_template( $name, $depth = 0 )
959- {
960- switch( $name )
961- {
962- case 'main':
963- switch( $depth )
964- {
965- default: // just one level for now (might provide dropdown later)
966- return array(
967- 'before' => '<ul class="tabs">',
968- 'after' => '</ul>',
969- 'beforeEach' => '<li>',
970- 'afterEach' => '</li>',
971- 'beforeEachSel' => '<li class="current">',
972- 'afterEachSel' => '</li>',
973- );
974- }
975- break;
976-
977- case 'CollectionList':
978- // Template for a list of Collections (Blogs)
979- return array(
980- 'before' => '',
981- 'after' => '',
982- 'select_start' => '<div class="collection_select">',
983- 'select_end' => '</div>',
984- 'buttons_start' => '',
985- 'buttons_end' => '',
986- 'beforeEach' => '',
987- 'afterEach' => '',
988- 'beforeEachSel' => '',
989- 'afterEachSel' => '',
990- );
991-
992- default:
993- // Delegate to parent class:
994- return parent::get_template( $name, $depth );
995- }
996- }
997-
998-
999- /**
1000- * This function should init the templates - like adding Javascript through the {@link add_headline()} method.
1001- */
1002- function init_templates()
1003- {
1004- // This is included before controller specifc require_css() calls:
1005- global $admintemplates_path;
1006-
1007- require_css ( 'templates_adm/legacy/rsc/css/variation.css', true, 'Variation' );
1008- require_css ( 'templates_adm/legacy/rsc/css/desert.css', true, 'Desert' );
1009- require_css ( 'templates_adm/legacy/rsc/css/legacy.css', true, 'Legacy' );
1010-
1011- if( is_file( $admintemplates_path.'/legacy/rsc/css/custom.css' ) )
1012- {
1013- require_css ( 'templates_adm/legacy/rsc/css/custom.css', true, 'Custom' );
1014- }
1015-
1016- // Style switcher:
1017- require_js( 'styleswitcher.js' );
1018- }
1019-
1020-
1021- /**
1022- * GLOBAL HEADER - APP TITLE, LOGOUT, ETC.
1023- *
1024- * @return string
1025- */
1026- function get_page_head()
1027- {
1028- global $htsrv_url_sensitive, $baseurl, $admin_url, $rsc_url, $Blog;
1029- global $app_shortname, $app_version;
1030-
1031- $r = '
1032- <div id="header">
1033- <div id="headfunctions">
1034- '.$app_shortname.' v <strong>'.$app_version.'</strong> &middot;
1035- '.T_('Color:').'
1036- <a href="#" onclick="StyleSwitcher.setActiveStyleSheet(\'Variation\'); return false;" title="Variation (Default)">V</a>'
1037- .'&middot;<a href="#" onclick="StyleSwitcher.setActiveStyleSheet(\'Desert\'); return false;" title="Desert">D</a>'
1038- .'&middot;<a href="#" onclick="StyleSwitcher.setActiveStyleSheet(\'Legacy\'); return false;" title="Legacy">L</a>'
1039- .( is_file( dirname(__FILE__).'/rsc/css/custom.css' ) ? '&middot;<a href="#" onclick="StyleSwitcher.setActiveStyleSheet(\'Custom\'); return false;" title="Custom">C</a>' : '' )
1040- .'
1041- </div>'
1042-
1043- // Display MAIN menu:
1044- .$this->get_html_menu().'
1045- </div>
1046- ';
1047-
1048- return $r;
1049- }
1050-
1051-
1052- /**
1053- *
1054- *
1055- * @return string
1056- */
1057- function get_body_top()
1058- {
1059- global $Messages;
1060-
1061- $r = '';
1062-
1063- if( empty($this->mode) )
1064- { // We're not running in an special mode (bookmarklet...)
1065- $r .= $this->get_page_head();
1066- }
1067-
1068- $r .= '
1069- <div id="TitleArea">
1070- <h1>'.$this->get_bloglist_buttons( '<strong>'.$this->get_title_for_titlearea().'</strong> ' ).'</h1>
1071- </div>
1072-
1073- <div class="panelbody">'
1074- ."\n\n";
1075-
1076- // Display info & error messages
1077- $r .= $Messages->display( NULL, NULL, false, 'all', NULL, NULL, 'action_messages' );
1078-
1079- return $r;
1080- }
1081-
1082-
1083- /**
1084- * Close open div.
1085- *
1086- * @return string
1087- */
1088- function get_body_bottom()
1089- {
1090- return "\n</div>\n";
1091- }
1092-
1093- /**
1094- * Get colors for page elements that can't be controlled by CSS (charts)
1095- */
1096- function get_color( $what )
1097- {
1098- switch( $what )
1099- {
1100- case 'payload_background':
1101- return 'efede0';
1102- break;
1103- }
1104- debug_die( 'unknown color' );
1105- }
1106-
1107-}
1108-
1109-?>
1110\ No newline at end of file
1111
1112=== removed directory 'templates_adm/legacy/rsc'
1113=== removed directory 'templates_adm/legacy/rsc/css'
1114=== removed file 'templates_adm/legacy/rsc/css/desert.css'
1115--- templates_adm/legacy/rsc/css/desert.css 2009-12-21 17:27:20 +0000
1116+++ templates_adm/legacy/rsc/css/desert.css 1970-01-01 00:00:00 +0000
1117@@ -1,17 +0,0 @@
1118-/**
1119- * Backoffice main Cascading Style Sheets definitions for Desert style.
1120- *
1121- * Quam Plures - {@link http://quamplures.net/}
1122- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
1123- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
1124- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
1125- *
1126- * @package admin
1127- */
1128-
1129-/*
1130- * We include only desertbase.css here, which gets used by variation.css, too.
1131- * Only using desert.css causes problems for "Variation", if desert.css gets disabled.
1132- */
1133-@import url("desertbase.css");
1134-
1135
1136=== removed file 'templates_adm/legacy/rsc/css/desertbase.css'
1137--- templates_adm/legacy/rsc/css/desertbase.css 2009-12-21 17:27:20 +0000
1138+++ templates_adm/legacy/rsc/css/desertbase.css 1970-01-01 00:00:00 +0000
1139@@ -1,191 +0,0 @@
1140-/**
1141- * Backoffice main Cascading Style Sheets definitions for Desert style.
1142- *
1143- * Quam Plures - {@link http://quamplures.net/}
1144- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
1145- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
1146- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
1147- *
1148- * @package admin
1149- */
1150-
1151-@import url("legbase.css");
1152-
1153-#TitleArea h1 {
1154- color: #9e9286;
1155-}
1156-h2 {
1157- color: #9e9286;
1158-}
1159-div.bSideItem h3,
1160-div.browse_side_item h3 {
1161- color: #9e9286;
1162-}
1163-h4 {
1164- color: #9e9286;
1165-}
1166-legend {
1167- color: #9e9286;
1168-}
1169-
1170-
1171-/* Filemanager */
1172-
1173-#fm_bar {
1174- border-top: 1px solid #9e9286;
1175- border-left: 1px solid #9e9286;
1176- border-right: 1px solid #9e9286;
1177- background-color: #e3dfd0;
1178-}
1179-#fm_dirtree {
1180- border: 1px solid #9e9286;
1181- background-color: #f5f3ef;
1182-}
1183-#fm_files {
1184- border: 1px solid #9e9286;
1185- background-color:#e3dfd0;
1186-}
1187-table.filelist {
1188- border-bottom: 1px solid #9e9286;
1189-}
1190-
1191-
1192-div.panelblock,
1193-div.tabbedpanelblock {
1194- border: 1px solid #9e9286;
1195- background-color: #fbfaf9;
1196-}
1197-div.tabbedpanelblock {
1198- border-top: none;
1199-}
1200-
1201-/* Main tabs: */
1202-ul.tabs li {
1203- border-bottom:1px solid #9e9286;
1204-}
1205-
1206-
1207-.bSmallHead {
1208- color: #9e9286;
1209-}
1210-
1211-
1212-/* Calendar: */
1213-table.bCalendarTable caption {
1214- border: 1px solid #e1ddce;
1215- background-color: #efede0;
1216- border-bottom: 0;
1217-}
1218-table.bCalendarTable {
1219- border: solid 1px #e1ddce;
1220-}
1221-table.bCalendarTable tfoot td {
1222- background-color: #efede0;
1223- border-top: 1px solid #e1ddce;
1224-}
1225-table.bCalendarTable a:hover {
1226- background-color: #e1ddce;
1227-}
1228-table.bCalendarTable td:hover /* Not in IE */
1229-{
1230- background-color: #e1ddce;
1231-}
1232-table.bCalendarTable tfoot td:hover /* Not in IE */
1233-{
1234- background-color: #efede0;
1235-}
1236-table.bCalendarTable tfoot a {
1237- text-decoration: none;
1238-}
1239-th.bCalendarHeaderCell {
1240- color: #9e9286;
1241-}
1242-#bCalendarToday {
1243- background-color: #efede0;
1244- border: 1px solid #900;
1245-}
1246-
1247-/*
1248- * Results tables OVERRIDES:
1249- */
1250-
1251-/* Table rows: */
1252-table.grouped {
1253- border: 1px solid #9e9286;
1254-}
1255-
1256-/* Table Filters: */
1257-table.grouped tr.filters td {
1258- border-bottom: 1px solid #9e9286;
1259- background-color: #e3dfd0;
1260-}
1261-
1262-table.grouped tr,
1263-table.filelist tr {
1264- background-color: #f5f3ef;
1265-}
1266-table.grouped tr.odd,
1267-table.filelist tr.odd {
1268- background-color: #efede0;
1269-}
1270-table.grouped tr.group td {
1271- color: #8e8276;
1272- background-color: #e3dfd0;
1273- border-top: 1px solid #9e9286;
1274- border-bottom: 1px solid #9e9286;
1275-}
1276-table.grouped td,
1277-table.filelist td {
1278- border-left: 1px solid #9e9286;
1279-}
1280-table.grouped tr.even:hover,
1281-table.grouped tr.odd:hover,
1282-table.filelist tr:hover,
1283-table.filelist tr.odd:hover {
1284- background-color:#e3dfd0;
1285-}
1286-
1287-/* Table headers/footers: */
1288-table.grouped th,
1289-table.filelist th,
1290-table.grouped thead td,
1291-table.grouped tfoot td {
1292- border-bottom: 1px solid #9e9286;
1293- border-left: 1px solid #9e9286;
1294- background-color: #efede0;
1295-}
1296-table.grouped th {
1297- color: #9e9286;
1298-}
1299-
1300-/* Table BASIC sort buttons/headers: */
1301-table.grouped th a.basic_current,
1302-table.filelist th a.basic_current {
1303- background-color:#e3dfd0;
1304-}
1305-table.grouped th a.basic_sort_link:hover,
1306-table.filelist th a.basic_sort_link:hover {
1307- background-color:#e3dfd0;
1308-}
1309-
1310-table.filelist tr.listfooter td {
1311- border-top: 1px solid #9e9286;
1312- background-color: #efede0;
1313-}
1314-
1315-/* Table totals: tr */
1316-table.grouped tr.total {
1317- border-bottom: 1px solid #9e9286;
1318- border-left: 1px solid #9e9286;
1319- border-right: 1px solid #9e9286;
1320- background-color: #efede0;
1321- white-space: nowrap;
1322-}
1323-
1324-table.grouped tr.total td{
1325- border-top: 1px solid #9e9286;
1326- white-space: nowrap;
1327-}
1328-
1329-/* / Results tables */
1330-
1331
1332=== removed file 'templates_adm/legacy/rsc/css/legacy.css'
1333--- templates_adm/legacy/rsc/css/legacy.css 2009-12-21 17:27:20 +0000
1334+++ templates_adm/legacy/rsc/css/legacy.css 1970-01-01 00:00:00 +0000
1335@@ -1,262 +0,0 @@
1336-/**
1337- * Backoffice main Cascading Style Sheets definitions for Legacy style.
1338- *
1339- * Quam Plures - {@link http://quamplures.net/}
1340- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
1341- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
1342- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
1343- *
1344- * @package admin
1345- */
1346-
1347-@import url("legbase.css");
1348-
1349-/* Titles */
1350-#TitleArea h1 {
1351- margin: 1ex 0;
1352- padding: 0;
1353- color: #abc;
1354- background-color: #fff;
1355- border: 0;
1356-}
1357-h2 {
1358- color: #abc;
1359-}
1360-div.bSideItem h3 {
1361- color: #abc;
1362-}
1363-h4 {
1364- color: #abc;
1365-}
1366-
1367-/* Form elements: */
1368-textarea,
1369-input,
1370-select {
1371- border: 1px solid #ccc;
1372- background-color: #f4f4f4;
1373-}
1374-form.fform fieldset {
1375- border-color: #ddd;
1376-}
1377-
1378-legend {
1379- color: #abc;
1380-}
1381-
1382-
1383-/* Links and buttons: */
1384-a {
1385- background-color: transparent;
1386- color: #00e;
1387- text-decoration: none;
1388-}
1389-a:hover {
1390- color: #b0b0b0;
1391- text-decoration: underline;
1392-}
1393-a.CurrentBlog,
1394-a.OtherBlog,
1395-a.ActionButton,
1396-a.DeleteButton {
1397- border: 1px solid #ccc;
1398-}
1399-a.CurrentBlog
1400-{
1401- background-image: none;
1402- background-color: #fff;
1403- border: 1px solid #abc;
1404- color: #00e;
1405-}
1406-a.OtherBlog
1407-{
1408- background-image: none;
1409- background-color: #eee;
1410- border: 1px solid #abc;
1411- color: #00e;
1412-}
1413-a.ActionButton,
1414-a.DeleteButton {
1415- background-image: url(../img/legacy-button.gif);
1416- background-color: #fec;
1417-}
1418-a.OtherBlog:hover,
1419-a.CurrentBlog:hover
1420-{
1421- background-image: none;
1422- background-color: #fff;
1423- color: #b0b0b0;
1424-}
1425-a.ActionButton:hover {
1426- background-color: #fff;
1427- background-image: url(../img/legacy-button.gif);
1428- border: 1px solid #fec;
1429-}
1430-a.DeleteButton:hover {
1431- background-color: #fff;
1432- background-image: url(../img/legacy-button.gif);
1433- border: 1px solid #fec;
1434-}
1435-a.PublishButton {
1436- background-image: url(../img/legacy-button.gif);
1437- background-color: #fec;
1438- border: 1px solid #ccc;
1439-}
1440-a.PublishButton:hover {
1441- background-color: #fff;
1442- background-image: url(../img/legacy-button.gif);
1443- border: 1px solid #fec;
1444-}
1445-
1446-input.search,
1447-input.ActionButton,
1448-input.SaveButton,
1449-input.ResetButton,
1450-input.DeleteButton,
1451-input.CancelButton,
1452-div.edit_actions input,
1453-div.PostActionsArea input {
1454- background-image: url(../img/legacy-button.gif);
1455- background-color: #fec;
1456- border: 1px solid #ccc;
1457-
1458-}
1459-input.search:hover,
1460-input.ActionButton:hover,
1461-input.CancelButton:hover,
1462-div.edit_actions input:hover,
1463-div.PostActionsArea input:hover {
1464- background-color: #fec;
1465- background-image: url(../img/legacy-button.gif);
1466- border: 1px solid #00b;
1467-
1468-}
1469-
1470-input.DeleteButton:hover {
1471- background-color: #fec;
1472- background-image: url(../img/legacy-button.gif);
1473-}
1474-
1475-/* Page layout: */
1476-#header {
1477- background: url(../img/bg_grey.gif) repeat-x bottom;
1478-}
1479-div.panelinfo {
1480- clear: both;
1481- border: 1px solid #def;
1482- background: #eef5ff;
1483- padding: 0 1ex;
1484- margin: 1ex 1em;
1485-}
1486-/* Main tabs: */
1487-ul.tabs li {
1488- background:url(../img/tabs_left_grey.gif) no-repeat left top;
1489- border-bottom:1px solid #949494;
1490-}
1491-ul.tabs li a {
1492- background: url(../img/tabs_right_grey.gif) no-repeat right top;
1493-}
1494-/* Sub-tabs */
1495-div.panelblocktabs
1496-{
1497- background: url(../img/tabs_bg_grey.gif) repeat-x bottom;
1498-}
1499-div.tabbedpanelblock {
1500- border: 1px solid #939393;
1501- border-top: none;
1502- background-color: #fafafa;
1503-}
1504-
1505-
1506-
1507-
1508-
1509-/* browse/ Edit Screen: */
1510-div.NavBar {
1511- background-color: #eee;
1512- border: 1px solid #ccc;
1513-}
1514-div.PostActionsArea,
1515-div.CommentActionsArea {
1516- background-color: #eee;
1517- border-top: 1px solid #ccc;
1518- border-bottom: 1px solid #ccc;
1519-}
1520-
1521-div.bSideItem {
1522- border: 1px solid #ddd;
1523-}
1524-
1525-.bSmallHead {
1526- color: #abc;
1527- border-bottom: 1px solid #ccc;
1528-}
1529-
1530-div.bPostpublished {
1531- border: 1px solid #ccc;
1532-
1533-}
1534-
1535-
1536-/* Calendar: */
1537-table.bCalendarTable caption {
1538- border: 1px solid #ccc;
1539- background-color: #eee;
1540- border-bottom: 0;
1541-}
1542-table.bCalendarTable {
1543- border: solid 1px #ccc;
1544- border-collapse: separate;
1545-}
1546-table.bCalendarTable tfoot td {
1547- background-color: #eee;
1548- border-top: 1px solid #ccc;
1549-}
1550-table.bCalendarTable a:hover {
1551- background-color: transparent;
1552- color: #b0b0b0;
1553-}
1554-table.bCalendarTable td:hover /* Not in IE */
1555-{
1556- background-color: transparent;
1557- color: inherit;
1558-}
1559-table.bCalendarTable tfoot td:hover /* Not in IE */
1560-{
1561- background-color: #eee;
1562-}
1563-th.bCalendarHeaderCell {
1564- color: #abc;
1565-}
1566-#bCalendarToday {
1567- background-color: #cff;
1568-}
1569-
1570-/* Write/compose Screen */
1571-.left_col fieldset {
1572- border: 1px solid #ddd;
1573-}
1574-
1575-.right_col fieldset {
1576- border: 1px solid #ddd;
1577-}
1578-
1579-fieldset.extracats {
1580- border: 1px solid #ddd;
1581-
1582-}
1583-div.edit_toolbar {
1584- background-color: #eee;
1585- border: 1px solid #ccc;
1586-
1587-}
1588-div.edit_toolbar input {
1589- background-color: #eee;
1590- background-image: url(../img/legacy-button-2.gif);
1591- border: 1px solid #ccc;
1592-
1593-}
1594-div.edit_actions {
1595- background-color: #eee;
1596- border: 1px solid #ccc;
1597-}
1598\ No newline at end of file
1599
1600=== removed file 'templates_adm/legacy/rsc/css/legbase.css'
1601--- templates_adm/legacy/rsc/css/legbase.css 2010-01-02 08:34:34 +0000
1602+++ templates_adm/legacy/rsc/css/legbase.css 1970-01-01 00:00:00 +0000
1603@@ -1,741 +0,0 @@
1604-/**
1605- * Backoffice main Cascading Style Sheets definitions for Desert style.
1606- *
1607- * Quam Plures - {@link http://quamplures.net/}
1608- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
1609- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
1610- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
1611- *
1612- * @package admin
1613- */
1614-
1615-@import url("../../../../rsc/css/basic.css"); /* Import basic styles */
1616-@import url("../../../../rsc/css/results.css"); /* Import results/tables styles */
1617-@import url("../../../../rsc/css/item_base.css"); /* TODO: remove when templates have params */
1618-@import url("../../../../rsc/css/fileman.css"); /* TODO: move to appropriate controller - Import filemanager styles */
1619-@import url("../../../../rsc/css/admin.global.css"); /* Import basic admin styles */
1620-
1621-body {
1622- margin: 0;
1623- background-color: #fff;
1624- color: #000;
1625- font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
1626- font-size: 84%;
1627-}
1628-
1629-/* Titles */
1630-#TitleArea h1 {
1631- clear: both;
1632- margin: 1ex 0;
1633- padding: 1ex;
1634- font-family: Arial, Helvetica, sans-serif;
1635- color: #929292;
1636- font-size: 112%;
1637- font-weight:normal;
1638- background-color: #efede0;
1639- border: 1px solid #e1ddce;
1640-}
1641-h2 {
1642- margin-top: 0ex;
1643- margin-bottom: 1ex;
1644- color: #929292;
1645- font-size: 140%;
1646-}
1647-h3 {
1648- font-size: 120%;
1649-}
1650-div.bSideItem h3,
1651-div.browse_side_item h3 {
1652- color: #929292;
1653- margin: .5ex 0;
1654-}
1655-div.panelinfo h3 {
1656- margin: 1ex 0;
1657- padding: 0;
1658-}
1659-h4 {
1660- font-size: 110%;
1661- margin-bottom: 1ex;
1662- color: #929292;
1663-}
1664-
1665-/* Form elements: */
1666-textarea,
1667-input,
1668-select {
1669- border: 1px solid #ccc5aa;
1670- background-color: #f4f3ee;
1671- padding: 1px;
1672- margin: 1px;
1673- vertical-align: middle;
1674-}
1675-input.checkbox,
1676-input.radio {
1677- background-color: #fff;
1678- border: 0;
1679- padding: 0;
1680- margin: 0;
1681-}
1682-input.field_required,
1683-select.field_required,
1684-textarea.field_required {
1685- background-image: url("../icons/mandatory_star_desert.gif");
1686-}
1687-form.fform fieldset {
1688- border-color: #eee7e0;
1689-}
1690-
1691-legend {
1692- color: #929292;
1693-}
1694-
1695-div.collection_select,
1696-div.collection_select form {
1697- display: inline;
1698-}
1699-
1700-/* Links and buttons: */
1701-a {
1702- background-color: transparent;
1703- color: #008;
1704- text-decoration: none;
1705-}
1706-a:hover {
1707- color: #00b;
1708- text-decoration: underline;
1709-}
1710-a.CurrentBlog,
1711-a.OtherBlog,
1712-a.ActionButton,
1713-a.DeleteButton {
1714- color:#333;
1715- text-decoration: none;
1716- padding: 2px 1ex;
1717- border: 1px solid #ccc5aa;
1718- white-space:nowrap;
1719-}
1720-a.CurrentBlog {
1721- font-weight: bold;
1722- background-image: url(../img/desert-button-2.gif);
1723- background-color: #fff;
1724-}
1725-a.CurrentBlog:hover {
1726- color: #000;
1727- text-decoration: underline;
1728- border: 1px solid #000;
1729-}
1730-a.OtherBlog,
1731-a.ActionButton,
1732-a.DeleteButton {
1733- background-image: url(../img/desert-button.gif);
1734- background-color: #e1ddce;
1735-}
1736-a.OtherBlog {
1737- line-height: 3.5ex;
1738-}
1739-a.OtherBlog:hover,
1740-a.ActionButton:hover {
1741- color: #00b;
1742- text-decoration: underline;
1743- background-color: #fff;
1744- background-image: url(../img/desert-button-2.gif);
1745- border: 1px solid #00b;
1746-}
1747-a.DeleteButton:hover {
1748- color: #c00;
1749- text-decoration: underline;
1750- background-color: #fff;
1751- background-image: url(../img/desert-button-2.gif);
1752- border: 1px solid #c00;
1753-}
1754-a.PublishButton {
1755- color:#333;
1756- background-color: transparent;
1757- text-decoration: none;
1758- padding: 2px 1ex;
1759- background-image: url(../img/desert-button.gif);
1760- background-color: #e1ddce;
1761- border: 1px solid #ccc5aa;
1762- white-space:nowrap;
1763-}
1764-a.PublishButton:hover {
1765- color: #c00;
1766- text-decoration: underline;
1767- background-color: #fff;
1768- background-image: url(../img/desert-button-2.gif);
1769- border: 1px solid #c00;
1770-}
1771-
1772-input.SmallButton {
1773- color:#333;
1774- background-image: url(../img/desert-button.gif);
1775- background-color: #e1ddce;
1776- border: 1px solid #ccc5aa;
1777-}
1778-
1779-input.search,
1780-input.ActionButton,
1781-input.SaveButton,
1782-input.DeleteButton,
1783-input.CancelButton,
1784-input.ResetButton,
1785-div.edit_actions input,
1786-div.PostActionsArea input {
1787- padding: 2px;
1788- margin: .5ex 1px;
1789- color:#333;
1790- background-image: url(../img/desert-button.gif);
1791- background-color: #e1ddce;
1792- border: 1px solid #ccc5aa;
1793-}
1794-input.filter {
1795- background-image: url(../img/desert-button.gif);
1796- background-color: #e1ddce;
1797- border: 1px solid #ccc5aa;
1798-}
1799-div.edit_actions input,
1800-div.PostActionsArea input {
1801- margin: 1px 1px;
1802-}
1803-input.search:hover,
1804-input.filter:hover,
1805-input.ActionButton:hover,
1806-input.DeleteButton:hover,
1807-input.CancelButton:hover,
1808-div.edit_actions input:hover,
1809-div.PostActionsArea input:hover {
1810- color: #00b;
1811- text-decoration: underline;
1812- background-color: #fff;
1813- background-image: url(../img/desert-button-2.gif);
1814- border: 1px solid #00b;
1815-}
1816-
1817-input.SaveButton,
1818-input.DeleteButton,
1819-input.CancelButton,
1820-div.edit_actions input.SaveButton {
1821- font-weight: bold;
1822-}
1823-input.SaveButton:hover,
1824-input.DeleteButton:hover,
1825-input.ResetButton:hover,
1826-div.edit_actions input.SaveButton:hover,
1827-div.edit_actions input.SaveEditButton:hover,
1828-div.edit_actions input.DeleteButton:hover {
1829- color: #c00;
1830- border: 1px solid #c00;
1831-}
1832-
1833-
1834-
1835-
1836-/*
1837- * Page layout:
1838- */
1839-#header {
1840- float:left;
1841- width:100%;
1842- background: url(../img/bg.gif) repeat-x bottom;
1843- font-size:85%;
1844- line-height:normal;
1845- padding: 0;
1846- margin:0;
1847-}
1848-#TitleArea {
1849- clear: both;
1850- margin: 0 1em;
1851- padding: 0;
1852- border-top: 1px solid #fff; /* force moz to display float before */
1853-}
1854-
1855-#headfunctions {
1856- float:right;
1857- margin: 3px 1em;
1858- color: #b0b0b0;
1859-}
1860-#headfunctions a {
1861- padding: 1px;
1862- color: #b0b0b0;
1863- background-color: transparent;
1864- text-decoration: none;
1865-}
1866-#headfunctions a:hover {
1867- color: #000;
1868- background-color: #f0e0e0;
1869- text-decoration: none;
1870-}
1871-
1872-.panelbody {
1873- margin: 0;
1874- padding: 0;
1875- /* border: 1px solid #f00; */
1876-}
1877-
1878-.left_col {
1879- clear: both;
1880- vertical-align: top;
1881- float: left;
1882- width: 65%;
1883- /* border: 1px solid #f00; */
1884- margin: 0;
1885- padding: 0;
1886- overflow: hidden;
1887-}
1888-.right_col {
1889- /* border: 1px solid #f00; */
1890- width: 33%;
1891- vertical-align: top;
1892- float: right;
1893- margin: 0;
1894- padding: 0;
1895- overflow: hidden;
1896-}
1897-div.action_messages /* Page top messages */
1898-{
1899- margin:1ex 1em;
1900-}
1901-div.panelinfo {
1902- clear: both;
1903- background-color: #efede0;
1904- border: 1px solid #e1ddce;
1905- padding: 0 1ex;
1906- margin: 1ex 1em;
1907-}
1908-div.tabbedpanelblock div.panelinfo {
1909- /* when embeded, no margin: */
1910- margin: 1ex 0;
1911-}
1912-div.panelinfo p {
1913- margin: 1ex 0;
1914- padding: 0;
1915-}
1916-div.panelblock,
1917-div.tabbedpanelblock {
1918- clear: both;
1919- border: 1px solid #929292;
1920- background-color: #fbfbfb;
1921- padding: 1ex 1em 1ex 1em;
1922- margin: 1ex 1em 2ex 1em;
1923-}
1924-.footer {
1925- text-align: center;
1926- font-size: 74%;
1927- margin-top: 0ex;
1928- margin-bottom: 0ex;
1929- padding-bottom: 1ex;
1930- clear: both;
1931-}
1932-
1933-/* Main tabs: */
1934-ul.tabs {
1935- margin:0;
1936- clear: both;
1937- padding: 0 1em 0;
1938- list-style: none;
1939-}
1940-ul.tabs li {
1941- float:left;
1942- background:url(../img/left_both.gif) no-repeat left top;
1943- margin:0;
1944- padding:0 0 0 9px;
1945- border-bottom:1px solid #929292;
1946-}
1947-ul.tabs li a {
1948- float:left;
1949- display:block;
1950- white-space:nowrap;
1951- background: url(../img/right_both.gif) no-repeat right top;
1952- padding:4px 11px 3px 2px;
1953- text-decoration:none;
1954- color:#765;
1955-}
1956-/* Commented Backslash Hack: hides rule from IE5-Mac \*/
1957-ul.tabs li a {float:none;}
1958-/* End IE5-Mac hack */
1959-ul.tabs li a:hover {
1960- color:#33c;
1961- text-decoration: underline; /* for IE */
1962-}
1963-ul.tabs li:hover { /* Won't work in IE */
1964- background-position:0% -150px;
1965- color:#333;
1966-}
1967-ul.tabs li:hover a { /* Won't work in IE */
1968- background-position:100% -150px;
1969- color:#33c;
1970- /* text-decoration: none; */
1971-}
1972-ul.tabs li.current {
1973- background-position:0% -150px;
1974- border-width:0;
1975-}
1976-ul.tabs li.current a {
1977- background-position:100% -150px;
1978- color:#333;
1979- padding-bottom:4px;
1980-}
1981-ul.tabs li.current a:hover {
1982- text-decoration: underline;
1983- color:#333;
1984-}
1985-
1986-/* Sub-tabs */
1987-ul.hack { /* fplanque: note: I'm not sure the hack is still needed now we have removed decimal ex paddings */
1988- margin:0;
1989- clear: both;
1990- padding: 2px 1em 0;
1991- list-style: none;
1992-}
1993-ul.hack li {
1994- display: none;
1995-}
1996-div.pt
1997-{
1998- margin: 0 1em;
1999-}
2000-div.panelblocktabs
2001-{
2002- clear: both;
2003- margin-top: 1ex;
2004- float:left;
2005- width:100%;
2006- background: url(../img/tabs_bg.gif) repeat-x bottom;
2007- font-size:85%;
2008- line-height:normal;
2009-}
2010-div.tabbedpanelblock {
2011- border-top: none;
2012- margin-top: 0;
2013-}
2014-div.tabbedpanelblock fieldset {
2015- border: 1px solid #ddd;
2016- margin: 0 0 1ex 0;
2017- background-color: #fff;
2018- padding: .5ex 1ex;
2019-}
2020-div.tabbedpanelblock fieldset fieldset {
2021- border: none;
2022-}
2023-
2024-/* browse/ Edit Screen: */
2025-table.browse {
2026- width: 100%;
2027-}
2028-td.browse_left_col {
2029- vertical-align:top;
2030- padding: 1ex 0 0 0;
2031-}
2032-td.browse_right_col {
2033- width: 19em;
2034- vertical-align:top;
2035- padding: 1ex 0 0 0;
2036-}
2037-.block_item {
2038- border: 1px solid #eee7e0;
2039- background-color: #fff;
2040- padding: 1ex;
2041- margin: 0 0 1em 0;
2042-}
2043-.browse_side_item {
2044- border: 1px solid #eee7e0;
2045- background-color: #fff;
2046- padding: 1ex;
2047- margin: 0 0 1em 1em;
2048-}
2049-
2050-div.NavBar {
2051- background-color: #efede0;
2052- border: 1px solid #e1ddce;
2053- padding: 1ex;
2054- margin: 0 0 1ex 0;
2055-}
2056-div.NavBar table {
2057- width: 100%;
2058-}
2059-div.PostActionsArea,
2060-div.CommentActionsArea {
2061- clear: both;
2062- background-color: #efede0;
2063- border-top: 1px solid #e1ddce;
2064- border-bottom: 1px solid #e1ddce;
2065- padding: 1ex;
2066- margin: 0;
2067-}
2068-
2069-div.bSideItem {
2070- border: 1px solid #eee7e0;
2071- padding: 1ex;
2072- margin: 0 1em 1ex 0;
2073-}
2074-
2075-.bSmallHead {
2076- font-size: 85%;
2077- padding: 1ex;
2078- margin: 0;
2079- color: #929292;
2080- border-bottom: 1px solid #e1ddce;
2081-}
2082-.bSmallHeadRight {
2083- float: right;
2084- text-align: right;
2085- padding-left: 1em; /* do not pad on text in .bSmallHead */
2086-}
2087-
2088-div.bComment, /* Entire comment block */
2089-form.bComment /* New comment form */
2090-{
2091- border: 1px solid #eee7e0;
2092- padding: 0;
2093- margin: 1ex;
2094-}
2095-div.bComment > p { /* padding for e.g. "No feedback for this post yet..." */
2096- padding: 1ex;
2097-}
2098-
2099-/* Post colors on browse page */
2100-.bDate,
2101-.bTime,
2102-.bAuthor,
2103-.bStatus,
2104-.bType,
2105-.bViews,
2106-.bPriority,
2107-.bAssignee,
2108-.bExtStatus
2109-{
2110- color: #6e6256;
2111- font-weight:bold;
2112-}
2113-.bCategories,
2114-.bEmail,
2115-.bIP,
2116-.bURL,
2117-.bKarma {
2118- color:#6e6256;
2119-}
2120-div.bPost {
2121- clear: both;
2122- padding: 0;
2123- margin: 0 0 1ex 0;
2124-}
2125-div.bPostpublished {
2126- border: 1px solid #e1ddce;
2127- background-color: #fff;
2128-}
2129-.bPostpublished span.bStatus,
2130-div.bCommentpublished span.bStatus {
2131- color: #0b0;
2132-}
2133-.bPostprotected {
2134- border: 1px solid #fc9;
2135- background-color: #fff;
2136- /* background-color: #fff7e7; */
2137-}
2138-.bPostprotected span.bStatus {
2139- color: #ea0;
2140-}
2141-.bPostprotected > div.bSmallHead /* Direct child only */
2142-{
2143- border-bottom: 1px solid #fc9;
2144-}
2145-.bPostprivate {
2146- border: 1px solid #f99;
2147- background-color: #fff;
2148- /* background-color: #fee; */
2149-}
2150-.bPostprivate span.bStatus {
2151- color: #e00;
2152-}
2153-.bPostprivate > div.bSmallHead /* Direct child only */
2154-{
2155- border-bottom: 1px solid #f99;
2156-}
2157-.bPostdraft,
2158-div.bCommentdraft {
2159- border: 1px dashed #ccc;
2160- background-color: #f4f4f4;
2161-}
2162-.bPostdraft span.bStatus,
2163-div.bCommentdraft span.bStatus {
2164- color: #666;
2165-}
2166-.bPostdraft > div.bSmallHead, /* Direct child only */
2167-div.bCommentdraft > div.bSmallHead /* Direct child only */
2168-{
2169- border-bottom: 1px dashed #ccc;
2170-}
2171-.bPostdeprecated,
2172-div.bCommentdeprecated {
2173- border: 1px dashed #000;
2174- background-color: #d8d8d8;
2175- color: #888;
2176-}
2177-.bPostdeprecated span.bStatus,
2178-div.bCommentdeprecated span.bStatus {
2179- color: #000;
2180-}
2181-.bPostdeprecated > div.bSmallHead, /* Direct child only */
2182-div.bCommentdeprecated > div.bSmallHead /* Direct child only */
2183-{
2184- border-bottom: 1px dashed #000;
2185-}
2186-
2187-.bContent,
2188-.bCommentContent,
2189-.bFeedback {
2190- margin: 1ex;
2191-}
2192-.bTitle {
2193- font-weight: bold;
2194- margin: 0;
2195- padding: 0;
2196-}
2197-.bText {
2198- margin: 0;
2199- padding: 0;
2200-}
2201-a.permalink_right {
2202- margin: .3ex .3ex 0 0;
2203-}
2204-
2205-.bSideItem ul,
2206-.browse_side_item ul,
2207-.right_col ul {
2208- margin-left: 0ex;
2209- padding-left: 0ex;
2210- margin-top: .5ex;
2211- margin-bottom: .5ex;
2212- list-style-type:none;
2213-}
2214-.bSideItem ul ul,
2215-.browse_side_item ul ul,
2216-.right_col ul ul {
2217- margin-left: 1ex;
2218- padding-left: 1ex;
2219-}
2220-
2221-input.SearchField {
2222- width: 96%;
2223- margin: .5ex auto 0 auto;
2224- padding: 2px;
2225-}
2226-
2227-
2228-
2229-/* Write/compose Screen */
2230-.left_col fieldset {
2231- border: 1px solid #eee7e0;
2232- margin: 0 0 1ex 1em;
2233- padding: 0 1ex 1ex 1ex;
2234-}
2235-
2236-.bSideItem fieldset div,
2237-.browse_side_item fieldset div {
2238- margin: 1ex 0ex;
2239-}
2240-
2241-.right_col fieldset {
2242- border: 1px solid #eee7e0;
2243- margin: 0 1em 1ex 0;
2244- padding: 0 1ex 1ex 1ex;
2245-}
2246-.bSideItem fieldset,
2247-.browse_side_item fieldset
2248-{
2249- margin: 1ex 0;
2250- clear: both;
2251-}
2252-
2253-div.tabbedpanelblock fieldset.extracats {
2254- /* border: 1px solid #eee7e0; */
2255- padding: 0 0 0 1ex;
2256- margin: 0 0 1ex 0;
2257- overflow: visible;
2258-}
2259-fieldset.extracats div.extracats {
2260- /* border: 1px solid #f00; */
2261- height: 44ex;
2262- overflow: auto;
2263- padding-top: 1ex;
2264- margin: 0;
2265-}
2266-.extracatnote {
2267- /* display: block; */
2268- font-size: 80%;
2269- margin: 1ex 0;
2270- padding: 0;
2271- color: #999;
2272- /* border: 1px solid #f00; */
2273-}
2274-
2275-div.edit_toolbars {
2276- margin-top: 1ex;
2277- width: 100%;
2278- text-align: center;
2279-}
2280-div.edit_toolbar {
2281- background-color: #efede0;
2282- border: 1px solid #e1ddce;
2283- padding: 1px;
2284- margin: 1px auto;
2285- width: 98%;
2286-}
2287-div.edit_toolbar input {
2288- color:#333;
2289- background-color: #fff;
2290- background-image: url(../img/desert-button-2.gif);
2291- border: 1px solid #ccc5aa;
2292- margin: 0 1px;
2293-}
2294-div.edit_toolbar input:hover {
2295- color: #000;
2296- text-decoration: underline;
2297- border: 1px solid #000;
2298-}
2299-div.edit_area {
2300- width: 100%;
2301- text-align: center;
2302-}
2303-div.edit_area textarea,
2304-textarea.bComment {
2305- width: 98%;
2306- margin: 0 auto;
2307-}
2308-div.edit_actions {
2309- background-color: #efede0;
2310- border: 1px solid #e1ddce;
2311- padding: 1px;
2312- margin: 1ex auto;
2313- width: 98%;
2314- text-align: center;
2315-}
2316-
2317-/* User rights: */
2318-span.checkall,
2319-th.checkright {
2320- font-size: 84%;
2321-}
2322-
2323-
2324-/*
2325- * Template selection:
2326- */
2327-div.templateshot {
2328- background-color: #efede0;
2329-}
2330-div.templateshot_placeholder {
2331- background: #e1ddce;
2332-}
2333-div.templateshot div.current {
2334- border: 1px solid #d00;
2335-}
2336-div.templateshot_noshot {
2337- color: #765;
2338-}
2339-
2340-
2341-
2342-div.system_check {
2343- border-top: 1px solid #e1ddce;
2344-}
2345
2346=== removed file 'templates_adm/legacy/rsc/css/variation.css'
2347--- templates_adm/legacy/rsc/css/variation.css 2009-12-21 17:27:20 +0000
2348+++ templates_adm/legacy/rsc/css/variation.css 1970-01-01 00:00:00 +0000
2349@@ -1,81 +0,0 @@
2350-/**
2351- * Backoffice main Cascading Style Sheets definitions for Variation style.
2352- *
2353- * Quam Plures - {@link http://quamplures.net/}
2354- * Released under GNU GPL License - {@link http://quamplures.net/license.html}
2355- * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
2356- * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
2357- *
2358- * @package admin
2359- */
2360-
2361-@import url("desertbase.css");
2362-
2363-/* Titles */
2364-#TitleArea h1 {
2365- color: #a00;
2366-}
2367-h2 {
2368- color: #a00;
2369-}
2370-div.bSideItem h3 {
2371- color: #a00;
2372-}
2373-h4 {
2374- color: #a00;
2375-}
2376-
2377-
2378-a.ActionButton,
2379-a.DeleteButton,
2380-a.ActionButton:hover,
2381-a.DeleteButton:hover,
2382-a.PublishButton,
2383-a.PublishButton:hover,
2384-div.edit_actions input.SaveButton,
2385-div.edit_actions input,
2386-div.PostActionsArea input,
2387-div.edit_actions input:hover,
2388-div.PostActionsArea input:hover,
2389-div.edit_actions input.SaveButton:hover,
2390-div.edit_actions input.DeleteButton:hover {
2391- color:#333;
2392- background-color: #fff;
2393- background-image: url(../img/desert-button-2.gif);
2394- border: 1px solid #ccc5aa;
2395-}
2396-fieldset.submit input.SaveButton:hover,
2397-fieldset.submit input.ResetButton:hover,
2398-input.search,
2399-input.search:hover,
2400-input.ActionButton:hover,
2401-input.DeleteButton:hover,
2402-input.CancelButton:hover
2403-{
2404- color:#333;
2405- background-color: #e1ddce;
2406- background-image: url(../img/desert-button.gif);
2407- border: 1px solid #ccc5aa;
2408-}
2409-input.SaveButton:hover {
2410- color:#333;
2411- border: 1px solid #ccc5aa;
2412-}
2413-
2414-legend {
2415- color: #a00;
2416-}
2417-table.grouped th {
2418- color: #a00;
2419-}
2420-
2421-
2422-
2423-form.fform fieldset.submit fieldset {
2424- background: transparent;
2425-}
2426-form.fform fieldset.submit {
2427- border:0;
2428- background:transparent;
2429- clear:both;
2430-}
2431
2432=== removed directory 'templates_adm/legacy/rsc/icons'
2433=== removed file 'templates_adm/legacy/rsc/icons/mandatory_star_desert.gif'
2434Binary files templates_adm/legacy/rsc/icons/mandatory_star_desert.gif 2006-04-14 17:14:12 +0000 and templates_adm/legacy/rsc/icons/mandatory_star_desert.gif 1970-01-01 00:00:00 +0000 differ
2435=== removed directory 'templates_adm/legacy/rsc/img'
2436=== removed file 'templates_adm/legacy/rsc/img/bg.gif'
2437Binary files templates_adm/legacy/rsc/img/bg.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/bg.gif 1970-01-01 00:00:00 +0000 differ
2438=== removed file 'templates_adm/legacy/rsc/img/bg_grey.gif'
2439Binary files templates_adm/legacy/rsc/img/bg_grey.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/bg_grey.gif 1970-01-01 00:00:00 +0000 differ
2440=== removed file 'templates_adm/legacy/rsc/img/desert-button-2.gif'
2441Binary files templates_adm/legacy/rsc/img/desert-button-2.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/desert-button-2.gif 1970-01-01 00:00:00 +0000 differ
2442=== removed file 'templates_adm/legacy/rsc/img/desert-button.gif'
2443Binary files templates_adm/legacy/rsc/img/desert-button.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/desert-button.gif 1970-01-01 00:00:00 +0000 differ
2444=== removed file 'templates_adm/legacy/rsc/img/left_both.gif'
2445Binary files templates_adm/legacy/rsc/img/left_both.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/left_both.gif 1970-01-01 00:00:00 +0000 differ
2446=== removed file 'templates_adm/legacy/rsc/img/legacy-button-2.gif'
2447Binary files templates_adm/legacy/rsc/img/legacy-button-2.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/legacy-button-2.gif 1970-01-01 00:00:00 +0000 differ
2448=== removed file 'templates_adm/legacy/rsc/img/legacy-button.gif'
2449Binary files templates_adm/legacy/rsc/img/legacy-button.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/legacy-button.gif 1970-01-01 00:00:00 +0000 differ
2450=== removed file 'templates_adm/legacy/rsc/img/right_both.gif'
2451Binary files templates_adm/legacy/rsc/img/right_both.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/right_both.gif 1970-01-01 00:00:00 +0000 differ
2452=== removed file 'templates_adm/legacy/rsc/img/tabs_bg.gif'
2453Binary files templates_adm/legacy/rsc/img/tabs_bg.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/tabs_bg.gif 1970-01-01 00:00:00 +0000 differ
2454=== removed file 'templates_adm/legacy/rsc/img/tabs_bg_grey.gif'
2455Binary files templates_adm/legacy/rsc/img/tabs_bg_grey.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/tabs_bg_grey.gif 1970-01-01 00:00:00 +0000 differ
2456=== removed file 'templates_adm/legacy/rsc/img/tabs_left_grey.gif'
2457Binary files templates_adm/legacy/rsc/img/tabs_left_grey.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/tabs_left_grey.gif 1970-01-01 00:00:00 +0000 differ
2458=== removed file 'templates_adm/legacy/rsc/img/tabs_right_grey.gif'
2459Binary files templates_adm/legacy/rsc/img/tabs_right_grey.gif 2006-02-23 20:11:42 +0000 and templates_adm/legacy/rsc/img/tabs_right_grey.gif 1970-01-01 00:00:00 +0000 differ

Subscribers

People subscribed via source and target branches