Skip to content

Commit

Permalink
add dialog, color, ...
Browse files Browse the repository at this point in the history
  • Loading branch information
fraoustin committed May 2, 2018
1 parent e701acc commit 4048aaa
Show file tree
Hide file tree
Showing 17 changed files with 880 additions and 19 deletions.
10 changes: 1 addition & 9 deletions README.md 100644 → 100755
Expand Up @@ -55,12 +55,4 @@ you can change color of interface

## TODO


reste test global, search, déconnexion, ...

faire une fiche pour avoir date, size, lib ..

voir pour faire la même chose sur gitweb? avoir si cela est possible

pour webdav il faudra ajouter uplod et delete element

optimize code
37 changes: 37 additions & 0 deletions dialog-polyfill.css
@@ -0,0 +1,37 @@
dialog {
position: absolute;
left: 0; right: 0;
width: -moz-fit-content;
width: -webkit-fit-content;
width: fit-content;
height: -moz-fit-content;
height: -webkit-fit-content;
height: fit-content;
margin: auto;
border: solid;
padding: 1em;
background: white;
color: black;
display: block;
}

dialog:not([open]) {
display: none;
}

dialog + .backdrop {
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
background: rgba(0,0,0,0.1);
}

._dialog_overlay {
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
}

dialog.fixed {
position: fixed;
top: 50%;
transform: translate(0, -50%);
}

0 comments on commit 4048aaa

Please sign in to comment.