1/* =Upgrade Plugin
2----------------------------------------------- */
3
4#plugin__upgrade_meter ol {
5    height: 24px;
6
7    li {
8        height: 24px;
9        font-family: @ini_font;
10        border-radius: 12px;
11
12        span {
13            right: -20px;
14        }
15        span.step {
16            top: -12px;
17            padding: 0;
18            padding-top: 4px;
19            border: 3px solid @ini_background_neu;
20            z-index: 99;
21            font-size: 24px;
22            color: @ini_background_neu;
23            width: 1.5em;
24            font-weight: normal;
25            position: absolute;
26            background-color: #fff;
27            border-radius: 50%;
28            width: 48px;
29            height: 48px;
30        }
31        span.stage {
32            color: #fff;
33            font-weight: normal;
34        }
35    }
36    li.active {
37        height: 24px;
38        background: @ini_theme_color;
39
40        span.stage {
41            color: @ini_background;
42        }
43    }
44}
45