Skip to content

Commit df6926c

Browse files
authored
SAM-2988 Focus lost if clicking in Numeric Response Help for assessment (sakaiproject#3119)
displayed in one web page Link replaced with a span
1 parent 5c94558 commit df6926c

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

reference/library/src/morpheus-master/sass/modules/tool/samigo/_samigo.scss

+12
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,16 @@
187187
margin-right: 1em;
188188
}
189189
}
190+
191+
.toolTipLink{
192+
color: $link-color;
193+
background-color: $link-background-color;
194+
text-decoration: underline;
195+
cursor: pointer;
196+
&:hover{
197+
color: $link-hover-color;
198+
background-color: $link-hover-background-color;
199+
text-decoration:underline;
200+
}
201+
}
190202
}

samigo/samigo-app/src/webapp/jsf/delivery/item/deliverFillInNumeric.jsp

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ should be included in file importing DeliveryMessages
2727
<!-- ATTACHMENTS -->
2828
<%@ include file="/jsf/delivery/item/attachment.jsp" %>
2929

30-
<h:outputLink value="#" styleClass="hasTooltip">
30+
<h:panelGroup styleClass="hasTooltip toolTipLink">
3131
<h:outputText value="#{deliveryMessages.additional_instructions_label}" />
32-
</h:outputLink>
32+
</h:panelGroup>
3333
<h:panelGroup layout="block" id="div_accepted_instruction" style="display:none;">
3434
<h:outputText value="#{deliveryMessages.fin_accepted_instruction} " escape="false" />
3535
<f:verbatim><br /></f:verbatim>

0 commit comments

Comments
 (0)