1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @import '../setting.less';
- #appBody.light {
- //
- .Inverter-Info .box-main {
- .wind-site-menu {
- background-color: @gray-3;
- }
- .Inverter-Info-body {
- .inverter-datas .inverter-item .inverter-item-info {
- border: 1px solid @gray-3;
- background-color: @white;
- .states {
- background: @white;
- transition: @transition;
- .state-list .list-item {
- background: rgba(96, 103, 105, 0.1);
- &:nth-child(2n) {
- background: transparent;
- }
- .state {
- background: rgba(96, 103, 105, 0.2);
- }
- }
- .counts {
- .all {
- background: rgba(96, 103, 105, 0.1);
- }
- .error {
- color: @white;
- }
- }
- }
- }
- .Inverter-Info-title {
- position: relative;
- background: @white;
- transition: @transition;
- .title {
- color: @deepblue;
- font-weight: bold;
- }
- .title-tools-left {
- color: @black;
- }
- }
- .table-form.mg-b-8 {
- background: @white;
- transition: @transition;
- }
- }
- }
- }
|