feat: db + redis error handling, setup options, updated deps

This commit is contained in:
NGPixel
2017-11-12 23:48:19 -05:00
parent 1658fcbf2e
commit ba1d83ebcb
12 changed files with 271 additions and 180 deletions

View File

@@ -1,5 +1,5 @@
.config-manager {
background-image: linear-gradient(to right, mc('indigo', '400'), mc('indigo', '600'));
background-image: linear-gradient(to bottom right, mc('blue', '500'), mc('blue', '700'));
background-repeat: no-repeat;
width: 100%;
min-height: 100%;
@@ -20,7 +20,7 @@
.welcome {
text-align: center;
padding: 1rem 0 2rem 0;
border-bottom: 1px solid mc('indigo', '50');
border-bottom: 1px solid mc('blue', '50');
margin-bottom: 1rem;
img {
@@ -38,7 +38,7 @@
.is-logo {
text-align: center;
padding: .5rem 0 1.5rem 0;
border-bottom: 1px solid mc('indigo', '50');
border-bottom: 1px solid mc('blue', '50');
margin-bottom: 1rem;
display: flex;
justify-content: center;
@@ -58,16 +58,7 @@
i.icon-loader {
display: inline-block;
color: mc('indigo', '500')
}
i.ui-1_check-simple {
color: mc('green', '500')
}
i.ui-2_ban-bold {
color: mc('red', '500')
}
i.icon-warning-outline {
color: mc('orange', '500')
color: mc('blue', '500')
}
.progress-bar {

View File

@@ -36,7 +36,11 @@
&.is-dirty.is-invalid {
border-color: mc('red', '500');
box-shadow: inset 0 0 5px 0 mc('red', '100');
}
}
@include placeholder {
color: mc('grey', '400');
}
}
@@ -48,6 +52,36 @@
}
textarea {
background-color: #FFF;
display: flex;
padding: 6px 12px;
border: 1px solid mc('grey', '400');
border-radius: 3px;
font-family: $core-font-standard;
font-size: 14px;
color: mc('grey', '700');
transition: all .4s ease;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.1);
min-height: 100px;
&:focus {
outline: none;
border-color: mc('light-blue', '500');
box-shadow: inset 0 0 5px 0 rgba(mc('light-blue', '500'), 0.3);
}
&:disabled {
background-color: mc('grey', '100');
}
&.is-dirty.is-invalid {
border-color: mc('red', '500');
box-shadow: inset 0 0 5px 0 mc('red', '100');
}
}
// ===============================================================
// DROPDOWN
// ===============================================================

View File

@@ -32,8 +32,8 @@
&.is-featured {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
background-color: mc('indigo', '400');
border-bottom-color: mc('indigo', '500');
background-color: mc('blue', '700');
border-bottom-color: mc('blue', '900');
color: #FFF;
> i::before {