mirror of
https://github.com/nasa/openmct.git
synced 2025-01-27 14:49:28 +00:00
Add action messages. Fix margins
This commit is contained in:
parent
305d566ee7
commit
29a747405e
@ -116,7 +116,7 @@ export default {
|
||||
id: 'viewSnapshot',
|
||||
cssClass: 'icon-camera',
|
||||
name: 'View Snapshot',
|
||||
description: 'description',
|
||||
description: 'View the snapshot image taken in the form of a jpeg.',
|
||||
onItemClicked: () => this.openSnapshot()
|
||||
};
|
||||
|
||||
@ -127,7 +127,7 @@ export default {
|
||||
id: 'navigateToItem',
|
||||
cssClass: this.embed.cssClass,
|
||||
name: 'Navigate to Item',
|
||||
description: 'description',
|
||||
description: 'Navigate to the item with the default time settings.',
|
||||
onItemClicked: () => this.navigateToItem()
|
||||
};
|
||||
|
||||
@ -135,7 +135,7 @@ export default {
|
||||
id: 'navigateToItemInTime',
|
||||
cssClass: 'icon-telemetry',
|
||||
name: 'Navigate to Item in Time',
|
||||
description: 'description',
|
||||
description: 'Navigate to the item with the given time context',
|
||||
onItemClicked: () => this.navigateToItemInTime()
|
||||
};
|
||||
|
||||
@ -143,7 +143,7 @@ export default {
|
||||
id: 'quickView',
|
||||
cssClass: 'icon-eye-open',
|
||||
name: 'Quick View',
|
||||
description: 'description',
|
||||
description: 'Full screen overlay view of the item.',
|
||||
onItemClicked: () => this.previewEmbed()
|
||||
};
|
||||
|
||||
@ -154,7 +154,7 @@ export default {
|
||||
id: 'removeEmbed',
|
||||
cssClass: 'icon-trash',
|
||||
name: this.removeActionString,
|
||||
description: 'description',
|
||||
description: 'Permanently delete this embed from this Notebook entry.',
|
||||
onItemClicked: this.getRemoveDialog.bind(this)
|
||||
};
|
||||
|
||||
|
@ -452,6 +452,20 @@
|
||||
&__snap-thumb {
|
||||
@include snapThumb();
|
||||
}
|
||||
&__actions-menu {
|
||||
max-height: 80vh;
|
||||
max-width: 500px;
|
||||
min-height: 100px;
|
||||
z-index: 70;
|
||||
[class*="__icon"] {
|
||||
filter: $colorKeyFilter;
|
||||
margin: 0%;
|
||||
}
|
||||
[class*="__item-description"] {
|
||||
min-width: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/****************************** SNAPSHOTTING */
|
||||
|
Loading…
x
Reference in New Issue
Block a user