Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SAK-50391 Resources and Samigo ui reponsiveness #12848

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@
<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")">
###################### Column labels, sort controls, expand/collapse all ##############
<caption class="skip" style="display:none">$clang.getString("sh.listcap")</caption>
Expand Down Expand Up @@ -784,6 +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 @@ -297,6 +297,7 @@
<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 @@ -654,6 +655,7 @@
<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
Loading