stable

Clone or download

Read-only

+ Enhance navbar readability Change-Id: If80db7d2f587a394a353f298799971d77c062b4e

Modified Files

Name
M .gitignore +2 −0 Go to diff View file
M gulpfile.js +24 −7 Go to diff View file
M package.json +3 −2 Go to diff View file
M plugins/IM/include/IMPlugin.class.php +81 −89 Go to diff View file
M plugins/tracker/include/trackerPlugin.class.php +1 −1 Go to diff View file
M plugins/tracker/site-content/en_US/tracker.tab +1 −1 Go to diff View file
M plugins/tracker/site-content/fr_FR/tracker.tab +1 −1 Go to diff View file
M site-content/en_US/admin/admin.tab +31 −0 Go to diff View file
M site-content/fr_FR/admin/admin.tab +31 −0 Go to diff View file
M src/common/admin/AdminPageRenderer.php +10 −2 Go to diff View file
A src/common/admin/AdminSidebarPresenter.php +137 −0 Go to diff View file
A src/common/admin/AdminSidebarPresenterBuilder.php +136 −0 Go to diff View file
M src/common/autoload.php +4 −2 Go to diff View file
M src/common/dao/ProjectDao.class.php +17 −16 Go to diff View file
M src/common/dao/UserDao.class.php +2 −2 Go to diff View file
M src/common/layout/BaseLayout.php +9 −2 Go to diff View file
M src/common/layout/Layout.class.php +0 −9 Go to diff View file
M src/common/project/ProjectManager.class.php +8 −1 Go to diff View file
M src/common/user/UserManager.class.php +15 −1 Go to diff View file
M src/templates/admin/sidebar.mustache +6 −1 Go to diff View file
A src/templates/admin/sidebar_configuration.mustache +31 −0 Go to diff View file
A src/templates/admin/sidebar_links.mustache +12 −0 Go to diff View file
A src/templates/admin/sidebar_projects.mustache +24 −0 Go to diff View file
A src/templates/admin/sidebar_users.mustache +32 −0 Go to diff View file
A src/templates/admin/sidebar_utils.mustache +11 −0 Go to diff View file
A src/templates/admin/sidebar_version.mustache +9 −0 Go to diff View file
M src/www/admin/index.php +7 −12 Go to diff View file
M src/www/admin/userlist.php +1 −1 Go to diff View file
M src/www/themes/BurningParrot/BurningParrotTheme.php +5 −3 Go to diff View file
M src/www/themes/BurningParrot/css/_includes.scss +3 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_navbar.scss +20 −31 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-sidebar.scss +160 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_siteadmin.scss +4 −10 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_smooth-scrollbar-overrides.scss +13 −0 Go to diff View file
M src/www/themes/BurningParrot/css/includes/_structure.scss +2 −1 Go to diff View file
A src/www/themes/BurningParrot/images/admin-sidebar-search-background.png Binary file Go to diff View file
A src/www/themes/BurningParrot/js/scrollbar.js +26 −0 Go to diff View file
M src/www/themes/BurningParrot/templates/header.mustache +1 −1 Go to diff View file
A src/www/themes/BurningParrot/vendor/smooth-scrollbar/smooth-scrollbar.min.css +1 −0 Go to diff View file
A src/www/themes/BurningParrot/vendor/smooth-scrollbar/smooth-scrollbar.min.js +3 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_forms.scss +4 −1 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-blue.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-green.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-grey.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-orange.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-purple.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables-red.scss +3 −2 Go to diff View file
M src/www/themes/common/tlp/src/scss/variables/_colors.scss +18 −12 Go to diff View file