Commit d809df91 by Brian Talbot

studio - alerts: moved all states and documentation into new /alerts view

parent 8179b9fa
......@@ -106,6 +106,9 @@ def howitworks(request):
else:
return render_to_response('howitworks.html', {})
def alerts(request):
return render_to_response('alerts.html', {})
# ==== Views for any logged-in user ==================================
@login_required
......
......@@ -292,7 +292,7 @@
@include box-sizing(border-box);
@include box-shadow(0 1px 1px $white, inset 0 2px 2px $shadow-d1);
position: relative;
top: -($baseline*20);
top: -($baseline*1.5);
z-index: 100;
overflow: hidden;
width: 100%;
......@@ -536,6 +536,22 @@
}
}
// temporary
body.uxdesign.alerts {
.content-primary, .content-supplementary {
@include box-sizing(border-box);
float: left;
}
.content-primary {
@extend .window;
width: flex-grid(12, 12);
margin-right: flex-gutter();
padding: $baseline ($baseline*1.5);
}
}
// artifact styles
// .alert {
// padding: 15px 20px;
......
......@@ -339,11 +339,38 @@ h1 {
.title-5 {
}
> section {
margin: 0 0 $baseline 0;
header {
@include clearfix();
.title-2 {
width: flex-grid(5, 12);
margin: 0 flex-gutter() 0 0;
float: left;
}
.tip {
@include font-size(13);
width: flex-grid(7, 12);
float: right;
margin-top: ($baseline/2);
text-align: right;
color: $gray-l2;
}
}
}
}
// layout - supplemental content
.content-supplementary {
> section {
margin: 0 0 $baseline 0;
}
.bit {
@include font-size(13);
margin: 0 0 $baseline 0;
......
......@@ -78,6 +78,7 @@ urlpatterns = ('',
# User creation and updating views
urlpatterns += (
url(r'^alerts$', 'contentstore.views.alerts', name='alerts'),
url(r'^howitworks$', 'contentstore.views.howitworks', name='howitworks'),
url(r'^signup$', 'contentstore.views.signup', name='signup'),
......
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