Fix ESLint errors

This commit is contained in:
Peter deHaan 2017-06-09 10:44:12 -07:00
parent f0b4bb7341
commit 1dbda38995
No known key found for this signature in database
GPG key ID: F0FC6C01C6305097
12 changed files with 151 additions and 156 deletions

View file

@ -13,7 +13,7 @@ html {
flex-direction: column;
}
input, select, textarea, button {
font-family:inherit;
font-family: inherit;
}
/** page-one **/
@ -59,7 +59,7 @@ input, select, textarea, button {
padding-right: 20px;
}
.upload-window>div:nth-child(2) {
.upload-window > div:nth-child(2) {
font-size: 26px;
}
@ -97,7 +97,7 @@ td {
#uploaded-files {
width: 472px;
margin: 10px auto ;
margin: 10px auto;
table-layout: fixed;
}
@ -110,50 +110,48 @@ td {
/* Popup container */
.popup {
position: relative;
display: inline-block;
cursor: pointer;
position: relative;
display: inline-block;
cursor: pointer;
}
/* The actual popup (appears on top) */
.popup .popuptext {
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
transition: opacity 0.5s;
opacity: 0;
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
transition: opacity 0.5s;
opacity: 0;
}
/* Popup arrow */
.popup .popuptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.popup .show {
visibility: visible;
opacity: 1;
visibility: visible;
opacity: 1;
}
/** upload-progress **/
/** share-link **/
.share-window {
width: 50%;
@ -174,7 +172,7 @@ td {
flex-direction: column;
}
#share-window-r>div {
#share-window-r > div {
font-size: 12px;
padding-bottom: 10px;
}