Make WordPress Core

Opened 15 years ago

Closed 15 years ago

#19147 closed defect (bug) (fixed)

Admin bar shortlink input is missing left padding

Reported by: duck_ Owned by: duck_
Priority: normal Milestone: 3.3
Component: UI Version: 3.3
Severity: normal Keywords: has-patch
Cc: Focuses:

Description

The #wpadminbar .shortlink-input left/right padding of 1em

#wpadminbar .shortlink-input {
    padding: 0 1em;
}

is overridden by the CSS which adds top/bottom padding for #wpadminbar .quicklinks .menupop ul

#wpadminbar .quicklinks .menupop ul,
#wpadminbar .shortlink-input {
    padding: 6px 0;
}

Patch attached uses padding-top and padding-bottom instead of the shorthand for the 6px padding.

See [18695], #18197.

Attachments (1)

19147.diff (526 bytes ) - added by duck_ 15 years ago.

Download all attachments as: .zip

Change History (2)

@duck_
15 years ago

#1 @duck_
15 years ago

  • Owner set to duck_
  • Resolutionfixed
  • Status newclosed

In [19161]:

Don't override .shortlink-input left/right padding of 1em with CSS shorthand later on. Fixes #19147.

Note: See TracTickets for help on using tickets.