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; }
|
|
|
|
|
.actions .button a:hover, .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
|
|
|
|
|
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;
|
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;
|
2013-10-04 05:41:16 +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;
|
|
|
|
|
margin-top: 14px;
|
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2014-05-14 06:32:48 +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
|
|
|
|
}
|
|
|
|
|
|
2014-06-02 15:32:36 +00:00
|
|
|
|
/* move Deleted Files to bottom of sidebar */
|
|
|
|
|
.nav-trashbin {
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-08 20:06:30 +00:00
|
|
|
|
#filestable tbody tr { background-color:#fff; height:40px; }
|
2013-09-06 09:01:11 +00:00
|
|
|
|
#filestable tbody tr:hover, tbody tr:active {
|
2013-06-11 12:48:53 +00:00
|
|
|
|
background-color: rgb(240,240,240);
|
|
|
|
|
}
|
2013-09-06 09:01:11 +00:00
|
|
|
|
#filestable tbody tr.selected {
|
2013-06-11 12:48:53 +00:00
|
|
|
|
background-color: rgb(230,230,230);
|
|
|
|
|
}
|
2013-07-31 20:24:52 +00:00
|
|
|
|
#filestable tbody tr.searchresult {
|
|
|
|
|
background-color: rgb(240,240,240);
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
tr:hover span.extension {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-02 13:52:57 +00:00
|
|
|
|
table tr.mouseOver td {
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
/* hover effect on sortable column */
|
|
|
|
|
table th a.columntitle:hover {
|
2014-06-02 14:23:22 +00:00
|
|
|
|
color: #000;
|
2014-04-03 18:57:06 +00:00
|
|
|
|
}
|
|
|
|
|
table th .sort-indicator {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
display: inline-block;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
}
|
2011-07-27 22:21:11 +00:00
|
|
|
|
table th, table td { border-bottom:1px solid #ddd; text-align:left; font-weight:normal; }
|
2013-06-25 13:08:51 +00:00
|
|
|
|
table td {
|
2014-05-16 15:00:39 +00:00
|
|
|
|
padding: 0 15px;
|
2013-06-25 13:08:51 +00:00
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
#headerName-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
|
|
|
|
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 */
|
2013-10-06 17:58:22 +00:00
|
|
|
|
min-width: 176px;
|
2014-02-03 16:23:30 +00:00
|
|
|
|
max-width: 176px;
|
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 {
|
2013-10-04 14:32:06 +00:00
|
|
|
|
background-color: rgba(220,220,220,.8);
|
2013-06-11 12:48:53 +00:00
|
|
|
|
color: #000;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
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
|
|
|
|
}
|
2014-01-16 08:53:39 +00:00
|
|
|
|
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
|
|
|
|
}
|
2012-04-16 11:14:41 +00:00
|
|
|
|
table tr[data-type="dir"] td.filename a.name span.nametext {font-weight:bold; }
|
2013-08-17 08:46:03 +00:00
|
|
|
|
table td.filename input.filename {
|
|
|
|
|
width: 80%;
|
|
|
|
|
font-size: 14px;
|
2014-05-15 09:48:41 +00:00
|
|
|
|
margin-top: 0;
|
2013-08-17 08:46:03 +00:00
|
|
|
|
margin-left: 2px;
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
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;
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
/* ellipsize long modified dates to make room for showing delete button */
|
2014-06-06 13:33:33 +00:00
|
|
|
|
#fileList tr:hover .modified, #fileList tr:hover .column-last>span:first-child,
|
|
|
|
|
#fileList tr:focus .modified, #fileList tr:focus .column-last>span:first-child {
|
2014-02-03 16:23:30 +00:00
|
|
|
|
width: 75%;
|
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
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
2014-06-07 08:53:49 +00:00
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1366px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2014-06-08 15:48:53 +00:00
|
|
|
|
max-width: 760px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table tr:hover td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 480px;
|
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 {
|
2014-06-08 15:48:53 +00:00
|
|
|
|
max-width: 600px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-08 15:48:53 +00:00
|
|
|
|
table tr:hover td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 320px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-08 15:48:53 +00:00
|
|
|
|
@media only screen and (min-width: 1000px) and (max-width: 1200px) {
|
2014-06-07 18:24:21 +00:00
|
|
|
|
table td.filename .nametext .innernametext {
|
2014-06-08 15:48:53 +00:00
|
|
|
|
max-width: 400px;
|
2014-06-07 08:53:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-08 15:48:53 +00:00
|
|
|
|
table tr:hover td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 120px;
|
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 {
|
2014-06-08 15:48:53 +00:00
|
|
|
|
max-width: 320px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table tr:hover td.filename .nametext .innernametext {
|
|
|
|
|
max-width: 40px;
|
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;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
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 */
|
2013-08-14 18:41:20 +00:00
|
|
|
|
#fileList tr td.filename>input[type="checkbox"]:first-child {
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
float: left;
|
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 */
|
|
|
|
|
#fileList tr:hover td.filename>input[type="checkbox"]:first-child,
|
|
|
|
|
#fileList tr td.filename>input[type="checkbox"]:checked:first-child,
|
|
|
|
|
#fileList tr.selected td.filename>input[type="checkbox"]:first-child {
|
2013-09-04 19:32:45 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
.lte9 #fileList tr:hover td.filename>input[type="checkbox"]:first-child,
|
|
|
|
|
.lte9 #fileList tr td.filename>input[type="checkbox"][checked=checked]:first-child,
|
|
|
|
|
.lte9 #fileList tr.selected td.filename>input[type="checkbox"]:first-child {
|
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 */
|
|
|
|
|
#fileList tr td.filename>input[type="checkbox"] + 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-01-16 11:05:05 +00:00
|
|
|
|
#fileList tr td.filename>input[type="checkbox"]{
|
|
|
|
|
/* sometimes checkbox height is bigger (KDE/Qt), so setting to absolute
|
|
|
|
|
* to prevent it to increase the height */
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
#fileList tr td.filename>input[type="checkbox"] + label {
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-14 09:40:23 +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;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2013-10-02 19:09:03 +00:00
|
|
|
|
font-size: 11px;
|
2012-12-20 10:14:27 +00:00
|
|
|
|
}
|
2013-08-14 18:41:20 +00:00
|
|
|
|
|
2014-01-16 08:53:39 +00:00
|
|
|
|
#fileList img.move2trash { display:inline; margin:-8px 0; padding:16px 8px 16px 8px !important; float:right; }
|
2013-08-14 18:41:20 +00:00
|
|
|
|
#fileList a.action.delete {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
2014-05-14 19:16:00 +00:00
|
|
|
|
padding: 17px 14px;
|
2013-08-14 18:41:20 +00:00
|
|
|
|
}
|
2014-01-31 07:03:00 +00:00
|
|
|
|
|
2014-06-03 07:55:24 +00:00
|
|
|
|
#fileList .action.action-share-notification span, #fileList a {
|
2014-05-13 13:22:18 +00:00
|
|
|
|
cursor: default !important;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-16 15:00:39 +00:00
|
|
|
|
a.action>img {
|
|
|
|
|
max-height:16px;
|
|
|
|
|
max-width:16px;
|
|
|
|
|
vertical-align:text-bottom;
|
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
2011-07-22 14:52:35 +00:00
|
|
|
|
|
2013-02-21 15:52:18 +00:00
|
|
|
|
#fileList a.action {
|
2013-08-14 18:41:20 +00:00
|
|
|
|
display: inline;
|
2014-02-17 16:27:07 +00:00
|
|
|
|
padding: 18px 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
|
|
|
|
}
|
2014-01-31 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
#fileList a.action[data-action="Rename"] {
|
2014-06-27 13:53:32 +00:00
|
|
|
|
padding: 16px 14px 17px !important;
|
2014-06-06 12:00:18 +00:00
|
|
|
|
position: relative;
|
2014-06-27 13:53:32 +00:00
|
|
|
|
top: -21px;
|
2014-01-31 07:03:00 +00:00
|
|
|
|
}
|
2013-03-03 12:01:25 +00:00
|
|
|
|
#fileList tr:hover a.action, #fileList a.action.permanent {
|
2013-07-22 09:18:51 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
|
filter: alpha(opacity=50);
|
2013-03-03 12:01:25 +00:00
|
|
|
|
opacity: .5;
|
|
|
|
|
display:inline;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
}
|
|
|
|
|
#fileList tr:hover a.action:hover {
|
2013-07-22 09:18:51 +00:00
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
|
filter: alpha(opacity=100);
|
2013-03-03 12:01:25 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
display:inline;
|
2013-02-21 15:52:18 +00:00
|
|
|
|
}
|
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;
|
|
|
|
|
height: 70px;
|
2013-07-02 02:28:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-03 17:50:03 +00:00
|
|
|
|
.summary:hover, .summary, table tr.summary td {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.summary td {
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
border-bottom: none;
|
2013-07-02 02:28:52 +00:00
|
|
|
|
}
|
|
|
|
|
.summary .info {
|
2013-08-14 19:26:06 +00:00
|
|
|
|
margin-left: 55px;
|
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;
|
|
|
|
|
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;
|
|
|
|
|
}
|