stable

Clone or download

Read-only

Merge remote-tracking branch 'gerrit/burning_parrot' into stable

* gerrit/burning_parrot: (67 commits) Convert error messages and graph titles story #9588: filter in system events is kept when an event is relaunched Refactor SearchFieldsPresenterBuilders Change "Disk usage" link in user details and project details Correct js event on export data Homogenize filter panels title Style user details page Merge exports data in one tab Add page for Usage global Rename "Top projects" by "Usage per project" Style Page top users Move csv button in a dedicated tab Page One Project details Page Top projects Style project quota Page Services Use advanced search for frequencies statistics Have a consistent select box Style Usage progress Trove cat modal delete ... Conflicts: src/common/autoload.php src/common/project/Admin/DescriptionFields/ProjectDescriptionFieldBuilder.php src/common/user/Admin/PendingProjectBuilder.php src/www/admin/approve-pending.php src/www/admin/groupedit.php Change-Id: I40cde844ac8b0061e277d026ac669dd10f2e8b18

Modified Files

Name
M gulpfile.js +20 −3 Go to diff View file
M package.json +2 −0 Go to diff View file
M plugins/docman/include/docmanPlugin.class.php +2 −2 Go to diff View file
M plugins/fulltextsearch/templates/admin.mustache +1 −1 Go to diff View file
M plugins/fulltextsearch/www/themes/BurningParrot/css/_fulltextsearch.scss +0 −5 Go to diff View file
M plugins/git/include/Git/AdminAllowedProjectsPresenter.class.php +6 −1 Go to diff View file
M plugins/git/include/Git/GeneralSettingsPresenter.php +0 −2 Go to diff View file
M plugins/git/include/gitPlugin.class.php +1 −1 Go to diff View file
M plugins/git/site-content/en_US/git.tab +0 −1 Go to diff View file
M plugins/git/site-content/fr_FR/git.tab +0 −1 Go to diff View file
M plugins/git/templates/admin-plugin-general.mustache +11 −10 Go to diff View file
M plugins/git/templates/admin-plugin-gitolite-config.mustache +1 −1 Go to diff View file
M plugins/git/www/themes/BurningParrot/css/_git.scss +0 −5 Go to diff View file
M plugins/git/www/themes/BurningParrot/css/_gitolite.scss +0 −5 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminAllowedProjectsPresenter.class.php +5 −0 Go to diff View file
M plugins/phpwiki/include/PHPWikiAdminAllowedProjectsPresenter.class.php +5 −0 Go to diff View file
M plugins/pluginsadministration/include/AvailablePluginsPresenter.php +4 −0 Go to diff View file
M plugins/pluginsadministration/include/Presenter/installedPluginsPresenter.class.php +5 −0 Go to diff View file
M plugins/pluginsadministration/site-content/en_US/pluginsAdministration.tab +2 −0 Go to diff View file
M plugins/pluginsadministration/site-content/fr_FR/pluginsAdministration.tab +2 −0 Go to diff View file
M plugins/pluginsadministration/templates/available-plugins.mustache +35 −16 Go to diff View file
M plugins/pluginsadministration/templates/installed-plugins.mustache +19 −7 Go to diff View file
M plugins/pluginsadministration/www/scripts/pluginsadministration.js +1 −23 Go to diff View file
M plugins/pluginsadministration/www/themes/BurningParrot/css/_pluginsadministration.scss +1 −9 Go to diff View file
M plugins/statistics/build-manifest.json +17 −0 Go to diff View file
A plugins/statistics/include/AdminHeaderPresenter.php +73 −0 Go to diff View file
A plugins/statistics/include/DataExportPresenter.php +57 −0 Go to diff View file
A plugins/statistics/include/DataExportPresenterBuilder.php +80 −0 Go to diff View file
A plugins/statistics/include/DataExportRouter.php +81 −0 Go to diff View file
A plugins/statistics/include/DiskUsageGlobalPresenter.php +45 −0 Go to diff View file
A plugins/statistics/include/DiskUsageGlobalPresenterBuilder.php +111 −0 Go to diff View file
A plugins/statistics/include/DiskUsageProjectsPresenter.php +105 −0 Go to diff View file
A plugins/statistics/include/DiskUsageProjectsPresenterBuilder.php +177 −0 Go to diff View file
A plugins/statistics/include/DiskUsageProjectsSearchFieldsPresenter.php +33 −0 Go to diff View file
A plugins/statistics/include/DiskUsageRouter.php +230 −0 Go to diff View file
A plugins/statistics/include/DiskUsageSearchFieldsPresenter.php +53 −0 Go to diff View file
A plugins/statistics/include/DiskUsageServicesPresenter.php +72 −0 Go to diff View file
A plugins/statistics/include/DiskUsageServicesPresenterBuilder.php +258 −0 Go to diff View file
A plugins/statistics/include/DiskUsageServicesSearchFieldsPresenter.php +55 −0 Go to diff View file
A plugins/statistics/include/DiskUsageTopUsersPresenter.php +56 −0 Go to diff View file
A plugins/statistics/include/DiskUsageTopUsersPresenterBuilder.php +92 −0 Go to diff View file
A plugins/statistics/include/DiskUsageUserDetailsPresenter.php +57 −0 Go to diff View file
A plugins/statistics/include/DiskUsageUserDetailsPresenterBuilder.php +173 −0 Go to diff View file
A plugins/statistics/include/DiskUsageUserDetailsSearchFieldsPresenter.php +55 −0 Go to diff View file
A plugins/statistics/include/FrequenciesPresenter.php +52 −0 Go to diff View file
A plugins/statistics/include/FrequenciesSearchFieldsPresenter.php +54 −0 Go to diff View file
M plugins/statistics/include/ProjectQuotaHtml.class.php +81 −197 Go to diff View file
M plugins/statistics/include/ProjectQuotaManager.class.php +12 −42 Go to diff View file
A plugins/statistics/include/ProjectQuotaPresenter.php +110 −0 Go to diff View file
A plugins/statistics/include/SCMStatisticsPresenter.php +55 −0 Go to diff View file
A plugins/statistics/include/SearchFieldsPresenterBuilder.php +263 −0 Go to diff View file
A plugins/statistics/include/ServicesUsagePresenter.php +41 −0 Go to diff View file
R src/www/scripts/admin/system_events.js Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageGraph.class.php +38 −16 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageHtml.class.php +10 −162 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageManager.class.php +62 −72 Go to diff View file
M plugins/statistics/include/Statistics_ProjectQuotaDao.class.php +4 −11 Go to diff View file
A plugins/statistics/include/UsageProgressPresenter.php +34 −0 Go to diff View file
M plugins/statistics/include/autoload.php +30 −3 Go to diff View file
M plugins/statistics/include/statisticsPlugin.class.php +30 −4 Go to diff View file
M plugins/statistics/site-content/en_US/statistics.tab +92 −9 Go to diff View file
M plugins/statistics/site-content/fr_FR/statistics.tab +94 −11 Go to diff View file
A plugins/statistics/templates/admin-header.mustache +29 −0 Go to diff View file
A plugins/statistics/templates/data-export.mustache +21 −0 Go to diff View file
A plugins/statistics/templates/disk-usage-global.mustache +30 −0 Go to diff View file
A plugins/statistics/templates/disk-usage-projects.mustache +138 −0 Go to diff View file
A plugins/statistics/templates/disk-usage-services.mustache +157 −0 Go to diff View file
A plugins/statistics/templates/disk-usage-top-users.mustache +87 −0 Go to diff View file
A plugins/statistics/templates/disk-usage-user-details.mustache +125 −0 Go to diff View file
A plugins/statistics/templates/frequencies.mustache +89 −0 Go to diff View file
A plugins/statistics/templates/project-quota-add-modal.mustache +69 −0 Go to diff View file
A plugins/statistics/templates/project-quota-delete-modal.mustache +28 −0 Go to diff View file
A plugins/statistics/templates/project-quota-details-modal.mustache +42 −0 Go to diff View file
A plugins/statistics/templates/project-quota.mustache +111 −0 Go to diff View file
A plugins/statistics/templates/scm-statistics.mustache +64 −0 Go to diff View file
A plugins/statistics/templates/services-usage.mustache +50 −0 Go to diff View file
A plugins/statistics/templates/usage-progress.mustache +23 −0 Go to diff View file
A plugins/statistics/www/data_export.php +42 −0 Go to diff View file
M plugins/statistics/www/disk_usage.php +61 −437 Go to diff View file
M plugins/statistics/www/disk_usage_graph.php +12 −12 Go to diff View file
D plugins/statistics/www/frequence_stat.php +0 −250 Go to diff View file
M plugins/statistics/www/index.php +85 −30 Go to diff View file
A plugins/statistics/www/js/admin.js +81 −0 Go to diff View file
M plugins/statistics/www/project_quota.php +28 −10 Go to diff View file
M plugins/statistics/www/scm_stats.php +31 −63 Go to diff View file
M plugins/statistics/www/services_usage.php +13 −52 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/_statistics.scss +171 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/statistics/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/statistics/www/usage_stat.php +7 −36 Go to diff View file
M plugins/svn/templates/admin/repository_restore.mustache +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/AllowedProjectsPresenter.php +3 −0 Go to diff View file
M plugins/tracker/templates/siteadmin-config/emailgateway.mustache +1 −1 Go to diff View file
M plugins/tracker/templates/siteadmin-config/natures.mustache +10 −7 Go to diff View file
M plugins/tracker/www/themes/BurningParrot/css/_tracker.scss +0 −14 Go to diff View file
M plugins/userlog/templates/userlogs.mustache +1 −1 Go to diff View file
M plugins/userlog/www/themes/BurningParrot/css/_userlog.scss +0 −4 Go to diff View file
M site-content/en_US/admin/admin.tab +167 −66 Go to diff View file
M site-content/en_US/en_US.tab +1 −0 Go to diff View file
M site-content/en_US/news/news.tab +33 −4 Go to diff View file
M site-content/en_US/tracker/tracker.tab +5 −1 Go to diff View file
M site-content/fr_FR/admin/admin.tab +169 −67 Go to diff View file
M site-content/fr_FR/fr_FR.tab +2 −1 Go to diff View file
M site-content/fr_FR/news/news.tab +38 −9 Go to diff View file
M site-content/fr_FR/tracker/tracker.tab +4 −2 Go to diff View file
M src/common/ForgeAccess/AdminController.php +2 −0 Go to diff View file
M src/common/ForgeAccess/AdminPresenter.php +2 −2 Go to diff View file
M src/common/admin/AdminSidebarPresenter.php +8 −0 Go to diff View file
M src/common/admin/AdminSidebarPresenterBuilder.php +12 −3 Go to diff View file
A src/common/admin/MassmailPresenter.php +62 −0 Go to diff View file
A src/common/admin/MostRecentLoginPresenter.php +35 −0 Go to diff View file
A src/common/admin/MostRecentLoginsPresenter.php +44 −0 Go to diff View file
M src/common/autoload.php +35 −3 Go to diff View file
M src/common/event/Event.class.php +10 −0 Go to diff View file
M src/common/layout/ThemeManager.class.php +2 −10 Go to diff View file
A src/common/news/admin/AdminNewsBuilder.php +138 −0 Go to diff View file
A src/common/news/admin/AdminNewsController.php +123 −0 Go to diff View file
A src/common/news/admin/AdminNewsDao.php +75 −0 Go to diff View file
A src/common/news/admin/AdminNewsFindException.php +27 −0 Go to diff View file
A src/common/news/admin/AdminNewsListPresenter.php +71 −0 Go to diff View file
A src/common/news/admin/AdminNewsMissingTitleException.php +27 −0 Go to diff View file
A src/common/news/admin/AdminNewsPresenter.php +110 −0 Go to diff View file
A src/common/news/admin/AdminNewsRouter.php +110 −0 Go to diff View file
A src/common/news/admin/AdminNewsUpdateException.php +27 −0 Go to diff View file
A src/common/news/admin/AdminPublishedNewsPresenter.php +35 −0 Go to diff View file
A src/common/news/admin/AdminRejectedNewsPresenter.php +35 −0 Go to diff View file
A src/common/news/admin/AdminWaitingPublicationPresenter.php +38 −0 Go to diff View file
A src/common/news/admin/NewsRetriever.php +58 −0 Go to diff View file
A src/common/project/Admin/DescriptionFields/DescriptionFieldAdminPresenterBuilder.php +71 −0 Go to diff View file
A src/common/project/Admin/DescriptionFields/FieldPresenter.php +60 −0 Go to diff View file
A src/common/project/Admin/DescriptionFields/FieldsListPresenter.php +85 −0 Go to diff View file
R src/common/project/Admin/ProjectDescriptionFieldBuilder.php Go to diff View file
M src/common/project/Admin/ProjectHistoryPresenter.php +8 −6 Go to diff View file
M src/common/project/Admin/ProjectListSearchFieldsPresenter.php +2 −2 Go to diff View file
A src/common/project/Admin/ProjectMembersPresenter.php +67 −0 Go to diff View file
M src/common/svn/admin/TokenPresenter.php +5 −0 Go to diff View file
A src/common/system_event/NotificationsPresenter.php +69 −0 Go to diff View file
M src/common/system_event/SystemEvent.class.php +34 −5 Go to diff View file
M src/common/system_event/SystemEventManager.class.php +46 −122 Go to diff View file
A src/common/system_event/SystemEventPresenter.php +123 −0 Go to diff View file
A src/common/system_event/SystemEventSearchPresenter.php +140 −0 Go to diff View file
A src/common/system_event/include/Massmail.php +198 −0 Go to diff View file
M src/common/tracker/ArtifactPendingDeletionPresenter.php +4 −0 Go to diff View file
A src/common/trove/CannotMoveFatherInChildException.php +27 −0 Go to diff View file
A src/common/trove/TroveCatHierarchyRetriever.php +177 −0 Go to diff View file
A src/common/trove/TroveCatListController.php +223 −0 Go to diff View file
A src/common/trove/TroveCatListPresenter.php +91 −0 Go to diff View file
A src/common/trove/TroveCatMissingFullNameException.php +27 −0 Go to diff View file
A src/common/trove/TroveCatMissingShortNameException.php +27 −0 Go to diff View file
A src/common/trove/TroveCatParentIsRootException.php +27 −0 Go to diff View file
A src/common/trove/TroveCatRouter.php +132 −0 Go to diff View file
M src/common/trove/TrovecatDao.php +130 −11 Go to diff View file
M src/common/user/Admin/PendingProjectBuilder.php +2 −2 Go to diff View file
M src/common/user/Admin/UserListPresenter.php +0 −3 Go to diff View file
M src/common/user/Admin/UserListSearchFieldsPresenter.php +2 −2 Go to diff View file
M src/common/widget/Widget_MySystemEvent.class.php +6 −5 Go to diff View file
M src/templates/admin/anonymous/access_choice.mustache +44 −29 Go to diff View file
A src/templates/admin/description_fields/add_description_field_modal.mustache +52 −0 Go to diff View file
A src/templates/admin/description_fields/delete_description_field_modal.mustache +26 −0 Go to diff View file
A src/templates/admin/description_fields/description_fields_list.mustache +93 −0 Go to diff View file
A src/templates/admin/description_fields/edit_description_field_modal.mustache +76 −0 Go to diff View file
A src/templates/admin/global-utils/massmail.mustache +117 −0 Go to diff View file
A src/templates/admin/most_recent_logins/most-recent-logins.mustache +59 −0 Go to diff View file
A src/templates/admin/news/admin-news-details.mustache +75 −0 Go to diff View file
A src/templates/admin/news/admin-news.mustache +63 −0 Go to diff View file
M src/templates/admin/projects/project-history.mustache +2 −1 Go to diff View file
M src/templates/admin/projects/project-info.mustache +2 −2 Go to diff View file
M src/templates/admin/projects/projectlist.mustache +3 −4 Go to diff View file
M src/templates/admin/sidebar_utils.mustache +6 −1 Go to diff View file
M src/templates/admin/system_events/admin-system-events.mustache +179 −119 Go to diff View file
A src/templates/admin/system_events/modal-details-system-event.mustache +130 −0 Go to diff View file
A src/templates/admin/system_events/notifications-add-modal.mustache +62 −0 Go to diff View file
A src/templates/admin/system_events/notifications-delete-modal.mustache +28 −0 Go to diff View file
A src/templates/admin/system_events/notifications-edit-modal.mustache +53 −0 Go to diff View file
A src/templates/admin/system_events/notifications.mustache +74 −0 Go to diff View file
A src/templates/admin/trackers/modal-remove-tracker.mustache +19 −0 Go to diff View file
M src/templates/admin/trackers/pending-trackers-deletion.mustache +7 −5 Go to diff View file
A src/templates/admin/trovecategories/trovecat-modal-add.mustache +107 −0 Go to diff View file
A src/templates/admin/trovecategories/trovecat-modal-delete.mustache +27 −0 Go to diff View file
A src/templates/admin/trovecategories/trovecat-modal-edit.mustache +99 −0 Go to diff View file
A src/templates/admin/trovecategories/trovecatlist.mustache +69 −0 Go to diff View file
A src/templates/admin/users/all-users.mustache +14 −0 Go to diff View file
A src/templates/admin/users/project-members.mustache +16 −0 Go to diff View file
M src/templates/admin/users/user.mustache +1 −1 Go to diff View file
M src/templates/admin/users/userlist.mustache +2 −15 Go to diff View file
M src/templates/homepage/admin.mustache +4 −6 Go to diff View file
M src/templates/resource_restrictor/allowed-projects-list.mustache +11 −2 Go to diff View file
M src/templates/resource_restrictor/grant-only-allowed-projects.mustache +9 −2 Go to diff View file
M src/templates/svn/authentication-cache-settings.mustache +1 −1 Go to diff View file
M src/www/admin/approve-pending.php +2 −2 Go to diff View file
M src/www/admin/descfields/desc_fields_edit.php +146 −261 Go to diff View file
M src/www/admin/groupedit.php +1 −1 Go to diff View file
M src/www/admin/index.php +54 −13 Go to diff View file
M src/www/admin/lastlogins.php +28 −21 Go to diff View file
M src/www/admin/massmail.php +92 −108 Go to diff View file
M src/www/admin/massmail_execute.php +76 −120 Go to diff View file
A src/www/admin/news/index.php +59 −0 Go to diff View file
M src/www/admin/show_pending_documents.php +6 −3 Go to diff View file
M src/www/admin/system_events/adminPresenter.class.php +85 −101 Go to diff View file
M src/www/admin/system_events/index.php +81 −167 Go to diff View file
A src/www/admin/system_events/notifications.php +165 −0 Go to diff View file
D src/www/admin/trove/trove_cat_add.php +0 −91 Go to diff View file
D src/www/admin/trove/trove_cat_delete.php +0 −133 Go to diff View file
D src/www/admin/trove/trove_cat_edit.php +0 −98 Go to diff View file
M src/www/admin/trove/trove_cat_list.php +33 −58 Go to diff View file
M src/www/admin/userlist.php +35 −26 Go to diff View file
M src/www/include/trove.php +0 −26 Go to diff View file
M src/www/news/admin/index.php +19 −199 Go to diff View file
M src/www/news/index.php +4 −4 Go to diff View file
M src/www/news/news_utils.php +1 −1 Go to diff View file
A src/www/scripts/admin/generate-pie-charts.js +87 −0 Go to diff View file
A src/www/scripts/admin/massmail.js +116 −0 Go to diff View file
A src/www/scripts/admin/most-recent-logins.js +23 −0 Go to diff View file
A src/www/scripts/admin/statistics-chart.js +443 −0 Go to diff View file
A src/www/scripts/admin/system-events-notifications.js +34 −0 Go to diff View file
A src/www/scripts/admin/system-events.js +44 −0 Go to diff View file
A src/www/scripts/admin/trackers-pending-removal.js +32 −0 Go to diff View file
D src/www/scripts/codendi/MassMail.js +0 −93 Go to diff View file
A src/www/scripts/d3/v4/d3.min.js +8 −0 Go to diff View file
M src/www/scripts/tuleap/admin-access-mode.js +4 −0 Go to diff View file
A src/www/scripts/tuleap/admin-description-fields.js +73 −0 Go to diff View file
M src/www/scripts/tuleap/manage-allowed-projects-on-resource.js +4 −26 Go to diff View file
M src/www/scripts/tuleap/trovecat.js +99 −35 Go to diff View file
M src/www/themes/BurningParrot/BurningParrotTheme.php +2 −2 Go to diff View file
M src/www/themes/BurningParrot/css/_includes.scss +0 −1 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-custom-homepage.scss +0 −4 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-description-fields.scss +24 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-homepage.scss +147 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-massmail.scss +69 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-news.scss +68 −0 Go to diff View file
R src/www/themes/BurningParrot/css/includes/_siteadmin_pending-projects.scss Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-pending-tracker-removal.scss +0 −4 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-platform-access.scss +2 −5 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-project-history.scss +0 −4 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-project-list.scss +0 −8 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-project.scss +0 −4 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-system-events.scss +90 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-trovecats.scss +36 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-user-details.scss +0 −4 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin-user-list.scss +0 −8 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin.scss +6 −1 Go to diff View file
D src/www/themes/BurningParrot/css/includes/_svn.scss +0 −4 Go to diff View file
M src/www/themes/common/tlp/doc/js/editors.js +5 −0 Go to diff View file
M src/www/themes/common/tlp/doc/resources/structure/alerts/example.html +1 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/buttons/example.html +44 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/buttons/manifest.json +3 −0 Go to diff View file
M src/www/themes/common/tlp/doc/resources/structure/panes/manifest.json +2 −1 Go to diff View file
M src/www/themes/common/tlp/doc/resources/tables/empty/doc.html +1 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/filter/doc.html +7 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/filter/example.html +139 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/filter/manifest.json +3 −0 Go to diff View file
M src/www/themes/common/tlp/doc/resources/tables/manifest.json +3 −2 Go to diff View file
M src/www/themes/common/tlp/doc/resources/tables/tables/example.html +80 −23 Go to diff View file
A src/www/themes/common/tlp/src/js/filter-inline-table.js +124 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/_reset.scss +9 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_alerts.scss +4 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_forms.scss +4 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_modal.scss +2 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_pagination.scss +6 −1 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_panes.scss +9 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_tables.scss +24 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_tooltips.scss +1 −1 Go to diff View file
M src/www/tracker/admin/restore.php +31 −45 Go to diff View file