| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- .webuploader-container {
- position: relative;
- }
- .webuploader-element-invisible {
- position: absolute !important;
- clip: rect(1px 1px 1px 1px);
- /* IE6, IE7 */
- clip: rect(1px, 1px, 1px, 1px);
- }
- .webuploader-pick {
- position: relative;
- display: inline-block;
- cursor: pointer;
- padding: 10px 15px;
- color: #fff;
- text-align: center;
- border-radius: 3px;
- overflow: hidden;
- }
- .webuploader-pick-disable {
- opacity: 0.6;
- pointer-events: none;
- }
- #filePicker {
- width: 75px;
- height: 75px;
- background-image: url(../images/iconfont-tianjia.png);
- background-size: 100% 100%;
- display: inline-block;
- position: relative;
- border-radius: 5px;
- margin: 0 10px 10px;
- }
- /*样式*/
- .thumbnail {
- width: 75px;
- height: 75px;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 4px;
- }
- .file-item {
- float: left;
- position: relative;
- margin: 0 10px 10px;
- padding: 4px;
- text-align: center;
- }
- .thumbnail img {
- width: 100%;
- height: 100%;
- }
- .file-item .error {
- position: absolute;
- top: 4px;
- left: 4px;
- right: 4px;
- background: red;
- color: white;
- text-align: center;
- height: 20px;
- font-size: 14px;
- line-height: 23px;
- }
- .file-item .info {
- position: absolute;
- left: 4px;
- bottom: 4px;
- right: 4px;
- height: 20px;
- line-height: 20px;
- text-indent: 5px;
- background: rgba(0, 0, 0, 0.6);
- color: white;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-size: 12px;
- z-index: 10;
- }
- .image-close {
- position: absolute;
- display: inline-block;
- right: -6px;
- top: -6px;
- width: 20px;
- height: 20px;
- text-align: center;
- line-height: 20px;
- border-radius: 12px;
- background-color: #FF5053;
- color: #f3f3f3;
- border: solid 1px #FF5053;
- font-size: 9px;
- font-weight: 200;
- z-index: 1;
- }
|