B4J Question B4JPackage Error with css

MarcoRome

Expert
Licensed User
Longtime User
Hi all. When i compile with B4JPackage11 i have this error:

1606999332798.png


in folder Files the file is present:

1606999419674.png


In code i have:

B4X:
#PackagerProperty: IconFile = ..\icona.ico
#PackagerProperty: ExeName = SSNAppAdmin

#PackagerProperty: IncludedModules = jdk.crypto.ec
#CustomBuildAction: After Packager, %WINDIR%\System32\robocopy.exe, /MIR temp\build\ F:\PANNELLI\SSNAPP

Any idea ??
Thank you
 

MarcoRome

Expert
Licensed User
Longtime User
The code that loads this CSS file.

Yes without problem. But as replied to dear Don. The problem was related to file synchronization. When i synced the file it didn't give any more problems
anyway the file css il this:
CSS:
.tab-pane .tab-header-area .tab-header-background {
    -fx-opacity: 0;
}

.tab-pane
{
    -fx-tab-min-width:90px;
}

.tab{
    -fx-background-insets: 0 1 0 1,0,0;
}
.tab-pane .tab
{
    -fx-background-color: #e6e6e6;

}

.tab-pane .tab:selected
{
    -fx-background-color: #3c3c3c;
}

.tab .tab-label {
    -fx-alignment: CENTER;
    -fx-text-fill: #828282;
    -fx-font-size: 12px;
    -fx-font-weight: bold;
}

.tab:selected .tab-label {
    -fx-alignment: CENTER;
    -fx-text-fill: #96b946;
}
.tab-pane:top *.tab-header-area {
    -fx-background-insets: 0, 0 0 1 0;
 /* -fx-padding: 0.416667em 0.166667em 0.0em 0.833em; /* 5 2 0 10 */
    -fx-padding: 0.416667em 0.166667em 0.0em 0.0em; /* overriden as 5 2 0 0 */
}
 
Upvote 0
Top