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
61823dbf
Commit
61823dbf
authored
Jul 05, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move `hr` to scaffolding.less (out of type.less) and simplify styles
parent
88a266b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
17 deletions
+19
-17
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+7
-8
less/scaffolding.less
less/scaffolding.less
+12
-0
less/type.less
less/type.less
+0
-9
No files found.
docs/assets/css/bootstrap.css
View file @
61823dbf
...
@@ -342,6 +342,13 @@ img {
...
@@ -342,6 +342,13 @@ img {
border-radius
:
500px
;
border-radius
:
500px
;
}
}
hr
{
margin-top
:
20px
;
margin-bottom
:
20px
;
border
:
0
;
border-top
:
1px
solid
#eeeeee
;
}
p
{
p
{
margin
:
0
0
10px
;
margin
:
0
0
10px
;
}
}
...
@@ -590,14 +597,6 @@ dd {
...
@@ -590,14 +597,6 @@ dd {
clear
:
both
;
clear
:
both
;
}
}
hr
{
margin
:
20px
0
;
border
:
0
;
border-top
:
1px
solid
#eeeeee
;
border-bottom
:
1px
solid
#fff
;
border-bottom
:
1px
solid
rgba
(
255
,
255
,
255
,
0.5
);
}
abbr
[
title
],
abbr
[
title
],
abbr
[
data-original-title
]
{
abbr
[
data-original-title
]
{
cursor
:
help
;
cursor
:
help
;
...
...
less/scaffolding.less
View file @
61823dbf
...
@@ -81,3 +81,15 @@ img {
...
@@ -81,3 +81,15 @@ img {
.img-circle {
.img-circle {
border-radius: 500px; // crank the border-radius so it works with most reasonably sized images
border-radius: 500px; // crank the border-radius so it works with most reasonably sized images
}
}
// Horizontal rules
// -------------------------
hr {
margin-top: @line-height-computed;
margin-bottom: @line-height-computed;
border: 0;
border-top: 1px solid @hr-border;
}
less/type.less
View file @
61823dbf
...
@@ -164,15 +164,6 @@ dd {
...
@@ -164,15 +164,6 @@ dd {
// MISC
// MISC
// ----
// ----
// Horizontal rules
hr {
margin: @line-height-computed 0;
border: 0;
border-top: 1px solid @hr-border;
border-bottom: 1px solid #fff;
border-bottom: 1px solid rgba(255,255,255,.5);
}
// Abbreviations and acronyms
// Abbreviations and acronyms
abbr[title],
abbr[title],
// Added data-* attribute to help out our tooltip plugin, per https://github.com/twitter/bootstrap/issues/5257
// Added data-* attribute to help out our tooltip plugin, per https://github.com/twitter/bootstrap/issues/5257
...
...
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