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
  • #3605
Closed
Open
Issue created May 26, 2012 by Administrator@rootContributor

Better integration between input-append and search-query

Created by: jgutix

Inserting a search-query textbox inside input-append for adding a button after, cause rounded sides to dissapear, with this markup:

<form action="" class="form-search">
     <div class="input-append">
         <input type="search" class="search-query span6"><button
             class="btn" type="button"><span class="icon-search"></span></button>
     </div>
  </form>

To fix that I create next css:

.form-search .input-append .search-query {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}
.form-search .input-append button:last-child{
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

Check it here: http://jsbin.com/icosan/3 That would be nice integrate it to boostrap css source to not use this trick

Assignee
Assign to
Time tracking