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
032f5fc9
Commit
032f5fc9
authored
Apr 03, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added style for the tooltip
parent
26c6fe29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
0 deletions
+66
-0
static/css/application.css
+36
-0
templates/sass/courseware/_video.scss
+30
-0
No files found.
static/css/application.css
View file @
032f5fc9
...
...
@@ -2945,6 +2945,42 @@ section.course-content div.video-subtitles div.video-wrapper section.video-contr
-webkit-box-shadow
:
inset
0
1px
0
#999999
;
-moz-box-shadow
:
inset
0
1px
0
#999999
;
box-shadow
:
inset
0
1px
0
#999999
;
}
section
.course-content
div
.video-subtitles
div
.video-wrapper
section
.video-controls
div
#slider
.ui-tooltip.qtip
.ui-tooltip-content
{
background
:
#993333
;
border
:
1px
solid
#4d1919
;
-webkit-border-radius
:
2px
;
-moz-border-radius
:
2px
;
-ms-border-radius
:
2px
;
-o-border-radius
:
2px
;
border-radius
:
2px
;
-webkit-box-shadow
:
inset
0
1px
0
#bf4040
;
-moz-box-shadow
:
inset
0
1px
0
#bf4040
;
box-shadow
:
inset
0
1px
0
#bf4040
;
color
:
#fff
;
font
:
bold
12px
"Open Sans"
,
"Lucida Grande"
,
"Lucida Sans Unicode"
,
"Lucida Sans"
,
Geneva
,
Verdana
,
sans-serif
;
margin-bottom
:
6px
;
padding
:
4px
;
text-align
:
center
;
-webkit-font-smoothing
:
antialiased
;
text-shadow
:
0
-1px
0
#732626
;
overflow
:
visible
;
}
section
.course-content
div
.video-subtitles
div
.video-wrapper
section
.video-controls
div
#slider
.ui-tooltip.qtip
.ui-tooltip-content
::after
{
content
:
" "
;
width
:
7px
;
height
:
7px
;
display
:
block
;
position
:
absolute
;
bottom
:
-5px
;
left
:
50%
;
margin-left
:
-3px
;
-webkit-transform
:
rotate
(
45deg
);
-moz-transform
:
rotate
(
45deg
);
-ms-transform
:
rotate
(
45deg
);
-o-transform
:
rotate
(
45deg
);
transform
:
rotate
(
45deg
);
background
:
#993333
;
border-right
:
1px
solid
#4d1919
;
border-bottom
:
1px
solid
#4d1919
;
}
section
.course-content
div
.video-subtitles
div
.video-wrapper
section
.video-controls
div
#slider
a
.ui-slider-handle
{
-webkit-border-radius
:
15px
;
-moz-border-radius
:
15px
;
...
...
templates/sass/courseware/_video.scss
View file @
032f5fc9
...
...
@@ -81,6 +81,36 @@ section.course-content {
@include
box-shadow
(
inset
0
1px
0
#999
);
}
.ui-tooltip.qtip
.ui-tooltip-content
{
background
:
$mit-red
;
border
:
1px
solid
darken
(
$mit-red
,
20%
);
@include
border-radius
(
2px
);
@include
box-shadow
(
inset
0
1px
0
lighten
(
$mit-red
,
10%
));
color
:
#fff
;
font
:
bold
12px
$body-font-family
;
margin-bottom
:
6px
;
padding
:
4px
;
text-align
:
center
;
-webkit-font-smoothing
:
antialiased
;
text-shadow
:
0
-1px
0
darken
(
$mit-red
,
10%
);
overflow
:
visible
;
&
:
:
after
{
content
:
" "
;
width
:
7px
;
height
:
7px
;
display
:
block
;
position
:
absolute
;
bottom
:
-5px
;
left
:
50%
;
margin-left
:
-3px
;
@include
transform
(
rotate
(
45deg
));
background
:
$mit-red
;
border-right
:
1px
solid
darken
(
$mit-red
,
20%
);
border-bottom
:
1px
solid
darken
(
$mit-red
,
20%
);
}
}
a
.ui-slider-handle
{
@include
border-radius
(
15px
);
@include
box-shadow
(
inset
0
1px
0
lighten
(
$mit-red
,
10%
));
...
...
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