Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Fix specificity of wizard to avoid styling .step-content child elements #619

Merged
merged 1 commit into from
Aug 26, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions dist/css/fuelux.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/fuelux.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/fuelux.min.css

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions less/wizard.less
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
min-height: 48px;
overflow: hidden;

.steps {
> .steps {
list-style: none outside none;
padding: 0;
margin: 0;
@@ -114,7 +114,7 @@
}
}

.actions {
> .actions {
z-index: 1000;
position: absolute;
right: 0;
@@ -163,7 +163,7 @@
display: none;
}

.active {
> .active {
display: block;

.btn-group {
@@ -176,11 +176,11 @@

// when complete
&.complete {
.actions .glyphicon-arrow-right:before {
display: none;
}
.actions .glyphicon-arrow-right {
margin-left: 0;
}
> .actions .glyphicon-arrow-right:before {
display: none;
}
> .actions .glyphicon-arrow-right {
margin-left: 0;
}
}
}