12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import "~antd/lib/style/themes/default.less";
- .editable {
- td {
- height: 32px;
- padding: 10px !important;
- }
- }
- /*
- .select {
- :global(.ant-select-selection) {
- border: unset;
- }
- }
- */
- .qrWrapper {
- position: relative;
- width: 100%;
- height: 100%;
- .qrBtn {
- z-index: 10;
- display: none;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- a {
- position: relative;
- font-size: 10px;
- top: 30%;
- transform: translateY(-30%);
- padding: 5px 10px;
- background: #fff;
- color: #73777a;
- }
- }
- img {
- width: 50px;
- height: 50px;
- }
- &:hover {
- .qrBtn {
- display: block;
- background: rgba(0,193,222,.8);
- }
- }
- }
|