Subversion Repositories Integrator Subversion

Rev

Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
179 espaco 1
body {
2
  .ui-steps {
3
    position: relative;
4
 
5
    ul {
6
      @include flex();
7
    }
8
 
9
    .ui-steps-item {
10
      flex: 1 1 0;
11
      -ms-flex: 1 1 0px;
12
      background: transparent;
13
      text-align: center;
14
      float: none;
15
      opacity: 1;
16
 
17
      .ui-menuitem-link {
18
        display: block;
19
        text-align: center;
20
        background: transparent;
21
        overflow: hidden;
22
        padding: 0;
23
 
24
        .ui-steps-number {
25
          color: $stepsItemNumberColor;
26
          background: $stepsItemNumberBg;
27
          border: $stepsItemNumberBorder;
28
          width: $stepsItemNumberWidth;
29
          height: $stepsItemNumberHeight;
30
          font-size: $stepsItemNumberFontSize;
31
          padding: 0;
32
          margin-top: $stepsItemNumberHeight;
33
          margin-left: auto;
34
          margin-right: auto;
35
          border-radius: $stepsItemNumberBorderRadius;
36
          @include flex();
37
          @include flex-align-center();
38
          @include flex-justify-center();
39
        }
40
 
41
        .ui-steps-title {
42
          display: block;
43
          padding-top: $inlineSpacing;
44
          color: $stepsItemTextColor;
45
        }
46
      }
47
 
48
      &.ui-state-highlight {
49
        .ui-steps-number {
50
          background: $highlightBg;
51
          color: $highlightTextColor;
52
          border-color: $highlightBg;
53
        }
54
 
55
        .ui-steps-title {
56
          font-weight: 600;
57
          color: $textColor;
58
        }
59
      }
60
    }
61
 
62
    .ui-steps-item:not(.ui-state-highlight){
63
      opacity: .65;
64
    }
65
 
66
    &:before {
67
      content:' ';
68
      border-top: $menuBorder;
69
      width: 100%;
70
      top: 50%;
71
      left: 0;
72
      display: block;
73
      position: absolute;
74
    }
75
  }
76
}