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
f2be01fd
Commit
f2be01fd
authored
Oct 03, 2012
by
Tom Giannattasio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed visibility toggles; added private tag
parent
e1fbe1e0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
20 deletions
+22
-20
cms/static/sass/_cms_mixins.scss
+2
-1
cms/static/sass/_graphics.scss
+1
-0
cms/static/sass/_unit.scss
+16
-15
cms/templates/overview.html
+3
-4
No files found.
cms/static/sass/_cms_mixins.scss
View file @
f2be01fd
...
...
@@ -157,7 +157,8 @@
}
.draft-item
,
.hidden-item
{
.hidden-item
,
.private-item
{
color
:
#a4aab7
;
}
...
...
cms/static/sass/_graphics.scss
View file @
f2be01fd
...
...
@@ -111,6 +111,7 @@
.draft-tag
,
.hidden-tag
,
.private-tag
,
.has-new-draft-tag
{
margin-left
:
3px
;
font-size
:
9px
;
...
...
cms/static/sass/_unit.scss
View file @
f2be01fd
...
...
@@ -226,9 +226,20 @@
padding
:
20px
;
border-radius
:
0
0
3px
3px
;
background
:
-webkit-linear-gradient
(
top
,
rgba
(
0
,
0
,
0
,
0
)
,
rgba
(
0
,
0
,
0
,
.1
))
$blue
;
color
:
#fff
;
.module-editor
{
background
:
white
;
.metadata_edit
{
margin-bottom
:
20px
;
font-size
:
13px
;
}
.CodeMirror
{
border
:
1px
solid
#3c3c3c
;
}
h3
{
font-size
:
18px
;
font-weight
:
700
;
}
h5
{
...
...
@@ -238,7 +249,8 @@
}
.save-button
{
margin-right
:
8px
;
margin-top
:
10px
;
margin
:
15px
8px
0
0
;
}
}
}
...
...
@@ -266,19 +278,8 @@
}
}
.visibility-options
.option
{
margin-right
:
10px
;
padding
:
3px
13px
6px
;
border-radius
:
3px
;
background
:
#edf1f5
;
&
.checked
{
background
:
#d1dae3
;
}
input
[
type
=
"radio"
]
{
input
[
type
=
"radio"
]
{
margin-right
:
7px
;
}
}
.status
{
...
...
cms/templates/overview.html
View file @
f2be01fd
...
...
@@ -49,12 +49,11 @@
% for unit in subsection.get_children():
<li
class=
"leaf"
>
<div
class=
"section-item"
>
<a
href=
"${reverse('edit_unit', args=[unit.location])}"
class=
"
hidden
-item"
>
<span
class=
"${unit.category}-icon"
></span>
${unit.display_name}
<span
class=
"
hidden-tag"
>
– hidden
</span>
<a
href=
"${reverse('edit_unit', args=[unit.location])}"
class=
"
private
-item"
>
<span
class=
"${unit.category}-icon"
></span>
${unit.display_name}
<span
class=
"
private-tag"
>
– private
</span>
</a>
<div
class=
"item-actions"
>
<a
href=
"${reverse('delete_unit', args=[unit.location])}"
class=
"edit-button wip"
><span
class=
"delete-icon"
></span></a>
<a
href=
"#"
class=
"visibility-toggle hidden wip"
><span
class=
"toggle-icon"
></span></a>
<a
href=
"${reverse('delete_unit', args=[unit.location])}"
class=
"edit-button wip"
><span
class=
"delete-icon"
></span></a>
<a
href=
"#"
class=
"drag-handle wip"
></a>
</div>
</div>
...
...
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