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
  • #14814
Closed
Open
Issue created Oct 16, 2014 by Administrator@rootContributor

@navbar-default-link-active-bg not used in Theme gradients

Created by: code-decipher

Problem: When the value of @navbar-default-link-active-bg is modified in Customizer, the output CSS in bootstrap-theme.css and bootstrap-theme.min.css is incorrect.

Expected: Gradient should be applied to the color specified as @navbar-default-link-active-bg

Steps to Reproduce
  1. Open Bootstrap Customizer
  2. Change the value of @navbar-default-link-active-bg to # 003366
  3. Click Compile and Download
  4. Open bootstrap-theme.css
Actual:
.navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%);
  background-image: -o-linear-gradient(top, **#ebebeb** 0%, #f3f3f3 100%);
  background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%);
Expected:
.navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #036 0, #001429 100%);
  background-image: -o-linear-gradient(top, #036 0, #001429 100%);
  background-image: linear-gradient(to bottom, #036 0, #001429 100%);
Assignee
Assign to
Time tracking