diff --git a/.vs/IZYIM-mobile-client/v15/.suo b/.vs/IZYIM-mobile-client/v15/.suo index 7c992bc..2d35e78 100644 Binary files a/.vs/IZYIM-mobile-client/v15/.suo and b/.vs/IZYIM-mobile-client/v15/.suo differ diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json index 5fb3aab..ac10bac 100644 --- a/.vs/VSWorkspaceState.json +++ b/.vs/VSWorkspaceState.json @@ -4,6 +4,6 @@ "\\css", "\\js" ], - "SelectedNode": "\\search-contact.html", + "SelectedNode": "\\contact-invite.html", "PreviewInSolutionExplorer": false } \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index 3797046..260d1a2 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/css/global.style.css b/css/global.style.css index ef836ef..b3b743c 100644 --- a/css/global.style.css +++ b/css/global.style.css @@ -2742,6 +2742,109 @@ input[type=text]:disabled { /*end of part 30----------------------------------------------------*/ + + +/*------------------------------------------------------------------- +[31. order meter tracking bar +-------------------------------------------------------------------*/ +ol.progress[data-steps="2"] li { width: 49%; } +ol.progress[data-steps="3"] li { width: 33%; } +ol.progress[data-steps="4"] li { width: 24%; } +ol.progress[data-steps="5"] li { width: 19%; } +ol.progress[data-steps="6"] li { width: 16%; } +ol.progress[data-steps="7"] li { width: 14%; } +ol.progress[data-steps="8"] li { width: 12%; } +ol.progress[data-steps="9"] li { width: 11%; } + +.progress { + width: 100%; + list-style: none; + list-style-image: none; + margin: 20px 0 20px 0; + padding: 0; +} + +.progress li { + float: left; + text-align: center; + position: relative; +} + +.progress .name { + display: block; + vertical-align: bottom; + text-align: center; + margin-bottom: 1em; + color: black; + opacity: 0.3; +} + +.progress .step { + color: black; + border: 3px solid silver; + background-color: silver; + border-radius: 50%; + line-height: 1.2; + width: 1.2em; + height: 1.2em; + display: inline-block; + z-index: 0; +} + +.progress .step span { + opacity: 0.3; +} + +.progress .active .name, +.progress .active .step span { + opacity: 1; +} + +.progress .step:before { + content: ""; + display: block; + background-color: silver; + height: 0.4em; + width: 50%; + position: absolute; + bottom: 0.6em; + left: 0; + z-index: -1; +} + +.progress .step:after { + content: ""; + display: block; + background-color: silver; + height: 0.4em; + width: 50%; + position: absolute; + bottom: 0.6em; + right: 0; + z-index: -1; +} + +.progress li:first-of-type .step:before { + display: none; +} + +.progress li:last-of-type .step:after { + display: none; +} + +.progress .done .step, +.progress .done .step:before, +.progress .done .step:after, +.progress .active .step, +.progress .active .step:before { + background-color: yellowgreen; +} + +.progress .done .step, +.progress .active .step { + border: 3px solid yellowgreen; +} +/*end of part 31----------------------------------------------------*/ /*Other Styles and helpers------------------------------------------*/ .block { display: block;