1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| .mk-tab-dropdown-wrap {
| box-shadow: 0 0 2px #bcbcbc;
| background: #ffffff;
| min-width: 85px;
| border-radius: 2px;
|
| div {
| height: 32px;
| line-height: 32px;
| padding: 0 15px;
| color: rgba(0, 0, 0, 0.65);
| background: #ffffff;
| cursor: pointer;
| }
| div:hover {
| background-color: var(--mk-sys-color);
| color: #ffffff;
| }
| }
|
|