@@ -38,7 +38,12 @@ class Layout(Widget):
38
38
align_self = CaselessStrEnum (['auto' , 'flex-start' , 'flex-end' ,
39
39
'center' , 'baseline' , 'stretch' ] + CSS_PROPERTIES , allow_none = True , help = "The align-self CSS attribute." ).tag (sync = True )
40
40
bottom = Unicode (None , allow_none = True , help = "The bottom CSS attribute." ).tag (sync = True )
41
- border = Unicode (None , allow_none = True , help = "The border CSS attribute." ).tag (sync = True )
41
+ border_collapse = Unicode (None , allow_none = True , help = "The border collapse CSS attribute." ).tag (sync = True )
42
+ border_color = Unicode (None , allow_none = True , help = "The border color CSS attribute." ).tag (sync = True )
43
+ border_image = Unicode (None , allow_none = True , help = "The border image CSS attribute." ).tag (sync = True )
44
+ border_radius = Unicode (None , allow_none = True , help = "The border radius CSS attribute." ).tag (sync = True )
45
+ border_style = Unicode (None , allow_none = True , help = "The border style CSS attribute." ).tag (sync = True )
46
+ border_width = Unicode (None , allow_none = True , help = "The border width CSS attribute." ).tag (sync = True )
42
47
display = Unicode (None , allow_none = True , help = "The display CSS attribute." ).tag (sync = True )
43
48
flex = Unicode (None , allow_none = True , help = "The flex CSS attribute." ).tag (sync = True )
44
49
flex_flow = Unicode (None , allow_none = True , help = "The flex-flow CSS attribute." ).tag (sync = True )
0 commit comments