// // Segmented controllers // -------------------------------------------------- .segmented-control { position: relative; display: table; padding: 0; overflow: hidden; font-size: 12px; font-weight: $font-weight-light; list-style: none; background-color: $chrome-color; border: 1px solid #ccc; border-radius: 4px; // Section within controller li { display: table-cell; overflow: hidden; width: 1%; text-align: center; white-space: nowrap; border-left: 1px solid #ccc; // Link that fills each section > a { display: block; padding-top: 6px; padding-bottom: 7px; overflow: hidden; line-height: 1; color: #333; text-overflow: ellipsis; } // Remove border-left and shadow from first section &:first-child { border-left-width: 0; } // Active states of segmented controller &:active { background-color: #eee; } &.active { background-color: #ccc; } } } // Other segmented controller types // -------------------------------------------------- // Primary .segmented-control-primary { border: 1px solid $primary-color; li { border-color: inherit; > a { color: $primary-color; } &:active { background-color: lighten($primary-color, 35%); } &.active { background-color: $primary-color; > a { color: #fff; } } } } // Positive .segmented-control-positive { border: 1px solid $positive-color; li { border-color: inherit; > a { color: $positive-color; } &:active { background-color: lighten($positive-color, 35%); } &.active { background-color: $positive-color; > a { color: #fff; } } } } // Negative .segmented-control-negative { border: 1px solid $negative-color; li { border-color: inherit; > a { color: $negative-color; } &:active { background-color: lighten($negative-color, 35%); } &.active { background-color: $negative-color; > a { color: #fff; } } } } .segmented-control-item { display: none; &.active { display: block; } } // Segmented controller in all bars // -------------------------------------------------- // Remove standard segmented bottom margin .bar .segmented-control { top: 8px; margin: 0 auto; }