Support from Acquia helps fund testing for Drupal Acquia logo

Comments

iryston created an issue. See original summary.

iryston’s picture

iryston’s picture

Status: Patch (to be ported) » Needs review
iryston’s picture

Patch for the same bug in the alternative template

hgoto’s picture

I tested the patch #4. This surely fixes the problem.

  position: relative;
  top: 1px;

This code seems to be for aligning submit buttons and cancel links vertically but we don't need to add this if we remove the following lines.

body.mac input[type="submit"]{
  position: relative;
  top: 1px;
}

Is it possible to remove these lines? If so, we can keep the code simpler. I create a patch as a trial. It includes changes for both the default theme and alternative theme.

hgoto’s picture

I didn't add the prefix body.mac to all of the selector by mistake. I revised the patch #5.

BhumikaVarshney’s picture

FileSize
42.41 KB
39.33 KB

Hi @hgoto
I applied the patch #5. This fixed the problem.
Thanks!

djsagar’s picture

Version: 7.x-1.24 » 8.x-1.x-dev

There is line height issue in version of 8.x-1.x which can be resolved if we update this
line-height: 1.25em;

line-height:normal;

djsagar’s picture

FileSize
533.92 KB
Harish1688’s picture

Hi,

I have tried to reproduced the issue on local with 8.x-1.x-dev and 10.x on OS X system. found the issue their 1px difference from top, but no patch applied. So create a patch (2768769-10.patch) for the issue as per comment #8 suggestion. attached a image for reference.

Tested Steps:
1. Drupal 10 set up and Adminimal theme setup with 8.x-1.x-dev.
2. Moved on path admin/modules/uninstall/confirm, found the issue and applied the all patch but working.
3. Create a new patch, resolved the issue.

Before Patch:
issue image

After Patch:
issue image

djsagar’s picture

Status: Needs review » Reviewed & tested by the community
FileSize
117.69 KB
477.68 KB

Hi @Harish1688,

Applied patch #10 and it's resolved.

Fix to properly display cancel link on OS X system

Before Patch:
before

After Patch:
after

RTBC ++

Thanks!