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
84c4e347
Commit
84c4e347
authored
Aug 10, 2016
by
Chris Rodriguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving Sass partials
parent
66ea3049
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
112 additions
and
53 deletions
+112
-53
cms/static/sass/_build-v1.scss
+1
-0
cms/static/sass/elements/_vendor.scss
+0
-53
cms/static/sass/xmodule/_image-zoom-tool.scss
+55
-0
lms/static/sass/_build-course.scss
+1
-0
lms/static/sass/course/_image-zoom-tool.scss
+55
-0
No files found.
cms/static/sass/_build-v1.scss
View file @
84c4e347
...
@@ -79,6 +79,7 @@
...
@@ -79,6 +79,7 @@
@import
'xmodule/modules/css/module-styles.scss'
;
@import
'xmodule/modules/css/module-styles.scss'
;
@import
'xmodule/descriptors/css/module-styles.scss'
;
@import
'xmodule/descriptors/css/module-styles.scss'
;
@import
'xmodule/headings'
;
@import
'xmodule/headings'
;
@import
'xmodule/image-zoom-tool'
;
// styles for the custom image zoom tool
@import
'elements/xmodules'
;
// styling for Studio-specific contexts
@import
'elements/xmodules'
;
// styling for Studio-specific contexts
@import
'developer'
;
// used for any developer-created scss that needs further polish/refactoring
@import
'developer'
;
// used for any developer-created scss that needs further polish/refactoring
...
...
cms/static/sass/elements/_vendor.scss
View file @
84c4e347
...
@@ -63,59 +63,6 @@
...
@@ -63,59 +63,6 @@
.ui-timepicker-list
{
.ui-timepicker-list
{
z-index
:
100000
!
important
;
z-index
:
100000
!
important
;
}
}
//jQuery loupeAndLightbox Plugin
.zooming-image-place
{
.indicator
{
display
:
none
;
position
:
absolute
;
@include
left
(
46%
);
top
:
45%
;
width
:
50px
;
height
:
50px
;
background
:
$gray-d4
;
color
:
$white
;
font-size
:
32px
;
text-align
:
center
;
line-height
:
50px
;
}
a
:focus
{
.indicator
{
display
:
block
;
}
}
a
:hover
,
a
:active
{
.indicator
{
display
:
none
;
}
}
.larger
{
display
:
none
;
position
:
absolute
;
height
:
350px
;
width
:
350px
;
top
:
-375px
;
@include
left
(
50%
);
@include
margin-left
(
-175px
);
border-radius
:
50%
;
border
:
2px
solid
$gray-d4
;
background
:
$white
;
box-shadow
:
0
0
3px
$gray-d4
;
overflow
:
hidden
;
cursor
:
none
;
.is-visible
{
display
:
block
;
}
}
}
// ====================
// ====================
// reset styles to remove ui-lightness jquery ui theme from the tabs component (used in the add component problem tab menu)
// reset styles to remove ui-lightness jquery ui theme from the tabs component (used in the add component problem tab menu)
...
...
cms/static/sass/xmodule/_image-zoom-tool.scss
0 → 100644
View file @
84c4e347
// The LMS version is in:
// /lms/static/sass/course/_image-zoom-tool.scss
// edX image zoom tool
.zooming-image-place
{
.indicator
{
display
:
none
;
position
:
absolute
;
@include
left
(
46%
);
top
:
45%
;
width
:
50px
;
height
:
50px
;
background
:
$gray-d4
;
color
:
$white
;
font-size
:
32px
;
text-align
:
center
;
line-height
:
50px
;
}
a
:focus
{
.indicator
{
display
:
block
;
}
}
a
:hover
,
a
:active
{
.indicator
{
display
:
none
;
}
}
.larger
{
display
:
none
;
position
:
absolute
;
height
:
350px
;
width
:
350px
;
top
:
-375px
;
@include
left
(
50%
);
@include
margin-left
(
-175px
);
border-radius
:
50%
;
border
:
2px
solid
$gray-d4
;
background
:
$white
;
box-shadow
:
0
0
3px
$gray-d4
;
overflow
:
hidden
;
cursor
:
none
;
.is-visible
{
display
:
block
;
}
}
}
lms/static/sass/_build-course.scss
View file @
84c4e347
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
@import
'course/modules/student-notes'
;
// student notes
@import
'course/modules/student-notes'
;
// student notes
@import
'course/modules/calculator'
;
// calculator utility
@import
'course/modules/calculator'
;
// calculator utility
@import
'course/modules/timer'
;
// timer
@import
'course/modules/timer'
;
// timer
@import
'course/image-zoom-tool'
;
// styles for the custom image zoom tool
// course - wiki
// course - wiki
@import
"course/wiki/basic-html"
;
@import
"course/wiki/basic-html"
;
...
...
lms/static/sass/course/_image-zoom-tool.scss
0 → 100644
View file @
84c4e347
// The Studio version is in:
// /cms/static/sass/xmodule/_image-zoom-tool.scss
// edX image zoom tool
.zooming-image-place
{
.indicator
{
display
:
none
;
position
:
absolute
;
@include
left
(
46%
);
top
:
45%
;
width
:
50px
;
height
:
50px
;
background
:
$gray-d4
;
color
:
$white
;
font-size
:
32px
;
text-align
:
center
;
line-height
:
50px
;
}
a
:focus
{
.indicator
{
display
:
block
;
}
}
a
:hover
,
a
:active
{
.indicator
{
display
:
none
;
}
}
.larger
{
display
:
none
;
position
:
absolute
;
height
:
350px
;
width
:
350px
;
top
:
-375px
;
@include
left
(
50%
);
@include
margin-left
(
-175px
);
border-radius
:
50%
;
border
:
2px
solid
$gray-d4
;
background
:
$white
;
box-shadow
:
0
0
3px
$gray-d4
;
overflow
:
hidden
;
cursor
:
none
;
.is-visible
{
display
:
block
;
}
}
}
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