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
  • Merge requests
  • !24919

package.json: add Firefox in browserslist section.

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged XhmikosR requested to merge v4-dev-xmr-browserslist into v4-dev Nov 30, 2017
  • Overview 0
  • Commits 2
  • Pipelines 0
  • Changes 1

Firefox v38 is older than the ESR, so basically replace ESR with v38.

The dist file change with the Firefox >= 38 addition is the following:

 dist/css/bootstrap.css | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index e37b3d46c..c93e561cd 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -1874,6 +1874,11 @@ pre code {
   opacity: 1;
 }
 
+.form-control::-moz-placeholder {
+  color: #868e96;
+  opacity: 1;
+}
+
 .form-control:-ms-input-placeholder {
   color: #868e96;
   opacity: 1;
@@ -4406,8 +4411,10 @@ tbody.collapse.show {
 @media (min-width: 576px) {
   .card-columns {
     -webkit-column-count: 3;
+    -moz-column-count: 3;
     column-count: 3;
     -webkit-column-gap: 1.25rem;
+    -moz-column-gap: 1.25rem;
     column-gap: 1.25rem;
   }
   .card-columns .card {

Fixes #24911 (closed), fixes #25017 (closed).

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: v4-dev-xmr-browserslist