This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.0.8.beta.1 -- Merge pull request #85 from a-barbieri/master
Uploader and sortable repeaters!
- Loading branch information
Showing
46 changed files
with
5,548 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
.fileupload | ||
{ | ||
position: relative; | ||
|
||
.form-group | ||
{ | ||
margin: 0 !important; | ||
} | ||
.progress | ||
{ | ||
margin: 12px 0; | ||
height: 8px; | ||
} | ||
.fileupload--details | ||
{ | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
opacity: 1; | ||
background-color: #fff; | ||
padding: 24px; | ||
width: 40%; | ||
transition: opacity .2s linear; | ||
pointer-events: none; | ||
z-index: 9999; | ||
@extend .box-shadowed-up; | ||
&.fileupload--details--hidden | ||
{ | ||
opacity: 0; | ||
} | ||
} | ||
.fileupload--filename | ||
{ | ||
text-align: center; | ||
} | ||
.fileinput-button | ||
{ | ||
position: relative; | ||
display: inline-block; | ||
overflow: hidden; | ||
margin-bottom: 12px; | ||
float: left; | ||
margin-right: 8px; | ||
} | ||
.fileinput-button input | ||
{ | ||
font-size: 200px !important; | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
margin: 0; | ||
cursor: pointer; | ||
opacity: 0; | ||
|
||
-ms-filter: 'alpha(opacity=0)'; | ||
direction: ltr; | ||
} | ||
|
||
/* Fixes for IE < 8 */ | ||
@media screen\9 | ||
{ | ||
.fileinput-button input | ||
{ | ||
font-size: 100%; | ||
height: 100%; | ||
|
||
filter: alpha(opacity=0); | ||
} | ||
} | ||
} | ||
.form-item--repeater-fields | ||
{ | ||
.fileinput-button | ||
{ | ||
margin-left: 5%; | ||
} | ||
.form-item--asset--image | ||
{ | ||
margin-left: 20%; | ||
} | ||
} |
Oops, something went wrong.