annotate .hgignore @ 7044:eaf600434cf5

less: change markup and styling for the logo shown in the top left corner Based on work by Dominik Ruf, but in this changeset, the goal is just to improve markup and styling while keeping exactly the same look and feel. In that process, it also fixes some browser specific issues that gave odd spacing/positioning. All styling (especially the logo image URL) is moved to CSS/LESS, using background-image styling instead of an img tag. The logo image is made a :before on the site branding text and will usually have to align with this text, so we use inline-block to align to the baseline. We set the right amount of negative margin-bottom so the image can go below the baseline. We use a "big enough" negative margin-top to allow the image to bleed outside the line height and into the 12px top padding. We assume the background image doesn't need cropping or panning and do thus not set background-size, background-position, or background-repeat.
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 27 Nov 2017 02:55:44 +0100
parents 42718729687e
children 6ef837acb0d2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
848
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
1 syntax: glob
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
2 *.pyc
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
3 *.swp
1971
3dd89d30cd28 ignore sqlite files
Marcin Kuzminski <marcin@python-works.com>
parents: 1893
diff changeset
4 *.sqlite
2555
b5c57e2176dc ignore tox stuff
Marcin Kuzminski <marcin@python-works.com>
parents: 2379
diff changeset
5 *.tox
1236
a28bd9cb6549 added egg-info,and .egg in hgignore
Marcin Kuzminski <marcin@python-works.com>
parents: 848
diff changeset
6 *.egg-info
a28bd9cb6549 added egg-info,and .egg in hgignore
Marcin Kuzminski <marcin@python-works.com>
parents: 848
diff changeset
7 *.egg
4986
7d6c4bd58abd i18n: don't include .mo files in the repo - build them on demand
Mads Kiilerich <madski@unity3d.com>
parents: 4902
diff changeset
8 *.mo
4997
9885bbacf99c .hgignore: Add .eggs/ and tarballcache/
Marc Abramowitz <marc@marc-abramowitz.com>
parents: 4986
diff changeset
9 .eggs/
9885bbacf99c .hgignore: Add .eggs/ and tarballcache/
Marc Abramowitz <marc@marc-abramowitz.com>
parents: 4986
diff changeset
10 tarballcache/
6953
42718729687e style: use npm less to generate kallithea stylesheet style.css from style.less
Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
parents: 6038
diff changeset
11 node_modules/
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
12
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
13 syntax: regexp
2106
95f1ed68cac1 ignore rcextensions
Marcin Kuzminski <marcin@python-works.com>
parents: 2007
diff changeset
14 ^rcextensions
848
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
15 ^build
4096
9496c047ea4d added dist dir to .hgignore
Marcin Kuzminski <marcin@python-works.com>
parents: 3960
diff changeset
16 ^dist/
848
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
17 ^docs/build/
a555d8345105 Small hgignore update
Lukasz Balcerzak <lukasz.balcerzak@python-center.org>
parents: 554
diff changeset
18 ^docs/_build/
9
058f63b6c2ff added hgignore
Marcin Kuzminski
parents: 0
diff changeset
19 ^data$
3908
b619d9eef67a ignore sql_dumps for testing schema migrations
Marcin Kuzminski <marcin@python-works.com>
parents: 3831
diff changeset
20 ^sql_dumps/
9
058f63b6c2ff added hgignore
Marcin Kuzminski
parents: 0
diff changeset
21 ^\.settings$
058f63b6c2ff added hgignore
Marcin Kuzminski
parents: 0
diff changeset
22 ^\.project$
72
596eb21f61d5 ignore db file
Marcin Kuzminski <marcin@python-blog.com>
parents: 9
diff changeset
23 ^\.pydevproject$
1893
27c8836e6356 ignore coverage and my local dev.ini file
Marcin Kuzminski <marcin@python-works.com>
parents: 1833
diff changeset
24 ^\.coverage$
4210
277684f23146 Rename some strings in defaults found in config files
Bradley M. Kuhn <bkuhn@sfconservancy.org>
parents: 4181
diff changeset
25 ^kallithea\.db$
460
92cacbcb5272 ignore test db
Marcin Kuzminski <marcin@python-works.com>
parents: 327
diff changeset
26 ^test\.db$
4212
24c0d584ba86 General renaming to Kallithea
Bradley M. Kuhn <bkuhn@sfconservancy.org>
parents: 4210
diff changeset
27 ^Kallithea\.egg-info$
4902
03bbd33bc084 docs: rework stuff
Mads Kiilerich <madski@unity3d.com>
parents: 4212
diff changeset
28 ^my\.ini$
2007
324ac367a4da Added VCS into rhodecode core for faster and easier deployments of new versions
Marcin Kuzminski <marcin@python-works.com>
parents: 1971
diff changeset
29 ^fabfile.py
3831
bd39c1f70e35 Updated hgignore to skip .idea config files
Marcin Kuzminski <marcin@python-works.com>
parents: 3051
diff changeset
30 ^\.idea$
5516
bfa66e8887d7 hgignore: ignore `.cache/`, created by pytest 2.8 when writing `.cache/v/cache/lastfailed`
Mads Kiilerich <madski@unity3d.com>
parents: 5416
diff changeset
31 ^\.cache$
6038
9358211ee144 tests: move test data to top level 'data' folder - make grepping in kallithea/ easier
Mads Kiilerich <madski@unity3d.com>
parents: 5516
diff changeset
32 /__pycache__$