Empty commit

This commit is contained in:
Git 2013-02-12 08:00:08 +00:00
parent 91657d8624
commit ba19d68c78
19 changed files with 150 additions and 103 deletions

View File

@ -480,7 +480,7 @@ public static function filelist_delim() {
*/
public static function filelist_format_file($File) {
list($Size, $Name) = $File;
$Name = Format::make_utf8($Name);
$Name = Format::make_utf8(strtr($Name, "\n\r\t", " "));
$ExtPos = strrpos($Name, '.');
$Ext = $ExtPos ? substr($Name, $ExtPos) : '';
return sprintf("%s s%ds %s %s", $Ext, $Size, $Name, self::filelist_delim());

View File

@ -111,6 +111,11 @@
<br />
</div>
</div>
<? if (check_perms('users_mod') || check_perms("site_mark_suggestions")) { ?>
<a href="tools.php?action=suggestions" class="brackets">Scoreboard</a>
<? } ?>
<?
/*
if(check_perms('users_mod')) {

View File

@ -25,6 +25,7 @@
</div>
<?if($_GET['view'] == "scoreboard" || empty($_GET['view'])) { ?>
<div id="marked_suggestion">
<h3>Marked</h3>
<table>
<tr class="colhead">
@ -46,6 +47,8 @@
</tr>
<? }?>
</table>
</div>
<div id="implemented_suggestion">
<h3>Implemented</h3>
<table>
<tr class="colhead">
@ -68,6 +71,8 @@
</tr>
<? }?>
</table>
</div>
<div id="rejected_suggestion">
<h3>Rejected</h3>
<table>
<tr class="colhead">
@ -90,6 +95,7 @@
</tr>
<? }?>
</table>
</div>
<?
}
elseif ($_GET['view'] == "marked") {

View File

@ -101,8 +101,8 @@ function generate_tag_table($Caption, $Tag, $Details, $Limit, $ShowVotes=true, $
}
?>
<h3>Top <?=$Limit.' '.$Caption?>
<small>
<?
<small class="top10_quantity_links">
<?
switch($Limit) {
case 100: ?>
- <a href="top10.php?type=tags&amp;details=<?=$Tag?>" class="brackets">Top 10</a>
@ -125,10 +125,10 @@ function generate_tag_table($Caption, $Tag, $Details, $Limit, $ShowVotes=true, $
<tr class="colhead">
<td class="center">Rank</td>
<td>Tag</td>
<td style="text-align:right">Uses</td>
<td style="text-align: right;">Uses</td>
<? if($ShowVotes) { ?>
<td style="text-align:right">Pos. votes</td>
<td style="text-align:right">Neg. votes</td>
<td style="text-align: right;">Pos. votes</td>
<td style="text-align: right;">Neg. votes</td>
<? } ?>
</tr>
<?
@ -153,10 +153,10 @@ function generate_tag_table($Caption, $Tag, $Details, $Limit, $ShowVotes=true, $
<tr class="row<?=$Highlight?>">
<td class="center"><?=$Rank?></td>
<td><a href="<?=$URLString?><?=$Detail['Name']?>"><?=$Detail['Name']?></a></td>
<td style="text-align:right"><?=$Detail['Uses']?></td>
<td style="text-align: right;"><?=number_format($Detail['Uses'])?></td>
<? if($ShowVotes) { ?>
<td style="text-align:right"><?=$Detail['PosVotes']?></td>
<td style="text-align:right"><?=$Detail['NegVotes']?></td>
<td style="text-align: right;"><?=number_format($Detail['PosVotes'])?></td>
<td style="text-align: right;"><?=number_format($Detail['NegVotes'])?></td>
<? } ?>
</tr>
<?

View File

@ -42,7 +42,7 @@
} else {
$Details = 'all';
}
// defaults to 10 (duh)
$Limit = isset($_GET['limit']) ? intval($_GET['limit']) : 10;
$Limit = in_array($Limit, array(10, 100, 250)) ? $Limit : 10;
@ -90,7 +90,7 @@
<input type="submit" value="Filter torrents" />
</td>
</tr>
</table>
</table>
</form>
<?
}
@ -158,7 +158,7 @@
g.ReleaseType
FROM torrents AS t
LEFT JOIN torrents_group AS g ON g.ID = t.GroupID ";
if($Details=='all' || $Details=='day') {
$TopTorrentsActiveLastDay = $Cache->get_value('top10tor_day_'.$Limit.$WhereSum);
if ($TopTorrentsActiveLastDay === false) {
@ -348,9 +348,9 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
global $LoggedUser,$Categories,$ReleaseTypes;
?>
<h3>Top <?=$Limit.' '.$Caption?>
<? if(empty($_GET['advanced'])){ ?>
<small>
<?
<? if(empty($_GET['advanced'])){ ?>
<small class="top10_quantity_links">
<?
switch($Limit) {
case 100: ?>
- <a href="top10.php?details=<?=$Tag?>" class="brackets">Top 10</a>
@ -368,7 +368,7 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
- <a href="top10.php?type=torrents&amp;limit=250&amp;details=<?=$Tag?>" class="brackets">Top 250</a>
<? } ?>
</small>
<? } ?>
<? } ?>
</h3>
<table class="torrent_table cats numbering border">
<tr class="colhead">
@ -426,12 +426,12 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
// generate torrent's title
$DisplayName='';
if(!empty($Artists[$GroupID])) {
$DisplayName = Artists::display_artists($Artists[$GroupID], true, true);
}
$DisplayName.= "<a href=\"torrents.php?id=$GroupID&amp;torrentid=$TorrentID\" title=\"View Torrent\">$GroupName</a>";
if($GroupCategoryID==1 && $GroupYear>0) {
@ -496,7 +496,7 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
<a href="#" id="bookmarklink_torrent_<?=$GroupID?>" class="brackets add_bookmark" title="Add bookmark" onclick="Bookmark('torrent',<?=$GroupID?>,'Unbookmark');return false;">Bookmark</a>
<? } ?>
</span>
<?=$TorrentTags?>
</td>
<td style="text-align:right" class="nobr"><?=Format::get_size($Data)?></td>

View File

@ -40,8 +40,8 @@
JOIN users_info AS ui ON ui.UserID = u.ID
LEFT JOIN torrents AS t ON t.UserID=u.ID
WHERE u.Enabled='1'
AND Uploaded>'". 5*1024*1024*1024 ."'
AND Downloaded>'". 5*1024*1024*1024 ."'
AND Uploaded>'". 5*1024*1024*1024 ."'
AND Downloaded>'". 5*1024*1024*1024 ."'
AND (Paranoia IS NULL OR (Paranoia NOT LIKE '%\"uploaded\"%' AND Paranoia NOT LIKE '%\"downloaded\"%'))
GROUP BY u.ID";
@ -62,7 +62,7 @@
}
generate_user_table('Downloaders', 'dl', $TopUserDownloads, $Limit);
}
if($Details=='all' || $Details=='numul') {
if (!$TopUserNumUploads = $Cache->get_value('topuser_numul_'.$Limit)) {
$DB->query("$BaseQuery ORDER BY NumUploads DESC LIMIT $Limit;");
@ -101,8 +101,8 @@ function generate_user_table($Caption, $Tag, $Details, $Limit) {
global $Time;
?>
<h3>Top <?=$Limit.' '.$Caption;?>
<small>
<?
<small class="top10_quantity_links">
<?
switch($Limit) {
case 100: ?>
- <a href="top10.php?type=users&amp;details=<?=$Tag?>" class="brackets">Top 10</a>

View File

@ -62,7 +62,7 @@
$Results = $DB->collect('GroupID');
$Data = $DB->to_array('GroupID');
$Groups = Torrents::get_groups($Results);
if (count($Results) > 0) {
$DB->query('SELECT ID, CategoryID FROM torrents_group
@ -136,7 +136,7 @@
<h3>Top <?=$Limit.' '.$Caption?>
<?
if(empty($_GET['advanced'])){ ?>
<small>
<small class="top10_quantity_links">
<?
switch($Limit) {
case 100: ?>
@ -227,7 +227,7 @@
<? } ?>
<?=$TorrentTags?>
</td>
<td colspan="4" class="votes_info_td"><strong><?=$Ups?></strong> upvotes out of <strong><?=$Total?></strong> total (<span title="Score: <?=round($Score*100,4)?>">Score: <?=round($Score*100)?></span>).</td>
<td colspan="4" class="votes_info_td"><strong><?=number_format($Ups)?></strong> upvotes out of <strong><?=number_format($Total)?></strong> total (<span title="Score: <?=number_format($Score*100,4)?>">Score: <?=number_format($Score*100)?></span>).</td>
</tr>
<?
$LastRemasterYear = '-';

View File

@ -249,14 +249,14 @@ function header_link($SortKey, $DefaultWay = "desc") {
$TagLinks = array();
if ($GroupInfo['TagList'] != '') {
$TorrentTags = explode(' ', $GroupInfo['TagList']);
$MainTag = $TorrentTags[0];
foreach ($TorrentTags as $TagKey => $TagName) {
$TagName = str_replace('_', '.', $TagName);
$TagLinks[] = '<a href="torrents.php?taglist='.$TagName.'">'.$TagName.'</a>';
$TorrentTags = array();
$TagList = explode(' ', $GroupInfo['TagList']);
$MainTag = $TagList[0];
foreach ($TagList as $Tag) {
$Tag = str_replace('_', '.', $Tag);
$TorrentTags[] = '<a href="torrents.php?taglist='.$Tag.'">'.$Tag.'</a>';
}
$TagLinks = implode(', ', $TagLinks);
$TorrentTags = '<br /><div class="tags">'.$TagLinks.'</div>';
$TorrentTags = implode(', ', $TorrentTags);
} else {
$TorrentTags = '';
$MainTag = $Categories[$GroupCategoryID-1];
@ -275,11 +275,14 @@ function header_link($SortKey, $DefaultWay = "desc") {
<? } ?>
| <a href="#" onclick="Clear(<?=$TorrentID?>);return false;" title="Remove from notifications list">CL</a> ]
</span>
<strong><?=$DisplayName?></strong> <?=$ExtraInfo?>
<strong><?=$DisplayName?></strong>
<div class="torrent_info">
<?=$ExtraInfo?>
<? if ($Result['UnRead']) {
echo '<strong class="new">New!</strong>';
} ?>
<?=$TorrentTags?>
</div>
<div class="tags"><?=$TorrentTags?></div>
</td>
<td><?=$TorrentInfo['FileCount']?></td>
<td style="text-align:right" class="nobr"><?=time_diff($TorrentInfo['Time'])?></td>

View File

@ -10,11 +10,15 @@
<div class="box" id="votes">
<div class="head"><strong>Album votes</strong></div>
<div class="album_votes body">
This has <span id="upvotes" class="favoritecount"><?=$UpVotes?></span> <?=(($UpVotes==1)?'upvote':'upvotes')?> out of <span id="totalvotes" class="favoritecount"><?=$TotalVotes?></span> total<span id="upvoted" <?=($Voted!='Up'?'class="hidden"':'')?>>, including your upvote</span><span id="downvoted" <?=($Voted!='Down'?'class="hidden"':'')?>>, including your downvote</span>.
This has <span id="upvotes" class="favoritecount"><?=number_format($UpVotes)?></span> <?=(($UpVotes==1) ? 'upvote' : 'upvotes')?> out of <span id="totalvotes" class="favoritecount"><?=number_format($TotalVotes)?></span> total<span id="upvoted"<?=(($Voted!='Up') ? ' class="hidden"' : '')?>>, including your upvote</span><span id="downvoted"<?=(($Voted!='Down') ? ' class="hidden"' : '')?>>, including your downvote</span>.
<br /><br />
<? if (check_perms('site_album_votes')) { ?>
<span <?=($Voted?'class="hidden"':'')?> id="vote_message"><a href="#" class="upvote" onclick="UpVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Upvote</a> - <a href="#" class="downvote" onclick="DownVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Downvote</a></span>
<span<?=($Voted ? ' class="hidden"' : '')?> id="vote_message"><a href="#" class="brackets upvote" onclick="UpVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Upvote</a> - <a href="#" class="brackets downvote" onclick="DownVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Downvote</a></span>
<? } ?>
<span <?=($Voted?'':'class="hidden"')?> id="unvote_message">Changed your mind?<br /><a href="#" onclick="UnvoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Clear your vote</a></span>
<span<?=($Voted ? '' : ' class="hidden"')?> id="unvote_message">
Changed your mind?
<br />
<a href="#" onclick="UnvoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;" class="brackets">Clear your vote</a>
</span>
</div>
</div>

View File

@ -28,7 +28,7 @@
// Get current email (and matches)
$DB->query("
SELECT
SELECT
m.Email,
'".sqltime()."' AS Time,
m.IP,
@ -49,8 +49,8 @@
// Get historic emails (and matches)
$DB->query("
SELECT
h2.Email,
SELECT
h2.Email,
h2.Time,
h2.IP,
h3.UserID AS UserIDs,
@ -158,8 +158,8 @@
<div class="thin">
<div class="header">
<h2>Email history for <a href="user.php?id=<?=$UserID ?>"><?=$Username ?></a></h2>
<div class=" linkbox center">
<a href="userhistory.php?action=email&amp;userid=<?=$UserID?>"><strong>Old email history</strong></a>
<div class="linkbox center">
<a href="userhistory.php?action=email&amp;userid=<?=$UserID?>" class="brackets">Old email history</a>
</div>
</div>
<br />
@ -187,7 +187,7 @@
<?
if ($CurrentMatches) {
// Match on the current email
foreach($CurrentMatches as $Match) {
foreach($CurrentMatches as $Match) {
?>
<tr class="rowb">
<td><?=$Match['Username']?></td>
@ -198,8 +198,8 @@
<?=display_str($Match['IP'])?> (<?=Tools::get_country_code_by_ajax($Match['IP'])?>) <a href="user.php?action=search&amp;ip_history=on&amp;ip=<?=display_str($Match['IP'])?>" class="brackets" title="Search">S</a> <a href="http://whatismyipaddress.com/ip/<?=display_str($Match['IP'])?>" class="brackets" title="Search WIMIA.com">WI</a><br />
<?=Tools::get_host_by_ajax($Match['IP'])?>
</td>
</tr>
<?
</tr>
<?
}
}
// Old emails
@ -215,7 +215,7 @@
<?
$j=0;
// Old email
foreach ($Old as $Record) {
foreach ($Old as $Record) {
++$j;
// Matches on old email
@ -235,8 +235,8 @@
<?=display_str($Match['IP'])?> (<?=Tools::get_country_code_by_ajax($Match['IP'])?>) <a href="user.php?action=search&amp;ip_history=on&amp;ip=<?=display_str($Match['IP'])?>" class="brackets" title="Search">S</a> <a href="http://whatismyipaddress.com/ip/<?=display_str($Match['IP'])?>" class="brackets" title="Search WIMIA.com">WI</a><br />
<?=Tools::get_host_by_ajax($Match['IP'])?>
</td>
</tr>
<?
</tr>
<?
}
}
@ -254,10 +254,10 @@
<?=display_str($Record['IP'])?> (<?=Tools::get_country_code_by_ajax($Record['IP'])?>) <a href="user.php?action=search&amp;ip_history=on&amp;ip=<?=display_str($Record['IP'])?>" class="brackets" title="Search">S</a> <a href="http://whatismyipaddress.com/ip/<?=display_str($Record['IP'])?>" class="brackets" title="Search WIMIA.com">WI</a><br />
<?=Tools::get_host_by_ajax($Record['IP'])?>
</td>
</tr>
<?
</tr>
<?
if ($MatchCount > 0) {
if (isset($Matches)) {
if (isset($Matches)) {
echo $Matches;
unset($Matches);
unset($MatchCount);
@ -293,7 +293,7 @@
<?=display_str($Match['IP'])?> (<?=Tools::get_country_code_by_ajax($Match['IP'])?>) <a href="user.php?action=search&amp;ip_history=on&amp;ip=<?=display_str($Match['IP'])?>" class="brackets" title="Search">S</a> <a href="http://whatismyipaddress.com/ip/<?=display_str($Match['IP'])?>" class="brackets" title="Search WIMIA.com">WI</a><br />
<?=Tools::get_host_by_ajax($Match['IP'])?>
</td>
</tr>
</tr>
<?
}
}
@ -318,7 +318,7 @@
echo $Matches;
}
?>
?>
</table>
</div>
<? View::show_footer(); ?>

View File

@ -1978,6 +1978,9 @@ ul#userinfo_random li a:hover {
tr.torrent .bookmark > a:before { content:""; }
tr.torrent .bookmark > a:after { content:""; }
.linkbox .brackets:before, .linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #878787;
}

View File

@ -262,7 +262,7 @@ ul.thin li {
}
#userinfo img {
}
#userinfo ul {
@ -878,7 +878,7 @@ form tr {
text-align: center;
}
.spellcheck {
.spellcheck {
margin: 25px 0;
font-size: 1.25em;
font-weight: bold;
@ -887,10 +887,9 @@ form tr {
tr.torrent .bookmark > a:before { color:#999; }
tr.torrent .bookmark > a:after { color:#999; }
.linkbox .brackets:before {
color: #999;
}
.linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #999;
}

View File

@ -543,6 +543,9 @@ tr.torrent .bookmark > a:after { content: ""; }
margin-left: 20px;
}
.linkbox .brackets:before, .linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #757575;
}

View File

@ -466,6 +466,9 @@ h3{margin:10px 0}
.cats_comedy{width:30px; height:30px; background:url(https://what.cd/static/styles/minimal/images/icons/comedy.png) top left no-repeat}
.cats_comics{width:30px; height:30px; background:url(https://what.cd/static/styles/minimal/images/icons/comics.png) top left no-repeat}
.linkbox .brackets:before, .linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #757575;
}

View File

@ -35,7 +35,7 @@ input,select,textarea {
font-family: Arial,sans-serif;
font-size: 11px;
padding: 3px;
}
input:focus,textarea:focus {
@ -978,7 +978,7 @@ forum_post box vertical_margin {
}
.torrent_table tr.group_torrent td span,#torrent_table tr.group_torrent td span {
}
.torrent_table tr.group_torrent a,#torrent_table tr.group_torrent a {
@ -1492,10 +1492,15 @@ ul.collage_images {
.linkbox .brackets:before {
content: "[ ";
color: #F1F1F1;
}
.linkbox .brackets:after {
content: " ]";
}
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #F1F1F1;
}

View File

@ -1090,7 +1090,7 @@ table.border[width="100%"] {
ul.nobullet {
list-style-type: none;
}
li.graph {
@ -1312,10 +1312,13 @@ form.manage_form[name=friends] .left input[type=submit] {
margin-right: 10px;
}
.linkbox .brackets:before, .linkbox .brackets:after {
color: #444;
}
#userinfo .brackets:before, #userinfo .brackets:after {
content: "";
}
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #444;
}

View File

@ -181,7 +181,7 @@ ul.thin li { margin:0px 0px; padding:0px; }
content: url('images/gazelle.png');
}
#disclaimer_container {
#disclaimer_container {
font-size: 7pt;
color: #CCC;
}
@ -224,7 +224,7 @@ ul.thin li { margin:0px 0px; padding:0px; }
#menu ul {
margin: 0;
padding: 0;
list-style: none;
list-style: none;
}
#menu ul li {
float: left;
@ -244,15 +244,15 @@ ul.thin li { margin:0px 0px; padding:0px; }
text-decoration: none;
}
#menu ul li a:active, #menu ul li a:focus {
#menu ul li a:active, #menu ul li a:focus {
border-bottom: 3px solid #EFA82C;
}
#index #nav_index a, #torrents #nav_torrents a, #collage #nav_collages a, #requests #nav_requests a, #forums #nav_forums a, #chat #nav_irc a, #top10 #nav_top10 a, #rules #nav_rules a, #wiki #nav_wiki a, #staff #nav_staff a {
#index #nav_index a, #torrents #nav_torrents a, #collage #nav_collages a, #requests #nav_requests a, #forums #nav_forums a, #chat #nav_irc a, #top10 #nav_top10 a, #rules #nav_rules a, #wiki #nav_wiki a, #staff #nav_staff a {
border-bottom: 4px solid #111;
}
/*
/*
#nav_index a { background-position: 0 0; width: 75px; }
#nav_index a:hover { background-position: 0 -34px; }
#index #nav_index a { background-position: 0 -69px; }
@ -362,7 +362,7 @@ ul.thin li { margin:0px 0px; padding:0px; }
height: 22px;
background: url('images/content_light.png') transparent;
color: #FFF;
-moz-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
@ -385,7 +385,7 @@ ul.thin li { margin:0px 0px; padding:0px; }
padding: 0;
list-style: none;
display: block;
}
#searchbars ul li {
@ -552,7 +552,7 @@ p.min_padding {
margin-bottom: 10px;
}
.main_column .box .body {
.main_column .box .body {
font-size: 8pt;
}
@ -926,7 +926,7 @@ ul .invitetree {
overflow: auto;
}
.lightbox img {
.lightbox img {
max-width: 100%;
max-height: 100%;
background-color: transparent;
@ -934,13 +934,13 @@ ul .invitetree {
}
input[type=button], input[type=submit] {
background: #111 url(images/alert-overlay.png) repeat-x;
display: inline-block;
padding: 3px 6px 4px;
background: #111 url(images/alert-overlay.png) repeat-x;
display: inline-block;
padding: 3px 6px 4px;
margin: 3px;
color: #fff;
color: #fff;
text-decoration: none;
-moz-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
@ -956,12 +956,12 @@ input[type=button]:active , input[type=submit]:active { top: 1px; }
input[type="button"]:active, input[type="button"]:focus, input[type="submit"]:active, input[type="submit"]:focus {
/* background: #262626 url(images/load.gif) no-repeat center center; */
display: inline-block;
padding: 3px 6px 4px;
display: inline-block;
padding: 3px 6px 4px;
margin: 3px;
color: #fff;
color: #fff;
text-decoration: none;
-moz-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
@ -1018,7 +1018,7 @@ option, option:active, option:focus {
border: 0;
font-family: Helvetica, Arial, sans-serif;
}
select:hover, option:hover {
background: #3F3F3F;
}
@ -1027,7 +1027,7 @@ select:hover, option:hover {
color: #444;
}
.spellcheck {
.spellcheck {
margin: 10px 0;
font-size: 1.25em;
font-weight: bold;
@ -1038,16 +1038,27 @@ ul, ol{
}
tr.torrent .bookmark > a:before {
color:#646054;
color: #646054;
}
tr.torrent .bookmark > a:after {
color:#646054;
color: #646054;
}
#requests .forum_post textarea { /* overriding the inline 80-character monospace */
max-width: 409px;
}
.linkbox .brackets:before, .linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #FCFCFC;
}
#userinfo_username .brackets:before {
content: "[";
}
#userinfo_username .brackets:after {
content: "]";
}

View File

@ -1738,6 +1738,9 @@ table.noavatar, table.noavatar tr, table.noavatar td.body, table.noavatar td.bod
tr.torrent .bookmark > a:before { content:""; }
tr.torrent .bookmark > a:after { content:""; }
.linkbox .brackets:before, .linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #575757;
}

View File

@ -759,10 +759,9 @@ tr.torrent .bookmark > a:after { content:""; }
margin-left: 20px;
}
.linkbox .brackets:before {
color: #666;
}
.linkbox .brackets:after {
.linkbox .brackets:before,
.linkbox .brackets:after,
.top10_quantity_links .brackets:before,
.top10_quantity_links .brackets:after {
color: #666;
}