Skip to content

Commit

Permalink
Merge pull request #1899 from hypersign-protocol/v5.12.0
Browse files Browse the repository at this point in the history
V5.12.0
  • Loading branch information
Raj6939 authored Feb 6, 2023
2 parents e8b7f04 + afc6699 commit 04e096e
Show file tree
Hide file tree
Showing 25 changed files with 502 additions and 2,398 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperfye-frontend",
"version": "v5.11.0",
"version": "v5.12.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode production",
Expand Down Expand Up @@ -57,8 +57,7 @@
"vue-stepper": "^1.4.2",
"vue-sweetalert2": "^5.0.2",
"vuedraggable": "^2.24.3",
"vuejs-datepicker": "^1.6.2",
"vuejs-datetimepicker": "^1.1.13",
"vue-vanilla-datetime-picker": "^1.2.0",
"vuejs-paginate": "^2.1.0",
"vuex": "^3.0.0",
"watchify": "^4.0.0",
Expand Down
18 changes: 11 additions & 7 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ export default {
icon: "fas fa-users",
exactPath: true,
},
{
href: "/admin/marketplace",
title: "Marketplace",
icon: "fas fa-store",
exactPath: true,
},
{
title: "Settings",
icon: "fas fa-cog",
Expand Down Expand Up @@ -121,13 +127,7 @@ export default {
exactPath: true,
}
]
},
{
href: "/admin/marketplace",
title: "Marketplace",
icon: "fas fa-store",
exactPath: true,
},
},
{
href: "/admin/login",
title: "Logout",
Expand Down Expand Up @@ -275,6 +275,10 @@ export default {
},
};
</script>
<style>
@import "../node_modules/vue-vanilla-datetime-picker/dist/DateTimePicker.css";
@import url("./assets/css/style-override.css");
</style>
<style scoped>
.logo {
/* width: 144px; */
Expand Down
8 changes: 8 additions & 0 deletions src/assets/css/participant-side-datetime-override.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.datetime-picker-main {
width: 100%;
position: static;
}
.datetime-picker__button{
color: rgb(26 26 26 / 90%);;
height: calc(1.5em + 0.75rem + 2px);
}
13 changes: 13 additions & 0 deletions src/assets/css/style-override.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.weekday__row {
color: rgb(241, 179, 25);
}
.datetime-picker__button{
color: #495057;;
border-radius: 5px;
width: 100%;
background: #fff;
border: 1px solid #ced4da;
}
.datetime-picker-main {
z-index: 10;
}
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ export default {
},
placeH() {
if (
this.selected.type != "HYPERLINK_URL" &&
this.selected.type != "INFO_TEXT"
(this.selected.type != "HYPERLINK_URL" &&
this.selected.type != "INFO_TEXT" && this.selected.type != "INPUT_DATE")
) {
return true;
} else {
Expand Down
Loading

0 comments on commit 04e096e

Please sign in to comment.