This is a minor formatting bug in system.css in all versions of Drupal core. When editing an input filter (e.g. at admin/settings/filters/2), there's no vertical space between the "Formatting guidlines" and the "Save configuration" submit button. The content just above the submit button is generated by filter.pages.inc using <ul class="tips">. AFAICS, the "tips" class is only used in this one place, and it lacks a margin on the bottom.
Original (in system.css):

.tips {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.9em;
}

Better:

.tips {
margin-top: 0;
margin-bottom: 1em;
padding-top: 0;
padding-bottom: 0;
font-size: 0.9em;
}

CommentFileSizeAuthor
#5 Bluemarine-1.jpg39.61 KBSeanA
#5 Bluemarine-2.jpg39.33 KBSeanA
system.css_.patch292 bytesSeanA

Comments

SeanA’s picture

Version: 7.x-dev » 6.x-dev

This isn't a problem with the themes included in 7.x. But it does happen with some of the themes that come with D6 (except for Garland and Minnelli).

sun.core’s picture

Component: drupal.css » markup

Moving "drupal.css" component issues to "markup".

dawehner’s picture

Status: Active » Needs review

Update status

dawehner’s picture

A screenshot of before and after would be cool

SeanA’s picture

StatusFileSize
new39.33 KB
new39.61 KB

Okay, here are screenshots. (Such a minor issue... I must have been doing a lot of CSS tweaks that day and wanted everything to be just so.)

Status: Needs review » Needs work

The last submitted patch, system.css_.patch, failed testing.

davycw’s picture

Status: Needs work » Needs review

system.css_.patch queued for re-testing.

Status: Needs review » Needs work

The last submitted patch, system.css_.patch, failed testing.

Status: Needs work » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.