comparison libervia/desktop_kivy/plugins/plugin_wid_blog.kv @ 518:196483685a63 default tip

Use Font-Awesome instead of Fontello, following change in Libervia Media.
author Goffi <goffi@goffi.org>
date Sat, 26 Oct 2024 22:44:37 +0200
parents b3cedbee561d
children
comparison
equal deleted inserted replaced
517:f316c7f19909 518:196483685a63
16 16
17 #:import date_fmt libervia.backend.tools.common.date_utils.date_fmt 17 #:import date_fmt libervia.backend.tools.common.date_utils.date_fmt
18 18
19 <SearchButton>: 19 <SearchButton>:
20 size_hint: None, 1 20 size_hint: None, 1
21 symbol: "search" 21 symbol: "magnifying-glass"
22 width: dp(30) 22 width: dp(30)
23 font_size: dp(25) 23 font_size: dp(25)
24 color: 0.4, 0.4, 0.4, 1 24 color: 0.4, 0.4, 0.4, 1
25 25
26 26
134 Symbol: 134 Symbol:
135 size_hint: None, None 135 size_hint: None, None
136 height: created_ts.height 136 height: created_ts.height
137 width: self.height 137 width: self.height
138 id: encrypted 138 id: encrypted
139 symbol: 'lock-filled' if root.blog_data.get("encrypted") else 'lock-open' 139 symbol: 'lock' if root.blog_data.get("encrypted") else 'unlock'
140 font_size: created_ts.height 140 font_size: created_ts.height
141 opacity: 1 if root.blog_data.get("encrypted") else 0 141 opacity: 1 if root.blog_data.get("encrypted") else 0
142 color: 0.29,0.87,0.0,1 142 color: 0.29,0.87,0.0,1
143 SimpleXHTMLWidget: 143 SimpleXHTMLWidget:
144 size_hint: 1, None 144 size_hint: 1, None