Skip to content

Commit

Permalink
Merge pull request sakaiproject#2316 from alejandrogj/SAK-30829
Browse files Browse the repository at this point in the history
SAK-30829 Margin issues in permissions when add new forum
  • Loading branch information
juanjmerono committed Apr 22, 2016
2 parents 50cb496 + 284ed7d commit 4d852f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@
<h:outputLabel for="identifyAnonAuthors"><h:outputText value="#{msgs.perm_identify_anon_authors}" /></h:outputLabel>
</h:panelGroup>
</h:panelGroup>
<h:panelGroup styleClass="checkbox_group permissionRadioGroup">
<h:panelGroup styleClass="radio_group permissionRadioGroup">
<h:outputText value="#{msgs.perm_revise_postings}" style="display:block;padding:.3em;margin:0 "/>
<h:selectOneRadio id="revisePostings" value="#{permission.revisePostings}" layout="pageDirection" onclick="setCorrespondingLevel(this.name);" disabled="#{not ForumTool.editMode}" styleClass="selectOneRadio" >
<f:selectItems value="#{ForumTool.postingOptions}" />
</h:selectOneRadio>
</h:panelGroup>
<h:panelGroup styleClass="checkbox_group permissionRadioGroup">
<h:panelGroup styleClass="radio_group permissionRadioGroup">
<h:outputText value="#{msgs.perm_delete_postings}" style="display:block;padding:.3em;margin:0"/>
<h:selectOneRadio id="deletePostings" value="#{permission.deletePostings}" layout="pageDirection" onclick="setCorrespondingLevel(this.name);" disabled="#{not ForumTool.editMode}" styleClass="selectOneRadio">
<f:selectItems value="#{ForumTool.postingOptions}" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@
.checkbox_group{
display: inline-block;
margin: 0 0.25% 0 0;
width: 24.5%;
width: 28%;
vertical-align: top;
@media #{$phone}{
display: block;
margin: 0 0 1em 0;
width: 100%;
}
}

.radio_group{
@extend .checkbox_group;
width: 20%;
}
}

#msgForum{
Expand Down

0 comments on commit 4d852f7

Please sign in to comment.