Opened 13 years ago
Closed 13 years ago
#24599 closed defect (bug) (fixed)
Twenty Thirteen: Horizontal scrollbar appears in large viewports
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.6 | Priority: | normal |
| Severity: | normal | Version: | 3.6 |
| Component: | Bundled Theme | Keywords: | has-patch |
| Focuses: | Cc: |
Description (last modified by )
Starting from 1600 pixels up to 1614 pixels viewport width, the page (.site) width is 2 pixels wider than the body width, causing an horizontal scrollbar to appear. It seems to be caused by the following rule:
.site {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
which I don't understand why it has been introduced as of changeset [23962].
Attachments (1)
Change History (9)
#1
@
13 years ago
- Summary changed from Horizontal scrollbar appears in large viewports to Twenty Thirteen: Horizontal scrollbar appears in large viewports
#3
follow-up:
↓ 5
@
13 years ago
- Description modified (diff)
- Milestone changed from Awaiting Review to 3.6
#5
in reply to:
↑ 3
;
follow-up:
↓ 7
@
13 years ago
Replying to obenland:
Reproducible on http://twentythirteendemo.wordpress.com/ as described above.
The box-sizing change was to fix navbar border styles for viewports at 1600 pixels wide and above, and IIRC for when the navbar was fixed. Since we dont have a fixed navbar anymore, we can probably remove the style.
IIRC means if I recall correctly?
Note: See
TracTickets for help on using
tickets.
Reproducible on http://twentythirteendemo.wordpress.com/ as described above.
The box-sizing change was to fix navbar border styles for viewports at 1600 pixels wide and above, and IIRC for when the navbar was fixed. Since we dont have a fixed navbar anymore, we can probably remove the style.