stable

Clone or download

Read-only

Import tlp (aka Tuleap UI Framework) into Tuleap

Part of story #9197: Get rid of Bootstrap in site admin The visible change is that in BurningParrot the ui appears more broken than before :). It is a good sign, meaning that the css is loaded. You can even inspect a button on the admin page and give it the class 'tlp-button-primary' to see the change. You can access to the doc of tlp at the following url: https://tuleap_web_1.tuleap-aio-dev.docker/themes/common/tlp/doc/ (adapt the url to you dev instance) Change-Id: I9517fe3f362bc67023e61c2315c9b4f5d35f00b8

Modified Files

Name
M .gitignore +2 −1 Go to diff View file
A .scss-lint.yml +247 −0 Go to diff View file
M src/www/themes/BurningParrot/templates/header.mustache +1 −0 Go to diff View file
A src/www/themes/common/tlp/.gitignore +1 −0 Go to diff View file
A src/www/themes/common/tlp/.scss-lint.yml +1 −0 Go to diff View file
A src/www/themes/common/tlp/README.md +29 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/_nav.scss +133 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/_sections.scss +95 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/main.scss +73 −0 Go to diff View file
A src/www/themes/common/tlp/doc/fonts/FontAwesome.otf Binary file Go to diff View file
A src/www/themes/common/tlp/doc/fonts/fontawesome-webfont.eot Binary file Go to diff View file
A src/www/themes/common/tlp/doc/fonts/fontawesome-webfont.svg +685 −0 Go to diff View file
A src/www/themes/common/tlp/doc/fonts/fontawesome-webfont.ttf Binary file Go to diff View file
A src/www/themes/common/tlp/doc/fonts/fontawesome-webfont.woff Binary file Go to diff View file
A src/www/themes/common/tlp/doc/fonts/fontawesome-webfont.woff2 Binary file Go to diff View file
A src/www/themes/common/tlp/doc/index.html +288 −0 Go to diff View file
A src/www/themes/common/tlp/doc/js/main.js +74 −0 Go to diff View file
A src/www/themes/common/tlp/gulpfile.js +128 −0 Go to diff View file
A src/www/themes/common/tlp/package.json +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_buttons.scss +210 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_colors.scss +68 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_components.scss +20 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_init.scss +21 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_reset.scss +74 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-blue.scss +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-green.scss +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-grey.scss +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-orange.scss +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-purple.scss +24 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-red.scss +24 −0 Go to diff View file
M tools/rpm/Makefile +10 −0 Go to diff View file
M tools/rpm/tuleap.rhel6.spec +6 −1 Go to diff View file
M tools/rpm/tuleap.spec +6 −1 Go to diff View file
M tools/utils/sass.sh +2 −2 Go to diff View file