annotate package.json @ 7183:ba8781f3f2c2

less: fix changelog commit message flowing into the labels that are floating to the right of it For long commit messages, two texts were shown on top of each other and none of them could be read. To fix that, give the floating labels a solid white background. To avoid a hard cut-off of the commit message, use a white box-shadow to the left of the labels to give a smooth transition. To avoid the commit message flowing into the td padding to the right of the labels, make log-container hide overflow.
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 21 Feb 2018 10:58:21 +0100
parents 1969f7dfb6b0
children 6c3bb9a845d7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
1 {
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
2 "name": "kallithea",
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
3 "private": true,
7057
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
4 "dependencies": {
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
5 "bootstrap": "3.3.7"
a9cbc30e19fa less: build custom Bootstrap from bootstrap.less instead of using plain upstream version
domruf <dominikruf@gmail.com>
parents: 7056
diff changeset
6 },
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
7 "devDependencies": {
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
8 "less": "~2.7",
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
9 "less-plugin-clean-css": "~1.5"
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
10 },
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
11 "scripts": {
7099
1969f7dfb6b0 move package.json to root directory
domruf <dominikruf@gmail.com>
parents: 7082
diff changeset
12 "less": "lessc --relative-urls kallithea/public/less/main.less kallithea/public/css/style.css"
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
13 }
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents:
diff changeset
14 }