Merge pull request #5822 from edx/sarina/OPEN-303

Move all lms image files into lms/static/images [OPEN-303]
This commit is contained in:
Sarina Canelake
2014-11-05 10:58:02 -05:00
5 changed files with 3 additions and 3 deletions

View File

@@ -1059,7 +1059,7 @@ class ImageInput(InputTypeBase):
self.value.strip().replace(' ', ''))
if m:
# Note: we subtract 15 to compensate for the size of the dot on the screen.
# (is a 30x30 image--lms/static/green-pointer.png).
# (is a 30x30 image--lms/static/images/green-pointer.png).
(self.gx, self.gy) = [int(x) - 15 for x in m.groups()]
else:
(self.gx, self.gy) = (0, 0)

View File

@@ -19,7 +19,7 @@
top: 0;"
>
<img
src="${STATIC_URL}green-pointer.png"
src="${STATIC_URL}images/green-pointer.png"
id="cross_${id}"
style="position: absolute; top: ${gy}px; left: ${gx}px;"
/>

View File

@@ -110,7 +110,7 @@
width: 26px;
height: 21px;
vertical-align: middle;
background: url(../img/problem-editor-icons.png) no-repeat;
background: url(../images/problem-editor-icons.png) no-repeat;
}
.problem-editor-icon.heading1 {

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB