Easy sorting
This commit is contained in:
parent
cf24b5b06f
commit
852efc35fa
@ -625,11 +625,10 @@ class DmsfController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def get_query
|
def get_query
|
||||||
|
use_session = !request.format.csv?
|
||||||
if Redmine::Plugin.installed?(:easy_extensions)
|
if Redmine::Plugin.installed?(:easy_extensions)
|
||||||
@query = DmsfQuery.new
|
@query = retrieve_query_without_easy_extensions(DmsfQuery, use_session)
|
||||||
@query.project = @project
|
|
||||||
else
|
else
|
||||||
use_session = !request.format.csv?
|
|
||||||
@query = retrieve_query(DmsfQuery, use_session)
|
@query = retrieve_query(DmsfQuery, use_session)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -344,7 +344,21 @@ div[id*="revision_access_"] {
|
|||||||
|
|
||||||
/* EasyExtensions - font icons */
|
/* EasyExtensions - font icons */
|
||||||
.icon-actions::before {
|
.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 */
|
/* EasyExtensions - Approval workflows */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user