diff --git a/resources/assets/vue/components/containers/elements/ContainerProfileSectionComponent.vue b/resources/assets/vue/components/containers/elements/ContainerProfileSectionComponent.vue index b3a1b289..e4859da8 100644 --- a/resources/assets/vue/components/containers/elements/ContainerProfileSectionComponent.vue +++ b/resources/assets/vue/components/containers/elements/ContainerProfileSectionComponent.vue @@ -1,36 +1,4 @@ + + /* timeline */ + ul.timeline_ul { + list-style-type: none; + position: relative; + } + + ul.timeline_ul:before { + content: ' '; + background: #d4d9df; + display: inline-block; + position: absolute; + left: 21px; + width: 2px; + height: 100%; + z-index: 1; + margin-top: 13px; + } + + ul.timeline_ul>li { + margin: 10px 0; + padding-left: 20px; + } + + ul.timeline_ul>li:before { + content: ' '; + display: inline-block; + position: absolute; + left: 12px; + z-index: 1; + width: 20px; + height: 20px; + border-radius: 50%; + margin-top: 3px; + opacity: 12%; + } + ul.timeline_ul>li .row:before { + content: ' '; + display: inline-block; + position: absolute; + left: 16px; + z-index: 2; + width: 12px; + height: 12px; + border-radius: 50%; + margin-top: 7px; + } + + ul.timeline_ul>li.bg-blue:before, + ul.timeline_ul>li.bg-blue .row:before { + background: #00CFE8; + } + + ul.timeline_ul>li.bg-purple:before, + ul.timeline_ul>li.bg-purple .row:before { + background: #7367F0; + } + + ul.timeline_ul>li.bg-orange:before, + ul.timeline_ul>li.bg-orange .row:before { + background: #FF9F43; + } + + /* delivery_status_ul */ + .delivery_status{ + position: relative; + } + + .delivery_status hr{ + background: #A6A6A6; + display: block; + height: 2px; + width: 100%; + } + + .delivery_status .overlay12 { + position: absolute; + top: 0; + width: 100%; + height: 100%; + + justify-content: space-between; + align-self: center; + display: flex; + } + + .delivery_status .overlay12 .dot { + width: 20px; + height: 20px; + border-radius: 50%; + margin-top: auto; + margin-bottom: auto; + + border: 2px solid #A6A6A6; + background-color: white; + } + + .delivery_status .overlay12 .dot.checked { + border: 2px solid #912873; + background-color: #912873; + position:relative; + } + + .delivery_status .overlay12 .dot.checked::before { + font-family: FontAwesome; + position:absolute; + top:0; + content: "\f00c"; + color: white; + + margin-left: 3px; + display: block; + font-size: 10px; + } + + .line_div{ + height: 36px; + } + + .status_p{ + top: 25px; + left: -40px; + width: 100px; + } +