fix css lint errors

This commit is contained in:
Alina Ryba 2017-06-27 14:30:15 -03:00 committed by José Luis Di Biase
parent d316e1d7c0
commit 3c830637a7
4 changed files with 15 additions and 19 deletions

View file

@ -38,7 +38,7 @@
.public-form input:focus, .public-form textarea:focus {
border: 2px dashed #ddd!important;
outline: none;
outline: 0;
}
/*.public-form input.no-border.ng-invalid, .public-form textarea.no-border {
@ -99,9 +99,6 @@ section.content > section > section.container {
border-radius: 3px;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
}
.modal-footer input[type='text']:focus {
outline: 0;
}
.modal-body > .modal-body-alert {
color: #796620;
background-color: #f8eec7;

View file

@ -32,5 +32,6 @@
visibility: visible !important;
border: none;
padding:1px;
background: #000;
background:rgba(0, 0, 0, 0.5) !important;
}

View file

@ -54,7 +54,7 @@ div.tab-content {
.public-form input:focus, .public-form textarea:focus {
border: 2px dashed #ddd!important;
outline: none;
outline: 0;
}
/*.public-form input.no-border.ng-invalid, .public-form textarea.no-border {
@ -115,9 +115,6 @@ section.content > section > section.container {
border-radius: 3px;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
}
.modal-footer input[type='text']:focus {
outline: 0;
}
.modal-body > .modal-body-alert {
color: #796620;
background-color: #f8eec7;
@ -203,7 +200,7 @@ form .row.field {
}
form.submission-form .field.row.radio .btn.activeBtn {
background-color: rgb(0,0,0)!important;
background-color: #000!important;
background-color: rgba(0,0,0,0.7)!important;
color: white;
}
@ -475,6 +472,7 @@ section.public-form .btn {
/*CREATE-NEW FORM MODAL*/
.form-item.create-new.new-form {
background-color: #832383;
background-color: rgb(300,131,131);
z-index: 11;
}
@ -518,12 +516,12 @@ section.public-form .btn {
left: 0;
height: 100%;
width: 100%;
background-color: rgb(0,0,0);
background-color: #000;
background-color: rgba(0,0,0,0.5);
z-index: 10;
}
.overlay.submitform {
background-color: rgb(256,256,256);
background-color: #fff;
background-color: rgba(256,256,256,0.8);
}
.field-directive {
@ -548,7 +546,7 @@ section.public-form .btn {
}
h3.forms-list-title {
color: #3FA2F7;
weight: 600;
font-weight: 600;
margin-bottom: 3em;
}
.form-item {
@ -566,6 +564,7 @@ h3.forms-list-title {
}
.form-item.create-new:hover {
background-color: #515151;
background-color: rgb(81,81,81);
}
@ -584,8 +583,6 @@ h3.forms-list-title {
.form-item .title-row h4 {
font-size: 1.3em;
}
.form-item .responses-row {
}
.form-item.create-new .title-row{
padding: 0;

View file

@ -6,11 +6,12 @@ section.auth {
left: 0;
width: 100%;
color: white;
background-color: #50B5C1; /* Old browsers */
background: -moz-linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* FF3.6-15 */
background: -webkit-linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#50B5C1', endColorstr='#6450A0', GradientType=1); /* IE6-9 fallback on horizontal gradient */
background-color: #50B5C1;
background: -moz-linear-gradient(137deg, #50B5C1 0%, #6450A0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#50B5C1), color-stop(100%,#6450A0));
background: -webkit-linear-gradient(137deg, #50B5C1 0%,#6450A0 100%);
background: -o-linear-gradient(137deg, #50B5C1 0%,#6450A0 100%);
background: -ms-linear-gradient(137deg, #50B5C1 0%,#6450A0 100%);
}
section.auth > h3{
font-size: 2em;