-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated Logitar Vue3 UI. * Removed a todo. * Completed Toasts and error handling. * Removed package-lock.json * Removed package-log.json * Returning the saved item. * Using saved return item and exclude selected types. * Added a refresh button. * Fixed toasts. * Fixed sorts and added an action column. * Code clean-up. * Code cleanup.
- Loading branch information
Showing
8 changed files
with
142 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
.badge[data-v-4065aa16] { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
vertical-align: middle; | ||
flex-shrink: 0; | ||
font-size: inherit; | ||
font-weight: 400; | ||
line-height: 1; | ||
max-width: 100%; | ||
text-align: center; | ||
overflow: visible; | ||
position: relative; | ||
transition: | ||
color 0.15s ease-in-out, | ||
background-color 0.15s ease-in-out, | ||
box-shadow 0.15s ease-in-out; | ||
} | ||
button[data-v-19270d92]:disabled { | ||
cursor: not-allowed !important; | ||
} | ||
.toast.toast-primary[data-v-b5177847] { | ||
background-color: #e6f2ffd9; | ||
border-color: #b8daffd9; | ||
color: #004085; | ||
} | ||
.toast.toast-primary.toast-solid[data-v-b5177847] { | ||
background-color: #e6f2ff; | ||
} | ||
.toast.toast-primary .toast-header[data-v-b5177847] { | ||
color: #004085; | ||
background-color: #cce5ffd9; | ||
border-bottom-color: #b8daffd9; | ||
} | ||
.toast.toast-secondary[data-v-b5177847] { | ||
background-color: #eff0f1d9; | ||
border-color: #d6d8dbd9; | ||
color: #383d41; | ||
} | ||
.toast.toast-secondary.toast-solid[data-v-b5177847] { | ||
background-color: #eff0f1; | ||
} | ||
.toast.toast-secondary .toast-header[data-v-b5177847] { | ||
color: #383d41; | ||
background-color: #e2e3e5d9; | ||
border-bottom-color: #d6d8dbd9; | ||
} | ||
.toast.toast-success[data-v-b5177847] { | ||
background-color: #e6f5e9d9; | ||
border-color: #c3e6cbd9; | ||
color: #155724; | ||
} | ||
.toast.toast-success.toast-solid[data-v-b5177847] { | ||
background-color: #e6f5e9; | ||
} | ||
.toast.toast-success .toast-header[data-v-b5177847] { | ||
color: #155724; | ||
background-color: #d4eddad9; | ||
border-bottom-color: #c3e6cbd9; | ||
} | ||
.toast.toast-danger[data-v-b5177847] { | ||
background-color: #fcedeed9; | ||
border-color: #f5c6cbd9; | ||
color: #721c24; | ||
} | ||
.toast.toast-danger.toast-solid[data-v-b5177847] { | ||
background-color: #fcedee; | ||
} | ||
.toast.toast-danger .toast-header[data-v-b5177847] { | ||
color: #721c24; | ||
background-color: #f8d7dad9; | ||
border-bottom-color: #f5c6cbd9; | ||
} | ||
.toast.toast-warning[data-v-b5177847] { | ||
background-color: #fff9e7d9; | ||
border-color: #ffeebad9; | ||
color: #856404; | ||
} | ||
.toast.toast-warning.toast-solid[data-v-b5177847] { | ||
background-color: #fff9e7; | ||
} | ||
.toast.toast-warning .toast-header[data-v-b5177847] { | ||
color: #856404; | ||
background-color: #fff3cdd9; | ||
border-bottom-color: #ffeebad9; | ||
} | ||
.toast.toast-info[data-v-b5177847] { | ||
background-color: #e5f4f7d9; | ||
border-color: #bee5ebd9; | ||
color: #0c5460; | ||
} | ||
.toast.toast-info.toast-solid[data-v-b5177847] { | ||
background-color: #e5f4f7; | ||
} | ||
.toast.toast-info .toast-header[data-v-b5177847] { | ||
color: #0c5460; | ||
background-color: #d1ecf1d9; | ||
border-bottom-color: #bee5ebd9; | ||
} | ||
.toast.toast-light[data-v-b5177847] { | ||
background-color: #ffffffd9; | ||
border-color: #fdfdfed9; | ||
color: #818182; | ||
} | ||
.toast.toast-light.toast-solid[data-v-b5177847] { | ||
background-color: #fff; | ||
} | ||
.toast.toast-light .toast-header[data-v-b5177847] { | ||
color: #818182; | ||
background-color: #fefefed9; | ||
border-bottom-color: #fdfdfed9; | ||
} | ||
.toast.toast-dark[data-v-b5177847] { | ||
background-color: #e3e5e5d9; | ||
border-color: #c6c8cad9; | ||
color: #1b1e21; | ||
} | ||
.toast.toast-dark.toast-solid[data-v-b5177847] { | ||
background-color: #e3e5e5; | ||
} | ||
.toast.toast-dark .toast-header[data-v-b5177847] { | ||
color: #1b1e21; | ||
background-color: #d6d8d9d9; | ||
border-bottom-color: #c6c8cad9; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters