mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/12608] Change CSS classes to prevent styling conflicts
PHPBB3-12608
This commit is contained in:
parent
c805e53da3
commit
1a3c1d5b9a
5 changed files with 15 additions and 12 deletions
|
@ -37,7 +37,7 @@ class disapprove_post extends \phpbb\notification\type\approve_post
|
||||||
*/
|
*/
|
||||||
public function get_style_class()
|
public function get_style_class()
|
||||||
{
|
{
|
||||||
return 'reported';
|
return 'notification-disapproved';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,7 +37,7 @@ class disapprove_topic extends \phpbb\notification\type\approve_topic
|
||||||
*/
|
*/
|
||||||
public function get_style_class()
|
public function get_style_class()
|
||||||
{
|
{
|
||||||
return 'reported';
|
return 'notification-disapproved';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,7 +37,7 @@ class report_pm extends \phpbb\notification\type\pm
|
||||||
*/
|
*/
|
||||||
public function get_style_class()
|
public function get_style_class()
|
||||||
{
|
{
|
||||||
return 'reported';
|
return 'notification-reported';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -36,7 +36,7 @@ class report_post extends \phpbb\notification\type\post_in_queue
|
||||||
*/
|
*/
|
||||||
public function get_style_class()
|
public function get_style_class()
|
||||||
{
|
{
|
||||||
return 'reported';
|
return 'notification-reported';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -235,14 +235,6 @@ p.post-notice.reported:before, p.post-notice.error:before {
|
||||||
background-image: url("./images/icon_topic_reported.gif");
|
background-image: url("./images/icon_topic_reported.gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification_list p.notification-time {
|
|
||||||
color: #4C5D77;
|
|
||||||
}
|
|
||||||
|
|
||||||
.notification_list .reported strong {
|
|
||||||
color: #D31141;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
--------------------------------------------------------------
|
--------------------------------------------------------------
|
||||||
Colours and backgrounds for links.css
|
Colours and backgrounds for links.css
|
||||||
|
@ -1181,3 +1173,14 @@ ul.linklist li.responsive-menu a.responsive-menu-link:hover:before, ul.linklist
|
||||||
#minitabs .dropdown-contents {
|
#minitabs .dropdown-contents {
|
||||||
background-color: #F1F8FF;
|
background-color: #F1F8FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Notifications
|
||||||
|
---------------------------------------- */
|
||||||
|
|
||||||
|
.notification_list p.notification-time {
|
||||||
|
color: #4C5D77;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.notification-reported strong, li.notification-disapproved strong {
|
||||||
|
color: #D31141;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue