Sha256: d3eb7fbddb0178630b52ccb3ea9e39d335258238175cfa0f7d5b8200b9750d06

Contents?: true

Size: 1.26 KB

Versions: 8

Compression:

Stored size: 1.26 KB

Contents

.fuelux  {
  .wizard {
    @include border-radius(0);
    @include box-shadow(none);
    background-color: transparent;
    border: none;

    .actions {
      padding: 0;
    }

    ul li {
      background-color: $wizardStepBackground;
      margin-right: 30px;
      padding: 0 20px;
      color: $wizardStepColor;
      font-family: $headingsFontFamily;
      font-size: 20px;
      position: relative;
      @include border-radius(0 !important);

      &.active {
        background-color: $wizardStepActiveBackground;
        color: $wizardStepActiveColor;
      }

      &.complete {
        background-color: $wizardStepCompleteBackground;
        color: $wizardStepCompleteColor;

        &:hover {
          background-color: darken($green, 5%);
        }

        &:before {
          background-color: $green;
        }
      }

      &:before {
        content: "";
        @include size(30px, 4px);
        background-color: $wizardStepBackground;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -2px;
        left: -30px;
      }

      &:first-child {
        &:before {
          display: none;
        }
      }
    }
  }
}

@media print {
  .fuelux .step-content .step-pane {display: block !important; opacity: 1 !important;}
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cg_app_base-1.1.1 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.78 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.62 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.56 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.55 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.54 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.52 app/assets/stylesheets/flatty/theme/_wizard.scss
cg_app_base-1.0.51 app/assets/stylesheets/flatty/theme/_wizard.scss