Merge lp://staging/~bryce/launchpad/lp-586150-whiteboard-widening into lp://staging/launchpad
Proposed by
Bryce Harrington
Status: | Merged |
---|---|
Approved by: | Curtis Hovey |
Approved revision: | no longer in the source branch. |
Merged at revision: | 10962 |
Proposed branch: | lp://staging/~bryce/launchpad/lp-586150-whiteboard-widening |
Merge into: | lp://staging/launchpad |
Diff against target: |
119 lines (+34/-38) 4 files modified
lib/canonical/launchpad/icing/style-3-0.css.in (+6/-0) lib/canonical/launchpad/icing/style.css (+0/-4) lib/lp/blueprints/templates/specification-index.pt (+27/-33) lib/lp/soyuz/templates/archive-macros.pt (+1/-1) |
To merge this branch: | bzr merge lp://staging/~bryce/launchpad/lp-586150-whiteboard-widening |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Curtis Hovey (community) | Approve | ||
Canonical Launchpad Engineering | Pending | ||
Review via email: mp+26265@code.staging.launchpad.net |
Description of the change
Gives additional horizontal space for the whiteboard section.
The Ubuntu project makes heavy use of the whiteboard for coordinating development tasks. Launchpad's stylesheet wraps lines to make prose read better. However with todo lists this tends to not work out as well. This change provides a bit more horizontal space, which makes the Ubuntu blueprint work item lists read a lot nicer.
To post a comment you must log in.
> === modified file 'lib/canonical/ launchpad/ icing/style- 3-0.css. in' launchpad/ icing/style- 3-0.css. in 2010-05-17 10:56:27 +0000 launchpad/ icing/style- 3-0.css. in 2010-05-28 03:48:33 +0000
> --- lib/canonical/
> +++ lib/canonical/
> @@ -409,6 +409,10 @@
> /* Keep the abilty to hide list entries. */
> display: none;
> }
> +div.widetext p {
> + max-width: 60em;
> + margin-bottom: 1.0em;
> + }
This is a very narrow definition makes this an exception for the blueprint
white board. It cannot will not be resued. If we really want an exception for
*just* the blueprint whiteboard, this then belongs in the page's
head-epilogue slot.
This rule needs to accommodate the kinds of markup and circumstances that
happen in many places in Launchpad to be included in the global CSS. I think
we need this rule, so the selector must be generalised.
I think .wide will suffice since we have a .narrow. I should be permitted to
use this with a table or a form. lists that should be the same width as the
paragraphs they are with so div and p are too specific
/me looks at other wide cases. package- requests {
table#
width: 60em;
margin: 1em 0;
}
Score! Well we have found a common rule that blueprints and soyuz can used
I think the rule should be:
.wide {
max-width: 60em;
margin: 1em 0;
}
Update your file and lib/lp/ soyuz/templates /archive- macros. pt requests" class="wide listing"
<table id="package-
And we can remove one more dead rule from style.css.