Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #24093
Closed
Open
Issue created Sep 25, 2017 by Administrator@rootContributor

macOS Chrome user-agent stylesheet will add button border-radius

Created by: razh

As part of the upcoming Chrome 62, macOS <button> elements will have a border-radius property.

https://www.chromestatus.com/features/5743649186906112

The summary of changes:

Before these CLs, the default style for buttons was:

background-color: ButtonFace; /* (-> #C0C0C0) */
border: 2px outset ButtonFace;
padding: 2px 6px 3px 6px;

After these CLs, it is:

background-color: ButtonFace; /* (-> #FFFFFF) */
border-color: #D8D8D8 #D1D1D1 #BABABA;
border-radius: 4px;
border-style: solid;
border-width: 1px;
padding: 1px 7px 2px 7px;

https://bugs.chromium.org/p/chromium/issues/detail?id=546679#c13

Among other things, this will affect button.dropdown-item elements:

https://getbootstrap.com/docs/4.0/components/dropdowns/#menu-items

screen shot 2017-09-25 at 5 52 48 pm

(background-color changed for emphasis)

Assignee
Assign to
Time tracking