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
4a0a0673
Commit
4a0a0673
authored
Jul 09, 2013
by
Brian Talbot
Committed by
David Baumgold
Jul 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Studio: revises syntax of calling preset animations for notifications
parent
b4207471
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
9 deletions
+24
-9
cms/static/sass/elements/_system-feedback.scss
+24
-9
No files found.
cms/static/sass/elements/_system-feedback.scss
View file @
4a0a0673
...
...
@@ -437,7 +437,7 @@
&
.saving
{
[
class
^=
"icon"
]
{
@include
anim
-rotateClockwise
(
3s
,
linear
,
infinite
);
@include
anim
ation
(
rotateCW
3
.0s
linear
infinite
);
width
:
25px
;
margin
:
-4px
10px
0
0
;
@include
transform-origin
(
52%
60%
);
...
...
@@ -627,16 +627,16 @@
pointer-events
:
none
;
.prompt
{
opacity
:
0
.0
;
}
}
// prompt showing
/hiding
// prompt showing
&
.prompt-is-shown
{
.wrapper-view
{
-webkit-filter
:
blur
(
2px
)
grayscale
(
25%
);
filter
:
blur
(
2px
)
grayscale
(
25%
);
-webkit-filter
:
blur
(
(
$baseline
/
10
)
)
grayscale
(
25%
);
filter
:
blur
(
(
$baseline
/
10
)
)
grayscale
(
25%
);
}
.wrapper-prompt.is-shown
{
...
...
@@ -644,8 +644,23 @@
pointer-events
:
auto
;
.prompt
{
@include
anim-bounceIn
(
0
.5s
);
opacity
:
1
.0
;
@include
animation
(
bounceIn
0
.5s
ease-in-out
1
);
}
}
}
// prompt hiding
&
.prompt-is-hiding
{
.wrapper-view
{
-webkit-filter
:
blur
((
$baseline
/
10
))
grayscale
(
25%
);
filter
:
blur
((
$baseline
/
10
))
grayscale
(
25%
);
}
.wrapper-prompt
{
.prompt
{
@include
animation
(
bounceOut
0
.5s
ease-in-out
1
);
}
}
}
...
...
@@ -665,11 +680,11 @@
// varying animations
&
.is-shown
{
@include
anim
-notificationsSlideUp
(
1s
);
@include
anim
ation
(
notificationSlideUp
1
.0s
ease-in-out
1
);
}
&
.is-hiding
{
@include
anim
-notificationsSlideDown
(
0
.25s
);
@include
anim
ation
(
notificationSlideDown
0
.25s
ease-in-out
1
);
}
}
}
...
...
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