12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- @import "~antd/lib/style/themes/default.less";
- .card {
- &:hover {
- .picActions {
- display: block;
- }
- .removeIcon {
- display: block;
- }
- }
- :global {
- .ant-card-body {
- padding: 0 !important;
- }
- }
- }
- .checkbox {
- position: absolute;
- top: 3px;
- left: 5px;
- }
- .removeIcon {
- position: absolute;
- display: none;
- top: 5px;
- right: 5px;
- font-size: 16px;
- font-weight: 600px;
- color: @primary-9;
- &:hover {
- color: red;
- }
- }
- .picWrapper {
- position: relative;
- vertical-align: middle;
- text-align: center;
- height: 283px;
- line-height: 283px;
- img {
- max-height: 100%;
- max-width: 100%;
- vertical-align: middle;
- heigth: auto;
- }
- }
- .metaData {
- position: absolute;
- bottom: 0px;
- overflow: hidden;
- padding: 0 4px;
- width: 100%;
- height: 50px;
- line-height: 50px;
- color: #454545;
- text-align: center;
- text-overflow: ellipsis;
- vertical-align: middle;
- background: #dadada;
- }
- .picActions {
- .metaData();
- display: none;
- }
|