1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .btn {
- // height: 33px;
- // line-height: 33px;
- // flex: 0 0 auto;
- background-color: transparent !important;
- border: 1px solid @darkgray !important;
- // padding: 0 1.481vh;
- color: @gray !important;
- font-size: @fontsize-s !important;
- // cursor: pointer;
- &:hover {
- border-color: @green !important;
- color: @green !important;
- background: fade(@green, 20) !important;
- }
- &.green {
- border-color: @green !important;
- color: @green !important;
- background: fade(@green, 20) !important;
- }
- & + button {
- margin-left: 16px;
- }
- }
- .tabCut1 {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin: 10px 0px 0px 20px;
- .tabCut-item {
- width: 93px;
- height: 23px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- background: fade(@green, 50);
- color: fade(@white, 50);
- position: relative;
- font-size: 12px;
- &.green1 {
- background: fade(@green, 80);
- color: fade(@white, 80);
- }
- &.green1:before {
- content: "";
- width: 1px;
- height: 7px;
- background-color: #ffffff;
- position: absolute;
- left: 0;
- }
- &.green1:after {
- content: "";
- width: 1px;
- height: 7px;
- background-color: #ffffff;
- position: absolute;
- right: 0;
- }
- }
- }
|