stable

Clone or download

Read-only

Display the new navbar

Part of story #9197: Get rid of Bootstrap in site admin Todo: * Dropdown menus on projects, more and help items * Search (only the field is displayed right now) * User navigation * Logo Change-Id: I09765972467f7ad34f57d6fe524ef47a96e4fe52

Modified Files

Name
M src/www/themes/BurningParrot/BurningParrotTheme.php +10 −6 Go to diff View file
M src/www/themes/BurningParrot/HeaderPresenter.php +13 −37 Go to diff View file
A src/www/themes/BurningParrot/HeaderPresenterBuilder.php +115 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/GlobalMenuItemPresenter.php +40 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/GlobalNavPresenter.php +32 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Presenter.php +43 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/PresenterBuilder.php +70 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/SearchPresenter.php +32 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/UserNavPresenter.php +35 −0 Go to diff View file
M src/www/themes/BurningParrot/autoload.php +10 −3 Go to diff View file
A src/www/themes/BurningParrot/css/_navbar.scss +165 −0 Go to diff View file
A src/www/themes/BurningParrot/css/_structure.scss +31 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-blue.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-green.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-grey.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-orange.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-purple.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-red.scss +24 −0 Go to diff View file
M src/www/themes/BurningParrot/templates/header.mustache +7 −3 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-global-nav.mustache +10 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-search.mustache +5 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-user-nav.mustache +4 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar.mustache +15 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_avatars.scss +43 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/_components.scss +1 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/_init.scss +1 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_margins.scss +20 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-blue.scss +10 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-green.scss +10 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-grey.scss +10 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-orange.scss +10 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-purple.scss +10 −4 Go to diff View file
M src/www/themes/common/tlp/src/scss/tlp-red.scss +10 −4 Go to diff View file