aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2013-10-19 10:14:46 -0700
committerMatt Friedman <maf675@gmail.com>2013-10-19 10:14:46 -0700
commitdd25b83ee409bda5c142ff28c2c65e6a5a9eb333 (patch)
tree4f60b00be60f6b6176238dcdd937c7f0cdc025c1 /phpBB/adm
parentf003c35fdcdee1d31326520544620d6ce0af27aa (diff)
downloadforums-dd25b83ee409bda5c142ff28c2c65e6a5a9eb333.tar
forums-dd25b83ee409bda5c142ff28c2c65e6a5a9eb333.tar.gz
forums-dd25b83ee409bda5c142ff28c2c65e6a5a9eb333.tar.bz2
forums-dd25b83ee409bda5c142ff28c2c65e6a5a9eb333.tar.xz
forums-dd25b83ee409bda5c142ff28c2c65e6a5a9eb333.zip
[ticket/11935] Tweak colour swatch table
PHPBB3-11935
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/colour_swatch.html11
1 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/adm/style/colour_swatch.html b/phpBB/adm/style/colour_swatch.html
index b968bdb625..e692a8bd91 100644
--- a/phpBB/adm/style/colour_swatch.html
+++ b/phpBB/adm/style/colour_swatch.html
@@ -11,8 +11,15 @@
color: #fff;
}
+ table {
+ border-collapse: separate;
+ border-spacing: 0;
+ border: 0;
+ }
+
td {
- border: solid 1px #333;
+ border: solid 1px #333;
+ padding: 1px;
}
.over {
@@ -56,7 +63,7 @@
{
color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
document.write('<td style="background-color: #' + color + ';" onmouseover="this.className=\'over\'" onmouseout="this.className=\'out\'">');
- document.write('<a href="#" onclick="cell(\'' + color + '\'); return false;"><img src="{T_IMAGES_PATH}spacer.gif" width="15" height="12" alt="#' + color + '" title="#' + color + '" \/><\/a>');
+ document.write('<a href="#" onclick="cell(\'' + color + '\'); return false;"><img src="{T_IMAGES_PATH}spacer.gif" width="13" height="10" alt="#' + color + '" title="#' + color + '" \/><\/a>');
document.writeln('<\/td>');
}
}