Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Create wizard breadcrumb.
  • Loading branch information
cdujeu committed Oct 7, 2015
1 parent f537d48 commit f453007
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/ajaxplorer.css
Expand Up @@ -1000,6 +1000,9 @@ html.boxshadow div.errorMessage{
margin-top: -5px;
}

/*********************/
/* ACCORDION CONTENT */
/*********************/
div.accordion_toggle,
div.dialogContentMainTitle{
color: rgb(117, 128, 139);
Expand Down Expand Up @@ -1051,6 +1054,83 @@ div.oneFieldForm input.SF_input{
background: white !important;
}


/*********************/
/* WIZARD STYLE FORM */
/*********************/
div.wizard-pane{
display: none !important;
}

div.wizard-pane.wizard-panel-active{
display: block !important;
}

div.wizard_panel_title{
font-size: 16px;
}
div.wizard_buttons{
text-align: center;
margin-top: 20px ;
}
div.wizard_buttons div{
float: none !important;
width:70px;
display: inline-block !important;
margin-left: 10px !important;
}

.SF_input.SF_inlineButton.wizard_previous.disabled,
.SF_input.SF_inlineButton.wizard_next.disabled
{
display: none !important;
}

div.wizard_progress{
display: -webkit-flex !important;
display: flex !important;

}

.wizard_previous, .wizard_next{
background-color:#F47561 !important;
}


span.wizard_progress_element {
padding: 28px 0 14px;
background-color: #FFFFFF;
font-size: 11px;
flex: 1;
border-bottom: 3px solid #D8D7D7;
position: relative;
text-align: center;
color: #555555;
}

span.wizard_progress_element.wizard_progress_passed {
border-bottom: 3px solid #F47561;
color: #F47561;
}

span.progress_number {
display: inline-block;
width: 16px;
height: 16px;
background-color: #ABAAAA;
text-align: center;
border-radius: 50%;
color: white;
font-weight: bold;
font-size: 11px;
position: absolute;
bottom: -9px;
left: 43%;
}

.wizard_progress_passed span.progress_number {
background-color: #F47561;
}
/********************/
/* PROGRESS BAR */
/********************/
Expand Down

0 comments on commit f453007

Please sign in to comment.