Overhaul of our check-in features (#1647)

This commit is contained in:
Raphael Michel
2020-05-13 18:01:49 +02:00
committed by GitHub
parent 640b9c876d
commit c056db46b6
36 changed files with 2604 additions and 169 deletions

View File

@@ -523,3 +523,20 @@ table td > .checkbox input[type="checkbox"] {
margin-bottom: 10px;
}
}
#rules-editor {
.checkin-rule {
border-left: 4px solid $brand-primary;
background: rgba(0, 0, 0, 0.05);
padding: 5px 15px 5px 15px;
margin: 5px 0;
position: relative;
}
.checkin-rule-and {
border-left: 4px solid $brand-danger;
}
.checkin-rule-or {
border-left: 4px solid $brand-success;
}
}

View File

@@ -667,6 +667,13 @@ h1 .label {
}
}
.withoutjs {
display: none !important;
}
.nojs .withoutjs {
display: block !important;
}
.nojs .requirejs {
display: none !important;
}