Code: Select all
inherit_from = prosilver
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 900px;
margin: 0 auto;
}
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.6
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.6
Code: Select all
mozWrap(textarea, text, '')
Code: Select all
mozWrap(textarea, text, '');
Code: Select all
function addquote(post_id, username
Code: Select all
, l_wrote
Code: Select all
if (document.all)
Code: Select all
if (l_wrote === undefined)
{
// Backwards compatibility
l_wrote = 'wrote';
}
Code: Select all
var lines = split_lines(theSelection);
Code: Select all
insert_text(username + ' ' + l_wrote + ':' + '\n');
Code: Select all
insert_text('> ' + lines[i] + '\n')
Code: Select all
insert_text('> ' + lines[i] + '\n');
Code: Select all
j++
Code: Select all
j++;
Code: Select all
while(splitAt != -1)
Code: Select all
while(splitAt != -1);
Code: Select all
var s2 = (txtarea.value).substring(selStart, selEnd)
Code: Select all
var s2 = (txtarea.value).substring(selStart, selEnd);
Code: Select all
* s[-1,0,1] = hide,toggle display,show
Code: Select all
* type = string: inline, block, inline-block or other CSS "display" type
Code: Select all
function dE(n, s
Code: Select all
, type
Code: Select all
var e = document.getElementById(n);
Code: Select all
if (!type)
{
type = 'block';
}
Code: Select all
e.style.display == 'block'
Code: Select all
e.style.display == type
Code: Select all
e.style.display = (s == 1) ? 'block' : 'none';
Code: Select all
e.style.display = (s == 1) ? type : 'none';
Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.6
Code: Select all
.rtl a.top2 {
Code: Select all
background-position: 100% 50%;
Code: Select all
/* Content container styles
----------------------------------------*/
Code: Select all
/* MCP Post details
----------------------------------------*/
#post_details
{
/* This will only work in IE7+, plus the others */
overflow: auto;
max-height: 300px;
}
#expand
{
clear: both;
}
Code: Select all
/* Specific layout 2 */
Code: Select all
/* Set it back to 0px for the reCaptcha divs: PHPBB3-9587 */
fieldset.fields1 #recaptcha_widget_div div {
margin-bottom: 0;
}
Code: Select all
.skip_link { display: none; }
Code: Select all
dl.codebox dt { display: none; }
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.6
Code: Select all
version = 1.0.4
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.4
Code: Select all
version = 1.0.5
Code: Select all
txtarea.selectionStart = selEnd + open.length + close.length;
txtarea.selectionEnd = txtarea.selectionStart;
Code: Select all
txtarea.selectionStart = selStart + open.length;
txtarea.selectionEnd = selEnd + open.length;
Code: Select all
$('form input').live('keypress', function (e)
{
var default_button = $(this).parents('form').find('input[type=submit].default-submit-action');
Code: Select all
jQuery('form input[type=text], form input[type=password]').live('keypress', function (e)
{
var default_button = jQuery(this).parents('form').find('input[type=submit].default-submit-action');
Code: Select all
if (element.type == 'hidden')
continue;
// onkeydown is possible too
element.onkeypress = function (evt) { submit_default_button((evt || window.event), this, 'default-submit-action'); };
Code: Select all
if (element.type == 'text' || element.type == 'password')
{
// onkeydown is possible too
element.onkeypress = function (evt) { submit_default_button((evt || window.event), this, 'default-submit-action'); };
}
Code: Select all
<link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" />
Code: Select all
<!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
Code: Select all
<!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_TOPICS}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
Code: Select all
<!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
Code: Select all
version = 1.0.4
Code: Select all
version = 1.0.5
Code: Select all
/* Back to top of page */
.rtl .back2top {
text-align: left;
}
Code: Select all
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
.rtl a {
direction: rtl;
unicode-bidi: embed;
}
Code: Select all
background: #FAFAFA none repeat-x top;
Code: Select all
background: #FAFAFA none repeat-x top left;
Code: Select all
/* proSilver Link Styles
---------------------------------------- */
Code: Select all
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
a {
direction: ltr;
unicode-bidi: embed;
}
Code: Select all
version = 1.0.4
Code: Select all
version = 1.0.5
Code: Select all
version = 1.0.3
Code: Select all
version = 1.0.4
Code: Select all
version = 1.0.3
Code: Select all
version = 1.0.4
Code: Select all
// Check for Browser & Platform for PC & IE specific bits
Code: Select all
var bbcodeEnabled = true;
Code: Select all
insert_text('[quote="' + username + '"]' + theSelection + '[/quote]');
Code: Select all
if (bbcodeEnabled)
{
insert_text('[quote="' + username + '"]' + theSelection + '[/quote]');
}
else
{
var lines = split_lines(theSelection);
for (i = 0; i < lines.length; i++)
{
insert_text('> ' + lines[i] + '\n')
}
}
Code: Select all
/**
* From http://www.massless.org/mozedit/
*/
Code: Select all
function split_lines(text)
{
var lines = text.split('\n');
var splitLines = new Array();
var j = 0;
for(i = 0; i < lines.length; i++)
{
if (lines[i].length <= 80)
{
splitLines[j] = lines[i];
j++;
}
else
{
var line = lines[i];
do
{
var splitAt = line.indexOf(' ', 80);
if (splitAt == -1)
{
splitLines[j] = line;
j++
}
else
{
splitLines[j] = line.substring(0, splitAt);
line = line.substring(splitAt);
j++;
}
}
while(splitAt != -1)
}
}
return splitLines;
}
Code: Select all
var selLength = txtarea.textLength;
Code: Select all
var selLength = (typeof(txtarea.textLength) == 'undefined') ? txtarea.value.length : txtarea.textLength;
Code: Select all
obj.SetControllerVisible(true);
obj.Play();
}
Code: Select all
/**
* Check if the nodeName of elem is name
* @author jQuery
*/
function is_node_name(elem, name)
{
return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
}
/**
* Check if elem is in array, return position
* @author jQuery
*/
function is_in_array(elem, array)
{
for (var i = 0, length = array.length; i < length; i++)
// === is correct (IE)
if (array[i] === elem)
return i;
return -1;
}
/**
* Find Element, type and class in tree
* Not used, but may come in handy for those not using JQuery
* @author jQuery.find, Meik Sievertsen
*/
function find_in_tree(node, tag, type, class_name)
{
var result, element, i = 0, length = node.childNodes.length;
for (element = node.childNodes[0]; i < length; element = node.childNodes[++i])
{
if (!element || element.nodeType != 1) continue;
if ((!tag || is_node_name(element, tag)) && (!type || element.type == type) && (!class_name || is_in_array(class_name, (element.className || element).toString().split(/\s+/)) > -1))
{
return element;
}
if (element.childNodes.length)
result = find_in_tree(element, tag, type, class_name);
if (result) return result;
}
}
var in_autocomplete = false;
var last_key_entered = '';
/**
* Check event key
*/
function phpbb_check_key(event)
{
// Keycode is array down or up?
if (event.keyCode && (event.keyCode == 40 || event.keyCode == 38))
in_autocomplete = true;
// Make sure we are not within an "autocompletion" field
if (in_autocomplete)
{
// If return pressed and key changed we reset the autocompletion
if (!last_key_entered || last_key_entered == event.which)
{
in_autocompletion = false;
return true;
}
}
// Keycode is not return, then return. ;)
if (event.which != 13)
{
last_key_entered = event.which;
return true;
}
return false;
}
/**
* Usually used for onkeypress event, to submit a form on enter
*/
function submit_default_button(event, selector, class_name)
{
// Add which for key events
if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode))
event.which = event.charCode || event.keyCode;
if (phpbb_check_key(event))
return true;
var current = selector['parentNode'];
// Search parent form element
while (current && (!current.nodeName || current.nodeType != 1 || !is_node_name(current, 'form')) && current != document)
current = current['parentNode'];
// Find the input submit button with the class name
//current = find_in_tree(current, 'input', 'submit', class_name);
var input_tags = current.getElementsByTagName('input');
current = false;
for (var i = 0, element = input_tags[0]; i < input_tags.length; element = input_tags[++i])
{
if (element.type == 'submit' && is_in_array(class_name, (element.className || element).toString().split(/\s+/)) > -1)
current = element;
}
if (!current)
return true;
// Submit form
current.focus();
current.click();
return false;
}
/**
* Apply onkeypress event for forcing default submit button on ENTER key press
* The jQuery snippet used is based on http://greatwebguy.com/programming/dom/default-html-button-submit-on-enter-with-jquery/
* The non-jQuery code is a mimick of the jQuery code ;)
*/
function apply_onkeypress_event()
{
// jQuery code in case jQuery is used
if (jquery_present)
{
$('form input').live('keypress', function (e)
{
var default_button = $(this).parents('form').find('input[type=submit].default-submit-action');
if (!default_button || default_button.length <= 0)
return true;
if (phpbb_check_key(e))
return true;
if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13))
{
default_button.click();
return false;
}
return true;
});
return;
}
var input_tags = document.getElementsByTagName('input');
for (var i = 0, element = input_tags[0]; i < input_tags.length ; element = input_tags[++i])
{
if (element.type == 'hidden')
continue;
// onkeydown is possible too
element.onkeypress = function (evt) { submit_default_button((evt || window.event), this, 'default-submit-action'); };
}
}
/**
* Detect JQuery existance. We currently do not deliver it, but some styles do, so why not benefit from it. ;)
*/
var jquery_present = typeof jQuery == 'function';
Code: Select all
<!--
phpBB style name: prosilver
Based on style: prosilver (this is the default phpBB3 style)
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by:
Code: Select all
<!-- IF S_ENABLE_FEEDS -->
<link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" />
<!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_TOPICS}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->
<!--
phpBB style name: prosilver Special Edition
Based on style: prosilver (this is the default phpBB3 style)
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by: phpBB Styles Team
Code: Select all
onkeypress="fontsizeup(); return false;"
Code: Select all
onkeypress="return fontsizeup(event);"
Code: Select all
<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>
Code: Select all
<a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a>
<!-- IF S_DISPLAY_PM --> (<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>)<!-- ENDIF -->
<!-- IF S_DISPLAY_SEARCH --> •
<a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>
<!-- ENDIF -->
Code: Select all
S_REGISTER_ENABLED
Code: Select all
S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION)
Code: Select all
accesskey="l">{L_LOGIN_LOGOUT}</a></li>
Code: Select all
accesskey="x">{L_LOGIN_LOGOUT}</a></li>
Code: Select all
<div id="message" class="rules">
Code: Select all
<div id="information" class="rules">
Code: Select all
function fontsizeup()
{
Code: Select all
function fontsizeup(event)
{
// Skip tabs; 9 being the ASCII code for a tab
if (event && getKeyCode(event) == 9)
{
return true;
}
Code: Select all
}
function fontsizedown()
{
active = getActiveStyleSheet();
Code: Select all
return false;
}
function fontsizedown(event)
{
// Skip tabs
if (event && getKeyCode(event) == 9)
{
return true;
}
var active = getActiveStyleSheet();
Code: Select all
}
function setActiveStyleSheet(title)
Code: Select all
return false;
}
function getKeyCode(event)
{
// IE doesn't fire the onkeypress event for tabs
// Reference: http://www.quirksmode.org/js/keys.html
var code = (event.keyCode) ? event.keyCode : 0;
// Probably using FF
if (!code && event.charCode)
{
code = event.charCode;
}
return code;
Code: Select all
version = 1.0.3
Code: Select all
version = 1.0.4
Code: Select all
/**
* content.css
*/
Code: Select all
.rtl .skiplink {
/* invisible skip link, used for accessibility */
position: relative;
width: 1px;
height: 1px;
overflow: hidden;
display: block;
left: 0;
}
.rtl a.feed-icon-forum {
float: left;
}
/**
* content.css
*/
.rtl ul.topiclist dfn {
/* Labels for post/view counts */
position: relative;
width: 1px;
height: 1px;
overflow: hidden;
display: block;
left: 0;
}
Code: Select all
.rtl ul.topiclist dfn, .rtl .skiplink {
position: relative;
width: 1px;
height: 1px;
overflow: hidden;
display: block;
left: 0px;
}
Code: Select all
.rtl blockquote {
margin: 0.5em 25px 0 1px;
Code: Select all
background-position: 99% 8px;
Code: Select all
.rtl #tabs {
margin: 20px 7px -1px 0;
Code: Select all
position: relative;
Code: Select all
blockquote {
background-color: #EBEADD;
background-image: url("{T_THEME_PATH}/images/quote.gif");
border-color:#DBDBCE;
}
Code: Select all
.rtl blockquote {
background-image: url("{T_THEME_PATH}/images/quote_rtl.gif");
}
Code: Select all
#navigation a:hover {
Code: Select all
.rtl #navigation a {
background-image: url("{T_THEME_PATH}/images/bg_menu_rtl.gif");
background-position: 0 100%;
}
#navigation a:hover {
background-image: none;
Code: Select all
.current {
color: #999999 !important;
}
Code: Select all
.current {
color: #000000 !important;
}
/* PM panel adjustments */
.pm-panel-header,
#cp-main .pm-message-nav {
border-bottom-color: #A4B3BF;
}
Code: Select all
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;
}
Code: Select all
html {
font-size: 100%;
/* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
height: 101%;
}
Code: Select all
p.rules img {
vertical-align: middle;
Code: Select all
padding-top: 5px;
Code: Select all
dd.lastpost {
width: 25%;
font-size: 1.1em;
}
Code: Select all
/* List in forum description */
dl.icon dt ol,
dl.icon dt ul {
list-style-position: inside;
margin-left: 1em;
}
dl.icon dt li {
display: list-item;
list-style-type: inherit;
}
Code: Select all
.content {
min-height: 3em;
overflow: hidden;
line-height: 1.4em;
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1em;
color: #333333;
Code: Select all
padding-bottom: 1px;
Code: Select all
#pm-menu {
line-height: 2.5em;
}
Code: Select all
/* PM panel adjustments */
.pm-panel-header {
margin: 0;
padding-bottom: 10px;
border-bottom: 1px dashed #A4B3BF;
}
.reply-all {
display: block;
padding-top: 4px;
clear: both;
float: left;
}
.pm-panel-message {
padding-top: 10px;
}
.pm-return-to {
padding-top: 23px;
}
#cp-main .pm-message-nav {
margin: 0;
padding: 2px 10px 5px 10px;
border-bottom: 1px dashed #A4B3BF;
}
Code: Select all
.skiplink {
position: absolute;
left: -999px;
width: 990px;
}
Code: Select all
/* Feed icon in forumlist_body.html */
a.feed-icon-forum {
float: right;
margin: 3px;
}
Code: Select all
img, .noprint, #sub-header, #sub-footer, .navbar, .box1, .divider, .signature { display: none; }
Code: Select all
/* Display smilies (Bug #47265) */
.content img {
display: inline;
}
Code: Select all
.postquote {
font-size: 85%;
Code: Select all
.postquote, blockquote {
font-size: 85%;
Code: Select all
.quote-by { font-weight: bold; }
Code: Select all
.quote-by, blockquote cite {
color: black;
display : block;
font-weight: bold;
}
/* List */
ol, ul {
margin-left: 15pt
}
Code: Select all
version = 1.0.3
Code: Select all
version = 1.0.4
Code: Select all
dl.icon {
min-height: 35px;
height: auto !important;
height: 35px;
}
Code: Select all
* html li.row dl.icon dt {
height: 35px;
overflow: visible;
}
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.3
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.3
Code: Select all
onload_functions.push('initInsertions()');
Code: Select all
if (page !== null && !isNaN(page) && page > 0)
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
Code: Select all
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
Code: Select all
s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
}
// Firefox and Opera
else
{
Code: Select all
// workaround for bug # 42885
if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '<BR>')
{
e.innerHTML = e.innerHTML + ' ';
}
Code: Select all
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Code: Select all
<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
Code: Select all
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
Code: Select all
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
<script type="text/javascript">
// <![CDATA[
Code: Select all
var jump_page = '{LA_JUMP_PAGE}:';
var on_page = '{ON_PAGE}';
var per_page = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
var style_cookie = 'phpBBstyle';
Code: Select all
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
Code: Select all
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.3
Code: Select all
.rtl .headerbar {
width: 99%;
}
Code: Select all
.rtl .navbar {
overflow: hidden;
}
Code: Select all
.rtl ul.topiclist dd {
float: right;
border-right-width: 1px;
border-right-style: solid;
border-left: none;
}
Code: Select all
.rtl ul.topiclist dfn, .rtl .skiplink {
position: relative;
width: 1px;
height: 1px;
overflow: hidden;
display: block;
left: 0px;
}
Code: Select all
/**
* tweaks.css
*/
Code: Select all
/** Reference: Bug #27155 */
.rtl #wrap, .rtl .headerbar, .rtl #site-description, .rtl .navbar {
position: relative;
}
Code: Select all
pmlist li.pm_foe_colour, .pm_foe_colour {
Code: Select all
.pmlist li.pm_foe_colour, .pm_foe_colour {
Code: Select all
select {
border-color: #666666;
background-color: #FAFAFA;
Code: Select all
color: #000;
Code: Select all
.border-top-right {
background: url("{T_THEME_PATH}/images/border_top_right.gif") no-repeat 100% 0;
width: 100%;
}
.border-bottom {
background: url("{T_THEME_PATH}/images/border_bottom2.gif") repeat-x 0 100%;
}
Code: Select all
.border-top-right {
background: url("{T_THEME_PATH}/images/border_top_right.gif") no-repeat 100% 0;
}
.border-bottom {
background: url("{T_THEME_PATH}/images/border_bottom2.gif") repeat-x 0 100%;
}
.border-left, .border-right, .border-top, .border-top-left, .border-top-right, .border-bottom { width: 100%;}
Code: Select all
.copyright {
padding: 5px;
text-align: center;
color: #555555;
Code: Select all
clear: both;
Code: Select all
div.rules ul {
Code: Select all
div.rules ul, div.rules ol {
Code: Select all
ul.topiclist dfn {
/* Labels for post/view counts */
display: none;
}
Code: Select all
ul.topiclist dfn {
/* Labels for post/view counts */
position: absolute;
left: -999px;
width: 990px;
}
Code: Select all
#topicreview h2 {
border-bottom-width: 0;
}
Code: Select all
.post-ignore .postbody {
display: none;
}
Code: Select all
a.right:hover {
color: #d2d2d2;
text-decoration: none;
background-position: 100% 60%;
}
Code: Select all
/* invisible skip link, used for accessibility */
.skiplink {
position: absolute;
left: -999px;
width: 990px;
}
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.3
Code: Select all
* html dl.details dd {
margin-left: 30%;
float: none;
}
Code: Select all
* html .forumbg table.table1 {
margin: 0 -2px 0px -1px;
}
Code: Select all
version = 1.0.1
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.1
Code: Select all
version = 1.0.2
Code: Select all
var onunload_functions = new Array();
Code: Select all
var style_cookie_settings = '{A_COOKIE_SETTINGS}';
Code: Select all
version = 1.0.1
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.1
Code: Select all
version = 1.0.2
Code: Select all
version = 1.0.0
Code: Select all
version = 1.0.1
Code: Select all
version = 1.0.0
Code: Select all
version = 1.0.1
Code: Select all
<a href="{U_TEAM}">{L_THE_TEAM}</a> •
Code: Select all
<!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a> • <!-- ENDIF -->
Code: Select all
var style_cookie = 'phpBBstyle';
Code: Select all
var style_cookie_settings = '{A_COOKIE_SETTINGS}';
Code: Select all
<body id="phpbb" class="{S_CONTENT_DIRECTION}">
Code: Select all
<body id="phpbb" class="simple {S_CONTENT_DIRECTION}">
Code: Select all
document.cookie = name + '=' + value + expires + '; path=/';
Code: Select all
document.cookie = name + '=' + value + expires + style_cookie_settings;
Code: Select all
version = 1.0.0
Code: Select all
version = 1.0.1
Code: Select all
template_bitfield = lNg=
Code: Select all
inherit_from = prosilver
Code: Select all
<!-- IF history_row.U_QUOTE -->
Code: Select all
<!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE -->
Code: Select all
<a href="{history_row.U_QUOTE}" title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a>
Code: Select all
<a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#postingbox" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}');"<!-- ENDIF --> title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a>
Code: Select all
<div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->" id="message_{history_row.MSG_ID}">
{history_row.MESSAGE}
</div>
Code: Select all
<div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->">{history_row.MESSAGE}</div>
<div id="message_{history_row.MSG_ID}" style="display: none;">{history_row.DECODED_MESSAGE}</div>
Code: Select all
html, body {
color: #536482;
background-color: #ACA8A1;
}
Code: Select all
body.simple {
background-color: #FFFFFF;
}
Code: Select all
table.table1 .info div { width: 100%; white-space: nowrap; overflow: hidden; }
Code: Select all
table.table1 .info div { width: 100%; white-space: normal; overflow: hidden; }
Code: Select all
dd .signature {
margin: 0;
padding: 0;
clear: none;
border: none;
}
Code: Select all
.signature li {
list-style-type: inherit;
}
.signature ul, .signature ol {
margin-bottom: 1em;
margin-left: 3em;
}
Code: Select all
.username-coloured {
font-weight: bold;
display: inline !important;
Code: Select all
padding: 0 !important;
Code: Select all
version = 1.0.0
Code: Select all
version = 1.0.1
Code: Select all
<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 900px;
margin: 0 auto;
}