Add frontend for safety numbers approval setting
Adds the checkbox under settings. // FREEBIEpull/749/head
parent
aa42139477
commit
1fe90ecdcb
@ -0,0 +1,22 @@
|
|||||||
|
.modal {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
padding: 0 20px;
|
||||||
|
z-index: 100;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
max-width: 350px;
|
||||||
|
margin: 100px auto;
|
||||||
|
padding: 1em;
|
||||||
|
background: white;
|
||||||
|
border-radius: $border-radius;
|
||||||
|
overflow: auto;
|
||||||
|
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,31 @@
|
|||||||
|
.settings {
|
||||||
|
&.modal {
|
||||||
|
padding: 50px;
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
.syncSettings {
|
||||||
|
button {
|
||||||
|
float: right;
|
||||||
|
line-height: 36px;
|
||||||
|
padding: 0 20px;
|
||||||
|
margin: 0 0 20px 20px;
|
||||||
|
}
|
||||||
|
.synced_at {
|
||||||
|
font-size: $font-size-small;
|
||||||
|
color: $grey;
|
||||||
|
}
|
||||||
|
.sync_failed {
|
||||||
|
display: none;
|
||||||
|
font-size: $font-size-small;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue