We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a326e8c commit 5164955Copy full SHA for 5164955
1 file changed
src/gui/widget_style.c
@@ -55,7 +55,7 @@ const char *global_css = CodeToString(
55
width: auto;
56
height: auto;
57
background-color: transparent;
58
- border: 0px solid #000;
+ border: 0px solid transparent;
59
display: block;
60
position: static;
61
padding: 0;
@@ -312,7 +312,7 @@ void LCUIWidget_InitStyle(void)
312
LCUI_InitCSSLibrary();
313
LCUI_InitCSSParser();
314
LCUI_InitCSSFontStyle();
315
- LCUI_LoadCSSString(global_css, NULL);
+ LCUI_LoadCSSString(global_css, __FILE__);
316
}
317
318
void LCUIWidget_FreeStyle(void)
0 commit comments