efl/data/elementary/themes
Yeongjong Lee a47f062633 navigation_layout: set efl.content y-axis align to 0.0
Summary:
If `efl.content` min size is greater than edc area size, `efl.bar` and
`efl.content` are overlapped because default y-align is 0.5.

This patch avoid it.

Test Plan:
Sample code:
```
// gcc -o efl_ui_stack_example efl_ui_stack_example.c `pkg-config --cflags --libs elementary`

EAPI_MAIN void
efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
   Eo *win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get());

   Eo *stack = efl_add(EFL_UI_STACK_CLASS, win);
   efl_content_set(win, stack);

   Eo *nl = efl_add(EFL_UI_NAVIGATION_LAYOUT_CLASS, stack,
                    efl_ui_stack_push(stack, efl_added));

   Eo *bn = efl_add(EFL_UI_NAVIGATION_BAR_CLASS, stack);
   efl_text_set(bn, "Title Text");
   efl_ui_navigation_layout_bar_set(nl, bn);

   Eo *btn = efl_add(EFL_UI_BUTTON_CLASS, nl,
                     efl_text_set(efl_added, "Button 1"),
                     efl_gfx_hint_size_min_set(efl_added, EINA_SIZE2D(50, 80)),
                     efl_content_set(nl, efl_added));

   efl_gfx_entity_size_set(win, EINA_SIZE2D(100, 80));
}
EFL_MAIN()
```

Reviewers: Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8868
2019-05-09 15:42:13 +09:00
..
edc navigation_layout: set efl.content y-axis align to 0.0 2019-05-09 15:42:13 +09:00
fdo FDO icons: add the inode-directory icon 2018-04-02 14:44:44 +02:00
img Revert "theme: rename "default" theme to "dark"" 2018-03-01 16:44:01 +09:00
orig Revert "theme: rename "default" theme to "dark"" 2018-03-01 16:44:01 +09:00
snd Revert "theme: rename "default" theme to "dark"" 2018-03-01 16:44:01 +09:00
Makefile.am elm theme - use -fastcomp again as it is actually much faster now 2019-01-24 14:04:07 +00:00
colorclasses.edc Introduce Efl.Ui.Tags(changed from elm_multibuttonentry) 2018-05-02 17:23:46 +09:00
default.edc Intruduce Efl.Ui.Panel (Create Efl Ui Widget from elm widget(elm_panel)) 2018-12-20 11:32:28 +09:00
fonts.edc Revert "theme: rename "default" theme to "dark"" 2018-03-01 16:44:01 +09:00
macros.edc Revert "theme: rename "default" theme to "dark"" 2018-03-01 16:44:01 +09:00
meson.build meson: correctly use the correct dependency 2019-04-05 08:15:39 -04:00