Skip to content

Commit

Permalink
Merge pull request #1180 from Timo-Breumelhof/feature/999-Moderate-Me…
Browse files Browse the repository at this point in the history
…ssage-Template
  • Loading branch information
johnhenley authored Dec 2, 2024
2 parents 7320a15 + 8dd8932 commit a18fe54
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 81 deletions.
40 changes: 19 additions & 21 deletions Dnn.CommunityForums/controls/af_confirmaction.ascx
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
<%@ Control Language="C#" AutoEventWireup="false" Codebehind="af_confirmaction.ascx.cs" Inherits="DotNetNuke.Modules.ActiveForums.af_confirmaction_new" %>
<center>
<DIV align="center" style="width:350px;">
<TABLE width="350" align="center" class="AFGrid">
<div class="dcf-confirm-action">
<table class="dcf-table AFGrid">
<tr>
<td colspan="2" class="afgrouprow">
<asp:Label id="lblTitle" runat="server" resourcekey="Title"></asp:Label></td>
<asp:Label CssClass="dcf-confirm-title" id="lblTitle" runat="server" resourcekey="Title"></asp:Label></td>
</tr>
<TR>
<TD class="Normal" colSpan="2"><br>
<asp:Label id="lblMessage" Runat="server"></asp:Label><br><br></TD>
</TR>
<TR>
<TD class="Normal" align="center">
<asp:HyperLink id="hypForums" runat="server" resourcekey="Forum" CssClass="CommandButton"></asp:HyperLink></TD>
<TD class="Normal" align="center">
<asp:HyperLink id="hypPost" runat="server" resourcekey="Topic" CssClass="CommandButton"></asp:HyperLink></TD>
</TR>
<TR>
<TD class="Normal" align="center" colSpan="2">
<asp:HyperLink id="hypHome" runat="server" resourcekey="Home" CssClass="CommandButton"></asp:HyperLink></TD>
</TR>
</TABLE>
</DIV>
</center>
<tr>
<td class="Normal" colSpan="2">
<asp:Label CssClass="dcf-confirm-message" id="lblMessage" Runat="server"></asp:Label></td>
</tr>
<tr class="dcf-confirm-buttons">
<td class="Normal">
<asp:HyperLink id="hypForums" runat="server" resourcekey="Forum" CssClass="CommandButton"></asp:HyperLink></td>
<td class="Normal">
<asp:HyperLink id="hypPost" runat="server" resourcekey="Topic" CssClass="CommandButton"></asp:HyperLink></td>
</tr>
<tr>
<td class="Normal" colSpan="2">
<asp:HyperLink id="hypHome" runat="server" resourcekey="Home" CssClass="CommandButton"></asp:HyperLink></td>
</tr>
</table>
</div>
109 changes: 49 additions & 60 deletions Dnn.CommunityForums/controls/af_confirmaction.ascx.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Dnn.CommunityForums/module.css
Original file line number Diff line number Diff line change
Expand Up @@ -1550,4 +1550,21 @@ div.dcf-mod-edit-wrap {
/* TB NEW Moderate Buttons #969 */
.dnn-community-forums .afmodrow .dnnActions > * {
margin-left: 0.5em;
}

/* TB: will need to be redone when the template is further cleaned up #999 */
.dnn-community-forums .dcf-confirm-action .dcf-confirm-title{
display:block;
font-size: 1.5em;
margin: 0.8em 0 0.5em;
}

.dnn-community-forums .dcf-confirm-action .dcf-confirm-message{
display:block;
margin-bottom: 1em;
}


.dnn-community-forums .dcf-confirm-action .dcf-confirm-buttons td{
padding: 0.5em 0;
}

0 comments on commit a18fe54

Please sign in to comment.