JFoenix TabPane tab label colorsHow to align checkboxes and their labels consistently cross-browsersChange an HTML5 input's placeholder color with CSSWhy does HTML think “chucknorris” is a color?JavaFX css controls customizingChange JavaFX TabPane backgroundJavaFX TabPane sorting tabs creates havocJavaFX TabPane : Why is the content not refreshed after selecting different tab?Javafx TabPane not able to scroll to last TabHow to style TabPane dropdown menu in JavaFXHow to change CSS style of JFoenix Color Picker library?
Is a suit against a University Dorm for changing policies on a whim likely to succeed (USA)?
A medieval fantasy adventurer lights a torch in a 100% pure oxygen room. What happens?
I asked for a graduate student position from a professor. He replied "welcome". What does that mean?
How do I get rid of distortion in pictures of distant objects photographed with a telephoto lens?
What is this gigantic dish at Ben Gurion airport?
How major are these paintwork & rust problems?
Double it your way
Does my opponent need to prove his creature has morph?
Why is this weapon searching for a new owner?
Why does the speed of sound decrease at high altitudes although the air density decreases?
A shy person in a queue
Can you add polynomial terms to multiple linear regression?
What jurisdiction do Scottish courts have over the Westminster parliament?
Is the Dodge action perceptible to other characters?
Is there any way to land a rover on the Moon without using any thrusters?
What hard drive connector is this?
Planar regular languages
Is low emotional intelligence associated with right-wing and prejudiced attitudes?
Where to disclose a zero day vulnerability
Stucturing information on this trade show banner
What are uses of the byte after BRK instruction on 6502?
Can I toggle Do Not Disturb on/off on my Mac as easily as I can on my iPhone?
Newly created XFS filesystem shows 78 GB used
How do I say "quirky" in German without sounding derogatory?
JFoenix TabPane tab label colors
How to align checkboxes and their labels consistently cross-browsersChange an HTML5 input's placeholder color with CSSWhy does HTML think “chucknorris” is a color?JavaFX css controls customizingChange JavaFX TabPane backgroundJavaFX TabPane sorting tabs creates havocJavaFX TabPane : Why is the content not refreshed after selecting different tab?Javafx TabPane not able to scroll to last TabHow to style TabPane dropdown menu in JavaFXHow to change CSS style of JFoenix Color Picker library?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm working on my javafx project and i'm using JFoenix library. I found everything i need to edit TabPane look by CSS styling, bet one problem still remains - tabs header labels and bottom strip have some kind of blurry/shadow effects, and i can't find, how to fix this. This is my CSS now:
.jfx-tab-pane .tab-header-area .tab-header-background
-fx-opacity: 0;
.tab
-fx-pref-width: 350;
-fx-pref-height: 50;
.jfx-tab-pane .tab-selected-line
-fx-background-color: -fx-secondary;
.jfx-tab-pane .tab .tab-label
-fx-font-weight: normal;
-fx-text-fill: -fx-primatytext;
-fx-font-size: 16;
.jfx-tab-pane .tab-header-area .jfx-rippler
-jfx-rippler-fill :-fx-secondary;
.jfx-tab-pane .tab-selected-line
-fx-stroke : -fx-secondary;
This is how it looks like:
Can you see it? Design of tabpane headers is not flat, like other UI, it have some kind of shadow/blurry effect. Can anyone tell me, where to look to fix this problem?
java css javafx jfoenix
add a comment
|
I'm working on my javafx project and i'm using JFoenix library. I found everything i need to edit TabPane look by CSS styling, bet one problem still remains - tabs header labels and bottom strip have some kind of blurry/shadow effects, and i can't find, how to fix this. This is my CSS now:
.jfx-tab-pane .tab-header-area .tab-header-background
-fx-opacity: 0;
.tab
-fx-pref-width: 350;
-fx-pref-height: 50;
.jfx-tab-pane .tab-selected-line
-fx-background-color: -fx-secondary;
.jfx-tab-pane .tab .tab-label
-fx-font-weight: normal;
-fx-text-fill: -fx-primatytext;
-fx-font-size: 16;
.jfx-tab-pane .tab-header-area .jfx-rippler
-jfx-rippler-fill :-fx-secondary;
.jfx-tab-pane .tab-selected-line
-fx-stroke : -fx-secondary;
This is how it looks like:
Can you see it? Design of tabpane headers is not flat, like other UI, it have some kind of shadow/blurry effect. Can anyone tell me, where to look to fix this problem?
java css javafx jfoenix
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding-fx-effect: null;
.
– Slaw
Mar 28 at 19:14
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45
add a comment
|
I'm working on my javafx project and i'm using JFoenix library. I found everything i need to edit TabPane look by CSS styling, bet one problem still remains - tabs header labels and bottom strip have some kind of blurry/shadow effects, and i can't find, how to fix this. This is my CSS now:
.jfx-tab-pane .tab-header-area .tab-header-background
-fx-opacity: 0;
.tab
-fx-pref-width: 350;
-fx-pref-height: 50;
.jfx-tab-pane .tab-selected-line
-fx-background-color: -fx-secondary;
.jfx-tab-pane .tab .tab-label
-fx-font-weight: normal;
-fx-text-fill: -fx-primatytext;
-fx-font-size: 16;
.jfx-tab-pane .tab-header-area .jfx-rippler
-jfx-rippler-fill :-fx-secondary;
.jfx-tab-pane .tab-selected-line
-fx-stroke : -fx-secondary;
This is how it looks like:
Can you see it? Design of tabpane headers is not flat, like other UI, it have some kind of shadow/blurry effect. Can anyone tell me, where to look to fix this problem?
java css javafx jfoenix
I'm working on my javafx project and i'm using JFoenix library. I found everything i need to edit TabPane look by CSS styling, bet one problem still remains - tabs header labels and bottom strip have some kind of blurry/shadow effects, and i can't find, how to fix this. This is my CSS now:
.jfx-tab-pane .tab-header-area .tab-header-background
-fx-opacity: 0;
.tab
-fx-pref-width: 350;
-fx-pref-height: 50;
.jfx-tab-pane .tab-selected-line
-fx-background-color: -fx-secondary;
.jfx-tab-pane .tab .tab-label
-fx-font-weight: normal;
-fx-text-fill: -fx-primatytext;
-fx-font-size: 16;
.jfx-tab-pane .tab-header-area .jfx-rippler
-jfx-rippler-fill :-fx-secondary;
.jfx-tab-pane .tab-selected-line
-fx-stroke : -fx-secondary;
This is how it looks like:
Can you see it? Design of tabpane headers is not flat, like other UI, it have some kind of shadow/blurry effect. Can anyone tell me, where to look to fix this problem?
java css javafx jfoenix
java css javafx jfoenix
edited Mar 28 at 20:11
Samuel Philipp
8,0679 gold badges18 silver badges38 bronze badges
8,0679 gold badges18 silver badges38 bronze badges
asked Mar 28 at 10:28
Daniil PetersonDaniil Peterson
266 bronze badges
266 bronze badges
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding-fx-effect: null;
.
– Slaw
Mar 28 at 19:14
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45
add a comment
|
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding-fx-effect: null;
.
– Slaw
Mar 28 at 19:14
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding
-fx-effect: null;
.– Slaw
Mar 28 at 19:14
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding
-fx-effect: null;
.– Slaw
Mar 28 at 19:14
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395325%2fjfoenix-tabpane-tab-label-colors%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395325%2fjfoenix-tabpane-tab-label-colors%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
That looks like an effect—likely a drop shadow. Assuming that's the "tab selected line", try adding
-fx-effect: null;
.– Slaw
Mar 28 at 19:14
@Slaw doesn't work :(
– Daniil Peterson
Mar 29 at 11:45