diff options
author | Magnus Hagander | 2015-01-22 14:13:16 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-22 14:13:16 +0000 |
commit | 619798df41c3749c1ae712f7d4c6afda8d7fd2e8 (patch) | |
tree | 99576451106a4e436db31db93be6c2fb255f7e4e /pgcommitfest/commitfest/static/commitfest/css/commitfest.css | |
parent | 486794d3a90951495a68449fc95902a6b53cf3cc (diff) |
Centralize stylesheets
Instead of having inline stylesheets, put them all in a separate CSS
file. This really should've been done from the beginning, but was
clearly forgotten before deployment.
Diffstat (limited to 'pgcommitfest/commitfest/static/commitfest/css/commitfest.css')
-rw-r--r-- | pgcommitfest/commitfest/static/commitfest/css/commitfest.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/static/commitfest/css/commitfest.css b/pgcommitfest/commitfest/static/commitfest/css/commitfest.css new file mode 100644 index 0000000..74cb018 --- /dev/null +++ b/pgcommitfest/commitfest/static/commitfest/css/commitfest.css @@ -0,0 +1,62 @@ +/* + * commitfest.postgresql.org specific styles + */ + +/* For close button with float disabled */ +.close-nofloat { + float: none !important; +} + +/* General form styling */ +.form-horizontal div.form-group { + margin-bottom: 10px; +} +div.form-group div.controls ul { + list-style-type: none; + margin: 0px; + padding: 0px; +} +div.form-group div.controls ul li { + display: inline; +} +div.form-group div.controls ul li label { + display: inline; + font-weight: normal; + vertical-align:middle; +} +div.form-group div.controls ul li label input { + display: inline; + vertical-align:middle; +} +div.form-group div.controls input[type='checkbox'] { + width: 10px; +} + +div.controls ul.selectable-deck li.selectable-deck-item { + display: block; +} + +div.controls ul.selectable-deck li.selectable-deck-item a.selectable-deck-remove { + float: none; + margin-left: 10px; +} + +div.form-group div.controls input.threadpick-input { + width: 80%; + display: inline; +} + + +/* + * Attach thread dialog + */ +#attachThreadListWrap.loading { + display: block; + background: url('/https/git.postgresql.org/static/commitfest/spinner.gif') no-repeat center; + width: 124px; + height: 124px; + margin: 0 auto; +} +#attachThreadListWrap.loading * { + display: none; +} |