Files
grecia/app/assets/stylesheets/imageable.scss
Senén Rodero Rodríguez 95016a1bf3 Some renaming and cleaning
2017-09-26 13:56:06 +02:00

64 lines
902 B
SCSS

.progress-bar-placeholder {
display: none;
}
.image-form {
.image .file-name {
margin-top: 0;
}
.progress-bar-placeholder {
margin-bottom: 15px;
}
.image .loading-bar.errors {
margin-top: $line-height * 2;
}
}
.cached-image{
max-width: 150px;
max-height: 150px;
}
.image {
.button {
font-weight: normal;
}
.progress-bar {
width: 100%;
background-color: $light-gray;
}
.js-image-attachment{
display: none;
}
.file-name {
margin-top: 0px;
}
.loading-bar {
height: 5px;
width: 0;
transition: width 500ms ease-out;
&.uploading {
background-color: $dark-gray;
}
&.complete {
background-color: $success-color;
width: 100%;
}
&.errors {
background-color: $alert-color;
margin-top: $line-height / 2;
}
}
.loading-bar.no-transition {
transition: none;
}
}