123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- @import "~@less/mixin.less";
- @import "~@less/variables.less";
- .mainHistory {
- .maskZIndex;
- position: fixed;
- margin-left: -500px;
- left: 50%;
- width: 1000px;
- top: 7%;
- bottom: 7%;
- height: 86%;
- background-color: #fff;
- overflow: hidden;
- // padding-bottom:20px;
- .close {
- position: absolute;
- top: 0;
- right: 0;
- cursor: pointer;
- .contentZIndex1
- }
- .mainHistoryLeft {
- width: 300px;
- height: 100%;
- background: #d2d1d1;
- position: relative;
- float: left;
- padding-top: 80px;
- .title {
- height: 80px;
- line-height: 80px;
- padding: 0 20px;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- background: #d2d1d1;
- }
- .his {
- font-size: 18px;
- }
- .sort {
- float: right;
- cursor: pointer;
- img {
- vertical-align: middle;
- width: 15px;
- height: 15px;
- }
- }
- .lists {
- box-sizing: border-box;
- overflow-y: auto;
- height: 100%;
-
- li {
- height: 54px;
- line-height: 54px;
- padding: 0 10px;
- font-size: 14px;
- cursor: pointer;
- border: 1px solid transparent;
- display: flex;
- align-items: center;
- .activeColor {
- color: '#3B9ED0';
- }
- .itemLeft{
- flex: 1;
- display: flex;
- // align-items: center;
- justify-content: start;
- flex-direction: column;
- .historyTop{
- display: flex;
- height:34px;
- .itemName {
- // display: inline-block;
- max-width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 14px;
- line-height: 34px;
- color: #1E1E1E;
- }
- .itemNameActive {
- // display: inline-block;
- max-width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 14px;
- line-height: 34px;
- color: #3B9ED0;
- }
- .edit{
- width: 30px;
- height: 30px;
- // background-color: pink;
- img{
- width: 14px;
- height: 14px;
- position: relative;
- top: -8px;
- left: 8px;
- }
- }
- }
- .time {
- font-size:10px;
- height:20px;
- line-height: 20px;
- color: #777;
- }
- .timeActive {
- font-size:10px;
- height:20px;
- line-height: 20px;
- color: #3B9ED0;
- }
- }
- .itemRight{
- width: 88px;
- display: flex;
- align-items: center;
- .del {
- // background-color: red;
- margin-left: 8px;
- width: 30px;
- height:30px;
- img{
- width: 20px;
- height: 20px;
- position: relative;
- top: -7px;
- left: 3px;
- }
- }
- }
-
-
- }
- li:hover {
- border: 1px solid #66afe9;
- border: 1px solid #66afe9\0;
- }
-
-
- .bgc {
- background-color: #fff;
- }
- .quote {
- width: 50px;
- height: 22px;
- line-height: 22px;
- border-radius: 15px;
- border: 0 none;
- color: #fff;
- background-color: @template-color;
- float: right;
- // margin-top: 16px;
- font-size: 12px;
- // display: none;
- outline: none;
- // margin-left: 10px;
- }
- .quoteShow {
- display: block;
- }
- .quoteHide {
- display: none;
- }
- }
- }
- .mainHistoryRight {
- // margin-left: 300px;
- // position: absolute;
- overflow: auto;
- height: 100%;
- padding-top: 40px;
- padding-bottom:20px;
- // top: 42px;
- float: left;
- }
- .closeHis {
- width: 700px;
- height: 40px;
- margin-left: 300px;
- position: absolute;
- .contentZIndex1;
- // border-bottom: 1px solid #EAEDF1;
- }
- }
- .center {
- text-align: center;
- font-size: 16px;
- padding-top: 10px;
- padding-bottom: 50px;
- }
- .outBox{
- padding-left: 18px;
- height: 100px;
- width: 100%;
- display: flex;
- align-items: center;
- }
|