Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
21dc9b1f
Commit
21dc9b1f
authored
Jan 19, 2015
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix broken buttons
parent
e1dfe01c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
docs/content/forms.md
docs/content/forms.md
+3
-3
docs/javascript/modal.md
docs/javascript/modal.md
+2
-2
No files found.
docs/content/forms.md
View file @
21dc9b1f
...
@@ -64,7 +64,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
...
@@ -64,7 +64,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<label
for=
"exampleInputEmail2"
>
Email
</label>
<label
for=
"exampleInputEmail2"
>
Email
</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
</div>
</div>
<button
type=
"submit"
class=
"btn btn-
default
"
>
Send invitation
</button>
<button
type=
"submit"
class=
"btn btn-
primary
"
>
Send invitation
</button>
</form>
</form>
</div>
</div>
{% endexample %}
{% endexample %}
...
@@ -86,7 +86,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
...
@@ -86,7 +86,7 @@ Add `.form-inline` to your `<form>` or a parent element for left-aligned and inl
<input
type=
"checkbox"
>
Remember me
<input
type=
"checkbox"
>
Remember me
</label>
</label>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-
default
"
>
Sign in
</button>
<button
type=
"submit"
class=
"btn btn-
primary
"
>
Sign in
</button>
</form>
</form>
{% endexample %}
{% endexample %}
...
@@ -315,7 +315,7 @@ When you need to place plain text next to a form label within a form, use the `.
...
@@ -315,7 +315,7 @@ When you need to place plain text next to a form label within a form, use the `.
<label
for=
"inputPassword2"
class=
"sr-only"
>
Password
</label>
<label
for=
"inputPassword2"
class=
"sr-only"
>
Password
</label>
<input
type=
"password"
class=
"form-control"
id=
"inputPassword2"
placeholder=
"Password"
>
<input
type=
"password"
class=
"form-control"
id=
"inputPassword2"
placeholder=
"Password"
>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-
default
"
>
Confirm identity
</button>
<button
type=
"submit"
class=
"btn btn-
primary
"
>
Confirm identity
</button>
</form>
</form>
{% endexample %}
{% endexample %}
...
...
docs/javascript/modal.md
View file @
21dc9b1f
...
@@ -280,7 +280,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
...
@@ -280,7 +280,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</form>
</div>
</div>
<div
class=
"modal-footer"
>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-
default
"
data-dismiss=
"modal"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-
secondary
"
data-dismiss=
"modal"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
Send message
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
Send message
</button>
</div>
</div>
</div>
</div>
...
@@ -316,7 +316,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
...
@@ -316,7 +316,7 @@ Have a bunch of buttons that all trigger the same modal, just with slightly diff
</form>
</form>
</div>
</div>
<div
class=
"modal-footer"
>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-
default
"
data-dismiss=
"modal"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-
secondary
"
data-dismiss=
"modal"
>
Close
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
Send message
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
Send message
</button>
</div>
</div>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment