Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSaibot committed Jul 21, 2023
1 parent 7b856b2 commit a01588a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 23 deletions.
15 changes: 8 additions & 7 deletions library/src/skins/default/src/sass/tool.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,18 +224,19 @@ label {
}

.form-control-label {
font-weight: bold;
color: var(--sakai-text-color-2);
font-weight: bold;
color: var(--sakai-text-color-2);
}

.form-control-required {
.form-control-label, .form-label {
&::after {
content: ' *';
color: var(--sakai-highlight-color);
&::after {
content: ' *';
color: var(--sakai-highlight-color);
}
}
}
}
}


// to make sakai task accordion visible in account menu
.global-overlays {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ public interface DiscussionForum extends OpenForum {

public void setFaqForum(Boolean isFaqForum);

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public interface DiscussionTopic extends OpenTopic {
public Boolean getFaqTopic();

public void setFaqTopic(Boolean isFaqTopic);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4318,7 +4318,7 @@ public String processDfMsgReplyMsgFromEntire()

public String processDfMsgReplyMsg()
{
selectedMessageCount = 0;
selectedMessageCount = 0;

boolean isFaqForum = Boolean.TRUE.equals(selectedTopic.getTopic().getFaqTopic());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1383,9 +1383,9 @@ public String processPvtMsgReply() {
*/
public String processPvtMsgForward() {
log.debug("processPvtMsgForward()");

multiDeleteSuccess = false;

setDetailMsgCount = 0;
multiDeleteSuccess = false;

if (getDetailMsg() == null)
return null;
Expand Down Expand Up @@ -1466,8 +1466,8 @@ else if (fileType.equalsIgnoreCase("application/msword"))
*/
public String processPvtMsgReplyAll() {
log.debug("processPvtMsgReplyAll()");
multiDeleteSuccess = false;

multiDeleteSuccess = false;
setDetailMsgCount = 0;

if (getDetailMsg() == null)
Expand Down Expand Up @@ -2071,9 +2071,8 @@ public PrivateMessage constructMessage(boolean clearAttachments, PrivateMessage
* processDisplayPreviousMsg()
* Display the previous message from the list of decorated messages
*/
public String processDisplayPreviousMsg()
{
multiDeleteSuccess = false;
public String processDisplayPreviousMsg() {
multiDeleteSuccess = false;

List tempMsgs = getDecoratedPvtMsgs(); // all messages
int currentMsgPosition = -1;
Expand Down Expand Up @@ -2136,10 +2135,9 @@ public String processDisplayPreviousMsg()
* processDisplayNextMsg()
* Display the Next message from the list of decorated messages
*/
public String processDisplayNextMsg()
public String processDisplayNextMsg()
{
multiDeleteSuccess = false;

List tempMsgs = getDecoratedPvtMsgs();
int currentMsgPosition = -1;
if(tempMsgs != null)
Expand Down Expand Up @@ -2267,7 +2265,7 @@ else if(i==(pvtTopics.size()-1))
* processDisplayPreviousFolder()
*/
public String processDisplayPreviousTopic() {
multiDeleteSuccess = false;
multiDeleteSuccess = false;
String prevTopicTitle = getExternalParameterByKey("previousTopicTitle");
if(StringUtils.isNotEmpty(prevTopicTitle))
{
Expand Down Expand Up @@ -2302,9 +2300,8 @@ public String processDisplayPreviousTopic() {
/**
* processDisplayNextFolder()
*/
public String processDisplayNextTopic()
{
multiDeleteSuccess = false;
public String processDisplayNextTopic() {
multiDeleteSuccess = false;
String nextTitle = getExternalParameterByKey("nextTopicTitle");
if(StringUtils.isNotEmpty(nextTitle))
{
Expand Down

0 comments on commit a01588a

Please sign in to comment.