| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .table {
- margin: 20px;
- width: 97%;
- }
- .table th {
- width: 10%;
- font-weight: bold;
- text-align: center;
- }
- .table td {
- width: 90%;
- table-layout: fixed;
- word-break: break-all;
- overflow: hidden;
- }
- .file_imgs {
- padding: 10px 5px;
- list-style: none;
- margin-bottom: 60px;
- margin-left: -15px;
- }
- .file_imgs li {
- float: left;
- position: relative;
- width: 109px;
- height: 109px;
- margin-left: 10px;
- margin-right: 10px;
- margin-bottom: 40px;
- padding-top: 0;
- padding-bottom: 0;
- }
- .file_imgs li:hover .img_mask {
- display: block;
- }
- .file_imgs .img_mask {
- display: none;
- position: absolute;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, .3);
- width: 100%;
- height: 22px;
- z-index: 1;
- }
- .file_imgs .img_mask i {
- position: absolute;
- right: 5px;
- top: 5px;
- display: inline-block;
- width: 13px;
- height: 12px;
- cursor: pointer;
- background: url(../../img/file_img_icons.png) no-repeat 0 0;
- }
- .file_imgs .file_name {
- width: 100%;
- display: inline-block;
- text-align: center;
- /*overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;*/
- word-break: break-all;
- padding-top: 8px;
- }
- .file_imgs li img {
- width: 100%;
- height: 100%;
- border: 0;
- vertical-align: middle;
- }
- .file_imgs .upload-state-done .img_state {
- display: block;
- position: absolute;
- right: 0;
- bottom: 0;
- width: 0;
- height: 0;
- border-bottom: 40px solid #01b2fe;
- border-left: 40px solid transparent;
- overflow: inherit;
- }
- .file_imgs .img_state i {
- position: absolute;
- right: 4px;
- bottom: -32px;
- display: inline-block;
- width: 15px;
- height: 11px;
- background: url(../../img/file_img_icons.png) no-repeat 0 -16px;
- }
- .error {
- color: red;
- text-align: center;
- }
- .noThumb {
- width: 109px;
- height: 109px;
- text-align: center;
- color: #1aaad0;
- }
- .glyphicon.glyphicon-paperclip {
- font-size: 80px;
- text-align: center;
- }
- .img-box {
- float: left;
- width: 120px;
- height: 120px;
- background-size: 100% 100%;
- display: inline-block;
- position: relative;
- border-radius: 5px;
- margin-right: 10px;
- border: solid 1px #e8e8e8;
- cursor: pointer;
- text-align: center;
- line-height: 120px
- }
- .img-box .img_mask {
- display: none;
- position: absolute;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, .3);
- width: 100%;
- height: 22px;
- z-index: 5;
- }
- .image-item {
- width: 120px;
- height: 120px;
- background-size: 100% 100%;
- display: inline-block;
- position: relative;
- border-radius: 5px;
- margin-right: 10px;
- /*border: solid 1px #e8e8e8;*/
- cursor: pointer;
- }
- .img-box .img_mask i {
- position: absolute;
- right: 5px;
- top: 5px;
- display: inline-block;
- width: 13px;
- height: 12px;
- cursor: pointer;
- color: #fff;
- }
- .img-box:hover .img_mask {
- display: block;
- }
- .img_filename{
- font-size: 30px;
- display: block;
- width: 100%;
- height: calc(100% - 22px);
- }
|