Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
edx
edx-platform
Commits
b45b122c
Commit
b45b122c
authored
Jul 02, 2015
by
Frances Botsford
Committed by
Daniel Friedman
Jul 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed pagination styles in teams and studio
parent
3b55d882
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
144 additions
and
1 deletions
+144
-1
cms/static/sass/elements/_pagination.scss
+2
-0
lms/static/sass/_developer.scss
+142
-1
No files found.
cms/static/sass/elements/_pagination.scss
View file @
b45b122c
...
...
@@ -19,11 +19,13 @@
.nav-item
{
position
:
relative
;
display
:
inline-block
;
vertical-align
:
middle
;
}
.nav-link
{
@include
transition
(
all
$tmg-f2
ease-in-out
0s
);
display
:
block
;
border
:
0
;
padding
:
(
$baseline
/
4
)
(
$baseline
*
0
.75
);
&
.previous
{
...
...
lms/static/sass/_developer.scss
View file @
b45b122c
...
...
@@ -67,7 +67,7 @@
.payment-button
{
float
:
right
;
@include
margin-left
(
(
$baseline
/
2
)
);
&
.is-selected
{
background
:
$m-green-s1
!
important
;
}
...
...
@@ -79,4 +79,145 @@
.global-new
,
#global-navigation
{
display
:
none
;
}
// Copied from _pagination.scss in cms
.pagination
{
@include
clearfix
();
display
:
inline-block
;
width
:
flex-grid
(
3
,
12
);
&
.pagination-compact
{
@include
text-align
(
right
);
}
&
.pagination-full
{
display
:
block
;
width
:
flex-grid
(
4
,
12
);
margin
:
$baseline
auto
;
}
.nav-item
{
position
:
relative
;
display
:
inline-block
;
vertical-align
:
middle
;
}
.nav-link
{
@include
transition
(
all
$tmg-f2
ease-in-out
0s
);
display
:
block
;
border
:
0
;
background-image
:
none
;
background-color
:
transparent
;
padding
:
(
$baseline
/
2
)
(
$baseline
*
0
.75
);
&
.previous
{
margin-right
:
(
$baseline
/
2
);
}
&
.next
{
margin-left
:
(
$baseline
/
2
);
}
&
:hover
{
background-color
:
$blue
;
border-radius
:
3px
;
color
:
$white
;
}
&
.is-disabled
{
background-color
:
transparent
;
color
:
$gray-l2
;
pointer-events
:
none
;
}
}
.nav-label
{
/* This wasn't working for me, so I directly copied the rule
@extend %cont-text-sr; */
border
:
0
;
clip
:
rect
(
0
0
0
0
);
height
:
1px
;
margin
:
-1px
;
overflow
:
hidden
;
padding
:
0
;
position
:
absolute
;
width
:
1px
;
}
.pagination-form
,
.current-page
,
.page-divider
,
.total-pages
{
display
:
inline-block
;
}
.current-page
,
.page-number-input
,
.total-pages
{
@extend
%t-copy-base
;
@extend
%t-strong
;
width
:
(
$baseline
*
2
.5
);
vertical-align
:
middle
;
margin
:
0
(
$baseline
*
0
.75
);
padding
:
(
$baseline
/
4
);
text-align
:
center
;
color
:
$gray
;
}
.current-page
{
@extend
%ui-depth1
;
position
:
absolute
;
@include
left
(
-
(
$baseline
/
4
));
}
.page-divider
{
@extend
%t-title4
;
@extend
%t-regular
;
vertical-align
:
middle
;
color
:
$gray-l2
;
}
.pagination-form
{
@extend
%ui-depth2
;
position
:
relative
;
.page-number-label
,
.submit-pagination-form
{
/* This wasn't working for me, so I directly copied the rule
@extend %cont-text-sr; */
border
:
0
;
clip
:
rect
(
0
0
0
0
);
height
:
1px
;
margin
:
-1px
;
overflow
:
hidden
;
padding
:
0
;
position
:
absolute
;
width
:
1px
;
}
.page-number-input
{
@include
transition
(
all
$tmg-f2
ease-in-out
0s
);
border
:
1px
solid
transparent
;
border-bottom
:
1px
dotted
$gray-l2
;
border-radius
:
0
;
box-shadow
:
none
;
background
:
none
;
&
:hover
{
background-color
:
$white
;
opacity
:
0
.6
;
}
&
:focus
{
// borrowing the base input focus styles to match overall app
@include
linear-gradient
(
$paleYellow
,
tint
(
$paleYellow
,
90%
));
opacity
:
1
.0
;
box-shadow
:
0
0
3px
$shadow-d1
inset
;
background-color
:
$white
;
border
:
1px
solid
transparent
;
border-radius
:
3px
;
}
}
}
}
}
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