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
6079c571
Commit
6079c571
authored
Oct 09, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #846 from MITx/feature/tomg/waiting-class
waiting class added
parents
008b8a68
9cb6331c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
0 deletions
+47
-0
cms/static/img/blue-spinner.gif
+0
-0
cms/static/sass/_base.scss
+37
-0
cms/static/sass/_graphics.scss
+10
-0
No files found.
cms/static/img/blue-spinner.gif
0 → 100644
View file @
6079c571
7.99 KB
cms/static/sass/_base.scss
View file @
6079c571
...
...
@@ -280,3 +280,39 @@ body.show-wip {
text-align
:
center
;
}
}
.waiting
{
position
:
relative
;
&
:before
{
content
:
''
;
display
:
block
;
position
:
absolute
;
top
:
0
;
left
:
0
;
z-index
:
999998
;
width
:
100%
;
height
:
100%
;
border-radius
:
inherit
;
background
:
rgba
(
255
,
255
,
255
,
.9
);
}
&
:after
{
content
:
''
;
@extend
.spinner-icon
;
display
:
block
;
position
:
absolute
;
top
:
50%
;
left
:
50%
;
margin-left
:
-10px
;
margin-top
:
-10px
;
z-index
:
999999
;
}
}
.waiting-inline
{
&
:after
{
content
:
''
;
@extend
.spinner-icon
;
}
}
\ No newline at end of file
cms/static/sass/_graphics.scss
View file @
6079c571
...
...
@@ -236,3 +236,12 @@
margin-right
:
5px
;
background
:
url(../img/large-video-icon.png)
center
no-repeat
;
}
.spinner-icon
{
display
:
inline-block
;
width
:
20px
;
height
:
20px
;
margin-left
:
10px
;
vertical-align
:
middle
;
background
:
url(../img/blue-spinner.gif)
no-repeat
;
}
\ No newline at end of file
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