Hello,
small bug in the moderation panel with the extension "Canned Messages".
https://github.com/phpbb-extensions/cannedmessages
It lacks the ability to edit and delete.
phpbb Version3.2.8
cordially
With universal :
With prosilver
Small bug extension cannedmessages - we_universal
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: Small bug extension cannedmessages
I will look at that as soon as the new motherboard for my dev PC arrives...
-
- Registered User
- Posts: 590
- Joined: Thu Jul 09, 2015 5:03 pm
Re: Small bug extension cannedmessages
Hello,
the problem is still present in version 2.65.- phpbb 3.35
thanks in advance
With universal
With prosilver
the problem is still present in version 2.65.- phpbb 3.35
thanks in advance
With universal
With prosilver
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: Small bug extension cannedmessages
It is difficult to fix this problem in the we_universal css because the extension reuses existing elements and then applies its own formatting to them.
It can however be fixed by adding a new css file for the extension: Create a new we-universal diriectory under ext/phpbb/cannedmessages/style/ and create a file cannedmessages.css containing
Then purge the phpBB cache in the ACP.
Let me know if that works for you.
It can however be fixed by adding a new css file for the extension: Create a new we-universal diriectory under ext/phpbb/cannedmessages/style/ and create a file cannedmessages.css containing
Code: Select all
.quick {
float: right;
}
.message-list-actions {
float: right !important;
padding: 2px 4px !important;
}
.parent-list {
margin-bottom: 10px !important;
}
.parent-list a {
font-weight: bold;
}
#colour_palette dt {
display: none;
}
#color_palette_placeholder {
margin-left: auto;
}
#format-buttons {
margin-top: 0;
}
#cannedmessage_preview dd {
float: left;
width: 100%;
margin-left: 0;
}
ul li:first-child dd.message-list-actions .up,
ul li:last-child dd.message-list-actions .down {
display: none;
}
ul li:first-child dd.message-list-actions .up-disabled,
ul li:last-child dd.message-list-actions .down-disabled {
display: inline !important;
}
.mcp-icon {
font-size: 1rem;
}
.mcp-icon-move {
color: #4ba5de;
}
.mcp-icon-settings {
color: #62c046;
}
.mcp-icon-delete {
color: #d74558;
}
.mcp-icon-disabled {
color: #d0d0d0;
}
ul.topiclist dt{
float: left;
}
Let me know if that works for you.
-
- Registered User
- Posts: 590
- Joined: Thu Jul 09, 2015 5:03 pm
Re: Small bug extension cannedmessages
Good morning,
sorry I didn't see the answer.
The patch didn't change anything.
Sincerely
sorry I didn't see the answer.
The patch didn't change anything.
Sincerely
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: Small bug extension cannedmessages
Hello,
Unzip this archive and upload the folder it contains to the
Unzip this archive and upload the folder it contains to the
styles/
directory of the extension.-
- Jr. Style Validator
- Posts: 990
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Small bug extension cannedmessages
Good morning
it works perfectly. A big thank-you @cabot.
Sincerely
it works perfectly. A big thank-you @cabot.
Sincerely
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm