diff options
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 06088b30fff..ff593fc4d24 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -336,6 +336,27 @@ table.dragshadow td.size { text-align: center; margin-left: -200px; } +.mask { + z-index: 50; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: white; + background-repeat: no-repeat no-repeat; + background-position: 50%; + opacity: 0.7; + filter: alpha(opacity=70); + transition: opacity 100ms; + -moz-transition: opacity 100ms; + -o-transition: opacity 100ms; + -ms-transition: opacity 100ms; + -webkit-transition: opacity 100ms; +} +.mask.transparent{ + opacity: 0; +} .oc-dialog .fileexists table { width: 100%; |