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

Commit f453007

Browse files
committed
Create wizard breadcrumb.
1 parent f537d48 commit f453007

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

core/src/plugins/gui.ajax/res/themes/orbit/css/ajaxplorer.css

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,6 +1000,9 @@ html.boxshadow div.errorMessage{
10001000
margin-top: -5px;
10011001
}
10021002

1003+
/*********************/
1004+
/* ACCORDION CONTENT */
1005+
/*********************/
10031006
div.accordion_toggle,
10041007
div.dialogContentMainTitle{
10051008
color: rgb(117, 128, 139);
@@ -1051,6 +1054,83 @@ div.oneFieldForm input.SF_input{
10511054
background: white !important;
10521055
}
10531056

1057+
1058+
/*********************/
1059+
/* WIZARD STYLE FORM */
1060+
/*********************/
1061+
div.wizard-pane{
1062+
display: none !important;
1063+
}
1064+
1065+
div.wizard-pane.wizard-panel-active{
1066+
display: block !important;
1067+
}
1068+
1069+
div.wizard_panel_title{
1070+
font-size: 16px;
1071+
}
1072+
div.wizard_buttons{
1073+
text-align: center;
1074+
margin-top: 20px ;
1075+
}
1076+
div.wizard_buttons div{
1077+
float: none !important;
1078+
width:70px;
1079+
display: inline-block !important;
1080+
margin-left: 10px !important;
1081+
}
1082+
1083+
.SF_input.SF_inlineButton.wizard_previous.disabled,
1084+
.SF_input.SF_inlineButton.wizard_next.disabled
1085+
{
1086+
display: none !important;
1087+
}
1088+
1089+
div.wizard_progress{
1090+
display: -webkit-flex !important;
1091+
display: flex !important;
1092+
1093+
}
1094+
1095+
.wizard_previous, .wizard_next{
1096+
background-color:#F47561 !important;
1097+
}
1098+
1099+
1100+
span.wizard_progress_element {
1101+
padding: 28px 0 14px;
1102+
background-color: #FFFFFF;
1103+
font-size: 11px;
1104+
flex: 1;
1105+
border-bottom: 3px solid #D8D7D7;
1106+
position: relative;
1107+
text-align: center;
1108+
color: #555555;
1109+
}
1110+
1111+
span.wizard_progress_element.wizard_progress_passed {
1112+
border-bottom: 3px solid #F47561;
1113+
color: #F47561;
1114+
}
1115+
1116+
span.progress_number {
1117+
display: inline-block;
1118+
width: 16px;
1119+
height: 16px;
1120+
background-color: #ABAAAA;
1121+
text-align: center;
1122+
border-radius: 50%;
1123+
color: white;
1124+
font-weight: bold;
1125+
font-size: 11px;
1126+
position: absolute;
1127+
bottom: -9px;
1128+
left: 43%;
1129+
}
1130+
1131+
.wizard_progress_passed span.progress_number {
1132+
background-color: #F47561;
1133+
}
10541134
/********************/
10551135
/* PROGRESS BAR */
10561136
/********************/

0 commit comments

Comments
 (0)