liuyg
2021-07-02 25ce610f6ecca7325e7a743dc032c4a76559c63d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import "variables.less";
@import "../common/TabBar.less";
@import "../common/domButtons/DomButtonWhiteCross.css";
 
@media (max-width:500px) {
  .mblTabBarTabBar {
      /* Tab separator only for width < 500 (because TabBar._largeScreenWidth == 500)*/
          .mblTabBarButton+.mblTabBarButton:before{
              content:url('images/vseparator.png');
              position:absolute;
              top: 12px;
              left:0px;
          }
  }
}
/* when fill is activated, box-sizing is border-box */
.mblTabBarTabBar {
    &.mblTabBarFill {
        .mblTabBarButton {
            height: 48px;
        }
    }
}
.mblTabBarSegmentedControl {
    &.mblTabBarFill {
        .mblTabBarButton {
            height: 29px;
        }
    }    
}
.mblTabBarTallTab {
    &.mblTabBarFill {
        .mblTabBarButton {
            height: 62px;
        }
    }
}