Mercurial > libervia-desktop-kivy
comparison src/cagou/plugins/plugin_wid_widget_selector.kv @ 62:1922506846be
design fixes:
- adjust sizes using sp/dp so it adapts on different screen resolutions
- use a shorter sentence for profile manager label, so it appears better on small screens
- various design adjustment to appear correclty on different screen size
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 04 Dec 2016 21:34:30 +0100 |
parents | d09bd16dbbe2 |
children |
comparison
equal
deleted
inserted
replaced
61:0b7f10de416e | 62:1922506846be |
---|---|
14 # You should have received a copy of the GNU Affero General Public License | 14 # You should have received a copy of the GNU Affero General Public License |
15 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 |
17 <WidgetSelItem>: | 17 <WidgetSelItem>: |
18 size_hint: (1, None) | 18 size_hint: (1, None) |
19 height: 50 | 19 height: dp(40) |
20 Widget: | 20 Widget: |
21 Image: | 21 Image: |
22 source: root.plugin_info["icon_medium"] | 22 source: root.plugin_info["icon_medium"] |
23 allow_stretch: True | |
24 keep_ratio: True | |
23 width: self.texture_size[0] | 25 width: self.texture_size[0] |
24 Label: | 26 Label: |
25 text: root.plugin_info["name"] | 27 text: root.plugin_info["name"] |
26 bold: True | 28 bold: True |
29 font_size: sp(20) | |
27 Widget: | 30 Widget: |