Easy sorting
This commit is contained in:
parent
cf24b5b06f
commit
852efc35fa
@ -625,11 +625,10 @@ class DmsfController < ApplicationController
|
||||
end
|
||||
|
||||
def get_query
|
||||
use_session = !request.format.csv?
|
||||
if Redmine::Plugin.installed?(:easy_extensions)
|
||||
@query = DmsfQuery.new
|
||||
@query.project = @project
|
||||
@query = retrieve_query_without_easy_extensions(DmsfQuery, use_session)
|
||||
else
|
||||
use_session = !request.format.csv?
|
||||
@query = retrieve_query(DmsfQuery, use_session)
|
||||
end
|
||||
end
|
||||
|
||||
@ -344,7 +344,21 @@ div[id*="revision_access_"] {
|
||||
|
||||
/* EasyExtensions - font icons */
|
||||
.icon-actions::before {
|
||||
content: "\F1D8" !important;
|
||||
content: "\F1D8";
|
||||
}
|
||||
|
||||
table.dmsf a.sort {
|
||||
padding-right: 16px;
|
||||
background-position: 100% 50%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
table.dmsf a.sort.desc.icon.icon-sorted-asc {
|
||||
background-image: url("../../../images/arrow_up.png") !important;
|
||||
}
|
||||
|
||||
table.dmsf a.sort.asc.icon.icon-sorted-desc {
|
||||
background-image: url("../../../images/arrow_down.png") !important;
|
||||
}
|
||||
|
||||
/* EasyExtensions - Approval workflows */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user