Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
masonstrap
Commits
8664f449
Commit
8664f449
authored
Mar 13, 2014
by
Thomas Park
Browse files
lumen: fix positioning and style of pager, closes #232
parent
0e307409
Changes
3
Hide whitespace changes
Inline
Side-by-side
lumen/bootstrap.css
View file @
8664f449
...
...
@@ -5918,6 +5918,8 @@ label {
.pager
>
li
>
a
,
.pagination
>
li
>
span
,
.pager
>
li
>
span
{
position
:
relative
;
top
:
0
;
border-width
:
0
1px
4px
1px
;
color
:
#555555
;
font-size
:
12px
;
...
...
@@ -5928,30 +5930,45 @@ label {
.pager
>
li
>
a
:hover
,
.pagination
>
li
>
span
:hover
,
.pager
>
li
>
span
:hover
{
margin-
top
:
1px
;
top
:
1px
;
border-bottom-width
:
3px
;
}
.pagination
>
li
>
a
:active
,
.pager
>
li
>
a
:active
,
.pagination
>
li
>
span
:active
,
.pager
>
li
>
span
:active
{
margin-
top
:
2px
;
top
:
2px
;
border-bottom-width
:
2px
;
}
.pagination
>
.disabled
>
a
:hover
,
.pager
>
.disabled
>
a
:hover
,
.pagination
>
.disabled
>
span
:hover
,
.pager
>
.disabled
>
span
:hover
{
margin-
top
:
0
;
top
:
0
;
border-width
:
0
1px
4px
1px
;
}
.pagination
>
.disabled
>
a
:active
,
.pager
>
.disabled
>
a
:active
,
.pagination
>
.disabled
>
span
:active
,
.pager
>
.disabled
>
span
:active
{
margin-
top
:
0
;
top
:
0
;
border-width
:
0
1px
4px
1px
;
}
.pager
>
li
>
a
,
.pager
>
li
>
span
,
.pager
>
.disabled
>
a
,
.pager
>
.disabled
>
span
,
.pager
>
li
>
a
:hover
,
.pager
>
li
>
span
:hover
,
.pager
>
.disabled
>
a
:hover
,
.pager
>
.disabled
>
span
:hover
,
.pager
>
li
>
a
:active
,
.pager
>
li
>
span
:active
,
.pager
>
.disabled
>
a
:active
,
.pager
>
.disabled
>
span
:active
{
border-left-width
:
2px
;
border-right-width
:
2px
;
}
.alert
{
border-width
:
0
1px
4px
1px
;
}
...
...
lumen/bootstrap.min.css
View file @
8664f449
This source diff could not be displayed because it is too large. You can
view the blob
instead.
lumen/bootswatch.less
View file @
8664f449
...
...
@@ -267,6 +267,8 @@ label {
> li > a,
> li > span {
position: relative;
top: 0;
.shadow();
color: @pagination-color;
font-size: 12px;
...
...
@@ -274,12 +276,12 @@ label {
text-transform: uppercase;
&:hover {
margin-
top: 1px;
top: 1px;
border-bottom-width: 3px;
}
&:active {
margin-
top: 2px;
top: 2px;
border-bottom-width: 2px;
}
}
...
...
@@ -288,17 +290,33 @@ label {
> .disabled > span {
&:hover {
margin-
top: 0;
top: 0;
.shadow();
}
&:active {
margin-
top: 0;
top: 0;
.shadow();
}
}
}
.pager {
> li > a,
> li > span,
> .disabled > a,
> .disabled > span {
&,
&:hover,
&:active {
border-left-width: 2px;
border-right-width: 2px;
}
}
}
// Indicators =================================================================
.alert {
...
...
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