Home
last modified time | relevance | path

Searched full:navigation (Results 1 – 25 of 109) sorted by relevance

12345

/openbmc/webui-vue/docs/customization/
H A Dtheme.md12 application navigation, and theming.
79 This variable determines when the primary navigation is hidden and when the
83 - xs - Navigation is always displayed
84 - sm - Navigation displayed when the viewport is greater than 576px
85 - md - Navigation displayed when the viewport is greater than 768px
86 - lg - Navigation displayed when the viewport is greater than 992px
87 - xl - Navigation displayed when the viewport is less than 1200px
101 ### $navigation-width
103 This variable determines the width of the primary navigation menu when expanded.
113 - Primary navigation section
[all …]
H A Dbuild.md9 - [App Navigation](#app-navigation)
69 ## App navigation
71 The Vue Router definition is closely tied to the app navigation but should be
74 navigation. This configuration will make customizations to the rendered markup
77 1. If making customizations to the app navigation, add `CUSTOM_APP_NAV=true` key
86 `navigationItems` that should be an array of of navigation objects. Each
87 navigation object should have an `id` and `label` property defined.
/openbmc/webui-vue/src/layouts/
H A DAppLayout.vue9 <app-navigation class="app-navigation" />
82 grid-template-columns: $navigation-width 1fr;
85 'navigation content';
96 .app-navigation {
97 grid-area: navigation;
/openbmc/webui-vue/tests/unit/
H A DAppNavigation.spec.js40 it('Nav Overlay click should emit change-is-navigation-open event', async () => {
45 expect(rootWrapper.emitted('change-is-navigation-open')).toBeTruthy();
48 it('toggle-navigation event should toggle isNavigation data prop value', async () => {
51 rootWrapper.vm.$emit('toggle-navigation');
53 rootWrapper.vm.$emit('toggle-navigation');
H A DAppHeader.spec.js49 it('nav-trigger button click should emit toggle-navigation event', async () => {
53 expect(rootWrapper.emitted('toggle-navigation')).toBeTruthy();
64 rootWrapper.vm.$emit('change-is-navigation-open', false);
/openbmc/phosphor-webui/app/
H A Dindex.html15 …<app-navigation ng-if="dataService.showNavigation" path="dataService.path" show-navigation="dataSe…
/openbmc/webui-vue/src/components/AppNavigation/
H A DAppNavigation.vue7 <!-- Navigation items with no children -->
18 <!-- Navigation items with children -->
80 this.$root.$emit('change-is-navigation-open', isNavigationOpen);
85 this.$root.$on('toggle-navigation', () => this.toggleIsOpen());
215 width: $navigation-width;
222 transform: translateX(-$navigation-width);
/openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/
H A Dtest_sessions_sub_menu.robot20 Verify Navigation To Sessions Page
21 [Documentation] Verify navigation to sessions page.
H A Dtest_certificates_sub_menu.robot35 Verify Navigation To Certificate Page
36 [Documentation] Verify navigation to certificate page.
/openbmc/openbmc-test-automation/gui/gui_test/operations_menu/
H A Dtest_host_console_sub_menu.robot20 Verify Navigation To Host Console Page
21 [Documentation] Verify navigation to Host console page.
H A Dtest_reboot_bmc_sub_menu.robot23 Verify Navigation To Reboot BMC Page
24 [Documentation] Verify navigation to reboot BMC page.
H A Dtest_firmware_sub_menu.robot21 Verify Navigation To Firmware Page
22 [Documentation] Verify navigation to firmware page.
/openbmc/openbmc-test-automation/gui/gui_test/hardware_status_menu/
H A Dtest_inventory_and_leds_sub_menu.robot19 Verify Navigation To Inventory And LEDs Page
20 [Documentation] Verify navigation to inventory page.
H A Dtest_sensors_sub_menu.robot25 Verify Navigation To Sensors Page
26 [Documentation] Verify navigation to Sensors page.
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-graphics/clutter/clutter-gst-3.0/
H A D0001-Install-example-binary-needed-for-core-image-clutter.patch26 -noinst_PROGRAMS = camera-player video-player video-sink video-sink-navigation video-content
27 +bin_PROGRAMS = camera-player video-player video-sink video-sink-navigation video-content
/openbmc/openbmc-test-automation/gui/gui_test/settings_menu/
H A Dtest_factory_reset_sub_menu.robot22 Verify Navigation To Factory Reset Page
23 [Documentation] Verify navigation to factory reset page.
H A Dtest_power_restore_policy_sub_menu.robot23 Verify Navigation To Power Restore Policy Page
24 [Documentation] Verify navigation to Power Restore Policy page.
H A Dtest_date_and_time_sub_menu.robot29 Verify Navigation To Date And Time Page
30 [Documentation] Verify navigation to date and time page.
110 [Documentation] Verify navigation to profile setting page after clicking
/openbmc/linux/Documentation/devicetree/bindings/gnss/
H A Dgnss-common.yaml7 title: Common Properties for Global Navigation Satellite Systems (GNSS)
14 This document defines device tree properties common to Global Navigation
/openbmc/openbmc-test-automation/gui/gui_test/logs_and_services_menu/
H A Dtest_progress_logs_sub_menu.robot23 Verify Navigation To Progress Logs Page
24 [Documentation] Verify navigation to progress logs page.
/openbmc/openbmc-test-automation/gui/gui_test/gui_header/
H A Dtest_profile_settings_sub_menu.robot23 Verify Navigation To Profile Settings Page
24 [Documentation] Verify navigation to profile settings page.
/openbmc/phosphor-webui/app/common/styles/directives/
H A Dapp-navigation.scss8 //Navigation icons
16 // Top level navigation
H A Dindex.scss1 @import "./app-navigation.scss";
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-flask-nav_0.6.bb1 DESCRIPTION = "Easily create navigation for Flask applications."
/openbmc/webui-vue/src/components/AppHeader/
H A DAppHeader.vue223 'change-is-navigation-open',
241 this.$root.$emit('toggle-navigation');
245 this.$root.$emit('skip-navigation');

12345