diff options
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; +} |