1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @import "~@less/mixin.less";
- .wrapper{
- background-color: @gray-background-color;
- user-select: none;
- position: relative;
- .tempLists {
- overflow-y: auto;
- background-color: #fff;
- }
- .wrapperTop {
- height: 36px;
- padding: 0 20px;
- background-color: #EAEDF1;
- cursor: pointer;
- .check-box {
- height: 18px;
- width: 18px;
- margin-top: 10px;
- padding-right: 10px;
-
- box-sizing: content-box;
- float: left;
- }
- .check-wrap{
- height: 36px;
- padding-right: 10px;
- display: inline-block;
- float: left;
- }
- span {
- display: inline-block;
- height: 36px;
- line-height: 36px;
- float: left;
- }
- .fr-element {
- float: right;
- }
- .del-items {
- margin-right: 20px;
- color: #FF0000;
- }
- .del-items-gray {
- margin-right: 20px;
- color: #ccc;
- }
- .manger {
- color: @template-color;
- }
- .done {
- color: @template-color;
- }
- }
- .loadMore {
- text-align: center;
- color: #2a9bd5;
- cursor: pointer;
- margin-top: 15px;
- }
- }
|