1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
#shared-files-tab {
padding: 10px;
padding-top: 20px;
}
#shared-files-list {
padding-top: 10px;
min-height: 200px;
}
#shared-files-list-empty-notice {
text-align: center;
border: solid 1px #a6c9e2;
border-radius: 3px;
-moz-border-radius: 3px;
}
#shared-files-list-empty-notice .title {
font-size: 140%;
color: #FF7700;
}
#shared-files-list-empty-notice .comment {
color: #4297d7;
}
#shared-files-selector {
visibility: hidden;
position: absolute;
with: 1px;
height: 1px;
}
.shared-file-item {
position: relative;
margin-top: 2px;
padding: 0px;
padding-left: 10px;
height: 37px;
background-color: #FFF;
border-radius: 3px;
-moz-border-radius: 3px;
white-space: nowrap;
overflow: hidden;
vertical-align: middle;
border: solid 1px #FFF;
}
.shared-file-item:nth-child(odd) {
background-color: #eaf5f7;
}
.shared-file-item:hover {
border: solid 1px #4297d7;
}
.shared-file-thumb {
position: absolute;
position: absolute;
top: 1px;
left: 2px;
width: 32px;
height: 32px;;
border-radius: 3px;
margin: 2px;
margin-right: 5px;
}
.shared-file-name {
position: absolute;
top: 3px;
left: 40px;
width: 55%;
font-size: 16px;
font-weight: bold;
text-overflow: ellipsis;
overflow: hidden;
}
.shared-file-info {
position: absolute;
top: 22px;
left: 40px;
width: 55%;
font-size: 11px;
text-overflow: ellipsis;
overflow: hidden;
}
.shared-file-url {
position: absolute;
display: block;
right: 10%;
width: 30%;
top: 20%;
}
.shared-file-url input {
border: solid 1px;
font-size: 15px;
width: 100%;
}
.shared-file-del-btn {
position: absolute;
top: 1px;
right: 5px;
width: 5%;
height: 37px;
text-align: right;
cursor: pointer;
background: url("./delete.png");
background-repeat: no-repeat;
background-position: 96% 6px;
}
|