2012-04-23 12:19:03 +00:00
|
|
|
|
/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
|
2011-08-10 18:48:56 +00:00
|
|
|
|
This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
|
See the COPYING-README file. */
|
|
|
|
|
|
2011-03-02 22:06:23 +00:00
|
|
|
|
/* FILE MENU */
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.actions { padding:5px; height:32px; display: inline-block; float: left; }
|
2012-12-06 15:37:23 +00:00
|
|
|
|
.actions input, .actions button, .actions .button { margin:0; float:left; }
|
2013-05-13 17:42:05 +00:00
|
|
|
|
.actions .button a { color: #555; }
|
2014-11-06 15:22:57 +00:00
|
|
|
|
.actions .button a:hover,
|
|
|
|
|
.actions .button a:focus,
|
|
|
|
|
.actions .button a:active {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.actions.hidden { display: none; }
|
2013-10-04 14:08:34 +00:00
|
|
|
|
|
2015-01-28 17:24:12 +00:00
|
|
|
|
.actions.creatable {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: -30;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-07 16:15:23 +00:00
|
|
|
|
#new {
|
2013-10-03 13:49:49 +00:00
|
|
|
|
z-index: 1010;
|
|
|
|
|
float: left;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
padding: 0 !important; /* override default control bar button padding */
|
|
|
|
|
}
|
|
|
|
|
#trash {
|
2013-11-28 20:36:43 +00:00
|
|
|
|
margin-right: 8px;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
float: right;
|
2013-10-07 16:15:23 +00:00
|
|
|
|
z-index: 1010;
|
|
|
|
|
padding: 10px;
|
2013-11-18 14:06:38 +00:00
|
|
|
|
font-weight: normal;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
}
|
2014-02-21 13:07:25 +00:00
|
|
|
|
#new > a {
|
2013-10-04 05:41:16 +00:00
|
|
|
|
padding: 14px 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 7px;
|
|
|
|
|
}
|
|
|
|
|
#new.active {
|
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
border-bottom: none;
|
2015-01-25 16:33:20 +00:00
|
|
|
|
background: #f8f8f8;
|
2012-12-07 11:12:40 +00:00
|
|
|
|
}
|
2014-02-21 13:07:25 +00:00
|
|
|
|
#new > ul {
|
2013-10-04 05:41:16 +00:00
|
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
2013-10-06 17:58:22 +00:00
|
|
|
|
min-width: 112px;
|
2015-01-28 17:24:12 +00:00
|
|
|
|
z-index: -10;
|
2013-10-06 17:58:22 +00:00
|
|
|
|
padding: 8px;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
padding-bottom: 0;
|
2015-01-28 19:44:12 +00:00
|
|
|
|
margin-top: 13.5px;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
margin-left: -1px;
|
2014-02-21 13:07:25 +00:00
|
|
|
|
text-align: left;
|
2013-10-02 15:04:08 +00:00
|
|
|
|
background: #f8f8f8;
|
|
|
|
|
border: 1px solid #ddd;
|
2015-08-25 20:59:15 +00:00
|
|
|
|
border: 1px solid rgba(240, 240, 240, 0.9);
|
2013-10-02 15:04:08 +00:00
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border-top-left-radius: 0;
|
2014-02-21 13:07:25 +00:00
|
|
|
|
box-shadow: 0 2px 7px rgba(170,170,170,.4);
|
|
|
|
|
}
|
|
|
|
|
#new > ul > li {
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin: 5px;
|
2014-02-21 13:10:13 +00:00
|
|
|
|
padding-left: 42px;
|
2014-02-21 13:07:25 +00:00
|
|
|
|
padding-bottom: 2px;
|
2014-04-16 12:58:27 +00:00
|
|
|
|
background-position: left center;
|
2014-02-21 13:07:25 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
#new > ul > li > p {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding-top: 7px;
|
|
|
|
|
padding-bottom: 7px;
|
2012-12-07 11:12:40 +00:00
|
|
|
|
}
|
2011-07-27 23:26:26 +00:00
|
|
|
|
|
2013-10-22 16:11:03 +00:00
|
|
|
|
#new .error, #fileList .error {
|
|
|
|
|
color: #e9322d;
|
|
|
|
|
border-color: #e9322d;
|
|
|
|
|
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
|
|
|
|
-moz-box-shadow: 0 0 6px #f8b9b7;
|
|
|
|
|
box-shadow: 0 0 6px #f8b9b7;
|
|
|
|
|
}
|
2011-08-11 18:59:17 +00:00
|
|
|
|
|
2011-03-02 22:06:23 +00:00
|
|
|
|
/* FILE TABLE */
|
2012-12-07 11:12:40 +00:00
|
|
|
|
|
2014-05-12 17:54:20 +00:00
|
|
|
|
#filestable {
|
2013-10-04 05:41:16 +00:00
|
|
|
|
position: relative;
|
2014-05-12 17:54:20 +00:00
|
|
|
|
top: 44px;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
|
2014-01-17 14:47:26 +00:00
|
|
|
|
/* make sure there's enough room for the file actions */
|
|
|
|
|
#body-user #filestable {
|
2014-03-21 15:43:40 +00:00
|
|
|
|
min-width: 688px; /* 768 (mobile break) - 80 (nav width) */
|
2014-01-17 14:47:26 +00:00
|
|
|
|
}
|
|
|
|
|
#body-user #controls {
|
2014-03-21 15:43:40 +00:00
|
|
|
|
min-width: 688px; /* 768 (mobile break) - 80 (nav width) */
|
2014-01-17 14:47:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 15:28:40 +00:00
|
|
|
|
#filestable tbody tr {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
height: 51px;
|
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
|
2014-05-22 09:16:42 +00:00
|
|
|
|
/* fit app list view heights */
|
|
|
|
|
.app-files #app-content>.viewcontainer {
|
2014-07-01 19:48:06 +00:00
|
|
|
|
min-height: 100%;
|
2014-05-22 09:16:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-16 10:21:24 +00:00
|
|
|
|
.app-files #app-content {
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-08 17:25:28 +00:00
|
|
|
|
/* icons for sidebar */
|
|
|
|
|
.nav-icon-files {
|
|
|
|
|
background-image: url('../img/folder.svg');
|
|
|
|
|
}
|
|
|
|
|
.nav-icon-favorites {
|
|
|
|
|
background-image: url('../img/star.svg');
|
|
|
|
|
}
|
|
|
|
|
.nav-icon-sharingin,
|
|
|
|
|
.nav-icon-sharingout {
|
|
|
|
|
background-image: url('../img/share.svg');
|
|
|
|
|
}
|
|
|
|
|
.nav-icon-sharinglinks {
|
|
|
|
|
background-image: url('../img/public.svg');
|
|
|
|
|
}
|
|
|
|
|
.nav-icon-extstoragemounts {
|
|
|
|
|
background-image: url('../img/external.svg');
|
|
|
|
|
}
|
|
|
|
|
.nav-icon-trashbin {
|
|
|
|
|
background-image: url('../img/delete.svg');
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-02 15:32:36 +00:00
|
|
|
|
/* move Deleted Files to bottom of sidebar */
|
|
|
|
|
.nav-trashbin {
|
2015-03-17 17:44:18 +00:00
|
|
|
|
position: fixed !important;
|
|
|
|
|
bottom: 44px;
|
|
|
|
|
width: inherit !important;
|
2015-08-24 10:16:55 +00:00
|
|
|
|
background-color: #fff;
|
2014-06-02 15:32:36 +00:00
|
|
|
|
}
|
2015-03-20 16:49:41 +00:00
|
|
|
|
/* double padding to account for Deleted files entry, issue with Firefox */
|
|
|
|
|
.app-files #app-navigation > ul li:nth-last-child(2) {
|
|
|
|
|
margin-bottom: 44px;
|
2014-06-02 15:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 15:28:40 +00:00
|
|
|
|
#filestable tbody tr {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
2014-11-06 15:22:57 +00:00
|
|
|
|
#filestable tbody tr:hover,
|
|
|
|
|
#filestable tbody tr:focus,
|
2014-12-17 14:43:29 +00:00
|
|
|
|
#filestable tbody .name:focus,
|
2015-08-26 15:28:40 +00:00
|
|
|
|
#filestable tbody tr:active,
|
2015-07-15 15:35:35 +00:00
|
|
|
|
#filestable tbody tr.highlighted,
|
2015-08-25 10:05:04 +00:00
|
|
|
|
#filestable tbody tr.highlighted .name:focus,
|
2015-08-26 15:28:40 +00:00
|
|
|
|
#filestable tbody tr.selected,
|
|
|
|
|
#filestable tbody tr.searchresult,
|
|
|
|
|
table tr.mouseOver td {
|
|
|
|
|
background-color: #f8f8f8;
|
2013-07-31 20:24:52 +00:00
|
|
|
|
}
|
2011-07-06 22:19:38 +00:00
|
|
|
|
tbody a { color:#000; }
|
2014-02-13 09:39:38 +00:00
|
|
|
|
|
|
|
|
|
span.extension, span.uploading, td.date {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
span.extension {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
opacity: .7;
|
|
|
|
|
-webkit-transition: opacity 300ms;
|
|
|
|
|
-moz-transition: opacity 300ms;
|
|
|
|
|
-o-transition: opacity 300ms;
|
|
|
|
|
transition: opacity 300ms;
|
2014-06-08 09:36:01 +00:00
|
|
|
|
vertical-align: top;
|
2014-02-13 09:39:38 +00:00
|
|
|
|
}
|
2014-11-06 15:22:57 +00:00
|
|
|
|
tr:hover span.extension,
|
|
|
|
|
tr:focus span.extension {
|
2014-02-13 09:39:38 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-26 09:52:42 +00:00
|
|
|
|
table th, table th a {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
table.multiselect th a {
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
2014-04-03 18:57:06 +00:00
|
|
|
|
table th .columntitle {
|
2014-05-16 15:00:39 +00:00
|
|
|
|
display: block;
|
2014-04-03 18:57:06 +00:00
|
|
|
|
padding: 15px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
table th .columntitle.name {
|
|
|
|
|
padding-left: 5px;
|
2014-05-16 15:00:39 +00:00
|
|
|
|
padding-right: 80px;
|
2014-04-03 18:57:06 +00:00
|
|
|
|
margin-left: 50px;
|
|
|
|
|
}
|
2014-07-16 19:52:08 +00:00
|
|
|
|
|
2014-04-03 18:57:06 +00:00
|
|
|
|
table th .sort-indicator {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 8px;
|
2014-10-01 13:21:28 +00:00
|
|
|
|
margin-left: 5px;
|
2014-04-03 18:57:06 +00:00
|
|
|
|
display: inline-block;
|
2014-10-01 13:21:28 +00:00
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
|
|
|
|
|
filter: alpha(opacity=30);
|
|
|
|
|
opacity: .3;
|
|
|
|
|
}
|
|
|
|
|
.sort-indicator.hidden {
|
|
|
|
|
visibility: hidden;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2014-11-06 15:22:57 +00:00
|
|
|
|
table th:hover .sort-indicator.hidden,
|
|
|
|
|
table th:focus .sort-indicator.hidden {
|
2014-07-16 19:52:08 +00:00
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
2014-10-01 13:21:28 +00:00
|
|
|
|
|
2015-08-25 12:14:53 +00:00
|
|
|
|
table th,
|
2013-06-25 13:08:51 +00:00
|
|
|
|
table td {
|
|
|
|
|
border-bottom: 1px solid #eee;
|
2015-08-25 12:14:53 +00:00
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
table td {
|
|
|
|
|
padding: 0 15px;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
font-style: normal;
|
|
|
|
|
background-position: 8px center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
table th#headerName {
|
|
|
|
|
position: relative;
|
2014-01-24 17:20:52 +00:00
|
|
|
|
width: 9999px; /* not really sure why this works better than 100% … table styling */
|
2013-08-14 18:41:20 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2014-12-15 14:11:51 +00:00
|
|
|
|
|
2013-08-14 18:41:20 +00:00
|
|
|
|
#headerName-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
2014-12-15 14:11:51 +00:00
|
|
|
|
.has-favorites #headerName-container {
|
|
|
|
|
padding-left: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-14 18:41:20 +00:00
|
|
|
|
table th#headerSize, table td.filesize {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2014-06-06 13:33:33 +00:00
|
|
|
|
table th#headerDate, table td.date,
|
|
|
|
|
table th.column-last, table td.column-last {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
position: relative;
|
2014-02-03 16:23:30 +00:00
|
|
|
|
/* this can not be just width, both need to be set … table styling */
|
2015-08-07 16:19:47 +00:00
|
|
|
|
min-width: 130px;
|
|
|
|
|
max-width: 130px;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2012-12-13 18:44:55 +00:00
|
|
|
|
|
|
|
|
|
/* Multiselect bar */
|
2013-08-14 18:41:20 +00:00
|
|
|
|
#filestable.multiselect {
|
2013-10-04 05:41:16 +00:00
|
|
|
|
top: 95px;
|
|
|
|
|
}
|
|
|
|
|
table.multiselect thead {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 89px;
|
2013-10-04 14:32:06 +00:00
|
|
|
|
z-index: 10;
|
2013-10-04 05:41:16 +00:00
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
2014-06-06 10:22:09 +00:00
|
|
|
|
left: 250px; /* sidebar */
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2013-08-29 08:50:55 +00:00
|
|
|
|
|
2014-07-02 13:40:52 +00:00
|
|
|
|
table thead th {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2013-06-11 12:48:53 +00:00
|
|
|
|
table.multiselect thead th {
|
2015-08-26 15:28:40 +00:00
|
|
|
|
background-color: rgba(248,248,248,.8); /* #f8f8f8 like other hover style */
|
2013-06-11 12:48:53 +00:00
|
|
|
|
color: #000;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
2015-08-18 09:30:00 +00:00
|
|
|
|
|
|
|
|
|
#app-content.with-app-sidebar table.multiselect thead{
|
|
|
|
|
margin-right: 27%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-14 18:41:20 +00:00
|
|
|
|
table.multiselect #headerName {
|
|
|
|
|
position: relative;
|
2014-01-24 17:20:52 +00:00
|
|
|
|
width: 9999px; /* when we use 100%, the styling breaks on mobile … table styling */
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2015-04-21 13:38:34 +00:00
|
|
|
|
table.multiselect #modified {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table td.selection,
|
|
|
|
|
table th.selection,
|
|
|
|
|
table td.fileaction {
|
|
|
|
|
width: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2013-06-25 13:08:51 +00:00
|
|
|
|
table td.filename a.name {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
position:relative; /* Firefox needs to explicitly have this default set … */
|
|
|
|
|
-moz-box-sizing: border-box;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: block;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
height: 50px;
|
2014-05-15 09:48:41 +00:00
|
|
|
|
line-height: 50px;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
padding: 0;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2014-12-11 16:36:14 +00:00
|
|
|
|
table td.filename .thumbnail {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-top: 9px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
float: left;
|
2015-01-15 16:53:23 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 4;
|
2014-12-11 16:36:14 +00:00
|
|
|
|
}
|
2013-08-17 08:46:03 +00:00
|
|
|
|
table td.filename input.filename {
|
2014-07-03 00:08:53 +00:00
|
|
|
|
width: 70%;
|
2015-01-09 12:01:30 +00:00
|
|
|
|
margin-top: 9px;
|
2015-01-16 16:02:08 +00:00
|
|
|
|
margin-left: 48px;
|
2013-08-17 08:46:03 +00:00
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
2015-01-09 12:01:30 +00:00
|
|
|
|
.has-favorites table td.filename input.filename {
|
|
|
|
|
margin-left: 52px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-16 08:53:39 +00:00
|
|
|
|
table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:3px 8px 8px 3px; }
|
2014-05-14 19:16:00 +00:00
|
|
|
|
table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-child { float:left; padding:15px 0; }
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2014-06-06 13:33:33 +00:00
|
|
|
|
.modified, .column-last>span:first-child {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
position: relative;
|
2014-02-03 16:23:30 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2015-08-07 16:19:47 +00:00
|
|
|
|
width: 110px;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2012-12-05 10:17:41 +00:00
|
|
|
|
/* TODO fix usability bug (accidental file/folder selection) */
|
2013-06-25 13:08:51 +00:00
|
|
|
|
table td.filename .nametext {
|
|
|
|
|
position: absolute;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
left: 55px;
|
|
|
|
|
padding: 0;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
max-width: 800px;
|
2014-07-02 20:54:30 +00:00
|
|
|
|
height: 100%;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2015-01-16 22:43:42 +00:00
|
|
|
|
/* IE8 text-overflow: ellipsis support */
|
|
|
|
|
.ie8 table td.filename .nametext {
|
|
|
|
|
min-width: 50%;
|
|
|
|
|
}
|
2014-12-15 14:18:29 +00:00
|
|
|
|
.has-favorites #fileList td.filename a.name {
|
2014-11-18 17:53:45 +00:00
|
|
|
|
left: 50px;
|
2014-12-15 14:12:37 +00:00
|
|
|
|
margin-right: 50px;
|
2014-11-18 17:53:45 +00:00
|
|
|
|
}
|
2014-06-06 12:00:18 +00:00
|
|
|
|
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2014-06-06 12:00:18 +00:00
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
2015-01-16 20:36:35 +00:00
|
|
|
|
vertical-align: top;
|
2014-06-06 12:00:18 +00:00
|
|
|
|
}
|
2015-01-16 22:43:42 +00:00
|
|
|
|
/* IE8 text-overflow: ellipsis support */
|
|
|
|
|
.ie8 table td.filename .nametext .innernametext {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
word-wrap: normal;
|
|
|
|
|
-ms-text-overflow: ellipsis;
|
|
|
|
|
max-width: 47%;
|
2014-06-06 12:00:18 +00:00
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
|
2015-08-27 12:49:40 +00:00
|
|
|
|
@media only screen and (min-width: 1500px) {
|
|
|
|
|
table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 790px;
|
|
|
|
|
}
|
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 390px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media only screen and (min-width: 1366px) and (max-width: 1500px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2015-08-07 16:19:47 +00:00
|
|
|
|
max-width: 660px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2015-08-27 12:49:40 +00:00
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 290px;
|
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
|
|
|
|
@media only screen and (min-width: 1200px) and (max-width: 1366px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2015-08-07 16:19:47 +00:00
|
|
|
|
max-width: 500px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2015-08-27 12:49:40 +00:00
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 230px;
|
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2015-08-07 16:19:47 +00:00
|
|
|
|
@media only screen and (min-width: 1100px) and (max-width: 1200px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2015-08-07 16:19:47 +00:00
|
|
|
|
max-width: 400px;
|
|
|
|
|
}
|
2015-08-27 12:49:40 +00:00
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 230px;
|
|
|
|
|
}
|
2015-08-07 16:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
@media only screen and (min-width: 1000px) and (max-width: 1100px) {
|
|
|
|
|
table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 310px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2015-08-27 12:49:40 +00:00
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 230px;
|
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2014-06-08 15:48:53 +00:00
|
|
|
|
@media only screen and (min-width: 768px) and (max-width: 1000px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2015-08-07 16:19:47 +00:00
|
|
|
|
max-width: 240px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
2015-08-27 12:49:40 +00:00
|
|
|
|
.with-app-sidebar table td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 230px;
|
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-08 15:48:53 +00:00
|
|
|
|
/* for smaller resolutions - see mobile.css */
|
|
|
|
|
|
2014-06-30 12:00:43 +00:00
|
|
|
|
table td.filename .uploadtext {
|
|
|
|
|
font-weight: normal;
|
2014-07-30 04:38:46 +00:00
|
|
|
|
margin-left: 55px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
padding: 10px 0;
|
2014-09-23 11:36:47 +00:00
|
|
|
|
font-size: 11px;
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
|
opacity: .5;
|
2014-06-30 12:00:43 +00:00
|
|
|
|
}
|
2013-02-14 09:40:23 +00:00
|
|
|
|
|
2013-10-11 12:10:00 +00:00
|
|
|
|
.ie8 input[type="checkbox"]{
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2013-02-14 09:40:23 +00:00
|
|
|
|
/* File checkboxes */
|
2014-12-11 17:20:04 +00:00
|
|
|
|
#fileList tr td.filename>.selectCheckBox {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
float: left;
|
2014-07-03 11:34:12 +00:00
|
|
|
|
top: 0;
|
2013-08-17 08:46:03 +00:00
|
|
|
|
margin: 32px 0 4px 32px; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
|
|
|
|
/* Show checkbox when hovering, checked, or selected */
|
2014-12-11 17:20:04 +00:00
|
|
|
|
#fileList tr:hover td.filename>.selectCheckBox,
|
|
|
|
|
#fileList tr:focus td.filename>.selectCheckBox,
|
|
|
|
|
#fileList tr td.filename>.selectCheckBox:checked,
|
|
|
|
|
#fileList tr.selected td.filename>.selectCheckBox {
|
2013-09-04 19:32:45 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2014-12-11 17:20:04 +00:00
|
|
|
|
.lte9 #fileList tr:hover td.filename>.selectCheckBox,
|
|
|
|
|
.lte9 #fileList tr:focus td.filename>.selectCheckBox,
|
|
|
|
|
.lte9 #fileList tr td.filename>.selectCheckBox[checked=checked],
|
|
|
|
|
.lte9 #fileList tr.selected td.filename>.selectCheckBox {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
}
|
2013-09-04 19:32:45 +00:00
|
|
|
|
|
2013-08-14 18:41:20 +00:00
|
|
|
|
/* Use label to have bigger clickable size for checkbox */
|
2014-12-11 17:20:04 +00:00
|
|
|
|
#fileList tr td.filename>.selectCheckBox + label,
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.select-all + label {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
height: 50px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 50px;
|
2013-08-15 10:50:26 +00:00
|
|
|
|
z-index: 5;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2014-12-11 17:20:04 +00:00
|
|
|
|
#fileList tr td.filename>.selectCheckBox {
|
2014-01-16 11:05:05 +00:00
|
|
|
|
/* sometimes checkbox height is bigger (KDE/Qt), so setting to absolute
|
|
|
|
|
* to prevent it to increase the height */
|
|
|
|
|
position: absolute;
|
2014-12-11 16:36:14 +00:00
|
|
|
|
z-index: 10;
|
2014-01-16 11:05:05 +00:00
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.select-all + label {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
top: 0;
|
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.select-all {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 18px;
|
|
|
|
|
left: 18px;
|
2014-12-11 16:36:14 +00:00
|
|
|
|
z-index: 10;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2014-12-15 14:11:51 +00:00
|
|
|
|
.has-favorites .select-all {
|
|
|
|
|
left: 68px;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2012-12-20 09:53:50 +00:00
|
|
|
|
#fileList tr td.filename {
|
2014-05-16 15:00:39 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding-left: 0;
|
2012-12-20 09:53:50 +00:00
|
|
|
|
-webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2013-10-02 16:10:34 +00:00
|
|
|
|
#fileList tr td.filename a.name label {
|
2013-10-02 15:43:07 +00:00
|
|
|
|
position: absolute;
|
2014-01-15 13:45:10 +00:00
|
|
|
|
width: 80%;
|
2013-10-02 15:43:07 +00:00
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-18 17:53:45 +00:00
|
|
|
|
#fileList tr td.filename .favorite {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
#fileList tr td.filename .action-favorite {
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 30px;
|
|
|
|
|
line-height: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-28 22:26:23 +00:00
|
|
|
|
#uploadsize-message,#delete-confirm { display:none; }
|
2012-12-20 10:14:27 +00:00
|
|
|
|
|
|
|
|
|
/* File actions */
|
|
|
|
|
.fileactions {
|
2013-06-25 13:08:51 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
2012-12-20 10:14:27 +00:00
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2015-07-16 13:28:45 +00:00
|
|
|
|
.busy .fileactions, .busy .action {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2014-09-22 16:24:52 +00:00
|
|
|
|
|
2015-08-07 15:58:37 +00:00
|
|
|
|
/* fix position of bubble pointer for Files app */
|
|
|
|
|
.bubble,
|
|
|
|
|
#app-navigation .app-navigation-entry-menu {
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.bubble:after,
|
|
|
|
|
#app-navigation .app-navigation-entry-menu:after {
|
|
|
|
|
right: 6px;
|
|
|
|
|
}
|
|
|
|
|
.bubble:before,
|
|
|
|
|
#app-navigation .app-navigation-entry-menu:before {
|
|
|
|
|
right: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-22 16:24:52 +00:00
|
|
|
|
/* force show the loading icon, not only on hover */
|
|
|
|
|
#fileList .icon-loading-small {
|
|
|
|
|
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
|
filter:alpha(opacity=100);
|
|
|
|
|
opacity: 1 !important;
|
|
|
|
|
display: inline !important;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-16 08:53:39 +00:00
|
|
|
|
#fileList img.move2trash { display:inline; margin:-8px 0; padding:16px 8px 16px 8px !important; float:right; }
|
2014-01-31 07:03:00 +00:00
|
|
|
|
|
2014-11-18 17:53:45 +00:00
|
|
|
|
#fileList .action.action-share-notification span, #fileList a.name {
|
2014-05-13 13:22:18 +00:00
|
|
|
|
cursor: default !important;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-07 16:26:07 +00:00
|
|
|
|
a.action > img {
|
|
|
|
|
max-height: 16px;
|
|
|
|
|
max-width: 16px;
|
|
|
|
|
vertical-align: text-bottom;
|
2014-05-16 15:00:39 +00:00
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
|
|
|
|
/* Actions for selected files */
|
|
|
|
|
.selectedActions {
|
|
|
|
|
position: absolute;
|
2014-05-16 15:00:39 +00:00
|
|
|
|
top: 0;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
.selectedActions a {
|
|
|
|
|
display: inline;
|
2014-05-16 15:00:39 +00:00
|
|
|
|
font-size: 11px;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
padding: 18px 5px;
|
|
|
|
|
}
|
|
|
|
|
.selectedActions a.delete-selected {
|
|
|
|
|
padding-right: 15px;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2014-05-12 17:54:20 +00:00
|
|
|
|
.selectedActions a.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
.selectedActions a img {
|
|
|
|
|
position:relative;
|
2014-05-16 15:00:39 +00:00
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
margin-bottom: -1px;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 15:52:18 +00:00
|
|
|
|
#fileList a.action {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
display: inline;
|
2014-12-17 14:43:29 +00:00
|
|
|
|
padding: 17px 8px;
|
2014-05-15 09:48:41 +00:00
|
|
|
|
line-height: 50px;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
|
|
|
filter: alpha(opacity=0);
|
2013-03-03 12:01:25 +00:00
|
|
|
|
opacity: 0;
|
|
|
|
|
display:none;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
}
|
2015-08-26 07:47:09 +00:00
|
|
|
|
#fileList a.action.action-share,
|
|
|
|
|
#fileList a.action.action-menu {
|
|
|
|
|
padding: 17px 14px;
|
|
|
|
|
}
|
|
|
|
|
#fileList .fileActionsMenu {
|
|
|
|
|
margin-right: 21px;
|
|
|
|
|
}
|
2014-01-31 07:03:00 +00:00
|
|
|
|
|
2015-01-12 14:08:15 +00:00
|
|
|
|
.ie8 #fileList a.action img,
|
2014-12-17 14:43:29 +00:00
|
|
|
|
#fileList tr:hover a.action,
|
|
|
|
|
#fileList a.action.permanent,
|
|
|
|
|
#fileList tr:focus a.action,
|
2015-04-23 12:33:19 +00:00
|
|
|
|
#fileList a.action.permanent,
|
|
|
|
|
#fileList tr:hover a.action.no-permission:hover,
|
2015-06-26 08:26:01 +00:00
|
|
|
|
#fileList tr:focus a.action.no-permission:focus,
|
|
|
|
|
/*#fileList .name:focus .action,*/
|
|
|
|
|
/* also enforce the low opacity for disabled links that are hovered/focused */
|
|
|
|
|
.ie8 #fileList a.action.disabled:hover img,
|
|
|
|
|
#fileList tr:hover a.action.disabled:hover,
|
|
|
|
|
#fileList tr:focus a.action.disabled:focus,
|
|
|
|
|
#fileList .name:focus a.action.disabled:focus,
|
|
|
|
|
#fileList a.action.disabled img {
|
2015-08-26 09:07:29 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
|
|
|
|
|
filter: alpha(opacity=30);
|
|
|
|
|
opacity: .3;
|
2013-03-03 12:01:25 +00:00
|
|
|
|
display:inline;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
}
|
2015-01-12 14:08:15 +00:00
|
|
|
|
.ie8 #fileList a.action:hover img,
|
2015-06-29 09:24:18 +00:00
|
|
|
|
#fileList tr a.action.disabled.action-download,
|
|
|
|
|
#fileList tr:hover a.action.disabled.action-download:hover,
|
|
|
|
|
#fileList tr:focus a.action.disabled.action-download:focus,
|
2014-11-06 15:22:57 +00:00
|
|
|
|
#fileList tr:hover a.action:hover,
|
2014-12-17 14:43:29 +00:00
|
|
|
|
#fileList tr:focus a.action:focus,
|
|
|
|
|
#fileList .name:focus a.action:focus {
|
2015-08-26 09:07:29 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
opacity: 7;
|
2013-03-03 12:01:25 +00:00
|
|
|
|
display:inline;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
}
|
2015-06-26 08:26:01 +00:00
|
|
|
|
#fileList tr a.action.disabled {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 09:07:29 +00:00
|
|
|
|
/* show share action of shared items darker to distinguish from non-shared */
|
2015-08-27 21:09:32 +00:00
|
|
|
|
#fileList a.action.permanent.shared-style,
|
|
|
|
|
#fileList a.action.action-favorite.permanent {
|
2015-08-26 09:07:29 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important;
|
|
|
|
|
filter: alpha(opacity=70) !important;
|
|
|
|
|
opacity: .7 !important;
|
|
|
|
|
}
|
|
|
|
|
/* always show actions on mobile, not only on hover */
|
|
|
|
|
#fileList a.action.action-menu.permanent {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)" !important;
|
|
|
|
|
filter: alpha(opacity=30) !important;
|
|
|
|
|
opacity: .3 !important;
|
|
|
|
|
display: inline !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* properly display actions in the popover menu */
|
|
|
|
|
#fileList .fileActionsMenu .action {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important;
|
|
|
|
|
filter: alpha(opacity=50) !important;
|
|
|
|
|
opacity: .5 !important;
|
|
|
|
|
}
|
|
|
|
|
#fileList .fileActionsMenu .action:hover,
|
|
|
|
|
#fileList .fileActionsMenu .action:focus {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
|
|
|
|
|
filter: alpha(opacity=100) !important;
|
|
|
|
|
opacity: 1 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-29 09:24:18 +00:00
|
|
|
|
#selectedActionsList a.download.disabled,
|
|
|
|
|
#fileList tr a.action.action-download.disabled {
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-26 08:26:01 +00:00
|
|
|
|
#fileList tr:hover a.action.disabled:hover * {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
2011-11-10 15:40:09 +00:00
|
|
|
|
|
2013-07-02 02:28:52 +00:00
|
|
|
|
.summary {
|
2013-07-03 17:50:03 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
|
|
|
|
|
filter: alpha(opacity=30);
|
|
|
|
|
opacity: .3;
|
2015-04-22 11:58:22 +00:00
|
|
|
|
/* add whitespace to bottom of files list to correctly show dropdowns */
|
|
|
|
|
height: 300px;
|
2013-07-02 02:28:52 +00:00
|
|
|
|
}
|
2014-11-06 15:22:57 +00:00
|
|
|
|
.summary:hover,
|
|
|
|
|
.summary:focus,
|
|
|
|
|
.summary,
|
|
|
|
|
table tr.summary td {
|
2013-07-03 17:50:03 +00:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
.summary td {
|
|
|
|
|
border-bottom: none;
|
2015-04-22 11:58:22 +00:00
|
|
|
|
vertical-align: top;
|
|
|
|
|
padding-top: 20px;
|
2013-07-02 02:28:52 +00:00
|
|
|
|
}
|
|
|
|
|
.summary .info {
|
2014-07-03 09:40:11 +00:00
|
|
|
|
margin-left: 40px;
|
2013-07-02 02:28:52 +00:00
|
|
|
|
}
|
2015-03-24 14:26:17 +00:00
|
|
|
|
.has-favorites .summary .info {
|
|
|
|
|
margin-left: 90px;
|
|
|
|
|
}
|
2013-07-02 02:28:52 +00:00
|
|
|
|
|
2012-08-27 20:45:54 +00:00
|
|
|
|
#scanning-message{ top:40%; left:40%; position:absolute; display:none; }
|
2012-09-19 12:31:02 +00:00
|
|
|
|
|
2013-01-18 20:49:38 +00:00
|
|
|
|
table.dragshadow {
|
|
|
|
|
width:auto;
|
|
|
|
|
}
|
|
|
|
|
table.dragshadow td.filename {
|
2013-10-28 14:41:52 +00:00
|
|
|
|
padding-left:60px;
|
2013-01-18 20:49:38 +00:00
|
|
|
|
padding-right:16px;
|
2013-10-28 14:41:52 +00:00
|
|
|
|
height: 36px;
|
2013-01-18 20:49:38 +00:00
|
|
|
|
}
|
|
|
|
|
table.dragshadow td.size {
|
|
|
|
|
padding-right:8px;
|
2013-01-30 18:24:24 +00:00
|
|
|
|
}
|
2013-01-02 23:26:13 +00:00
|
|
|
|
#upgrade {
|
|
|
|
|
width: 400px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 200px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: -200px;
|
|
|
|
|
}
|
2013-08-17 11:07:18 +00:00
|
|
|
|
.mask {
|
|
|
|
|
z-index: 50;
|
2014-05-12 17:54:20 +00:00
|
|
|
|
position: absolute;
|
2013-08-17 11:07:18 +00:00
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2015-08-26 15:28:40 +00:00
|
|
|
|
background-color: #fff;
|
2013-08-17 11:07:18 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2015-07-16 13:28:45 +00:00
|
|
|
|
|
|
|
|
|
.fileActionsMenu {
|
2015-08-07 16:26:07 +00:00
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
}
|
|
|
|
|
.fileActionsMenu li {
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
}
|
|
|
|
|
#fileList .fileActionsMenu a.action img {
|
|
|
|
|
padding: initial;
|
|
|
|
|
}
|
|
|
|
|
#fileList .fileActionsMenu a.action {
|
2015-08-06 08:58:59 +00:00
|
|
|
|
padding: 10px;
|
2015-08-07 16:26:07 +00:00
|
|
|
|
margin: -10px;
|
2015-07-16 13:28:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fileActionsMenu.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileList .fileActionsMenu .action {
|
|
|
|
|
display: block;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
color: #000;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fileActionsMenu .action img,
|
|
|
|
|
.fileActionsMenu .action .no-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 16px;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fileActionsMenu .action {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fileActionsMenu li:hover .action {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|