Skip to content

Commit

Permalink
fix(console): fix color of autocomplete and command list (#1733)
Browse files Browse the repository at this point in the history
switch from blue to primary

Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou authored Jan 29, 2024
1 parent 7db824e commit 3db2fbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/CommandHelpModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
two-line>
<v-list-item-content class="px-0">
<v-list-item-title
class="blue--text font-weight-bold cursor-pointer"
class="primary--text font-weight-bold cursor-pointer"
@click="
$emit('onCommand', cmd.command)
isOpen = false
Expand Down
2 changes: 1 addition & 1 deletion src/components/panels/MiniconsolePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export default class MiniconsolePanel extends Mixins(BaseMixin) {
commands.forEach(
(command) =>
(output +=
'<a class="command blue--text font-weight-bold">' +
'<a class="command font-weight-bold">' +
command.command +
'</a>: ' +
command.description +
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Console.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default class PageConsole extends Mixins(BaseMixin) {
commands.forEach(
(command) =>
(output +=
"<a class='command blue--text'>" +
"<a class='command font-weight-bold'>" +
command.command +
'</a>: ' +
command.description +
Expand Down

0 comments on commit 3db2fbb

Please sign in to comment.