Skip to content

Commit

Permalink
SAK-33961 solving style issues with forum date fields (sakaiproject#5346
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bgarciaentornos authored and ern committed Feb 28, 2018
1 parent 30079f0 commit 7f4086e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions msgcntr/messageforums-app/src/webapp/css/msgcntr.css
Original file line number Diff line number Diff line change
Expand Up @@ -681,3 +681,12 @@ div.msgcntr-profile-qtip {
cursor: pointer;
font-size: 20px !important;
}

#revise\:closeDateSpan #revise\:closeDate, #revise\:openDateSpan #revise\:openDate {
width: auto;
margin-left: 10px;
}

.openDateSpan {
display: block;
}
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
<f:selectItem itemValue="true" itemLabel="#{msgs.cdfm_forum_avail_date}"/>
</h:selectOneRadio>
</h:panelGroup>
<h:panelGroup id="openDateSpan" styleClass="checkbox indnt2 openDateSpan calWidget" style="display: #{ForumTool.selectedForum.availabilityRestricted ? '' : 'none'}">
<h:panelGroup id="openDateSpan" styleClass="indnt2 openDateSpan calWidget" style="display: #{ForumTool.selectedForum.availabilityRestricted ? 'block' : 'none'}">
<h:outputLabel value="#{msgs.openDate}: " for="openDate"/>

<h:inputText id="openDate" styleClass="openDate" value="#{ForumTool.selectedForum.openDate}"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@
<f:selectItem itemValue="true" itemLabel="#{msgs.cdfm_forum_avail_date}"/>
</h:selectOneRadio>
</h:panelGroup>
<h:panelGroup id="openDateSpan" styleClass="indnt2 openDateSpan calWidget" style="display: #{ForumTool.selectedTopic.availabilityRestricted ? '' : 'none'}">
<h:panelGroup id="openDateSpan" styleClass="indnt2 openDateSpan calWidget" style="display: #{ForumTool.selectedTopic.availabilityRestricted ? 'block' : 'none'}">

<h:outputLabel value="#{msgs.openDate}: " for="openDate"/>

<h:inputText id="openDate" styleClass="openDate2" value="#{ForumTool.selectedTopic.openDate}"/>
<h:inputText id="openDate" styleClass="openDate" value="#{ForumTool.selectedTopic.openDate}"/>


</h:panelGroup>
Expand Down

0 comments on commit 7f4086e

Please sign in to comment.