aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/bbcode.php1
-rw-r--r--view/theme/redbasic/css/style.css4
2 files changed, 0 insertions, 5 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index a0d41ccf0..817986da0 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -1022,7 +1022,6 @@ function bbcode($Text, $options = []) {
// Check for colored text
if (strpos($Text,'[/hl]') !== false) {
$Text = preg_replace("(\[hl\](.*?)\[\/hl\])ism", "<span class=\"default-highlight\">$1</span>", $Text);
-// $Text = preg_replace("(\[hl\](.*?)\[\/hl\])ism", "<span style=\"background-color: yellow;\">$1</span>", $Text);
$Text = preg_replace("(\[hl=(.*?)\](.*?)\[\/hl\])ism", "<span style=\"background-color: $1;\">$2</span>", $Text);
}
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index ba0cc7cd2..c7948cad1 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -1808,8 +1808,4 @@ dl.bb-dl > dd > li {
span.default-highlight {
background-color: yellow;
color: #111;
- margin: 0 2px;
- padding: 2px 4px 2px 5px;
- border-radius: 4px;
- white-space: nowrap;
}