Skip to content

Commit

Permalink
SAK-50391 Resources and Samigo ui reponsiveness (#13007)
Browse files Browse the repository at this point in the history
  • Loading branch information
i-a-m-s-k authored Nov 12, 2024
1 parent b589efe commit fcebf08
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@
<div id="userId" style="display: none;">$userId</div>
###################### Heirarchical list of resource folders/items ##############
## style on table to override margin on small viewports
<div class="table-responsive">
<table style="margin:0;width:100%;display:table" class="table table-striped table-hover #if (!$dropboxMode) resourcesList #end" cellspacing="0" border="0" summary="$clang.getString("sh.listsum")">

<table class="table table-striped table-hover #if (!$dropboxMode) resourcesList #end" cellspacing="0" border="0" summary="$clang.getString("sh.listsum")">
###################### Column labels, sort controls, expand/collapse all ##############
<caption class="skip" style="display:none">$clang.getString("sh.listcap")</caption>
<tr class="d-none d-sm-table-row">
Expand Down Expand Up @@ -785,7 +785,7 @@
############################################# end of "Other sites" section

</table>
</div>


#foreach($key in $listActions.keySet())
<input type="hidden" id="${key}-count" value="$counter.getValue("${key}selected")" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,11 @@
&.listHier td:empty{
padding: 0;
}
@media #{$phone}{
overflow-x: auto;
display: block;
}

}

#samLiteEntryForm\:data{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@
<h:panelGroup rendered="#{author.allAssessments.size() == 0}">
<h:outputText value="#{authorFrontDoorMessages.datatables_zeroRecords}" styleClass="sak-banner-info" />
</h:panelGroup>
<div class="table-responsive">
<t:dataTable cellpadding="0" cellspacing="0" rowClasses="list-row-even,list-row-odd" styleClass="table table-hover table-striped table-bordered table-assessments" id="coreAssessments" value="#{author.allAssessments}" var="assessment" rendered="#{author.allAssessments.size() > 0}" summary="#{authorFrontDoorMessages.sum_coreAssessment}">
<%/* Title */%>
<t:column headerstyleClass="titlePending" styleClass="titlePending">
Expand Down Expand Up @@ -655,7 +654,6 @@
<t:column rendered="#{!authorization.deleteAnyAssessment and !authorization.deleteOwnAssessment}" headerstyleClass="d-none" styleClass="d-none">
</t:column>
</t:dataTable>
</div>

<div class="clearfix"></div>

Expand Down

0 comments on commit fcebf08

Please sign in to comment.