Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
3bd42511
Commit
3bd42511
authored
11 years ago
by
liuyl
Browse files
Options
Download
Email Patches
Plain Diff
refactor pagination
parent
d483e775
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/css/bootstrap.css
+4
-4
docs/assets/css/bootstrap.css
less/pagination.less
+52
-42
less/pagination.less
with
56 additions
and
46 deletions
+56
-46
docs/assets/css/bootstrap.css
+
4
-
4
View file @
3bd42511
...
@@ -3339,10 +3339,10 @@ button.close {
...
@@ -3339,10 +3339,10 @@ button.close {
cursor
:
default
;
cursor
:
default
;
}
}
.pagination
>
.disabled
>
span
,
.pagination
>
.disabled
span
,
.pagination
>
.disabled
>
a
,
.pagination
>
.disabled
a
,
.pagination
>
.disabled
>
a
:hover
,
.pagination
>
.disabled
a
:hover
,
.pagination
>
.disabled
>
a
:focus
{
.pagination
>
.disabled
a
:focus
{
color
:
#999999
;
color
:
#999999
;
cursor
:
default
;
cursor
:
default
;
background-color
:
#ffffff
;
background-color
:
#ffffff
;
...
...
This diff is collapsed.
Click to expand it.
less/pagination.less
+
52
-
42
View file @
3bd42511
...
@@ -6,49 +6,59 @@
...
@@ -6,49 +6,59 @@
padding-left: 0;
padding-left: 0;
margin: @line-height-computed 0;
margin: @line-height-computed 0;
border-radius: @border-radius-base;
border-radius: @border-radius-base;
> li {
display: inline; // Remove list-style and block-level defaults
> a,
> span,{
float: left; // Collapse white-space
padding: 4px 12px;
line-height: @line-height-base;
text-decoration: none;
background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-left-width: 0;
}
}
> li > a:hover,
> li > a:focus,
> .active > a,
> .active > span {
background-color: @pagination-active-bg;
}
> .active > a,
> .active > span {
color: @gray-light;
cursor: default;
}
> .disabled {
span,
a,
a:hover,
a:focus {
color: @gray-light;
background-color: @pagination-bg;
cursor: default;
}
}
> li:first-child {
> a,
> span {
border-left-width: 1px;
.border-left-radius(@border-radius-base);
}
}
> li:last-child {
> a,
> span {
.border-right-radius(@border-radius-base);
}
}
}
}
.pagination > li {
display: inline; // Remove list-style and block-level defaults
}
.pagination > li > a,
.pagination > li > span {
float: left; // Collapse white-space
padding: 4px 12px;
line-height: @line-height-base;
text-decoration: none;
background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-left-width: 0;
}
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > .active > a,
.pagination > .active > span {
background-color: @pagination-active-bg;
}
.pagination > .active > a,
.pagination > .active > span {
color: @gray-light;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: @gray-light;
background-color: @pagination-bg;
cursor: default;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
border-left-width: 1px;
.border-left-radius(@border-radius-base);
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
.border-right-radius(@border-radius-base);
}
// Sizing
// Sizing
// --------------------------------------------------
// --------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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