Commit 60e79145 by Calen Pennington

Add WIP markers

parent 91fd6170
...@@ -186,3 +186,21 @@ label { ...@@ -186,3 +186,21 @@ label {
border-bottom: 1px solid #cbd1db; border-bottom: 1px solid #cbd1db;
} }
} }
.wip {
outline: 1px solid #f00 !important;
position: relative;
}
.wip-box {
@extend .wip;
&:after {
content: "WIP";
font-size: 8px;
padding: 2px;
background: #f00;
color: #fff;
@include position(absolute, 0px 0px 0 0);
}
}
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
<div class="main-wrapper"> <div class="main-wrapper">
<div class="inner-wrapper"> <div class="inner-wrapper">
<h1>Courseware</h1> <h1>Courseware</h1>
<input type="text" class="courseware-unit-search-input search" placeholder="search units" /> <input type="text" class="courseware-unit-search-input search wip-box" placeholder="search units" />
<article class="courseware-overview"> <article class="courseware-overview">
<a href="#" class="new-courseware-section-button"><span class="plus-icon"></span> New Section</a> <a href="#" class="new-courseware-section-button wip-box"><span class="plus-icon"></span> New Section</a>
% for section in sections: % for section in sections:
<section class="courseware-section branch"> <section class="courseware-section branch">
<header> <header>
...@@ -18,13 +18,13 @@ ...@@ -18,13 +18,13 @@
<h4><strong>Unscheduled:</strong> <a href="#">click here to set</a></h4> <h4><strong>Unscheduled:</strong> <a href="#">click here to set</a></h4>
</div> </div>
<div class="item-actions"> <div class="item-actions">
<a href="#" class="edit-button"><span class="delete-icon"></span></a> <a href="#" class="edit-button wip"><span class="delete-icon"></span></a>
<a href="#" class="drag-handle"></a> <a href="#" class="drag-handle wip"></a>
</div> </div>
</header> </header>
<div class="unit-list"> <div class="unit-list">
<div class="list-header"> <div class="list-header">
<a href="#" class="new-subsection-item"> <a href="#" class="new-subsection-item wip-box">
<span class="new-folder-icon"></span>New Subsection <span class="new-folder-icon"></span>New Subsection
</a> </a>
</div> </div>
...@@ -40,9 +40,9 @@ ...@@ -40,9 +40,9 @@
</a> </a>
</div> </div>
<div class="item-actions"> <div class="item-actions">
<a href="#" class="delete-button"><span class="delete-icon"></span></a> <a href="#" class="delete-button wip"><span class="delete-icon"></span></a>
<a href="#" class="visibility-toggle"><span class="toggle-icon"></span></a> <a href="#" class="visibility-toggle wip"><span class="toggle-icon"></span></a>
<a href="#" class="drag-handle"></a> <a href="#" class="drag-handle wip"></a>
</div> </div>
</div> </div>
...@@ -54,15 +54,15 @@ ...@@ -54,15 +54,15 @@
<span class="${unit.category}-icon"></span>${unit.display_name} <span class="hidden-tag">– hidden</span> <span class="${unit.category}-icon"></span>${unit.display_name} <span class="hidden-tag">– hidden</span>
</a> </a>
<div class="item-actions"> <div class="item-actions">
<a href="${reverse('delete_unit', args=[unit.location])}" class="edit-button"><span class="delete-icon"></span></a> <a href="${reverse('delete_unit', args=[unit.location])}" class="edit-button wip"><span class="delete-icon"></span></a>
<a href="#" class="visibility-toggle hidden"><span class="toggle-icon"></span></a> <a href="#" class="visibility-toggle hidden wip"><span class="toggle-icon"></span></a>
<a href="#" class="drag-handle"></a> <a href="#" class="drag-handle wip"></a>
</div> </div>
</div> </div>
</li> </li>
% endfor % endfor
<li> <li>
<a href="#" class="new-unit-item"> <a href="#" class="new-unit-item wip">
<span class="new-unit-icon"></span>New Unit <span class="new-unit-icon"></span>New Unit
</a> </a>
</li> </li>
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
</article> </article>
</div> </div>
<div class="sidebar"> <div class="sidebar wip-box">
<div class="unit-properties window"> <div class="unit-properties window">
<h4>Unit Properties</h4> <h4>Unit Properties</h4>
<div class="window-contents"> <div class="window-contents">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment