Author: cfinck Date: Wed May 21 18:51:05 2008 New Revision: 33630
URL: http://svn.reactos.org/svn/reactos?rev=33630&view=rev Log: Part 1 of the phpBB 3.x RosCMS Integration - The Design :-) - Delete the "subsilver2" skin, rename the "prosilver" skin to "roscms" - Modify this skin to fully integrate into the ReactOS Website Design. - Add a new root directory "css" for putting individual CSS files in. I start with "menu.css", which only contains the stuff relevant to the menu from "style.css". This file should be adopted by the other subsystems as well. - Modify the installation DB schema to activate PHP support in templates (needed for the roscms skin) and choose the roscms skin by default.
Added: trunk/web/reactos.org/htdocs/css/ trunk/web/reactos.org/htdocs/css/menu.css (with props) trunk/web/reactos.org/htdocs/forum/styles/roscms/ - copied from r33628, trunk/web/reactos.org/htdocs/forum/styles/prosilver/ Removed: trunk/web/reactos.org/htdocs/forum/styles/prosilver/ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/large.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/medium.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/normal.css trunk/web/reactos.org/htdocs/forum/styles/subsilver2/ Modified: trunk/web/reactos.org/htdocs/forum/cache/ (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/firebird_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/mssql_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/mysql_40_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/mysql_41_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/oracle_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/postgres_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/schema_data.sql (contents, props changed) trunk/web/reactos.org/htdocs/forum/install/schemas/sqlite_schema.sql (props changed) trunk/web/reactos.org/htdocs/forum/styles/roscms/imageset/imageset.cfg trunk/web/reactos.org/htdocs/forum/styles/roscms/style.cfg trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_footer.html trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_header.html trunk/web/reactos.org/htdocs/forum/styles/roscms/template/template.cfg trunk/web/reactos.org/htdocs/forum/styles/roscms/template/viewtopic_print.html trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/colours.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/common.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/links.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/stylesheet.css trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/theme.cfg
Added: trunk/web/reactos.org/htdocs/css/menu.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/css/menu.css... ============================================================================== --- trunk/web/reactos.org/htdocs/css/menu.css (added) +++ trunk/web/reactos.org/htdocs/css/menu.css [iso-8859-1] Wed May 21 18:51:05 2008 @@ -1,0 +1,118 @@ +body { + font-family: Verdana; + font-size: 12px; + margin: 0 0 1em 0; + padding: 0; /* Only affects Opera */ + background: #FFFFFF url('http://www.reactos.org/images/topbar.jpg') repeat-x scroll top left; +} + +.contentSmallTitle { + font-size: 14px; + font-weight: bold; + color: white; + background-color: #5984C3; + padding: 0px 0px 1px 10px; + margin-bottom: 3px; +} + +.contentSmallTitle a { + color: white; + text-decoration: none; +} + +.contentSmallTitle a:hover { + text-decoration: underline; +} + +#top { + margin: 0; + background: url('http://www.reactos.org/images/logo.jpg') no-repeat scroll 35px 0; + padding: 103px 0 26px 0; + color: #FFFFFF; + text-align: right; +} + +#top a { + font-size: 13px; + color: #FFFFFF; + text-decoration: none; + padding: 1px 5px 1px 5px; +} + +#top a:hover { + color: #000000; + background-color: #FFCC33; +} + +#topMenu { + font-size: 13px; + margin-left: 300px; + background-color: #5984C3; +} + +#topMenu p { + text-align: left; + margin: 0; +} + +#leftNav { + padding: 0px 10px 10px 7px; +} + +#leftNav ol { + margin: 0; + padding: 0; + list-style-type: none; + background-color: #EEEEEE; + border-top: #3F3849 0px solid; + border-right: #3F3849 1px solid; + border-left: #3F3849 1px solid; +} + +#leftNav ol li { + font-size: 12px; + font-weight: bold; + border-bottom: #3f3849 1px solid; +} + +#leftNav ol li a { + display: block; + width: 137px; + padding: 2px 4px 2px 4px; + + color: #3F3849; + text-decoration: none; + background-color: #EEEEEE; +} + +#leftNav ol li a:hover { + color: #000000; + background-color: #FFCC33; +} + +#leftNav ol li a.extern { + background: none; + padding-right: 0px; +} + +#leftNav .navTitle { + padding-left: 12px; + border-top: #3F3849 1px solid; + border-right: #3F3849 1px solid; + border-bottom: #3F3849 1px solid; + border-left: #3F3849 1px solid; + font-weight: bold; + font-size: 14px; + color: #FFFFFF; + background-color: #5984c3; +} + +#leftNav .navBox { + text-align: center; + padding: 2px; + background-color: #EEEEEE; + border-right: 1px solid #3F3849; + border-bottom: 1px solid #3F3849; + border-left: 1px solid #3F3849; + font-size: 13px; +}
Propchange: trunk/web/reactos.org/htdocs/css/menu.css ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/cache/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Wed May 21 18:51:05 2008 @@ -1,0 +1,1 @@ +*
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/firebird_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/mssql_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/mysql_40_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/mysql_41_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/oracle_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/postgres_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Modified: trunk/web/reactos.org/htdocs/forum/install/schemas/schema_data.sql URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/instal... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/install/schemas/schema_data.sql [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/install/schemas/schema_data.sql [iso-8859-1] Wed May 21 18:51:05 2008 @@ -210,7 +210,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.1'); @@ -390,10 +390,10 @@
# -- phpbb_styles -INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES ('prosilver', '© phpBB Group', 1, 1, 1, 1); +INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES ('roscms', '© phpBB Group', 1, 1, 1, 1);
# -- phpbb_styles_imageset -INSERT INTO phpbb_styles_imageset (imageset_name, imageset_copyright, imageset_path) VALUES ('prosilver', '© phpBB Group', 'prosilver'); +INSERT INTO phpbb_styles_imageset (imageset_name, imageset_copyright, imageset_path) VALUES ('roscms', '© phpBB Group', 'roscms');
# -- phpbb_styles_imageset_data INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('site_logo', 'site_logo.gif', '', 52, 139, 1); @@ -466,10 +466,10 @@ INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_unread', 'subforum_unread.gif', '', 9, 11, 1);
# -- phpbb_styles_template -INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('prosilver', '© phpBB Group', 'prosilver', 'lNg=', 0); +INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('roscms', '© phpBB Group', 'roscms', 'lNg=', 0);
# -- phpbb_styles_theme -INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('prosilver', '© phpBB Group', 'prosilver', 1, ''); +INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('roscms', '© phpBB Group', 'roscms', 1, '');
# -- Forums INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('{L_FORUMS_FIRST_CATEGORY}', '', 1, 4, 0, 0, 1, 1, 1, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, '');
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/schema_data.sql ------------------------------------------------------------------------------ svn:eol-style = native
Propchange: trunk/web/reactos.org/htdocs/forum/install/schemas/sqlite_schema.sql ------------------------------------------------------------------------------ svn:eol-style = native
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/imageset/imageset.cfg URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/imageset/imageset.cfg [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/imageset/imageset.cfg [iso-8859-1] Wed May 21 18:51:05 2008 @@ -17,7 +17,7 @@ #
# General Information about this style -name = prosilver +name = roscms copyright = © phpBB Group, 2007 version = 3.0.0
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/style.cfg URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/style.cfg [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/style.cfg [iso-8859-1] Wed May 21 18:51:05 2008 @@ -17,6 +17,6 @@ #
# General Information about this style -name = prosilver +name = roscms copyright = © phpBB Group, 2007 version = 3.0.0
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_footer.html URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_footer.html [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_footer.html [iso-8859-1] Wed May 21 18:51:05 2008 @@ -38,6 +38,7 @@ </div>
</div> +</td></tr></table>
<div> <a id="bottom" name="bottom" accesskey="z"></a>
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_header.html URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_header.html [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/template/overall_header.html [iso-8859-1] Wed May 21 18:51:05 2008 @@ -15,10 +15,10 @@ <title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
<!-- - phpBB style name: prosilver + phpBB style name: roscms Based on style: prosilver (this is the default phpBB3 style) Original author: Tom Beddard ( http://www.subBlue.com/ ) - Modified by: + Modified by: Colin Finck NOTE: This page was generated by phpBB, the free open-source bulletin board package. The phpBB Group is not responsible for the content of this page and forum. For more information @@ -76,12 +76,9 @@ <script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script> <script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
+<link href="/css/menu.css" type="text/css" rel="stylesheet" /> <link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" /> <link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" /> - -<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" /> -<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> -<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />
<!-- IF S_CONTENT_DIRECTION eq 'rtl' --> <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" /> @@ -91,73 +88,64 @@
<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
+<!-- PHP --> + readfile("http://www.reactos.org/en/subsys_extern_menu_top.html"); + readfile("http://www.reactos.org/en/subsys_extern_menu_left.html"); +<!-- ENDPHP --> + + <div class="navTitle">{L_FORUM}</div> + <ol> + <li><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li> + <!-- IF S_DISPLAY_MEMBERLIST --><li><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF --> + <li><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li> + </ol> + <p></p> + + <!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH --> + <form action="{U_SEARCH}" method="post" id="search"> + {S_SEARCH_HIDDEN_FIELDS} + + <div class="navTitle">{L_SEARCH}</div> + <div class="navBox"> + <input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" /> + <input class="button2" value="{L_SEARCH}" type="submit" /><br /> + <a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> + </div> + </form> + <p></p> + <!-- ENDIF --> + + <div class="navTitle">Account</div> + <ol> + <!-- IF not S_IS_BOT and S_USER_LOGGED_IN --> + <li><a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u">{L_PROFILE}</a></li> + <!-- IF S_DISPLAY_PM --> <li><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a></li><!-- ENDIF --> + <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li> + + <!-- IF U_RESTORE_PERMISSIONS --> + <li><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></li> + <!-- ENDIF --> + <!-- ENDIF --> + + <!-- IF not S_IS_BOT --> + <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF --> + <li><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li> + <!-- ENDIF --> + </ol> +</td> +<td> + +<div class="contentSmallTitle"><a href="http://www.reactos.org/en/community.html">ReactOS Community</a> > ReactOS Forum</div> + <div id="wrap"> <a id="top" name="top" accesskey="t"></a> <div id="page-header"> - <div class="headerbar"> - <div class="inner"><span class="corners-top"><span></span></span> - - <div id="site-description"> - <a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a> - <h1>{SITENAME}</h1> - <p>{SITE_DESCRIPTION}</p> - <p style="display: none;"><a href="#start_here">{L_SKIP}</a></p> - </div> - - <!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH --> - <div id="search-box"> - <form action="{U_SEARCH}" method="post" id="search"> - <fieldset> - <input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" /> - <input class="button2" value="{L_SEARCH}" type="submit" /><br /> - <a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_SEARCH_HIDDEN_FIELDS} - </fieldset> - </form> - </div> - <!-- ENDIF --> - - <span class="corners-bottom"><span></span></span></div> - </div> - - <div class="navbar"> - <div class="inner"><span class="corners-top"><span></span></span> - - <ul class="linklist navlinks"> - <li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>‹</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li> - - <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" onkeypress="fontsizeup(); return false;" class="fontsize" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a></li> - - <!-- IF U_EMAIL_TOPIC --><li class="rightside"><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}" class="sendemail">{L_EMAIL_TOPIC}</a></li><!-- ENDIF --> - <!-- IF U_EMAIL_PM --><li class="rightside"><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" class="sendemail">{L_EMAIL_PM}</a></li><!-- ENDIF --> - <!-- IF U_PRINT_TOPIC --><li class="rightside"><a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p" class="print">{L_PRINT_TOPIC}</a></li><!-- ENDIF --> - <!-- IF U_PRINT_PM --><li class="rightside"><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p" class="print">{L_PRINT_PM}</a></li><!-- ENDIF --> - </ul> - - <!-- IF not S_IS_BOT and S_USER_LOGGED_IN --> - <ul class="linklist leftside"> - <li class="icon-ucp"> - <a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u">{L_PROFILE}</a> - <!-- IF S_DISPLAY_PM --> (<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>)<!-- ENDIF --> • - <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a> - <!-- IF U_RESTORE_PERMISSIONS --> • - <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a> - <!-- ENDIF --> - </li> - </ul> - <!-- ENDIF --> - - <ul class="linklist rightside"> - <li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li> - <!-- IF not S_IS_BOT --> - <!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF --> - <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF --> - <li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li> - <!-- ENDIF --> - </ul> - - <span class="corners-bottom"><span></span></span></div> - </div> - + <ul class="linklist"> + <!-- IF U_EMAIL_TOPIC --><li class="rightside"><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}" class="sendemail">{L_EMAIL_TOPIC}</a></li><!-- ENDIF --> + <!-- IF U_EMAIL_PM --><li class="rightside"><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" class="sendemail">{L_EMAIL_PM}</a></li><!-- ENDIF --> + <!-- IF U_PRINT_TOPIC --><li class="rightside"><a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p" class="print">{L_PRINT_TOPIC}</a></li><!-- ENDIF --> + <!-- IF U_PRINT_PM --><li class="rightside"><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p" class="print">{L_PRINT_PM}</a></li><!-- ENDIF --> + </ul> </div>
<a name="start_here"></a>
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/template/template.cfg URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/template/template.cfg [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/template/template.cfg [iso-8859-1] Wed May 21 18:51:05 2008 @@ -17,7 +17,7 @@ #
# General Information about this template -name = prosilver +name = roscms copyright = © phpBB Group, 2007 version = 3.0.0
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/template/viewtopic_print.html URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/template/viewtopic_print.html [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/template/viewtopic_print.html [iso-8859-1] Wed May 21 18:51:05 2008 @@ -24,7 +24,7 @@
<div id="page-header"> <h1>{SITENAME}</h1> - <p>{SITE_DESCRIPTION}<br /><a href="{U_FORUM}">{U_FORUM}</a></p> + <a href="{U_FORUM}">{U_FORUM}</a></p> <h2>{TOPIC_TITLE}</h2> <p><a href="{U_TOPIC}">{U_TOPIC}</a></p>
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/colours.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/colours.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/colours.css [iso-8859-1] Wed May 21 18:51:05 2008 @@ -233,25 +233,25 @@ Colours and backgrounds for links.css -------------------------------------------------------------- */
-a:link { color: #105289; } -a:visited { color: #105289; } -a:hover { color: #D31141; } -a:active { color: #368AD2; } +#wrap a:link { color: #105289; } +#wrap a:visited { color: #105289; } +#wrap a:hover { color: #D31141; } +#wrap a:active { color: #368AD2; }
/* Links on gradient backgrounds */ -#search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link { +#search-box a:link, #wrap .navbg a:link, #wrap .forumbg .header a:link, #wrap .forabg .header a:link, #wrap th a:link { color: #FFFFFF; }
-#search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited { +#search-box a:visited, #wrap .navbg a:visited, #wrap .forumbg .header a:visited, #wrap .forabg .header a:visited, #wrap th a:visited { color: #FFFFFF; }
-#search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover { +#search-box a:hover, #wrap .navbg a:hover, #wrap .forumbg .header a:hover, #wrap .forabg .header a:hover, #wrap th a:hover { color: #A8D8FF; }
-#search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active { +#search-box a:active, #wrap .navbg a:active, #wrap .forumbg .header a:active, #wrap .forabg .header a:active, #wrap th a:active { color: #C8E6FF; }
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/common.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/common.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/common.css [iso-8859-1] Wed May 21 18:51:05 2008 @@ -1,4 +1,4 @@ -/* General proSilver Markup Styles +/* General roscms Markup Styles ---------------------------------------- */
* { @@ -7,25 +7,12 @@ padding: 0; }
-html { - font-size: 100%; - /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */ - height: 100%; - margin-bottom: 1px; -} - -body { - /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */ - font-family: Verdana, Helvetica, Arial, sans-serif; - color: #828282; - background-color: #FFFFFF; - /*font-size: 62.5%; This sets the default font size to be equivalent to 10px */ - font-size: 10px; - margin: 0; - padding: 12px 0; -} - -h1 { +p { + /* Set the margin again for the separator elements for the menu items */ + margin-bottom: 1em; +} + +#wrap h1 { /* Forum name */ font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; margin-right: 200px; @@ -35,7 +22,7 @@ font-size: 2em; }
-h2 { +#wrap h2 { /* Forum header titles */ font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-weight: normal; @@ -44,11 +31,11 @@ margin: 0.8em 0 0.2em 0; }
-h2.solo { +#wrap h2.solo { margin-bottom: 1em; }
-h3 { +#wrap h3 { /* Sub-headers (also used as post headers, but defined later) */ font-family: Arial, Helvetica, sans-serif; font-weight: bold; @@ -61,23 +48,23 @@ margin-top: 20px; }
-h4 { +#wrap h4 { /* Forum and topic list titles */ font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif; font-size: 1.3em; }
-p { +#wrap p { line-height: 1.3em; font-size: 1.1em; margin-bottom: 1.5em; }
-img { +#wrap img { border-width: 0; }
-hr { +#wrap hr { /* Also see tweaks.css */ border: 0 none #FFFFFF; border-top: 1px solid #CCCCCC; @@ -87,24 +74,27 @@ clear: both; }
-hr.dashed { +#wrap hr.dashed { border-top: 1px dashed #CCCCCC; margin: 10px 0; }
-hr.divider { +#wrap hr.divider { display: none; }
-p.right { +#wrap p.right { text-align: right; }
/* Main blocks ---------------------------------------- */ #wrap { - padding: 0 20px; - min-width: 650px; + font-family: Verdana, Helvetica, Arial, sans-serif; + color: #828282; + background-color: #FFFFFF; + font-size: 10px; + padding-right: 5px; }
#simple-wrap { @@ -618,11 +608,6 @@ clear: both; }
-#top { - position: absolute; - top: -20px; -} - .clear { display: block; clear: both;
Removed: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/large.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/large.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/large.css (removed) @@ -1,3 +1,0 @@ -body { - font-size: 12px; -}
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/links.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/links.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/links.css [iso-8859-1] Wed May 21 18:51:05 2008 @@ -1,10 +1,10 @@ /* proSilver Link Styles ---------------------------------------- */
-a:link { color: #898989; text-decoration: none; } -a:visited { color: #898989; text-decoration: none; } -a:hover { color: #d3d3d3; text-decoration: underline; } -a:active { color: #d2d2d2; text-decoration: none; } +#wrap a:link { color: #898989; text-decoration: none; } +#wrap a:visited { color: #898989; text-decoration: none; } +#wrap a:hover { color: #d3d3d3; text-decoration: underline; } +#wrap a:active { color: #d2d2d2; text-decoration: none; }
/* Coloured usernames */ .username-coloured {
Removed: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/medium.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/medium.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/medium.css (removed) @@ -1,3 +1,0 @@ -body { - font-size: 11px; -}
Removed: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/normal.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/normal.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/normal.css (removed) @@ -1,3 +1,0 @@ -body { - font-size: 10px; -}
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/stylesheet.css URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/stylesheet.css [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/stylesheet.css [iso-8859-1] Wed May 21 18:51:05 2008 @@ -1,9 +1,9 @@ /* phpBB 3.0 Style Sheet -------------------------------------------------------------- - Style name: proSilver + Style name: roscms Based on style: proSilver (this is the default phpBB 3 style) Original author: subBlue ( http://www.subBlue.com/ ) - Modified by: + Modified by: Colin Finck Copyright 2006 phpBB Group ( http://www.phpbb.com/ ) --------------------------------------------------------------
Modified: trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/theme.cfg URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/forum/styles... ============================================================================== --- trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/theme.cfg [iso-8859-1] (original) +++ trunk/web/reactos.org/htdocs/forum/styles/roscms/theme/theme.cfg [iso-8859-1] Wed May 21 18:51:05 2008 @@ -19,7 +19,7 @@ #
# General Information about this theme -name = prosilver +name = roscms copyright = © phpBB Group, 2007 version = 3.0.0