file.css (820B)
1 .rwmb-files { 2 margin: 0; 3 overflow: hidden; 4 } 5 .rwmb-file { 6 display: flex; 7 align-items: flex-start; 8 margin-bottom: 12px; 9 background: #fff; 10 cursor: move; 11 } 12 .rwmb-file-icon { 13 width: 48px; 14 height: 64px; 15 margin-right: 8px; 16 border: 1px solid rgba(0, 0, 0, .07); 17 display: flex; 18 align-items: center; 19 justify-content: center; 20 } 21 .rwmb-file-icon img { 22 max-width: 100%; 23 max-height: 100%; 24 height: auto; 25 display: block; 26 } 27 .rwmb-file-title { 28 font-weight: 600; 29 text-decoration: none; 30 } 31 .rwmb-file-name { 32 margin: 2px 0 6px; 33 white-space: nowrap; 34 } 35 .rwmb-file-actions { 36 font-size: 11px; 37 } 38 .rwmb-file-edit, 39 .rwmb-file-delete { 40 color: inherit; 41 text-decoration: none; 42 } 43 .rwmb-file-edit:after { 44 content: "|"; 45 color: #dcdcde; 46 margin: 0 6px; 47 } 48 .rwmb-file-delete { 49 color: #b32d2e; 50 } 51 .rwmb-file-input { 52 width: 100%; 53 }