error indication via GET arg err=...

This commit is contained in:
2017-07-23 01:47:18 +02:00
parent b238390ca8
commit 3c202a1f50
13 changed files with 235 additions and 24 deletions
+15
View File
@@ -9,6 +9,17 @@ input[type="number"] {
width: $form-field-w/2;
}
.Box.errors {
.list {
color: crimson;
font-weight: bold;
}
.lead {
color: white;
}
}
form .Row {
vertical-align: middle;
margin: 12px auto;
@@ -89,6 +100,10 @@ form .Row {
@include nowrap;
}
label.error {
color: crimson;
}
//.checkbox-wrap {
// display: inline-block;
// width: $form-label-w;
+5 -4
View File
@@ -43,17 +43,18 @@
// "toast"
.NotifyMsg {
position: fixed;
bottom: dist(2);
top: dist(1);
right: dist(2);
padding: dist(-1) dist(0);
// center horizontally
left: 50%;
@include translate(-50%,0);
//left: 50%;
//@include translate(-50%,0);
// hack to remove blur in chrome
-webkit-font-smoothing: subpixel-antialiased;
-webkit-transform: translateZ(0) scale(1.0, 1.0);
background: #37a349;
background: #3887d0;
&.error {
background: #d03e42;
}