refs #2596 drag and drop implementado #1119

Merged
alexandre merged 5 commits from 2596-arrastrar-ficheros into dev 2022-11-10 07:42:01 +00:00
2 changed files with 11 additions and 3 deletions

View File

@ -3,7 +3,7 @@
ng-transclude="prepend"
class="prepend">
</div>
<div class="infix">
<div class="infix" >
<div class="fix prefix"></div>
<div class="control">
<section
@ -13,8 +13,7 @@
</section>
<input
type="file"
accept="{{$ctrl.accept}}"
style="display: none;">
accept="{{$ctrl.accept}}">
</input>
Outdated
Review

Per separar estil de estructura, millor ficar-ho en el fitxer css.

Per separar estil de estructura, millor ficar-ho en el fitxer css.
</div>
<div class="fix suffix"></div>

View File

@ -4,4 +4,13 @@
.value {
cursor: pointer;
}
.control {
& > input[type=file] {
opacity: 0;
}
& > section {
position: absolute;
bottom: 0;
Outdated
Review

No gastes ids, son unics a nivell global de tota la web, pots ficar-ho dins de .vn-input-file amb un selector input[type=file]

No gastes ids, son unics a nivell global de tota la web, pots ficar-ho dins de `.vn-input-file` amb un selector `input[type=file]`
}
}
}