日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

JavaFX8 modena样式(css)源码

發布時間:2023/12/3 java 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JavaFX8 modena样式(css)源码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

轉載自? JavaFX8 modena樣式(css)源碼?

/*?Modena?This is the second generation theme for JavaFX after Caspian.? */ ?/*?* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved. ?* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ?* ??* This code is free software; you can redistribute it and/or modify it ?* under the terms of the GNU General Public License version 2 only, as ?* published by the Free Software Foundation. ?Oracle designates this ?* particular file as subject to the "Classpath" exception as provided ?* by Oracle in the LICENSE file that accompanied this code. ?* ??* This code is distributed in the hope that it will be useful, but WITHOUT ?* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ?* FITNESS FOR A PARTICULAR PURPOSE. ?See the GNU General Public License ?* version 2 for more details (a copy is included in the LICENSE file that ?* accompanied this code). ?* ??* You should have received a copy of the GNU General Public License version ?* 2 along with this work; if not, write to the Free Software Foundation, ?* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ?* ??* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ?* or visit www.oracle.com if you need additional information or have any ?* questions.?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??*/ ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* THEMING INSTRUCTIONS ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?*******************************************************************************?TODO: Explain here how theming works:?* -fx-text-base-color for text on top of -fx-base, -fx-color, and -fx-body-color?* -fx-text-background-color for text on top of -fx-background?* -fx-text-inner-color for text on top of -fx-control-inner-color?* -fx-selection-bar-text for text on top of -fx-selection-bar?RESIZING FOR DIFFERENT SCREEN DPI? -------------------------------?When the screen DPI changes Windows will use a different font size by default. ? The default is 12px and can change to 15px or 18px depending on user ? preference or screen DPI. On Mac the default is 13px and embedded will depend ? on hardware. To make UI controls scale and be the right proportions for each of ? these font sizes we base the padding (which controls size of control) on the ? font size. This is done using the CSS measurement unit of a "em" where? (1em = font size). The default sizes are based on Windows default of 12px, as? a quick reference here are common px sizes in em units on windows.?Windows 12px -> em units ? ?-> Mac 13px ? ? ?| ? ----------------------------------------?1px ? ? -> 0.083333em ?-> 1.08px ~ 2px?2px ? ? -> 0.166667em ?-> 2.16px ~ 3px?3px ?= 0.25em?4px ?= 0.333333em?5px ?= 0.416667em?6px ?= 0.5em?7px ?= 0.583333em?8px ?= 0.666667em?9px ?= 0.75em?10px ?= 0.833333em?11px ?= 0.916667em?12px ?= 1em?IMPORTANT: Not all sizes are scaled with em units only padding. All borders and ? background insets are still in pixels. Also any padding where it has to match up? is being used to size a border should also be in pixels.?******************************************************************************/ ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* CSS Styles for core infrastructure bits. ?The .root section provides the ? ?*?* overall default colors used by the rest of the sections. ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.root { ?/***************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* The main color palette from which the rest of the colors are derived. ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?**************************************************************************/ ?/* A light grey that is the base color for objects. ?Instead of using?* -fx-base directly, the sections in this file will typically use -fx-color.?*/ ?-fx-base: #ececec; ?/* A very light grey used for the background of windows. ?See also?* -fx-text-background-color, which should be used as the -fx-text-fill?* value for text painted on top of backgrounds colored with -fx-background.?*/ ?-fx-background: derive(-fx-base,26.4%); ?/* Used for the inside of text boxes, password boxes, lists, trees, and?* tables. ?See also -fx-text-inner-color, which should be used as the?* -fx-text-fill value for text painted on top of backgrounds colored?* with -fx-control-inner-background.?*/ ?-fx-control-inner-background: derive(-fx-base,80%); ?/* Version of -fx-control-inner-background for alternative rows */ ?-fx-control-inner-background-alt: derive(-fx-control-inner-background,-2%); ?/* One of these colors will be chosen based upon a ladder calculation?* that uses the brightness of a background color. ?Instead of using these?* colors directly as -fx-text-fill values, the sections in this file should?* use a derived color to match the background in use. ?See also:?*?* -fx-text-base-color for text on top of -fx-base, -fx-color, and -fx-body-color?* -fx-text-background-color for text on top of -fx-background?* -fx-text-inner-color for text on top of -fx-control-inner-color?* -fx-selection-bar-text for text on top of -fx-selection-bar?*/ ?-fx-dark-text-color: black; ?-fx-mid-text-color: #333; ?-fx-light-text-color: white; ?/* A bright blue for highlighting/accenting objects. ?For example: selected?* text; selected items in menus, lists, trees, and tables; progress bars */ ?-fx-accent: #0096C9; ?/* Default buttons color, this is similar to accent but more subtle */ ?-fx-default-button: #ABD8ED; ?/* A bright blue for the focus indicator of objects. Typically used as the?* first color in -fx-background-color for the "focused" pseudo-class. Also?* typically used with insets of -1.4 to provide a glowing effect.?*/ ?-fx-focus-color: #039ED3; ?-fx-faint-focus-color: #039ED322; ?/* The color that is used in styling controls. The default value is based?* on -fx-base, but is changed by pseudoclasses to change the base color.?* For example, the "hover" pseudoclass will typically set -fx-color to?* -fx-hover-base (see below) and the "armed" pseudoclass will typically?* set -fx-color to -fx-pressed-base.?*/ ?-fx-color: -fx-base; ?/* Chart Color Palette */ ?CHART_COLOR_1: #f3622d; ?CHART_COLOR_2: #fba71b; ?CHART_COLOR_3: #57b757; ?CHART_COLOR_4: #41a9c9; ?CHART_COLOR_5: #4258c9; ?CHART_COLOR_6: #9a42c8; ?CHART_COLOR_7: #c84164; ?CHART_COLOR_8: #888888; ?/* Chart Color Palette Semi-Transparent?* These are used by charts that need semi transparent versions of the above colors, such as BubbleChart. They?* are exactly the same colors as above just with alpha?*?* 20% opacity?*/ ?CHART_COLOR_1_TRANS_20: #f3622d33; ?CHART_COLOR_2_TRANS_20: #fba71b33; ?CHART_COLOR_3_TRANS_20: #57b75733; ?CHART_COLOR_4_TRANS_20: #41a9c933; ?CHART_COLOR_5_TRANS_20: #4258c933; ?CHART_COLOR_6_TRANS_20: #9a42c833; ?CHART_COLOR_7_TRANS_20: #c8416433; ?CHART_COLOR_8_TRANS_20: #88888833; ?/* 70% opacity */ ?CHART_COLOR_1_TRANS_70: #f3622db3; ?CHART_COLOR_2_TRANS_70: #fba71bb3; ?CHART_COLOR_3_TRANS_70: #57b757b3; ?CHART_COLOR_4_TRANS_70: #41a9c9b3; ?CHART_COLOR_5_TRANS_70: #4258c9b3; ?CHART_COLOR_6_TRANS_70: #9a42c8b3; ?CHART_COLOR_7_TRANS_70: #c84164b3; ?CHART_COLOR_8_TRANS_70: #888888b3; ?/***************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Colors that are derived from the main color palette. ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?**************************************************************************/ ?/* A little lighter than -fx-base and used as the -fx-color for the?* "hovered" pseudoclass state.?*/ ?-fx-hover-base: ladder( ?-fx-base, ?derive(-fx-base,20%) 20%, ?derive(-fx-base,30%) 35%, ?derive(-fx-base,40%) 50% ?); ?/* A little darker than -fx-base and used as the -fx-color for the?* "armed" pseudoclass state.?*?* TODO: should this be renamed to -fx-armed-base??*/ ?-fx-pressed-base: derive(-fx-base,-6%); ?/* The color to use for -fx-text-fill when text is to be painted on top of?* a background filled with the -fx-background color.?*/ ?-fx-text-background-color: ladder( ?-fx-background, ?-fx-light-text-color 45%, ?-fx-dark-text-color ?46%, ?-fx-dark-text-color ?59%, ?-fx-mid-text-color ? 60% ?); ?/* A little darker than -fx-color and used to draw boxes around objects such?* as progress bars, scroll bars, scroll panes, trees, tables, and lists.?*/ ?-fx-box-border: ladder( ?-fx-color, ?black 20%, ?derive(-fx-color,-15%) 30% ?); ?/* Darker than -fx-background and used to draw boxes around text boxes and?* password boxes.?*/ ?-fx-text-box-border: ladder( ?-fx-background, ?black 10%, ?derive(-fx-background, -15%) 30% ?); ?/* Lighter than -fx-background and used to provide a small highlight when?* needed on top of -fx-background. This is never a shadow in Modena but?* keep -fx-shadow-highlight-color name to be compatible with Caspian.?*/ ?-fx-shadow-highlight-color: ladder( ?-fx-background, ?rgba(255,255,255,0.07) 0%, ?rgba(255,255,255,0.07) 20%, ?rgba(255,255,255,0.07) 70%, ?rgba(255,255,255,0.7) 90%, ?rgba(255,255,255,0.75) 100% ?); ?/* A gradient that goes from a little darker than -fx-color on the top to?* even more darker than -fx-color on the bottom. ?Typically is the second?* color in the -fx-background-color list as the small thin border around?* a control. It is typically the same size as the control (i.e., insets?* are 0).?*/ ?-fx-outer-border: derive(-fx-color,-23%); ?/* A gradient that goes from a bit lighter than -fx-color on the top to?* a little darker at the bottom. ?Typically is the third color in the?* -fx-background-color list as a thin highlight inside the outer border.?* Insets are typically 1.?*/ ?-fx-inner-border: linear-gradient(to bottom, ?ladder( ?-fx-color, ?derive(-fx-color,30%) 0%, ?derive(-fx-color,20%) 40%, ?derive(-fx-color,25%) 60%, ?derive(-fx-color,55%) 80%, ?derive(-fx-color,55%) 90%, ?derive(-fx-color,75%) 100% ?), ?ladder( ?-fx-color, ?derive(-fx-color,20%) 0%, ?derive(-fx-color,10%) 20%, ?derive(-fx-color,5%) 40%, ?derive(-fx-color,-2%) 60%, ?derive(-fx-color,-5%) 100% ?)); ?-fx-inner-border-horizontal: linear-gradient(to right, derive(-fx-color,55%), derive(-fx-color,-5%)); ?-fx-inner-border-bottomup: linear-gradient(to top, derive(-fx-color,55%), derive(-fx-color,-5%)); ?/* A gradient that goes from a little lighter than -fx-color at the top to?* a little darker than -fx-color at the bottom and is used to fill the?* body of many controls such as buttons.?*/ ?-fx-body-color: linear-gradient(to bottom, ?ladder( ?-fx-color, ?derive(-fx-color,8%) 75%, ?derive(-fx-color,10%) 80% ?), ?derive(-fx-color,-8%)); ?-fx-body-color-bottomup: linear-gradient(to top, derive(-fx-color,10%) ,derive(-fx-color,-6%)); ?-fx-body-color-to-right: linear-gradient(to right, derive(-fx-color,10%) ,derive(-fx-color,-6%)); ?/* The color to use as -fx-text-fill when painting text on top of?* backgrounds filled with -fx-base, -fx-color, and -fx-body-color.?*/ ?-fx-text-base-color: ladder( ?-fx-color, ?-fx-light-text-color 45%, ?-fx-dark-text-color ?46%, ?-fx-dark-text-color ?59%, ?-fx-mid-text-color ? 60% ?); ?/* The color to use as -fx-text-fill when painting text on top of?* backgrounds filled with -fx-control-inner-background.?*/ ?-fx-text-inner-color: ladder( ?-fx-control-inner-background, ?-fx-light-text-color 45%, ?-fx-dark-text-color ?46%, ?-fx-dark-text-color ?59%, ?-fx-mid-text-color ? 60% ?); ?/* The color to use for small mark-like objects such as checks on check?* boxes, filled in circles in radio buttons, arrows on scroll bars, etc.?*/ ?-fx-mark-color: ladder( ?-fx-color, ?white 30%, ?derive(-fx-color,-63%) 31% ?); ?/* The small thin light "shadow" for mark-like objects. Typically used in?* conjunction with -fx-mark-color with an insets of 1 0 -1 0. */ ?-fx-mark-highlight-color: ladder( ?-fx-color, ?derive(-fx-color,80%) 60%, ?white 70% ?); ?/* Background for items in list like things such as menus, lists, trees,?* and tables. */ ?-fx-selection-bar: -fx-accent; ?/* Background color to use for selection of list cells etc. This is when?* the control doesn't have focus or the row of a previously selected item. */ ?-fx-selection-bar-non-focused: lightgrey; ?/* The color to use as -fx-text-fill when painting text on top of?* backgrounds filled with -fx-selection-bar.?*?* TODO: this can be removed?*/ ?-fx-selection-bar-text: -fx-text-background-color; ?/* These are needed for Popup */ ?-fx-background-color: inherit; ?-fx-background-radius: inherit; ?-fx-background-insets: inherit; ?-fx-padding: inherit; ?/* The color to use in ListView/TreeView/TableView to indicate hover. */ ?-fx-cell-hover-color: #cce3f4; ?/** Focus line for keyboard focus traversal on cell based controls */ ?-fx-cell-focus-inner-border: derive(-fx-selection-bar,30%); ?/* The colors to use in Pagination */ ?-fx-page-bullet-border: #acacac; ?-fx-page-indicator-hover-border: #accee5; ?/***************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Set the default background color for the scene ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?**************************************************************************/ ?-fx-background-color: -fx-background; ? } ?/* Make popups transparent */ ? .root.popup { ?-fx-background-color: transparent; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Common Styles ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* These are styles that give a standard look to a whole range of controls ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?/* ==== ? TEXT NODES IN CONTROLS ? ========================================== */ ?.text { ?/* This adjusts text alignment within the bounds of text nodes so that?the text is always vertically centered within the bounds. Based on?the cap height of the text. */ ?-fx-bounds-type: logical_vertical_center; ?/* Enable LCD text rendering */ ?-fx-font-smoothing-type: lcd; ? } ?/* ==== ? BUTTON LIKE THINGS ? ============================================== */ ?.button, ? .toggle-button, ? .radio-button > .radio, ? .check-box > .box, ? .menu-button, ? .choice-box, ? .color-picker.split-button > .color-picker-label, ? .combo-box-base, ? .combo-box-base:editable > .arrow-button { ?-fx-background-color: -fx-shadow-highlight-color, -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0 0 -1 0, 0, 1, 2; ?-fx-background-radius: 3px, 3px, 2px, 1px; ?-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */ ?-fx-text-fill: -fx-text-base-color; ?-fx-alignment: CENTER; ?-fx-content-display: LEFT; ? } ? .menu-button > .label { ?-fx-alignment: CENTER_LEFT; ? } ? .button:hover, ? .toggle-button:hover, ? .radio-button:hover > .radio, ? .check-box:hover > .box, ? .menu-button:hover, ? .split-menu-button > .label:hover, ? .split-menu-button > .arrow-button:hover, ? .slider .thumb:hover, ? .scroll-bar > .thumb:hover, ? .scroll-bar > .increment-button:hover, ?? .scroll-bar > .decrement-button:hover, ? .choice-box:hover, ? .color-picker.split-button > .arrow-button:hover, ? .color-picker.split-button > .color-picker-label:hover, ? .combo-box-base:hover, ? .combo-box-base:editable > .arrow-button:hover, ? .tab-pane > .tab-header-area > .control-buttons-tab > .container > .tab-down-button:hover { ?-fx-color: -fx-hover-base; ? } ? .button:armed, ? .toggle-button:armed, ? .radio-button:armed > .radio, ? .check-box:armed .box, ? .menu-button:armed, ? .split-menu-button:armed > .label, ? .split-menu-button > .arrow-button:pressed, ? .split-menu-button:showing > .arrow-button, ? .slider .thumb:pressed, ? .scroll-bar > .thumb:pressed, ? .scroll-bar > .increment-button:pressed, ?? .scroll-bar > .decrement-button:pressed, ? .choice-box:showing, ? .combo-box-base:showing, ? .combo-box-base:editable:showing > .arrow-button, ? .tab-pane > .tab-header-area > .control-buttons-tab > .container > .tab-down-button:pressed { ?-fx-color: -fx-pressed-base; ? } ? .button:focused, ? .toggle-button:focused, ? .radio-button:focused > .radio, ? .check-box:focused > .box, ? .menu-button:focused, ? .choice-box:focused, ? .color-picker.split-button:focused > .color-picker-label, ? .combo-box-base:focused, ? .slider:focused .thumb { ?-fx-background-color: -fx-focus-color, -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ?-fx-background-insets: -0.2, 1, 2, -1.4, 2.6; ?-fx-background-radius: 3, 2, 1, 4, 1; ? } ?/* ==== ? DISABLED THINGS ? ================================================= */ ?.label:disabled, ? .button:disabled, ? .toggle-button:disabled, ? .radio-button:disabled, ? .check-box:disabled, ? .hyperlink:disabled, ? .menu-button:disabled, ? .split-menu-button:disabled, ? .slider:disabled, ? .scroll-bar:disabled, ? .scroll-pane:disabled, ? .progress-bar:disabled, ? .progress-indicator:disabled, ? .text-input:disabled, ? .choice-box:disabled, ? .combo-box-base:disabled, ? .date-cell:disabled > *, /* This is set on children so border is not affected. */ ? .list-view:disabled, ? .tree-view:disabled, ? .table-view:disabled, ? .tree-table-view:disabled, ? .tab-pane:disabled, ? .titled-pane:disabled > .title, ? .accordion:disabled > .titled-pane > .title, ? .tab-pane > .tab-header-area > .headers-region > .tab:disabled, ? .menu:disabled, ? .menu-item:disabled > .label, ? .menu-item:disabled, ? .list-cell:filled:selected:focused:disabled, ? .list-cell:filled:selected:disabled, ? .tree-cell:filled:selected:focused:disabled, ? .tree-cell:filled:selected:disabled, ? .tree-cell > .tree-disclosure-node:disabled, ? .tree-table-row-cell > .tree-disclosure-node:disabled, ? .table-row-cell:selected:disabled, ? .tree-table-row-cell:selected:disabled, ? .table-cell:selected:disabled, ? .tree-table-cell:selected:disabled { ?-fx-opacity: 0.4; ? } ?/* ==== ? MNEMONIC THINGS ? ================================================= */ ?.mnemonic-underline { ?-fx-stroke: transparent; ? } ?.titled-pane:show-mnemonics > .mnemonic-underline, ? .label:show-mnemonics > .mnemonic-underline, ? .context-menu:show-mnemonics > .mnemonic-underline, ? .menu:show-mnemonics > .mnemonic-underline, ? .menu-bar:show-mnemonics > .mnemonic-underline, ? .menu-item:show-mnemonics > .mnemonic-underline, ? .button:show-mnemonics > .mnemonic-underline, ? .toggle-button:show-mnemonics > .mnemonic-underline, ? .radio-button:show-mnemonics > .mnemonic-underline, ? .check-box:show-mnemonics > .mnemonic-underline, ? .hyperlink:show-mnemonics > .mnemonic-underline, ? .split-menu-button:show-mnemonics > .mnemonic-underline, ? .menu-button:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-base-color; ? } ??/* ==== ? MARKS ? =========================================================== */ ?.radio-button:selected > .radio > .dot, ? .check-box:selected > .box > .mark, ? .check-box:indeterminate ?> .box > .mark { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ? } ?/* ==== ? ARROWS ? ========================================================== */ ?.menu-button > .arrow-button > .arrow, ? .split-menu-button > .arrow-button > .arrow { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 0 0 -1 0, 0; ?-fx-padding: 0.25em; ?-fx-shape: "M 0 -3.5 v 7 l 4 -3.5 z"; ? } ? .choice-box > .open-button > .arrow, ? .menu-button:openvertically > .arrow-button > .arrow, ? .split-menu-button:openvertically > .arrow-button > .arrow, ? .combo-box-base > .arrow-button > .arrow, ? .web-view .form-select-button .arrow, ? .tab-pane > .tab-header-area > .control-buttons-tab > .container > .tab-down-button > .arrow ?{ ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 0 0 -1 0, 0; ?-fx-padding: 0.166667em 0.333333em 0.166667em 0.333333em; /* 2 4 2 4 */ ?-fx-shape: "M 0 0 h 7 l -3.5 4 z"; ? } ?/* ==== ? CHOICE BOX LIKE THINGS ? ========================================== */ ?.choice-box, ? .menu-button, ? .combo-box-base { ?-fx-padding: 0; ? } ? .choice-box > .label, ? .menu-button > .label, ? .color-picker > .label { ?-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */ ?-fx-text-fill: -fx-text-base-color; ? } ? .choice-box > .open-button, ? .menu-button > .arrow-button { ?-fx-padding: 0.5em 0.667em 0.5em 0.0em; /* 6 8 6 0 */ ? } ?/* ==== ? BOX LIKE THINGS ? ================================================= */ ?.scroll-pane, ? .split-pane, ? .list-view, ? .tree-view, ? .table-view, ?? .tree-table-view, ? .html-editor { ?-fx-background-color: -fx-box-border, -fx-control-inner-background; ?-fx-background-insets: 0, 1; ?-fx-padding: 1; ? } ? .scroll-pane:focused, ? .split-pane:focused, ? .list-view:focused, ? .tree-view:focused, ? .table-view:focused, ? .tree-table-view:focused, ? .html-editor:focused { ?-fx-background-color: -fx-faint-focus-color, -fx-focus-color, -fx-control-inner-background; ??-fx-background-insets: -1.4, -0.3, 1; ?-fx-background-radius: 2, 0, 0; ? } ? /* ones with grey -fx-background not lighter -fx-control-inner-background */ ? .scroll-pane, ? .split-pane { ?-fx-background-color: -fx-box-border, -fx-background; ? } ? .scroll-pane:focused, ? .split-pane:focused { ?-fx-background-color: -fx-faint-focus-color, -fx-focus-color, -fx-background; ?? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Label ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.label { ?-fx-text-fill: -fx-text-background-color; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Button & ToggleButton ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?/* ==== ? DEFAULT ? ========================================================= */ ?.button:default { ?-fx-base: -fx-default-button; ? } ?/* ==== ? WEB BUTTONS ? ===================================================== */ ?.web-view .form-select-button { ?-fx-background-radius: 2, 2, 1, 0; ?-fx-background-insets: 2 2 1 2, 2, 3, 4; ? } ?/* ==== ? PILL BUTTONS ? ==================================================== */ ?.button.left-pill, ? .toggle-button.left-pill { ?-fx-background-radius: 3 0 0 3, 3 0 0 3, 2 0 0 2, 1 0 0 1; ?-fx-background-insets: 0 0 -1 0, 0, 1, 2; ?-fx-padding: 0.333333em 0.666667em 0.333333em 0.75em; /* 4 8 4 9 */ ? } ? .button.center-pill, ? .toggle-button.center-pill { ?-fx-background-radius: 0; ?-fx-background-insets: 0 0 -1 0, 0 0 0 0, 1 1 1 0, 2 2 2 1 ; ? } ? .button.right-pill, ? .toggle-button.right-pill { ?-fx-background-radius: 0 3 3 0, 0 3 3 0, 0 2 2 0, 0 1 1 0; ?-fx-background-insets: 0 0 -1 0, 0, 1 1 1 0, 2 2 2 1 ; ? } ? .button.left-pill:focused, ? .toggle-button.left-pill:focused { ?-fx-background-insets: -0.2 0 -0.2 -0.2, 1, 2, -1.4 0 -1.4 -1.4, 2.6; ?-fx-background-radius: 3 0 0 3, 2 0 0 2, 1 0 0 1, 4 0 0 4, 1 0 0 1; ? } ? .button.center-pill:focused, ? .toggle-button.center-pill:focused { ?-fx-background-insets: -0.2 0 -0.2 -1, 1 1 1 0, 2 2 2 1, -1.4 0 -1.4 -1, 2.6 2.6 2.6 1.6; ?-fx-background-radius: 0, 0, 0, 0, 0; ? } ? .button.right-pill:focused, ? .toggle-button.right-pill:focused { ?-fx-background-insets: -0.2 -0.2 -0.2 -1, 1 1 1 0, 2 2 2 1, -1.4 -1.4 -1.4 -1, 2.6 2.6 2.6 1.6; ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 1 1 0, 0 4 4 0, 0 1 1 0; ? } ? .toggle-button:selected.left-pill:focused { ?-fx-background-insets: -0.2 0 -0.2 -0.2, 1, -1.4 0 -1.4 -1.4, 2.6; ?-fx-background-radius: 3 0 0 3, 2 0 0 2, 4 0 0 4, 0; ? } ? .toggle-button:selected.center-pill:focused { ?-fx-background-insets: -0.2 0 -0.2 -1, 1 1 1 0, -1.4 0 -1.4 -1, 2.6 2.6 2.6 1.6; ?-fx-background-radius: 0, 0, 0, 0; ? } ? .toggle-button:selected.right-pill:focused { ?-fx-background-insets: -0.2 -0.2 -0.2 -1, 1 1 1 0, -1.4 -1.4 -1.4 -1, 2.6 2.6 2.6 1.6; ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 4 4 0, 0; ? } ?/* ==== ? SELECTED TOGGLE ? ================================================= */ ?.toggle-button:selected { ?-fx-background-color: ?-fx-shadow-highlight-color, ?linear-gradient(to bottom, derive(-fx-outer-border, -20%), -fx-outer-border), ?linear-gradient(to bottom, ??derive(-fx-color, -22%) 0%, ?derive(-fx-color, -13%) 20%, ?derive(-fx-color, -11%) 50%); ?-fx-background-insets: 0 0 -1 0, 0, 1; ? } ? .toggle-button:selected:focused { ?-fx-background-color: ?-fx-focus-color, ?linear-gradient(to bottom, ?derive(-fx-color, -22%) 0%, ?derive(-fx-color, -13%) 20%, ?derive(-fx-color, -11%) 50%), ?-fx-faint-focus-color, ?linear-gradient(to bottom, ?derive(-fx-color, -22%) 0%, ?derive(-fx-color, -13%) 20%, ?derive(-fx-color, -11%) 50%); ?-fx-background-insets: -0.2, 1, -1.4, 2.6; ?-fx-background-radius: 3, 2, 4, 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* RadioButton ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.radio-button { ?-fx-label-padding: 0.0em 0.0em 0.0em 0.416667em; /* 0 0 0 5 */ ?-fx-text-fill: -fx-text-background-color; ? } ? .radio-button > .radio, ? .radio-button:focused > .radio ?{ ?-fx-background-radius: 1.0em; /* large value to make sure this remains circular */ ?-fx-padding: 0.333333em; /* 4 -- padding from outside edge to the inner black dot */ ? } ? .radio-button > .radio > .dot { ?-fx-background-color: transparent; ?-fx-background-radius: 1.0em; /* large value to make sure this remains circular */ ?-fx-padding: 0.333333em; /* 4 -- radius of the inner black dot when selected */ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* CheckBox ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.check-box { ?-fx-label-padding: 0.0em 0.0em 0.0em 0.416667em; /* 0 0 0 5 */ ?-fx-text-fill: -fx-text-background-color; ? } ? .check-box > .box { ?-fx-background-radius: 3, 2, 1; ?-fx-padding: 0.166667em 0.166667em 0.25em 0.25em; /* 2 2 3 3 */ ? } ? .check-box > .box > .mark { ?-fx-background-color: null; ?-fx-padding: 0.416667em 0.416667em 0.5em 0.5em; /* 5 5 6 6 */ ?-fx-shape: "M-0.25,6.083c0.843-0.758,4.583,4.833,5.75,4.833S14.5-1.5,15.917-0.917c1.292,0.532-8.75,17.083-10.5,17.083C3,16.167-1.083,6.833-0.25,6.083z"; ? } ? .check-box:indeterminate > .box { ?-fx-padding: 0; ?? } ? .check-box:indeterminate ?> .box > .mark { ?-fx-shape: "M0,0H10V2H0Z"; ?-fx-scale-shape: false; ?-fx-padding: 0.666667em; /* 16x16 = 8+8 */ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Hyperlink ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.hyperlink { ?-fx-padding: 0.166667em 0.25em 0.166667em 0.25em; /* 2 3 2 3 */ ?-fx-cursor: hand; ?-fx-content-display: LEFT; ?-fx-text-fill: -fx-text-background-color; ?-fx-border-color: transparent; ?-fx-border-width: 1px; ? } ? .hyperlink, ? .hyperlink:hover, ? .hyperlink:hover:visited { ?-fx-text-fill: -fx-accent; ? } ? .hyperlink:armed, ? .hyperlink:visited, ? .hyperlink:hover:armed { ?-fx-text-fill: -fx-text-background-color; ? } ? .hyperlink:hover, ? .hyperlink:visited, ? .hyperlink:hover:visited { ?-fx-underline: true; ? } ? .hyperlink:visited:armed { ?-fx-underline: false; ? } ? .hyperlink:focused { ?-fx-border-color: -fx-focus-color; ?-fx-border-style: segments(0.166667em, 0.166667em); ?-fx-border-width: 1px; ? } ? .hyperlink:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-fill; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* SplitMenuButton ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.split-menu-button { ?-fx-background-color: -fx-shadow-highlight-color, -fx-outer-border; ??-fx-background-insets: 0 0 -1 0, 0; ?-fx-background-radius: 3, 3; ?-fx-padding: 0; ? } ? .split-menu-button > .label { ?-fx-text-fill: -fx-text-base-color; ?-fx-background-color: -fx-inner-border, -fx-body-color; ??-fx-background-insets: 1 0 1 1, 2 1 2 2; ?-fx-background-radius: 2 0 0 2, 1 0 0 1; ?-fx-padding: 0.333333em 0.667em 0.333333em 0.667em; /* 4 8 4 8 */ ? } ? .split-menu-button > .arrow-button { ?-fx-background-color: -fx-inner-border, -fx-body-color; ??-fx-background-insets: 1, 2; ?-fx-background-radius: 0 2 2 0, 0 1 1 0; ?-fx-padding: 0.5em 0.667em 0.5em 0.667em; /* 6 8 6 8 */ ? } ? .split-menu-button:focused { ?-fx-background-color: -fx-focus-color; ?-fx-background-insets: -0.2; ?-fx-background-radius: 3; ? } ? .split-menu-button:focused > .label { ?-fx-background-color: -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ??-fx-background-insets: 1 0 1 1, 2 1 2 2, -1.4 0 -1.4 -1.4, 2.6 1.6 2.6 2.6; ?-fx-background-radius: 2 0 0 2, 1 0 0 1, 4 0 0 4, 0; ? } ? .split-menu-button:focused > .arrow-button { ?-fx-background-color: -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ??-fx-background-insets: 1, 2, -1.4, 2.6; ?-fx-background-radius: 0 2 2 0, 0 1 1 0, 0 4 4 0, 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ToolBar ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tool-bar:vertical { /* left */ ?-fx-background-color: ?-fx-outer-border, ?linear-gradient(to right, derive(-fx-base,0%) 0%, derive(-fx-base,10%) 50%, derive(-fx-base,0%) 100%); ?-fx-background-insets: 0, 0 0 0 1; ?-fx-padding: 0.5em 0.416667em 0.5em 0.416667em; /* 6 5 6 5 */ ?-fx-spacing: 0.333em; /* 4 */ ?-fx-alignment: TOP_LEFT; ? } ? .tool-bar { /* top */ ?TOP-COLOR: ladder( ?-fx-base, ?derive(-fx-base,0%) 0%, ?derive(-fx-base,46%) 100% ?); ?-fx-background-color: ?linear-gradient(to bottom, derive(TOP-COLOR,25%) 0%, -fx-outer-border 90%), ?linear-gradient(to bottom, TOP-COLOR 2%, derive(-fx-base,-2.1%) 95%); ?-fx-background-insets: 0 0 0 0, 1 0 1 0; ?-fx-padding: 0.416667em 0.5em 0.416667em 0.5em; /* 5 6 ?5 6 */ ?-fx-spacing: 0.333em; /* 4 */ ?-fx-alignment: CENTER_LEFT; ? } ? .tool-bar:vertical.right { ?-fx-background-insets: 0, 0 1 0 0; ? } ? .tool-bar.bottom { ?-fx-background-color: ?-fx-outer-border, ?derive(TOP-COLOR,25%), ?linear-gradient(to bottom, TOP-COLOR 2%, derive(-fx-base,-2.1%) 95%); ?-fx-background-insets: 0, 1 0 0 0, 2 0 0 0; ? } ? .tool-bar > .container > .separator { ?-fx-orientation: vertical; ? } ? .tool-bar:vertical > .container > .separator { ?-fx-orientation: horizontal; ? ? ? } ? .tool-bar-overflow-button { ?-fx-padding: 0 0.75em 0 0 ; ? } ? .tool-bar:vertical > .tool-bar-overflow-button { ?-fx-padding: 0 0 0.75em 0 ; ? } ? .tool-bar-overflow-button > .arrow { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.666667em 0.916667em 0em 0em; /* 8 11 0 0 */ ?-fx-shape: "M337.273,297.622l-0.016,1.069l2.724,2.639l-2.723,2.628l0.015,1.048h0.881l3.81-3.685l-3.788-3.699H337.273z M343.783,297.622h-0.902l-0.015,1.069l2.724,2.639l-2.724,2.628l0.015,1.048h0.882l3.809-3.685L343.783,297.622z" ; ? } ?.tool-bar-overflow-button:focused > .arrow { ?-fx-background-color: -fx-mark-highlight-color, derive(-fx-accent, -15%); ?-fx-background-insets: 1 0 -1 0, 0; ? } ?.tool-bar-overflow-button:hover > .arrow { ?-fx-background-color: -fx-mark-highlight-color, derive(-fx-hover-base, -35%); ?-fx-background-insets: 1 0 -1 0, 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Slider ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.slider .thumb { ?-fx-background-color: ??linear-gradient(to bottom, derive(-fx-text-box-border, -20%), derive(-fx-text-box-border, -30%)), ?-fx-inner-border, ?-fx-body-color; ?-fx-background-insets: 0, 1, 2; ?-fx-background-radius: 1.0em; /* makes sure this remains circular */ ?-fx-padding: 0.583333em; ?/* 7 */ ?-fx-effect: dropshadow(two-pass-box , rgba(0, 0, 0, 0.1), 5, 0.0 , 0, 2); ? } ? .slider:focused .thumb { ?-fx-background-radius: 1.0em; /* makes sure this remains circular */ ? } ? .slider .track { ?-fx-background-color: ??-fx-shadow-highlight-color, ?linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border), ?linear-gradient(to bottom, ??derive(-fx-control-inner-background, -9%), ?derive(-fx-control-inner-background, 0%), ?derive(-fx-control-inner-background, -5%), ?derive(-fx-control-inner-background, -12%) ?); ?-fx-background-insets: 0 0 -1 0, 0, 1; ?-fx-background-radius: 0.25em, 0.25em, 0.166667em; /* 3 3 2 */ ?-fx-padding: 0.25em; /* 3 */ ? } ? .slider:vertical .track { ?-fx-background-color: ??-fx-shadow-highlight-color, ?-fx-text-box-border, ?linear-gradient(to right, ??derive(-fx-control-inner-background, -9%), ?-fx-control-inner-background, ?derive(-fx-control-inner-background, -9%) ?); ? } ? .slider .axis { ?-fx-tick-label-fill: derive(-fx-text-background-color, 30%); ?-fx-tick-length: 5px; ?-fx-minor-tick-length: 3px; ?-fx-border-color: null; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ScrollBar ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.scroll-bar:horizontal { ?-fx-background-color: derive(-fx-box-border,30%), linear-gradient(to bottom, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)); ?-fx-background-insets: 0, 1 0 1 0; ? } ? .scroll-bar:vertical { ?-fx-background-color: derive(-fx-box-border,30%), linear-gradient(to right, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)); ?-fx-background-insets: 0, 0 1 0 1; ? } ? .scroll-bar:focused { ?-fx-background-color: ??-fx-focus-color, ?linear-gradient(to bottom, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)), ?-fx-faint-focus-color, ?linear-gradient(to bottom, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)); ?-fx-background-insets: -0.2, 1, -1.4, 2.6; ? } ? .scroll-bar:vertical:focused { ?-fx-background-color: ??-fx-focus-color, ?linear-gradient(to right, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)), ?-fx-faint-focus-color, ?linear-gradient(to right, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)); ? } ? .scroll-bar > .thumb { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ??/*-fx-background-insets: 1, 2, 3;*/ ?-fx-background-insets: 2, 3, 4; ?/*-fx-background-radius: 0.416667em, 0.333333em, 0.25em; *//* 5, 4,3 */ ?-fx-background-radius: 3, 2, 1; ? } ? .scroll-bar:vertical > .thumb { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color-to-right; ?? } ? .scroll-bar > .increment-button, ?? .scroll-bar > .decrement-button { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ? ? ??-fx-color: transparent; ?-fx-padding: 0.25em; /* 3px */ ? } ? .scroll-bar:horizontal > .increment-button, ? .scroll-bar:horizontal > .decrement-button { ?-fx-background-insets: 2 1 2 1, 3 2 3 2, 4 3 4 3; ? } ? .scroll-bar:vertical > .increment-button, ? .scroll-bar:vertical > .decrement-button { ?-fx-background-insets: 1 2 1 2, 2 3 2 3, 3 4 3 4; ? } ? .scroll-bar > .increment-button > .increment-arrow, ? .scroll-bar > .decrement-button > .decrement-arrow { ?-fx-background-color: -fx-mark-highlight-color,derive(-fx-base,-45%); ? } ? .scroll-bar > .increment-button:hover > .increment-arrow, ? .scroll-bar > .decrement-button:hover > .decrement-arrow { ?-fx-background-color: -fx-mark-highlight-color,derive(-fx-base,-50%); ? } ? .scroll-bar > .increment-button:pressed > .increment-arrow, ? .scroll-bar > .decrement-button:pressed > .decrement-arrow { ?-fx-background-color: -fx-mark-highlight-color,derive(-fx-base,-55%); ? } ? .scroll-bar:horizontal > .decrement-button > .decrement-arrow { ?-fx-padding: 0.333em 0.167em 0.333em 0.167em; /* 4 2 4 2 */ ?-fx-shape: "M5.997,5.072L5.995,6.501l-2.998-4l2.998-4l0.002,1.43l-1.976,2.57L5.997,5.072z"; ?-fx-effect: dropshadow(two-pass-box , -fx-shadow-highlight-color, 1, 0.0 , 0, 1.4); ?/*-fx-background-insets: 2 0 -2 0, 0;*/ ? } ? .scroll-bar:horizontal > .increment-button > .increment-arrow { ?-fx-padding: 0.333em 0.167em 0.333em 0.167em; /* 4 2 4 2 */ ?-fx-shape: "M2.998-0.07L3-1.499l2.998,4L3,6.501l-0.002-1.43l1.976-2.57L2.998-0.07z"; ?-fx-effect: dropshadow(two-pass-box , -fx-shadow-highlight-color, 1, 0.0 , 0, 1.4); ?/*-fx-background-insets: 2 0 -2 0, 0;*/ ? } ? .scroll-bar:vertical > .decrement-button > .decrement-arrow { ?-fx-padding: 0.167em 0.333em 0.167em 0.333em; /* 2 4 2 4 */ ?-fx-shape: "M1.929,4L0.5,3.998L4.5,1l4,2.998L7.07,4L4.5,2.024L1.929,4z"; ?-fx-effect: dropshadow(two-pass-box , -fx-shadow-highlight-color, 1, 0.0 , 0, 1.4); ?/*-fx-background-insets: 2 0 -2 0, 0;*/ ? } ? .scroll-bar:vertical > .increment-button > .increment-arrow { ?-fx-padding: 0.167em 0.333em 0.167em 0.333em; /* 2 4 2 4 */ ?-fx-shape: "M7.071,1L8.5,1.002L4.5,4l-4-2.998L1.93,1L4.5,2.976L7.071,1z"; ?-fx-effect: dropshadow(two-pass-box , -fx-shadow-highlight-color, 1, 0.0 , 0, 1.4); ?/*-fx-background-insets: 2 0 -2 0, 0;*/ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ScrollPane ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ? .scroll-pane > .viewport { ?-fx-background-color: -fx-background; ? } ? .scroll-pane > .scroll-bar:horizontal { ?-fx-background-insets: 0 1 1 1, 1; ?-fx-padding: 0 1 0 1; ? } ? .scroll-pane > .scroll-bar:horizontal > .increment-button, ? .scroll-pane > .scroll-bar:horizontal > .decrement-button { ?-fx-padding: 0.166667em 0.25em 0.25em ?0.25em; /* 2 3 3 3 */ ? } ? .scroll-pane > .scroll-bar:vertical > .increment-button, ? .scroll-pane > .scroll-bar:vertical > .decrement-button { ?-fx-padding: 0.25em 0.25em 0.25em 0.166667em; /* 3 3 3 2 */ ? } ? .scroll-pane > .scroll-bar:vertical { ?-fx-background-insets: 1 1 1 0, 1; ?-fx-padding: 1 0 1 0; ? } ? .scroll-pane > .corner { ?-fx-background-color: derive(-fx-base,-1%); ?-fx-background-insets: 0 1 1 0; ? } ? /* new styleclass for edge to edge scrollpanes that don't want to draw a border */ ? .scroll-pane.edge-to-edge, ? .tab-pane > * > .scroll-pane { ?-fx-background-color: -fx-background; ?-fx-background-insets: 0; ?-fx-padding: 0; ? } ? .scroll-pane.edge-to-edge > .scroll-bar, ? .tab-pane > * > .scroll-pane > .scroll-bar, ? .titled-pane > * > * > .scroll-pane > .scroll-bar { ?-fx-background-insets: 0; ?-fx-padding: 0; ? } ? .scroll-pane.edge-to-edge > .scroll-bar > .increment-button, ?? .scroll-pane.edge-to-edge > .scroll-bar > .decrement-button, ? .tab-pane > * > .scroll-pane > .scroll-bar > .increment-button, ?? .tab-pane > * > .scroll-pane > .scroll-bar > .decrement-button, ? .titled-pane > * > * > .scroll-pane > .scroll-bar > .increment-button, ? .titled-pane > * > * > .scroll-pane > .scroll-bar > .decrement-button { ?-fx-padding: 0.25em; /* 3px */ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Separator ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.separator:horizontal .line { ?-fx-border-color: -fx-text-box-border transparent transparent transparent, ?-fx-shadow-highlight-color transparent transparent transparent; ?-fx-border-insets: 0, 1 0 0 0; ? } ? .separator:vertical .line { ?-fx-border-color: transparent transparent transparent -fx-shadow-highlight-color, ?transparent transparent transparent -fx-text-box-border; ?-fx-border-width: 3, 1; ?-fx-border-insets: 0, 0 0 0 1; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ProgressBar ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.progress-bar { ?-fx-indeterminate-bar-length: 60; ?-fx-indeterminate-bar-escape: true; ?-fx-indeterminate-bar-flip: true; ?-fx-indeterminate-bar-animation-time: 2; ? } ? .progress-bar > .bar { ?-fx-background-color: linear-gradient(to bottom, derive(-fx-accent, -7%), derive(-fx-accent, 0%), derive(-fx-accent, -3%), derive(-fx-accent, -9%) ); ?-fx-background-insets: 3 3 4 3; ?/*-fx-background-radius: 0.583em; *//* 7 */ ?-fx-background-radius: 2; ?-fx-padding: 0.75em; ? } ? .progress-bar:indeterminate > .bar { ?-fx-background-color: linear-gradient(to left, transparent, -fx-accent); ? } ? .progress-bar > .track { ?-fx-background-color: ??-fx-shadow-highlight-color, ?linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border), ?linear-gradient(to bottom, ??derive(-fx-control-inner-background, -7%), ?derive(-fx-control-inner-background, 0%), ?derive(-fx-control-inner-background, -3%), ?derive(-fx-control-inner-background, -9%) ?); ?-fx-background-insets: 0, 0 0 1 0, 1 1 2 1; ?-fx-background-radius: 4, 3, 2; /* 10, 9, 8 */ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ProgressIndicator ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.progress-indicator { ?-fx-indeterminate-segment-count: 12; ?-fx-spin-enabled: true; ? } ? .progress-indicator > .determinate-indicator > .indicator { ?-fx-background-color: -fx-box-border, ?radial-gradient(center 50% 50%, radius 50%, -fx-control-inner-background 70%, derive(-fx-control-inner-background, -9%) 100%), ??-fx-control-inner-background; ?-fx-background-insets: 0, 1, 5 2 1 2; ?-fx-padding: 0.166667em; /* 2px */ ? } ? .progress-indicator > .determinate-indicator > .progress { ?-fx-background-color: -fx-accent; ?-fx-padding: 0.083333em; /* 1px */ ? } ? .progress-indicator > .determinate-indicator > .tick { ?-fx-background-color: white; ?-fx-background-insets: 0; ?-fx-padding: 0.666667em; /* 8 */ ?-fx-shape: "M-0.25,6.083c0.843-0.758,4.583,4.833,5.75,4.833S14.5-1.5,15.917-0.917c1.292,0.532-8.75,17.083-10.5,17.083C3,16.167-1.083,6.833-0.25,6.083z"; ? } ? .progress-indicator > .percentage { ?-fx-font-size: 0.916667em; /* 11pt - 1 less than the default font */ ?-fx-fill: -fx-text-background-color; ? } ? .progress-indicator:indeterminate .segment { ?-fx-background-color: -fx-accent; ? } ? .progress-indicator:indeterminate .segment0 { ?-fx-shape:"M41.98 14.74 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment1 { ?-fx-shape:"M33.75 6.51 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment2 { ?-fx-shape:"M22.49 3.5 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment3 { ?-fx-shape:"M11.24 6.51 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment4 { ?-fx-shape:"M3.01 14.74 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment5 { ?-fx-shape:"M0.0 26.0 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment6 { ?-fx-shape:"M3.01 37.25 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment7 { ?-fx-shape:"M11.25 45.48 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment8 { ?-fx-shape:"M22.5 48.5 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment9 { ?-fx-shape:"M33.75 45.48 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment10 { ?-fx-shape:"M41.98 37.25 a3.5,3.5 0 1,1 0,1 Z"; ? } ? .progress-indicator:indeterminate .segment11 { ?-fx-shape:"M45.0 26.0 a3.5,3.5 0 1,1 0,1 Z"; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Text COMMON ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.text-input { ?-fx-text-fill: -fx-text-inner-color; ?-fx-highlight-fill: derive(-fx-control-inner-background,-20%); ?-fx-highlight-text-fill: -fx-text-inner-color; ?-fx-prompt-text-fill: derive(-fx-control-inner-background,-30%); ?-fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border), ?linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background); ?-fx-background-insets: 0, 1; ?-fx-background-radius: 3, 2; ?-fx-cursor: text; ?-fx-padding: 0.333333em 0.583em 0.333333em 0.583em; /* 4 7 4 7 */ ? } ? .text-input:focused { ?-fx-highlight-fill: -fx-accent; ?-fx-highlight-text-fill: white; ?-fx-background-color: ??-fx-focus-color, ?-fx-control-inner-background, ?-fx-faint-focus-color, ?linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background); ?-fx-background-insets: -0.2, 1, -1.4, 3; ?-fx-background-radius: 3, 2, 4, 0; ?-fx-prompt-text-fill: transparent; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TextArea ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.text-area { ?-fx-padding: 0; ?-fx-cursor: default; ?-fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border), ?derive(-fx-base,-1%); ? } ? .text-area > .scroll-pane { ?-fx-background-color: null; ? } ? .text-area > .scroll-pane > .scroll-bar:horizontal { ?-fx-background-radius: 0 0 2 2; ? } ? .text-area > .scroll-pane > .scroll-bar:vertical { ?-fx-background-radius: 0 2 2 0; ? } ? .text-area > .scroll-pane > .corner { ?-fx-background-radius: 0 0 2 0; ? } ? .text-area .content { ?/*the is 1px less top and bottom than TextInput because of scrollpane border */ ?-fx-padding: 0.25em 0.583em 0.25em 0.583em; /* 3 7 3 7 */ ?-fx-cursor: text; ?-fx-background-color: ?linear-gradient(from 0px 0px to 0px 4px, derive(-fx-control-inner-background, -8%), -fx-control-inner-background); ?-fx-background-radius: 2; ? } ? .text-area:focused .content { ?-fx-background-color: ??-fx-control-inner-background, ?-fx-faint-focus-color, ?linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background); ?-fx-background-insets: 0, 0, 2; ?-fx-background-radius: 2, 1, 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* HTML Editor ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.html-editor-foreground { ?-fx-color-label-visible: false; ?-fx-color-rect-x: 1; ?-fx-color-rect-y: 1; ?-fx-color-rect-width: 4; ?-fx-color-rect-height: 3; ?-fx-graphic: url("HTMLEditor-Text-Color.png"); ? } ? .html-editor-background { ?-fx-color-label-visible: false; ?-fx-color-rect-x: 1; ?-fx-color-rect-y: 1; ?-fx-color-rect-width: 4; ?-fx-color-rect-height: 3; ?-fx-graphic: url("HTMLEditor-Background-Color.png"); ? } ? .color-picker.html-editor-foreground > .color-picker-label > .picker-color > .picker-color-rect, ? .color-picker.html-editor-background > .color-picker-label > .picker-color > .picker-color-rect { ?-fx-stroke: null; ? } ? .html-editor .button , ? .html-editor .toggle-button { ?-fx-padding: 0.333333em 0.416667em 0.333333em 0.416667em; /* 4 5 4 5 */ ? } ? .html-editor-cut { ?-fx-graphic: url("HTMLEditor-Cut.png"); ? } ? .html-editor-copy { ?-fx-graphic: url("HTMLEditor-Copy.png"); ? } ? .html-editor-paste { ?-fx-graphic: url("HTMLEditor-Paste.png"); ? } ? .html-editor-align-left { ?-fx-graphic: url("HTMLEditor-Left.png"); ? } ? .html-editor-align-center { ?-fx-graphic: url("HTMLEditor-Center.png"); ? } ? .html-editor-align-right { ?-fx-graphic: url("HTMLEditor-Right.png"); ? } ? .html-editor-align-justify { ?-fx-graphic: url("HTMLEditor-Justify.png"); ? } ? .html-editor-outdent { ?-fx-graphic: url("HTMLEditor-Outdent.png"); ? } ? .html-editor-indent { ?-fx-graphic: url("HTMLEditor-Indent.png"); ? } ? .html-editor-bullets { ?-fx-graphic: url("HTMLEditor-Bullets.png"); ? } ? .html-editor-numbers { ?-fx-graphic: url("HTMLEditor-Numbered.png"); ? } ? .html-editor-bold { ?-fx-graphic: url("HTMLEditor-Bold.png"); ? } ? .html-editor-italic { ?-fx-graphic: url("HTMLEditor-Italic.png"); ? } ? .html-editor-underline { ?-fx-graphic: url("HTMLEditor-Underline.png"); ? } ? .html-editor-strike { ?-fx-graphic: url("HTMLEditor-Strikethrough.png"); ? } ? .html-editor-hr { ?-fx-graphic: url("HTMLEditor-Break.png"); ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* PopupMenu ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.context-menu { ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-17%), ?derive(-fx-color,-30%) ?), ?-fx-control-inner-background; ?-fx-background-insets: 0, 1; ?-fx-padding: 0.333333em 0.083333em 0.333333em 0.083333em; /* 4 1 8 1 */ ?-fx-effect: dropshadow( gaussian , rgba(0,0,0,0.2) , 12, 0.0 , 0 , 8 ); ? } ? .context-menu .separator:horizontal .line { ?-fx-border-color: -fx-box-border transparent transparent transparent; ?-fx-border-insets: 1 0 0 0; ? } ? .context-menu > .scroll-arrow { ?-fx-padding: 0.416667em 0.416667em 0.416667em 0.416667em; /* 5 */ ?-fx-background-color: transparent; ? } ? .context-menu > .scroll-arrow:hover { ?-fx-background: -fx-selection-bar; ?-fx-background-color: -fx-background; ?-fx-text-fill: -fx-text-background-color; ? } ? .context-menu:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-fill; ? } ??/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Menu ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.menu { ?-fx-background-color: transparent; ?-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */ ? } ? .menu:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-fill; ? } ? .menu > .right-container > .arrow { ?-fx-padding: 0.458em 0.167em 0.458em 0.167em; /* 4.5 2 4.5 2 */ ?-fx-background-color: -fx-mark-color; ?-fx-shape: "M0,-4L4,0L0,4Z"; ?-fx-scale-shape: false; ? } ? .menu:focused > .right-container > .arrow { ?-fx-background-color: white; ? } ? .menu-up-arrow { ?-fx-padding: 0.666667em 0.416667em 0.0em 0.416667em; ?/* 8 5 0 5 */ ?-fx-background-color: derive(-fx-color,-2%); ?-fx-shape: "M0 1 L1 1 L.5 0 Z"; ?-fx-effect: innershadow( two-pass-box , rgba(0,0,0,0.6) , 4, 0.0 , 0 , 1 ); ? } ? .menu-down-arrow { ?-fx-background-color: derive(-fx-color,-2%); ?-fx-padding: 0.666667em 0.416667em 0.0em 0.416667em; ?/* 8 5 0 5 */ ?-fx-shape: "M0 0 L1 0 L.5 1 Z"; ?-fx-effect: innershadow( two-pass-box , rgba(0,0,0,0.6) , 4, 0.0 , 0 , 1 ); ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* MenuBar ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.menu-bar { ?-fx-padding: 0.0em 0.666667em 0.0em 0.666667em; /* 0 8 0 8 */ ?-fx-spacing: 0.166667em; /* 2 */ ?-fx-background-color: ?linear-gradient(to bottom, derive(-fx-base,75%) 0%, -fx-outer-border 90%), ?linear-gradient(to bottom, derive(-fx-base,46.9%) 2%, derive(-fx-base,-2.1%) 95%); ?-fx-background-insets: 0 0 0 0, 1 0 1 0; ?-fx-background-radius: 0, 0 ; ? } ? /* Show nothing for background of normal menu button in a menu bar */ ? .menu-bar > .container > .menu-button { ?-fx-background-radius: 0; ?-fx-background-color: transparent; ?-fx-background-insets: 0; ? } ? /* Change padding of menu buttons when in menu bar */ ? .menu-bar > .container > .menu-button > .label { ?-fx-padding: 0; ? } ? /* Hide the down arrow for a menu placed in a menubar */ ? .menu-bar > .container > .menu-button > .arrow-button > .arrow { ?-fx-padding: 0.167em 0 0.250em 0; /* 2 0 3 0 */ ?-fx-background-color: transparent; ?-fx-shape: null; ? } ? .menu-bar > .container > .menu > .arrow-button { ?-fx-padding: 0.500em 0 0.500em 0; /* 6 0 6 0 */ ? } ? .menu-bar > .container > .menu-button:hover, ? .menu-bar > .container > .menu-button:focused, ? .menu-bar > .container > .menu-button:showing { ?-fx-background: -fx-selection-bar; ?-fx-background-color: -fx-background; ? } ? .menu-bar > .container > .menu-button:hover > .label, ? .menu-bar > .container > .menu-button:focused > .label, ? .menu-bar > .container > .menu-button:showing ?> .label { ?-fx-text-fill: -fx-text-background-color; ? } ? .menu-bar:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-fill; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* MenuItem ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.menu-item { ?-fx-background-color: transparent; ?-fx-padding: 0.333333em 0.41777em 0.333333em 0.41777em; ?/* 4 5 4 5 */ ? } ? .menu-item > .left-container { ?-fx-padding: 0.458em 0.791em 0.458em 0.458em; ? } ? .menu-item > .graphic-container { ?-fx-padding: 0em 0.333em 0em 0em; ? } ? .menu-item >.label { ?-fx-padding: 0em 0.5em 0em 0em; ?-fx-text-fill: -fx-text-base-color; ? } ? .menu-item:focused { ?-fx-background: -fx-selection-bar; ?-fx-background-color: -fx-background; ?-fx-text-fill: ?-fx-text-background-color; ? } ? .menu-item:focused > .label { ?-fx-text-fill: white; ? } ? .menu-item > .right-container { ?-fx-padding: 0em 0em 0em 0.5em; ? } ? .menu-item:show-mnemonics > .mnemonic-underline { ?-fx-stroke: -fx-text-fill; ? } ?? .radio-menu-item:checked > .left-container > .radio { ?-fx-background-color: -fx-mark-color; ?-fx-shape: "M0,5H2L4,8L8,0H10L5,10H3Z"; ?-fx-scale-shape: false; ? } ? .radio-menu-item:focused:checked > .left-container > .radio { ?-fx-background-color: white; ? } ? .check-menu-item:checked > .left-container > .check { ?-fx-background-color: -fx-mark-color; ?-fx-shape: "M0,5H2L4,8L8,0H10L5,10H3Z"; ?-fx-scale-shape: false; ? } ? .check-menu-item:focused:checked > .left-container > .check { ?-fx-background-color: white; ? } ? /*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ChoiceBox ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?/*.choice-box > .open-button > .arrow {?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color;?-fx-background-insets: 1 0 -1 0, 0;?-fx-padding: 0.166667em 0.333333em 0.166667em 0.333333em; ?2 3.5 2 3.5 ?-fx-shape: "M 0 0 h 7 l -3.5 4 z";? }*/ ? .choice-box > .context-menu { ?-fx-background-radius: 6, 5, 4; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TabPane ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tab-pane { ?-fx-tab-min-height: 1.8333em; /* 22 */ ?-fx-tab-max-height: 1.8333em; /* 22 */ ? } ? .tab-pane > .tab-header-area > .headers-region > .tab > .tab-container > .tab-label { ?-fx-alignment: CENTER; ?-fx-text-fill: -fx-text-base-color; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab { ?-fx-background-insets: 0 1 1 0, 1 2 1 1, 2 3 1 2; ?-fx-background-radius: 3 3 0 0, 2 2 0 0, 1 1 0 0; ?-fx-padding: 0.083333em 0.5em 0.0769em 0.5em; /* 1 6 0.99 6 */ ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:top { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:right { ?-fx-background-color: -fx-outer-border, -fx-inner-border-bottomup, -fx-body-color-bottomup; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:bottom { ?-fx-background-color: -fx-outer-border, -fx-inner-border-bottomup, -fx-body-color-bottomup; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:left { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:hover { ?-fx-color: -fx-hover-base; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:selected { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-background; ?-fx-background-insets: 0 1 1 0, 1 2 0 1, 2 3 0 2; ? } ? .tab-pane:focused > .tab-header-area > .headers-region > .tab:selected .focus-indicator { ?-fx-border-width: 1, 1; ?-fx-border-color: -fx-focus-color, -fx-faint-focus-color; ?-fx-border-insets: -4 -4 -6 -5, -2 -2 -5 -3; ?-fx-border-radius: 2, 1; /* looks sharper if outer border has a tighter radius (2 instead of 3) */ ? } ? .tab-pane:focused > .tab-header-area > .headers-region > .tab:bottom:selected .focus-indicator { ?-fx-border-insets: -6 -5 -4 -4, -5 -3 -2 -2; ? } ? .tab-pane > .tab-header-area > .headers-region > .tab:disabled:hover { ?-fx-color: -fx-base; ? } ? .tab-pane > .tab-header-area > .tab-header-background { ?/* TODO should not be using text-box-border I think? */ ?-fx-background-color: ? ?-fx-outer-border, ?-fx-text-box-border, ??linear-gradient(from 0px 0px to 0px 5px, -fx-text-box-border, derive(-fx-text-box-border, 30%)); ? } ? .tab-pane:top > .tab-header-area > .tab-header-background { ?-fx-background-insets: 0, 0 0 1 0, 1; ? } ? .tab-pane:bottom > .tab-header-area > .tab-header-background { ?-fx-background-insets: 0, 1 0 0 0, 1; ? } ? .tab-pane:left > .tab-header-area > .tab-header-background { ?-fx-background-insets: 0, 0 1 0 0, 1; ? } ? .tab-pane:right > .tab-header-area > .tab-header-background { ?-fx-background-insets: 0, 0 0 0 1, 1; ? } ? .tab-pane:top > .tab-header-area { ?/*-fx-padding: 0.416667em 0.166667em 0.0em 0.416667em; *//* 5 2 0 5 */ ?-fx-padding: 0.416667em 5 0.0em 0.416667em; /* 5 2 0 5 */ ? } ? .tab-pane:bottom > .tab-header-area { ?-fx-padding: 0 0.166667em 0.416667em 0.416667em; /* 0 2 5 5 */ ? } ? .tab-pane:left > .tab-header-area { ?-fx-padding: 0.416667em 0.0em 0.166667em 0.416667em; /* 5 0 2 5 */ ? } ? .tab-pane:right > .tab-header-area { ?-fx-padding: 0.416667em 0.416667em 0.166667em 0.0em; /* 5 5 2 0 */ ? } ? /* TODO: scaling the shape seems to make it way too large */ ? .tab-pane > .tab-header-area > .headers-region > .tab > .tab-container > .tab-close-button { ?-fx-background-color: -fx-mark-color; ?-fx-shape: "M 0,0 H1 L 4,3 7,0 H8 V1 L 5,4 8,7 V8 H7 L 4,5 1,8 H0 V7 L 3,4 0,1 Z"; ?-fx-scale-shape: false; ?-fx-effect: dropshadow(two-pass-box , rgba(255, 255, 255, 0.4), 1, 0.0 , 0, 1); ? } ? .tab-pane > .tab-header-area > .headers-region > .tab > .tab-container > .tab-close-button:hover { ?-fx-background-color: derive(-fx-mark-color, -30%); ? } ? /* CONTROL BUTTONS */ ? .tab-pane > .tab-header-area > .control-buttons-tab > .container { ?-fx-padding: 3 0 0 0; ?? } ? .tab-pane > .tab-header-area > .control-buttons-tab > .container > .tab-down-button { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: -1 0 5 0, 0 1 6 1, 1 2 7 2; ?-fx-padding: 4 4 9 4; ?-fx-background-radius: 10; ? } ? .tab-pane:bottom > .tab-header-area > .control-buttons-tab > .container > .tab-down-button { ?-fx-padding: -5 4 4 4; /* TODO convert to ems */ ? } ? /* FLOATING TABS CUSTOMISATION */ ? .tab-pane.floating > .tab-header-area > .tab-header-background { ?-fx-background-color: null; ? } ? .tab-pane.floating > .tab-header-area { ?-fx-background-color: null; ? } ? .tab-pane.floating > .tab-content-area { ?-fx-background-color: -fx-outer-border, -fx-background; ?-fx-background-insets: 0, 1; ?-fx-background-radius: 2, 0; ?-fx-padding: 2; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ComboBox ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?/* Customise the ListCell that appears in the ComboBox button itself */ ? .combo-box > .list-cell { ?-fx-background: transparent; ?-fx-background-color: transparent; ?-fx-text-fill: -fx-text-base-color; ?-fx-padding: 0.333333em 0.666667em 0.333333em 0.666667em; /* 4 8 4 8 */ ? } ? .combo-box-base > .arrow-button { ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 1 1 0; ?-fx-padding: 0.5em 0.667em 0.5em 0.833333em; /* 6 8 6 10 */ ?-fx-background-color: transparent; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Editable ComboBox ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* The editable ComboBox TextBox inherits its properties from the TextBox ? ? ?*?* Control. Only the properties with values that are different from the ? ? ? ?*?* TextBox are specified here. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.combo-box-base:editable > .arrow-button, ? .date-picker > .arrow-button { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 1 1 1 0, 1, 2; ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 1 1 0; ? } ? .combo-box-base:editable > .text-field, ? .date-picker > .text-field { ?-fx-background-color: -fx-control-inner-background; ?-fx-background-insets: 1 0 1 1; ?-fx-background-radius: 2 0 0 2; ? } ? .combo-box-base:editable:contains-focus, ? .date-picker:contains-focus { ?-fx-background-color: -fx-focus-color; ?-fx-background-insets: -0.2; ?-fx-background-radius: 3; ? } ? .combo-box-base:editable:focused > .text-field, ? .combo-box-base:editable > .text-field:focused, ? .date-picker:focused > .text-field, ? .date-picker > .text-field:focused { ?-fx-background-color: ??-fx-control-inner-background, ?-fx-faint-focus-color, ?linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background); ?-fx-background-insets: 1 0 1 1, 1 0 1 1, 3 2 3 3; ?-fx-background-radius: 2 0 0 2, 1 0 0 1, 0; ? } ? .combo-box-base:editable:contains-focus > .arrow-button, ? .date-picker:contains-focus > .arrow-button { ?-fx-background-color: -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ?-fx-background-insets: 1, 2, 1, 2.6; ?-fx-background-radius: 0 2 2 0, 0 1 1 0, 0 1 1 0, 0 1 1 0; ? } ?/* -------------- STYLES FOR THE DEFAULT LISTVIEW-BASED COMBOBOX ------------- */ ?.combo-box-popup > .list-view { ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-17%), ?derive(-fx-color,-30%) ?), ?-fx-control-inner-background; ?-fx-background-insets: 0, 1; ?-fx-effect: dropshadow( gaussian , rgba(0,0,0,0.2) , 12, 0.0 , 0 , 8 ); ? } ? .combo-box-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell { ?-fx-padding: 4 0 4 5; ?/* No alternate highlighting */ ?-fx-background: -fx-control-inner-background; ? } ? .combo-box-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected { ?-fx-background: ?-fx-selection-bar-non-focused; ?-fx-background-color: ?-fx-background; ? } ? .combo-box-popup ?> .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:hover, ? .combo-box-popup ?> .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected:hover { ?-fx-background: -fx-accent; ?-fx-background-color: -fx-selection-bar; ? } ? .combo-box-popup > .list-view > .placeholder > .label { ?-fx-text-fill: derive(-fx-control-inner-background,-30%); ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TitledPane ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.titled-pane { ?-fx-text-fill: -fx-text-base-color; ? } ? .titled-pane > .title { ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-15%) 95%, ?derive(-fx-color,-25%) 100% ?), ?-fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 1, 2; ?-fx-background-radius: 3 3 0 0, 2 2 0 0, 1 1 0 0; ?-fx-padding: 0.3333em 0.75em 0.3333em 0.75em; /* 4 9 4 9 */ ? } ? /* alternative focus using the ring around the entire title area */ ? /*.titled-pane:focused > .title {?-fx-background-color: -fx-faint-focus-color, -fx-focus-color, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 0.7, 2, 3; ? ?? }*/ ? /* focus purely on the arrow */ ? .titled-pane:focused > .title > .arrow-button > .arrow { ?-fx-background-color: -fx-focus-color, -fx-mark-color; ?-fx-background-insets: -1, 0; ?-fx-effect: dropshadow(two-pass-box , -fx-focus-color, 5, 0.2 , 0, 0); ? } ? .titled-pane > .title > .arrow-button { ?-fx-background-color: null; ?-fx-background-insets: 0; ?-fx-background-radius: 0; ?-fx-padding: 0.0em 0.583em 0.0em 0.0em; /* 0 7 0 0 */ ? } ? .titled-pane > .title > .arrow-button > .arrow { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.25em 0.3125em 0.25em 0.3125em; /* 3 3.75 3 3.75 */ ?-fx-shape: "M 0 0 h 7 l -3.5 4 z"; ? } ? .titled-pane > .title:hover { ?-fx-color: -fx-hover-base; ? } ? /* alternative content using a border and a grad to transparent background - why should TitledPane content have a colour? */ ? .titled-pane > *.content { ?-fx-border-color: -fx-box-border; ?-fx-border-insets: -1 0 0 0; ?-fx-background-color: linear-gradient(from 0px 0px to 0px 5px, derive(-fx-background, -6%), -fx-background); ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Accordion ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.accordion > .titled-pane > .title { ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-15%) 95%, ?derive(-fx-color,-25%) 100% ?), ?-fx-inner-border, ?-fx-body-color; ?-fx-background-insets: -1 0 0 0, 0 1 1 1, 1 2 2 2; ?-fx-background-radius: 0, 0, 0; ? } ? .accordion > .first-titled-pane > .title { ?-fx-background-insets: 0, 1, 2; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* SplitPane ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.split-pane > .split-pane-divider { ?-fx-padding: 0 0.25em 0 0.25em; /* 0 3 0 3 */ ? } ? /* horizontal the two nodes are placed to the left/right of each other. */ ? .split-pane:horizontal > .split-pane-divider { ?-fx-background-color: -fx-box-border, -fx-inner-border-horizontal; ?-fx-background-insets: 0, 0 1 0 1; ? } ? /* vertical the two nodes are placed on top of each other. */ ? .split-pane:vertical > .split-pane-divider { ?-fx-background-color: -fx-box-border, -fx-inner-border; ?-fx-background-insets: 0, 1 0 1 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ColorPicker ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.color-picker > .arrow-button { ?-fx-background-color: null; ?-fx-padding: 0.5em 0.667em 0.5em 0; /* ?6 8 6 0 */ ? } ? .color-picker.split-button > .arrow-button ?{ ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 1 1 1 0, 1, 2; ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 1 1 0; ? } ? .color-picker.split-button:focused > .arrow-button { ?/*-fx-background-color: -fx-focus-color, -fx-inner-border, -fx-body-color !important;*/ ?/*-fx-background-insets: 0, 1, 2;*/ ?-fx-background-color: -fx-focus-color, -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ?-fx-background-insets: 1 1 1 0, 1, 2, 1, 2.6; ?-fx-background-radius: 0 3 3 0, 0 2 2 0, 0 1 1 0, 0 1 1 0, 0 1 1 0; ? } ? .color-picker.split-button > .color-picker-label, ? .color-picker.split-button:focused > .color-picker-label{ ?-fx-background-color: null; ? } ? .color-picker.split-button > .arrow-button { ?/*-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color !important;*/ ?-fx-padding: 0.5em 0.667em 0.5em 0.667em; /* 6 8 6 8 */ ? } ? .color-picker > .color-picker-label > .picker-color > .picker-color-rect { ?-fx-stroke: -fx-box-border; ? } ?.color-palette { ?-fx-spacing: 0.833333em; /* 10px */ ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-17%), ?derive(-fx-color,-30%) ?), ?linear-gradient(to bottom, ??derive(-fx-background,10%) 0%, ??derive(-fx-background,-5%) 12%, ??derive(-fx-background,15%) 88%, ??derive(-fx-background,-10%) 100%); ?-fx-background-insets: 0, 1; ?-fx-background-radius: 6, 5; ?-fx-padding: 1em; /* 12 */ ?-fx-effect: dropshadow( gaussian , rgba(0,0,0,0.2) , 12, 0.0 , 0 , 8 ); ? } ? .color-palette > .color-picker-grid { ?-fx-padding: 0.5px; ?-fx-snap-to-pixel: false; ? } ? .color-palette > .color-picker-grid > .color-square { ?-fx-background-color: transparent; ?-fx-padding: 0.5px; ? } ? /* the color over which the user is hovering */ ? .color-palette > .color-picker-grid > .color-square:focused, ?? .color-palette > .color-picker-grid > .color-square:selected:focused { ?-fx-background-color: -fx-faint-focus-color, -fx-focus-color; ?-fx-background-insets: -2,0; ?-fx-background-radius: 5,0; ?-fx-scale-x: 1.5; ?-fx-scale-y: 1.5; ? } ? /* the currently selected color */ ? .color-palette > .color-picker-grid > .color-square:selected { ?-fx-background-color: black; ? } ?? /* ------- CUSTOM COLOR DIALOG ------- */ ? .custom-color-dialog > .color-rect-pane { ?-fx-spacing: 0.75em; ?-fx-pref-height: 16.666667em; ?-fx-alignment: top-left; ?-fx-fill-height: true; ? } ?.custom-color-dialog .color-rect-pane .color-rect { ?-fx-min-width: 16.666667em; ?-fx-min-height: 16.666667em; ? } ?.custom-color-dialog .color-rect-pane .color-rect-border { ?-fx-border-color: derive(-fx-base, -20%); ? } ?.custom-color-dialog > .color-rect-pane #color-rect-indicator { ?-fx-background-color: null; ?-fx-border-color: white; ?-fx-border-radius: 0.4166667em; ?-fx-translate-x: -0.4166667em; ?-fx-translate-y: -0.4166667em; ?-fx-pref-width: 0.833333em; ?-fx-pref-height: 0.833333em; ?-fx-effect: dropshadow(three-pass-box, black, 2, 0.0, 0, 1); ? } ?.custom-color-dialog > .color-rect-pane > .color-bar { ?-fx-min-width: 1.666667em; ?-fx-min-height: 16.666667em; ?-fx-max-width: 1.666667em; ?-fx-border-color: derive(-fx-base, -20%); ? } ?.custom-color-dialog > .color-rect-pane > .color-bar > #color-bar-indicator { ?-fx-border-radius: 0.333333em; ?-fx-border-color: white; ?-fx-effect: dropshadow(three-pass-box, black, 2, 0.0, 0, 1); ?-fx-pref-width: 2em; ?-fx-pref-height: 0.833333em; ?-fx-translate-x: -0.1666667em; ?-fx-translate-y: -0.4166667em; ? } ?.custom-color-dialog ?{ ?-fx-background-color: -fx-background; ?-fx-padding: 1.25em; ?-fx-spacing: 1.25em; ? } ? .custom-color-dialog .controls-pane .current-new-color-grid #current-new-color-border { ?-fx-border-color: derive(-fx-base, -20%); ?-fx-border-width: 2px; ? } ?.custom-color-dialog .controls-pane .current-new-color-grid .color-rect { ?-fx-min-width: 10.666667em; ?-fx-min-height: 1.75em; ?-fx-pref-width: 10.666667em; ?-fx-pref-height: 1.75em; ? } ?.custom-color-dialog .transparent-pattern { ?-fx-background-image: url("pattern-transparent.png"); ??-fx-background-repeat: repeat; ?-fx-background-size: auto; ? } ?.custom-color-dialog .controls-pane #spacer1 { ?-fx-min-height: 0.1666667em; ?-fx-max-height: 0.1666667em; ?-fx-pref-height: 0.1666667em; ? } ?.custom-color-dialog .controls-pane #spacer2 { ?-fx-min-height: 1em; ?-fx-max-height: 1em; ?-fx-pref-height: 1em; ? } ?.custom-color-dialog .controls-pane #settings-pane { ?-fx-hgap: 0.4166667em; ?-fx-vgap: 0.3333333em; ? } ?.custom-color-dialog .controls-pane #settings-pane .settings-label { ?-fx-min-width: 5.75em; ? } ?.custom-color-dialog .controls-pane #settings-pane .settings-unit { ?-fx-max-width: 1em; ? } ?.custom-color-dialog .controls-pane #settings-pane .slider { ?-fx-pref-width: 8.25em; ? } ?.custom-color-dialog .controls-pane .color-input-field { ?-fx-pref-column-count: 3; ?-fx-max-width: 3.25em; ?-fx-min-width: 3.25em; ?-fx-pref-width: 3.25em; ? } ?.custom-color-dialog .controls-pane .web-field { ?-fx-pref-column-count: 6; ?-fx-pref-width: 8.25em; ? } ?.custom-color-dialog .controls-pane #spacer-side { ?-fx-min-width: 0.5em; ?-fx-pref-width: 0.5em; ? } ?.custom-color-dialog .controls-pane #spacer-bottom { ?-fx-pref-height: 0.833333em; ?-fx-min-height: 0.833333em; ? } ?.custom-color-dialog .controls-pane .customcolor-controls-background { ?-fx-background-color: -fx-text-box-border, -fx-control-inner-background; ?-fx-background-insets: ??0.8333333em 0 0.4166667em 0, ?1em 0.166667em 0.5833333em 0.166667em; ?-fx-background-radius: 0.3333333em, 0.166667em; ? } ?.custom-color-dialog .controls-pane .current-new-color-grid .label { ?-fx-padding: 0 0 0 0.4166667em; ? } ?.custom-color-dialog .controls-pane #buttons-hbox { ?-fx-spacing: 0.333333em; ?-fx-padding: 1em 0 0 0; ?-fx-alignment: bottom-right; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Pagination ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.pagination { ?-fx-padding: 0; ? ? ? ? ?-fx-arrows-visible: true; ?-fx-tooltip-visible: true; ?-fx-page-information-visible: true; ?-fx-page-information-alignment: bottom; ?-fx-arrow-button-gap: 0; ? } ? .pagination > .page { ?-fx-background-color: transparent; ? } ? .pagination > .pagination-control { ?-fx-background-color: transparent; ?-fx-font-size: 0.82em; ? } ? .pagination > .pagination-control > .control-box { ?-fx-padding: 5px 0 0 0; ?-fx-spacing: 2; ?-fx-alignment: center; ? } ? .pagination > .pagination-control > .control-box > .left-arrow-button { ?-fx-background-radius: 3 0 0 3, 3 0 0 3, 2 0 0 2, 1 0 0 1; ?-fx-background-insets: 0 0 -1 5, 0 0 0 5, 1 1 1 6, 2 2 2 7; ?-fx-padding: 0em 0.417em 0em 0.833em; /* 0 5 0 10 */ ? } ? .pagination > .pagination-control > .control-box > .right-arrow-button { ?-fx-background-radius: 0 3 3 0, 0 3 3 0, 0 2 2 0, 0 1 1 0; ?-fx-background-insets: 0 5 -1 0, 0 5 0 0, 1 6 1 1, 2 7 2 2; ?-fx-padding: 0em 0.75em 0em 0.417em; /* 0 9 0 5 */ ? } ? .pagination > .pagination-control .left-arrow { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.375em 0.291em 0.375em 0.291em; ?-fx-shape: "M 0 0 L -13 7 L 0 13 z"; ?-fx-scale-shape: true; ? } ? .pagination > .pagination-control .right-arrow { ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.375em 0.291em 0.375em 0.291em; ?-fx-shape: "M 0 0 L 13 7 L 0 13 z"; ?-fx-scale-shape: true; ? } ? .pagination > .pagination-control > .control-box > .bullet-button { ? ??-fx-background-radius: 0, 4em, 4em, 4em, 4em; ?-fx-padding: 0.333em; ?-fx-background-color: transparent, -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 5, ?6, ?7; ? } ? .pagination > .pagination-control > .control-box > .bullet-button:selected { ? ??-fx-base: -fx-accent; ? } ? .pagination.bullet > .pagination-control > .control-box { ?-fx-spacing: 0; ?-fx-alignment: center; ? } ? .pagination.bullet > .pagination-control > .control-box > .left-arrow-button { ?-fx-background-radius: 4em; ?-fx-background-insets: 0, 1, 2; ?-fx-padding: 0em 0.25em 0em 0.083em; /* 0 3 0 1 */ ? } ?? .pagination.bullet > .pagination-control > .control-box > .right-arrow-button { ?-fx-background-radius: 4em; ?-fx-background-insets: 0, 1, 2; ?-fx-padding: 0em 0.083em 0em 0.25em; /* 0 1 0 3 */ ? } ? .pagination > .pagination-control > .control-box > .number-button { ?-fx-background-radius: 0; ?-fx-padding: 0.166667em 0.25em 0.25em 0.333em; ?-fx-background-color: -fx-shadow-highlight-color, -fx-outer-border, -fx-inner-border, -fx-body-color; ? } ? .pagination > .pagination-control > .control-box > .number-button:selected { ? ??-fx-base: -fx-accent; ? } ? .pagination > .pagination-control > .page-information { ? ??-fx-padding: 0.416em 0 0 0; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Customised CSS for controls placed directly within cells ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.cell > .choice-box { ?-fx-background-color: transparent; ?-fx-background-insets: 0; ?-fx-background-radius: 0; ?-fx-padding: 0.0em 0.5em 0.0em 0.0em; /* 0 6 0 0 */ ?-fx-alignment: CENTER_LEFT; ?-fx-content-display: LEFT; ? } ? .cell > .choice-box > .label { ?-fx-padding: 0em 0.333333em 0.0em 0.333333; /* 2 4 3 6 */ ? } ? .cell:focused:selected > .choice-box > .label { ?-fx-text-fill: white; ? } ? .cell:focused:selected > .choice-box > .open-button > .arrow { ?-fx-background-color: -fx-mark-highlight-color, white; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* List, Tree, Table COMMON ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?/* remove double borders from scrollbars */ ? .list-view > .virtual-flow > .scroll-bar:vertical, ? .tree-view > .virtual-flow > .scroll-bar:vertical, ? .table-view > .virtual-flow > .scroll-bar:vertical, ? .tree-table-view > .virtual-flow > .scroll-bar:vertical { ?-fx-background-insets: 0, 0 0 0 1; ?-fx-padding: -1 -1 -1 0; ? } ? .list-view > .virtual-flow > .scroll-bar:horizontal, ? .tree-view > .virtual-flow > .scroll-bar:horizontal, ? .table-view > .virtual-flow > .scroll-bar:horizontal, ? .tree-table-view > .virtual-flow > .scroll-bar:horizontal { ?-fx-background-insets: 0, 1 0 0 0; ?-fx-padding: 0 -1 -1 -1; ? } ? .list-view > .virtual-flow > .corner, ? .tree-view > .virtual-flow > .corner, ? .table-view > .virtual-flow > .corner, ? .tree-table-view > .virtual-flow > .corner { ?-fx-background-color: derive(-fx-base,-1%); ? } ? /* standard cell */ ? .list-cell, ? .tree-cell { ?-fx-background: -fx-control-inner-background; ?-fx-background-color: -fx-background; ?-fx-text-fill: -fx-text-background-color; ? } ? /* Selected rows */ ? .list-view:focused > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected, ? .tree-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-cell:filled:selected, ? .table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell:filled:selected, ? .tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell:filled:selected, ? .table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell .table-cell:selected, ? .tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell .tree-table-cell:selected { ?-fx-background: -fx-selection-bar; ?-fx-table-cell-border-color: derive(-fx-selection-bar, 20%); ? } ? /* Selected when control is not focused */ ? .list-cell:filled:selected, ? .tree-cell:filled:selected, ? .table-row-cell:filled:selected, ? .tree-table-row-cell:filled:selected, ? .table-row-cell:filled > .table-cell:selected, ? .tree-table-row-cell:filled > .tree-table-cell:selected { ?-fx-background: -fx-selection-bar-non-focused; ?-fx-table-cell-border-color: derive(-fx-selection-bar-non-focused, 20%); ? } ? /* focused cell (keyboard navigation) */ ? .list-view:focused > .virtual-flow > .clipped-container > .sheet > .list-cell:focused, ? .tree-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-cell:focused, ? .table-view:focused:row-selection > .virtual-flow > .clipped-container > .sheet > .table-row-cell:focused, ? .tree-table-view:focused:row-selection > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell:focused, ? .table-view:focused:cell-selection > .virtual-flow > .clipped-container > .sheet > .table-row-cell > .table-cell:focused, ? .tree-table-view:focused:cell-selection > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell > .tree-table-cell:focused { ?-fx-background-color: -fx-background, -fx-cell-focus-inner-border, -fx-background; ?-fx-background-insets: 0, 1, 2; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ListView and ListCell ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.list-cell { ?-fx-padding: 0.25em 0.583em 0.25em 0.583em; /* 3 7 3 7 */ ? } ? .list-cell:odd { ?-fx-background: -fx-control-inner-background-alt; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TreeView and TreeCell ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tree-cell { ?-fx-padding: 0.25em; /* 3 */ ?-fx-indent: 1em; ? } ? .tree-cell .label { ?-fx-padding: 0.0em 0.0em 0.0em 0.25em; /* 0 0 0 3 */ ? } ? .tree-cell > .tree-disclosure-node, ? .tree-table-row-cell > .tree-disclosure-node { ?-fx-padding: 4 6 4 8; ?-fx-background-color: transparent; ? } ? .tree-cell > .tree-disclosure-node > .arrow, ? .tree-table-row-cell > .tree-disclosure-node > .arrow { ?-fx-background-color: -fx-text-background-color; ?-fx-padding: 0.333333em 0.229em 0.333333em 0.229em; /* 4 */ ?-fx-shape: "M 0 -3.5 L 4 0 L 0 3.5 z"; ? } ? .tree-cell:expanded > .tree-disclosure-node > .arrow, ? .tree-table-row-cell:expanded > .tree-disclosure-node > .arrow { ?-fx-rotate: 90; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TableView ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.table-view, ? .tree-table-view { ?/* Constants used throughout the tableview. */ ?-fx-table-header-border-color: -fx-box-border; ?-fx-table-cell-border-color: derive(-fx-color,5%); ? } ? /***** ROW CELLS **************************************************************/ ? /* Each row in the table is a table-row-cell. Inside a table-row-cell is any?number of table-cell. */ ? .table-row-cell { ?-fx-background: -fx-control-inner-background; ?-fx-background-color: -fx-table-cell-border-color, -fx-background; ?-fx-background-insets: 0, 0 0 1 0; ?-fx-padding: 0; ?-fx-text-fill: -fx-text-background-color; ? } ? .table-row-cell:odd { ?-fx-background: -fx-control-inner-background-alt; ? } ? /***** INDIVIDUAL CELLS ********************************************************/ ? .table-cell { ?-fx-padding: 0.166667em; /* 2px, plus border adds 1px */ ?-fx-background-color: null; ?-fx-border-color: transparent -fx-table-cell-border-color transparent transparent; ?-fx-cell-size: 2.0em; /* 24 */ ?-fx-text-fill: -fx-text-background-color; ? } ? .table-view > .virtual-flow > .clipped-container > .sheet > .table-row-cell .table-cell:selected, ? .tree-table-view > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell .tree-table-cell:selected { ?-fx-background-color: -fx-table-cell-border-color, -fx-background; ?-fx-background-insets: 0, 0 0 1 0; ? } ? /* When in constrained resize mode, the right-most visible cell should not have?a right-border, as it is not possible to get this cleanly out of view without?introducing horizontal scrollbars (see RT-14886). */ ? .table-view:constrained-resize > .virtual-flow > .clipped-container > .sheet > .table-row-cell > .table-cell:last-visible, ? .tree-table-view:constrained-resize > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell > .tree-table-cell:last-visible { ?-fx-border-color: transparent; ? } ? /***** HEADER **********************************************************************/ ? /* The column-resize-line is shown when the user is attempting to resize a column. */ ? .table-view .column-resize-line, ? .tree-table-view .column-resize-line { ?-fx-background: -fx-accent; ?-fx-background-color: -fx-background; ?-fx-padding: 0.0em 0.0416667em 0.0em 0.0416667em; /* 0 0.571429 0 0.571429 */ ? } ? /* This is the area behind the column headers. An ideal place to specify background?and border colors for the whole area (not individual column-header's). */ ? .table-view .column-header-background, ? .tree-table-view > .column-header-background { ?-fx-background-color: -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 1; ? } ? /* The column header row is made up of a number of column-header, one for each?TableColumn, and a 'filler' area that extends from the right-most column?to the edge of the tableview, or up to the 'column control' button. */ ? .table-view .column-header, ? .tree-table-view .column-header, ? .table-view .filler, ? .tree-table-view .filler, ? .table-view > .column-header-background > .show-hide-columns-button, ? .tree-table-view > .column-header-background > .show-hide-columns-button, ? .table-view:constrained-resize .filler, ? .tree-table-view:constrained-resize .filler { ?-fx-background-color: -fx-box-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 0 1 1 0, 1 2 2 1; ?-fx-font-weight: bold; ?-fx-size: 2em; ?-fx-text-fill: -fx-selection-bar-text; ?-fx-padding: 0.166667em; ? } ? .table-view .filler, ? .tree-table-view .filler, ? .table-view:constrained-resize .filler, ? .tree-table-view:constrained-resize .filler { ?-fx-background-insets: 0, 0 0 1 0, 1 1 2 1; ? } ? .table-view > .column-header-background > .show-hide-columns-button, ? .tree-table-view > .column-header-background > .show-hide-columns-button { ?-fx-background-insets: 0, 0 0 1 1, 1 1 2 2; ? } ? .table-view .column-header .sort-order-dots-container, ? .tree-table-view .column-header .sort-order-dots-container{ ?-fx-padding: 2 0 2 0; ? } ? .table-view .column-header .sort-order, ? .tree-table-view .column-header .sort-order{ ?-fx-font-size: 0.916667em; /* 11pt - 1 less than the default font */ ? } ? .table-view .column-header .sort-order-dot, ? .tree-table-view .column-header .sort-order-dot { ?-fx-background-color: -fx-mark-color; ?-fx-padding: 0.115em; ?-fx-background-radius: 0.115em; ? } ? .table-view .column-header .label, ? .tree-table-view .column-header .label { ?-fx-alignment: center; ? } ?/* Plus Symbol */ ? .table-view .show-hide-column-image, ? .tree-table-view .show-hide-column-image { ?-fx-background-color: -fx-mark-color; ?-fx-padding: 0.25em; /* 3px */ ?-fx-shape: "M398.902,298.045c0.667,0,1.333,0,2,0c0,0.667,0,1.333,0,2c0.667,0,1.333,0,2,0c0,0.667,0,1.333,0,2c-0.667,0-1.333,0-2,0c0,0.666,0,1.332,0,1.999c-0.667,0-1.333,0-2,0c0-0.667,0-1.333,0-1.999c-0.666,0-1.333,0-1.999,0c0-0.667,0-1.334,0-2c0.666,0,1.333,0,1.999,0C398.902,299.378,398.902,298.711,398.902,298.045z"; ?? } ? /* When a column is being 'dragged' to be placed in a different position, there?is a region that follows along the column header area to indicate where the?column will be dropped. This region can be styled using the .column-drag-header?name. */ ? .table-view .column-drag-header, ? .tree-table-view .column-drag-header { ?-fx-background: -fx-accent; ?-fx-background-color: -fx-selection-bar; ?-fx-border-color: transparent; ?-fx-opacity: 0.6; ? } ? /* Semi-transparent overlay to indicate the column that is currently being moved */ ? .table-view .column-overlay, ? .tree-table-view .column-overlay { ?-fx-background-color: darkgray; ?-fx-opacity: 0.3; ? } ? /* Header Sort Arrows */ ? .table-view /*> column-header-background > nested-column-header >*/ .arrow, ? .tree-table-view /*> column-header-background > nested-column-header >*/ .arrow { ?-fx-background-color: -fx-mark-color; ?-fx-padding: 0.25em 0.3125em 0.25em 0.3125em; /* 3 3.75 3 3.75 */ ?-fx-shape: "M 0 0 h 7 l -3.5 4 z"; ? } ? /* This is shown when the table has no rows and/or no columns. */ ? .table-view .empty-table, ? .tree-table-view .empty-table { ?-fx-background-color: white; ?-fx-font-size: 1.166667em; /* 14pt - 2 more than the default font */ ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Table Cells ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.check-box-table-cell { ?-fx-alignment: center; ?-fx-padding: 0; ? } ? .check-box-table-cell > .check-box { ?-fx-font-size: 0.8em; ?-fx-opacity: 1; ?-fx-padding: 0 0 1 0; ? } ? .check-box-table-cell > .check-box > .box { ?-fx-background-color: -fx-outer-border, -fx-background; ?-fx-background-insets: 0,1; ? } ? .check-box-table-cell > .check-box:selected > .box > .mark { ?-fx-background-color: -fx-text-background-color; ?-fx-background-insets: 0; ? } ? .table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell:filled > .check-box-table-cell:selected > .check-box > .box, ? .tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell:filled > .check-box-table-cell:selected > .check-box > .box, ? .table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell:filled:selected > .check-box-table-cell > .check-box > .box, ? .tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell:filled:selected > .check-box-table-cell > .check-box > .box { ?-fx-background-color: derive(-fx-accent,40%), -fx-background; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* TreeTableView ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Note: A lot of the CSS for TreeTableView is included with the TreeView and ?*?* TableView CSS styles elsewhere in modena.css (as they are the same, just ? *?* targeting different CSS style classes). ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tree-table-row-cell { ?-fx-background: -fx-control-inner-background; ?-fx-background-color: -fx-background; ?-fx-padding: 0; ?-fx-text-fill: -fx-text-background-color; ?-fx-indent: 1em; ? } ? .tree-table-cell { ?/* tree-table-cell needs slightly different padding to make the text sit at?the right height for the arrow */ ?-fx-padding: 0.25em 0.166667em 0.083em 0.166667em; /* 3 2 1 2 , plus border adds 1px */ ?-fx-background-color: null; ?-fx-border-color: transparent -fx-table-cell-border-color transparent transparent; ?-fx-cell-size: 2.0em; /* 24 */ ?-fx-text-fill: -fx-text-background-color; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Tooltip ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tooltip { ?-fx-background: rgba(30,30,30); ?-fx-text-fill: white; ?-fx-background-color: rgba(30,30,30,0.8); ?-fx-background-radius: 6px; ?-fx-background-insets: 0; ?-fx-padding: 0.667em 0.75em 0.667em 0.75em; /* 10px */ ?-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.5) , 10, 0.0 , 0 , 3 ); ?-fx-font-size: 0.85em; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Charts ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart { ?-fx-padding: 5px; ? } ? .chart-content { ?-fx-padding: 10px; ? } ? .chart-title { ?-fx-font-size: 1.4em; ? } ? .chart-legend { ?-fx-background-color: -fx-shadow-highlight-color, ?linear-gradient(to bottom, derive(-fx-background, -10%), derive(-fx-background, -5%)), ?linear-gradient(from 0px 0px to 0px 4px, derive(-fx-background, -4%), derive(-fx-background, 10%)); ?-fx-background-insets: 0 0 -1 0, 0,1; ?-fx-background-radius: 4,4,3; ?-fx-padding: 6px; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Axis ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.axis { ?AXIS_COLOR: derive(-fx-background,-20%); ?-fx-tick-label-font-size: 0.833333em; /* 10px */ ?-fx-tick-label-fill: derive(-fx-text-background-color, 30%); ? } ? .axis:top { ?-fx-border-color: transparent transparent AXIS_COLOR transparent; ? } ? .axis:right { ?-fx-border-color: transparent transparent transparent AXIS_COLOR; ? } ? .axis:bottom { ?-fx-border-color: AXIS_COLOR transparent transparent transparent; ? } ? .axis:left { ?-fx-border-color: transparent AXIS_COLOR transparent transparent; ? } ? .axis:top > .axis-label, ? .axis:left > .axis-label { ??-fx-padding: 0 0 4px 0; ?? } ? .axis:bottom > .axis-label, ? .axis:right > .axis-label { ??-fx-padding: 4px 0 0 0; ?? } ? .axis-tick-mark, ? .axis-minor-tick-mark { ?-fx-fill: null; ?-fx-stroke: AXIS_COLOR; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ChartPlot ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-vertical-grid-lines { ?-fx-stroke: derive(-fx-background,-10%); ?-fx-stroke-dash-array: 0.25em, 0.25em; ? } ? .chart-horizontal-grid-lines { ?-fx-stroke: derive(-fx-background,-10%); ?-fx-stroke-dash-array: 0.25em, 0.25em; ? } ? .chart-alternative-column-fill { ?-fx-fill: null; ?-fx-stroke: null; ? } ? .chart-alternative-row-fill { ?-fx-fill: null; ?-fx-stroke: null; ? } ? .chart-vertical-zero-line, ? .chart-horizontal-zero-line { ?-fx-stroke: derive(-fx-text-background-color, 40%); ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ScatterChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-symbol { /* solid circle */ ?-fx-background-color: CHART_COLOR_1; ?-fx-background-radius: 5px; ?-fx-padding: 5px; ? } ? .default-color1.chart-symbol { /* solid square */ ?-fx-background-color: CHART_COLOR_2; ?-fx-background-radius: 0; ? } ? .default-color2.chart-symbol { /* solid diamond */ ?-fx-background-color: CHART_COLOR_3; ?-fx-background-radius: 0; ?-fx-padding: 7px 5px 7px 5px; ?-fx-shape: "M5,0 L10,9 L5,18 L0,9 Z"; ? } ? .default-color3.chart-symbol { /* cross */ ?-fx-background-color: CHART_COLOR_4; ?-fx-background-radius: 0; ?-fx-background-insets: 0; ?-fx-shape: "M2,0 L5,4 L8,0 L10,0 L10,2 L6,5 L10,8 L10,10 L8,10 L5,6 L2,10 L0,10 L0,8 L4,5 L0,2 L0,0 Z"; ? } ? .default-color4.chart-symbol { /* solid triangle */ ?-fx-background-color: CHART_COLOR_5; ?-fx-background-radius: 0; ?-fx-background-insets: 0; ?-fx-shape: "M5,0 L10,8 L0,8 Z"; ? } ? .default-color5.chart-symbol { /* hollow circle */ ?-fx-background-color: CHART_COLOR_6, white; ?-fx-background-insets: 0, 2; ?-fx-background-radius: 5px; ?-fx-padding: 5px; ? } ? .default-color6.chart-symbol { /* hollow square */ ?-fx-background-color: CHART_COLOR_7, white; ?-fx-background-insets: 0, 2; ?-fx-background-radius: 0; ? } ? .default-color7.chart-symbol { /* hollow diamond */ ?-fx-background-color: CHART_COLOR_8, white; ?-fx-background-radius: 0; ?-fx-background-insets: 0, 2.5; ?-fx-padding: 7px 5px 7px 5px; ?-fx-shape: "M5,0 L10,9 L5,18 L0,9 Z"; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* LineChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-line-symbol { ?-fx-background-color: CHART_COLOR_1, white; ?-fx-background-insets: 0, 2; ?-fx-background-radius: 5px; ?-fx-padding: 5px; ? } ? .chart-series-line { ?-fx-stroke: CHART_COLOR_1; ?-fx-stroke-width: 3px; ? } ? .default-color0.chart-line-symbol { -fx-background-color: CHART_COLOR_1, white; } ? .default-color1.chart-line-symbol { -fx-background-color: CHART_COLOR_2, white; } ? .default-color2.chart-line-symbol { -fx-background-color: CHART_COLOR_3, white; } ? .default-color3.chart-line-symbol { -fx-background-color: CHART_COLOR_4, white; } ? .default-color4.chart-line-symbol { -fx-background-color: CHART_COLOR_5, white; } ? .default-color5.chart-line-symbol { -fx-background-color: CHART_COLOR_6, white; } ? .default-color6.chart-line-symbol { -fx-background-color: CHART_COLOR_7, white; } ? .default-color7.chart-line-symbol { -fx-background-color: CHART_COLOR_8, white; } ? .default-color0.chart-series-line { -fx-stroke: CHART_COLOR_1; } ? .default-color1.chart-series-line { -fx-stroke: CHART_COLOR_2; } ? .default-color2.chart-series-line { -fx-stroke: CHART_COLOR_3; } ? .default-color3.chart-series-line { -fx-stroke: CHART_COLOR_4; } ? .default-color4.chart-series-line { -fx-stroke: CHART_COLOR_5; } ? .default-color5.chart-series-line { -fx-stroke: CHART_COLOR_6; } ? .default-color6.chart-series-line { -fx-stroke: CHART_COLOR_7; } ? .default-color7.chart-series-line { -fx-stroke: CHART_COLOR_8; } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* AreaChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-area-symbol { ?-fx-background-color: CHART_COLOR_1, white; ?-fx-background-insets: 0, 1; ?-fx-background-radius: 4px; /* makes sure this remains circular */ ?-fx-padding: 3px; ? } ? .default-color0.chart-area-symbol { -fx-background-color: CHART_COLOR_1, white; } ? .default-color1.chart-area-symbol { -fx-background-color: CHART_COLOR_2, white; } ? .default-color2.chart-area-symbol { -fx-background-color: CHART_COLOR_3, white; } ? .default-color3.chart-area-symbol { -fx-background-color: CHART_COLOR_4, white; } ? .default-color4.chart-area-symbol { -fx-background-color: CHART_COLOR_5, white; } ? .default-color5.chart-area-symbol { -fx-background-color: CHART_COLOR_6, white; } ? .default-color6.chart-area-symbol { -fx-background-color: CHART_COLOR_7, white; } ? .default-color7.chart-area-symbol { -fx-background-color: CHART_COLOR_8, white; } ? .chart-series-area-line { ?-fx-stroke: CHART_COLOR_1; ?-fx-stroke-width: 1px; ? } ? .default-color0.chart-series-area-line { -fx-stroke: CHART_COLOR_1; } ? .default-color1.chart-series-area-line { -fx-stroke: CHART_COLOR_2; } ? .default-color2.chart-series-area-line { -fx-stroke: CHART_COLOR_3; } ? .default-color3.chart-series-area-line { -fx-stroke: CHART_COLOR_4; } ? .default-color4.chart-series-area-line { -fx-stroke: CHART_COLOR_5; } ? .default-color5.chart-series-area-line { -fx-stroke: CHART_COLOR_6; } ? .default-color6.chart-series-area-line { -fx-stroke: CHART_COLOR_7; } ? .default-color7.chart-series-area-line { -fx-stroke: CHART_COLOR_8; } ? .chart-series-area-fill { ?-fx-stroke: null; ?-fx-fill: CHART_COLOR_1_TRANS_20; ? } ? .default-color0.chart-series-area-fill { -fx-fill: CHART_COLOR_1_TRANS_20; } ? .default-color1.chart-series-area-fill { -fx-fill: CHART_COLOR_2_TRANS_20; } ? .default-color2.chart-series-area-fill { -fx-fill: CHART_COLOR_3_TRANS_20; } ? .default-color3.chart-series-area-fill { -fx-fill: CHART_COLOR_4_TRANS_20; } ? .default-color4.chart-series-area-fill { -fx-fill: CHART_COLOR_5_TRANS_20; } ? .default-color5.chart-series-area-fill { -fx-fill: CHART_COLOR_6_TRANS_20; } ? .default-color6.chart-series-area-fill { -fx-fill: CHART_COLOR_7_TRANS_20; } ? .default-color7.chart-series-area-fill { -fx-fill: CHART_COLOR_8_TRANS_20; } ? .area-legend-symbol { ?-fx-padding: 6px; ?-fx-background-radius: 6px; /* makes sure this remains circular */ ?-fx-background-insets: 0, 3; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* BubbleChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.bubble-legend-symbol { ?-fx-background-radius: 8px; ?-fx-padding: 8px; ? } ? .chart-bubble { ?-fx-bubble-fill: CHART_COLOR_1_TRANS_70; ?-fx-background-color: radial-gradient(center 50% 50%, radius 80%, derive(-fx-bubble-fill,20%), derive(-fx-bubble-fill,-30%)); ? } ? .default-color0.chart-bubble { -fx-bubble-fill: CHART_COLOR_1_TRANS_70; } ? .default-color1.chart-bubble { -fx-bubble-fill: CHART_COLOR_2_TRANS_70; } ? .default-color2.chart-bubble { -fx-bubble-fill: CHART_COLOR_3_TRANS_70; } ? .default-color3.chart-bubble { -fx-bubble-fill: CHART_COLOR_4_TRANS_70; } ? .default-color4.chart-bubble { -fx-bubble-fill: CHART_COLOR_5_TRANS_70; } ? .default-color5.chart-bubble { -fx-bubble-fill: CHART_COLOR_6_TRANS_70; } ? .default-color6.chart-bubble { -fx-bubble-fill: CHART_COLOR_7_TRANS_70; } ? .default-color7.chart-bubble { -fx-bubble-fill: CHART_COLOR_8_TRANS_70; } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* BarChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-bar { ?-fx-bar-fill: CHART_COLOR_1; ?-fx-background-color: ? linear-gradient(to right, ??derive(-fx-bar-fill, -4%), ?derive(-fx-bar-fill, -1%), ?derive(-fx-bar-fill, 0%), ?derive(-fx-bar-fill, -1%), ?derive(-fx-bar-fill, -6%) ?); ?-fx-background-insets: 0; ? } ? .chart-bar.negative { ?-fx-background-insets: 1 0 0 0; ? } ? .bar-chart:horizontal .chart-bar { ?-fx-background-insets: 0 0 0 1; ? } ? .bar-chart:horizontal .chart-bar, ?? .stacked-bar-chart:horizontal .chart-bar { ?-fx-background-color: ? linear-gradient(to bottom, ??derive(-fx-bar-fill, -4%), ?derive(-fx-bar-fill, -1%), ?derive(-fx-bar-fill, 0%), ?derive(-fx-bar-fill, -1%), ?derive(-fx-bar-fill, -6%) ?); ? } ? .default-color0.chart-bar { -fx-bar-fill: CHART_COLOR_1; } ? .default-color1.chart-bar { -fx-bar-fill: CHART_COLOR_2; } ? .default-color2.chart-bar { -fx-bar-fill: CHART_COLOR_3; } ? .default-color3.chart-bar { -fx-bar-fill: CHART_COLOR_4; } ? .default-color4.chart-bar { -fx-bar-fill: CHART_COLOR_5; } ? .default-color5.chart-bar { -fx-bar-fill: CHART_COLOR_6; } ? .default-color6.chart-bar { -fx-bar-fill: CHART_COLOR_7; } ? .default-color7.chart-bar { -fx-bar-fill: CHART_COLOR_8; } ? .bar-legend-symbol { ?-fx-padding: 8px; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* PieChart ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.chart-pie { ?-fx-pie-color: CHART_COLOR_1; ?-fx-background-color: radial-gradient(radius 100%, derive(-fx-pie-color,20%), derive(-fx-pie-color,-10%)); ?-fx-background-insets: 1; ?-fx-border-color: -fx-background; ? } ? .chart-pie-label { ?-fx-padding: 3px; ? } ? .chart-pie-label-line { ?-fx-stroke: derive(-fx-background,-20%); ? } ? .default-color0.chart-pie { -fx-pie-color: CHART_COLOR_1; } ? .default-color1.chart-pie { -fx-pie-color: CHART_COLOR_2; } ? .default-color2.chart-pie { -fx-pie-color: CHART_COLOR_3; } ? .default-color3.chart-pie { -fx-pie-color: CHART_COLOR_4; } ? .default-color4.chart-pie { -fx-pie-color: CHART_COLOR_5; } ? .default-color5.chart-pie { -fx-pie-color: CHART_COLOR_6; } ? .default-color6.chart-pie { -fx-pie-color: CHART_COLOR_7; } ? .default-color7.chart-pie { -fx-pie-color: CHART_COLOR_8; } ? .negative.chart-pie { ?-fx-pie-color: transparent; ?-fx-background-color: white; ? } ? .pie-legend-symbol.chart-pie { ?-fx-background-radius: 8px; ?-fx-padding: 8px; ?-fx-border-color: null; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* Combinations ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* This section is for special handling of when one control is nested inside ? *?* another control. There are many cases where we would end up with ugly ? ? ? *?* double borders that are fixed here. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.tab-pane > * > .table-view, ? .tab-pane > * > .tree-table-view, ? .tab-pane > * > .list-view, ? .tab-pane > * > .tree-view, ? .tab-pane > * > .scroll-pane, ? .tab-pane > * > .split-pane, ? .tab-pane > * > .text-area, ? .tab-pane > * > .html-editor, ? .split-pane > * > .tab-pane, ? .split-pane > * > .table-view, ? .split-pane > * > .tree-table-view, ? .split-pane > * > .list-view, ? .split-pane > * > .tree-view, ? .split-pane > * > .scroll-pane, ? .split-pane > * > .split-pane, ? .split-pane > * > .text-area, ? .split-pane > * > .html-editor { ?-fx-background-insets: 0, 0; ?-fx-padding: 0; ?} ? .tab-pane.floating > * > .table-view, ? .tab-pane.floating > * > .tree-table-view, ? .tab-pane.floating > * > .list-view, ? .tab-pane.floating > * > .tree-view, ? .tab-pane.floating > * > .scroll-pane, ? .tab-pane.floating > * > .split-pane, ? .tab-pane.floating > * > .text-area, ? .tab-pane.floating > * > .html-editor { ?-fx-background-insets: 0, 0; ?-fx-padding: -1; ? } ? .split-pane > * > .accordion > .titled-pane > *.content { ?-fx-border-color: null; ?-fx-border-insets: 0; ? } ? .split-pane > * > .accordion > .titled-pane > .title ?{ ?-fx-background-insets: 0,1 0 1 0, 2 1 2 1; ? } ? .split-pane > * > .accordion > .first-titled-pane > .title ?{ ?-fx-background-insets: 0,0 0 1 0, 1 1 2 1; ? } ? .split-pane > * > .accordion > .titled-pane:collapsed > .title ?{ ?-fx-background-insets: 0,1 0 0 0, 2 1 1 1; ? } ? .split-pane > * > .accordion > .first-titled-pane:collapsed > .title ?{ ?-fx-background-insets: 0,0 0 0 0, 1 1 1 1; ? } ? .titled-pane > * > * > .split-pane, ? .titled-pane > * > * > .text-area, ? .titled-pane > * > * > .html-editor, ? .titled-pane > * > * > .list-view, ? .titled-pane > * > * > .tree-view, ? .titled-pane > * > * > .table-view, ? .titled-pane > * > * > .tree-table-view, ? .titled-pane > * > * > .scroll-pane { ?-fx-background-color: null; ?-fx-background-insets: 0, 0; ?-fx-padding: 0; ? } ? .titled-pane > * > * > AnchorPane, ? .titled-pane > * > * > BorderPane, ? .titled-pane > * > * > FlowPane, ? .titled-pane > * > * > GridPane, ? .titled-pane > * > * > HBox, ? .titled-pane > * > * > Pane, ? .titled-pane > * > * > StackPane, ? .titled-pane > * > * > TilePane, ? .titled-pane > * > * > VBox { ?-fx-padding: 0.8em; ? } ?/*******************************************************************************?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?* DatePicker ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?*?* ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? *?******************************************************************************/ ?.date-picker > .arrow-button > .arrow { ?-fx-shape: "M0,0v9h9V0H0z M2,8H1V7h1V8z M2,6H1V5h1V6z M2,4H1V3h1V4z M4,8H3V7h1V8z M4,6H3V5h1V6z M4,4H3V3h1V4z M6,8H5V7h1V8z M6,6H5 V5h1V6z M6,4H5V3h1V4z M8,8H7V7h1V8z M8,6H7V5h1V6z M8,4H7V3h1V4z"; ?-fx-background-color: -fx-mark-highlight-color, -fx-mark-color; ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.416667em 0.416667em 0.333333em 0.333333em; /* 5 5 4 4 */ ?-fx-scale-shape: true; ? } ?.date-picker-popup { ?-fx-background-color: ?linear-gradient(to bottom, ?derive(-fx-color,-17%), ?derive(-fx-color,-30%) ?), ?-fx-control-inner-background; ?-fx-background-insets: 0, 1; ?-fx-background-radius: 0; ?-fx-alignment: CENTER; /* VBox */ ?-fx-spacing: 0; /* VBox */ ?-fx-padding: 0.083333em; /* 1 1 1 1 */ ?-fx-effect: dropshadow( gaussian , rgba(0,0,0,0.2) , 12, 0.0 , 0 , 8 ); ? } ? .date-picker-popup > .month-year-pane { ?-fx-padding: 0.588883em 0.5em 0.666667em 0.5em; /* 7 6 8 6 */ ?-fx-background-color: derive(-fx-box-border,30%), linear-gradient(to bottom, derive(-fx-base,-3%), derive(-fx-base,5%) 50%, derive(-fx-base,-3%)); ?-fx-background-insets: 0 0 0 0, 0 0 1 0; ? } ? .date-picker-popup > * > .spinner { ?-fx-spacing: 0.25em; /* 3 */ ?-fx-alignment: CENTER; ?-fx-fill-height: false; ? } ? .date-picker-popup > * > .spinner > .button { ?-fx-background-color: -fx-outer-border, -fx-inner-border, -fx-body-color; ?-fx-background-insets: 0, 1, 2; ?-fx-color: transparent; ?-fx-background-radius: 0; ? } ? .date-picker-popup > * > .spinner > .button:focused { ?-fx-background-color: -fx-focus-color, -fx-inner-border, -fx-body-color, -fx-faint-focus-color, -fx-body-color; ?-fx-color: -fx-hover-base; ?-fx-background-insets: -0.2, 1, 2, -1.4, 2.6; ? } ? .date-picker-popup > * > .spinner > .button:hover { ?-fx-color: -fx-hover-base; ? } ? .date-picker-popup > * > .spinner > .button:armed { ?-fx-color: -fx-pressed-base; ? } ? .date-picker-popup > * > .spinner > .left-button { ?-fx-padding: 0 0.333333em 0 0.25em; /* 0 4 0 3 */ ? } ? .date-picker-popup > * > .spinner > .right-button { ?-fx-padding: 0 0.25em 0 0.333333em; /* 0 3 0 4 */ ? } ? .date-picker-popup > * > .spinner > .button > .left-arrow, ? .date-picker-popup > * > .spinner > .button > .right-arrow { ?-fx-background-color: -fx-mark-highlight-color, derive(-fx-base,-45%); ?-fx-background-insets: 1 0 -1 0, 0; ?-fx-padding: 0.333333em 0.166667em 0.333333em 0.166667em; /* 4 2 4 2 */ ?-fx-effect: dropshadow(two-pass-box , -fx-shadow-highlight-color, 1, 0.0 , 0, 1.4); ? } ? .date-picker-popup > * > .spinner > .button:hover > .left-arrow, ? .date-picker-popup > * > .spinner > .button:hover > .right-arrow { ?-fx-background-color: -fx-mark-highlight-color, derive(-fx-base,-50%); ? } ? .date-picker-popup > * > .spinner > .button:pressed > .left-arrow, ? .date-picker-popup > * > .spinner > .button:pressed > .right-arrow { ?-fx-background-color: -fx-mark-highlight-color, derive(-fx-base,-55%); ? } ? .date-picker-popup > * > .spinner > .button > .left-arrow { ?-fx-padding: 0.333333em 0.25em 0.333333em 0.166667em; /* 4 3 4 2 */ ?-fx-shape: "M5.997,5.072L5.995,6.501l-2.998-4l2.998-4l0.002,1.43l-1.976,2.57L5.997,5.072z"; ?-fx-scale-shape: true; ? } ? .date-picker-popup > * > .spinner > .button > .right-arrow { ?-fx-padding: 0.333333em 0.25em 0.333333em 0.166667em; /* 4 3 4 2 */ ?-fx-shape: "M2.998-0.07L3-1.499l2.998,4L3,6.501l-0.002-1.43l1.976-2.57L2.998-0.07z"; ?-fx-scale-shape: true; ? } ? .date-picker-popup > * > .spinner > .label { ?-fx-alignment: CENTER; ? } ? .date-picker-popup > .month-year-pane > .secondary-label { ?-fx-alignment: BASELINE_CENTER; ?-fx-padding: 0.5em 0 0 0; /* 6 0 0 0 */ ?-fx-text-fill: #f3622d; ? } ?.date-picker-popup > .calendar-grid { ?-fx-background-color: derive(-fx-selection-bar-non-focused, 60%); ?/*-fx-background-insets: 1 0 0 0;*/ ?-fx-padding: 0; ? } ? .date-picker-popup > * > .date-cell { ??-fx-background-color: transparent; ?-fx-background-insets: 1, 2; ?-fx-padding: 0; ?-fx-alignment: BASELINE_CENTER; ?-fx-opacity: 1.0; ? } ? .date-picker-popup > * > .day-name-cell, ? .date-picker-popup > * > .week-number-cell { ?-fx-font-size: 0.916667em; ?? } ? .date-picker-popup > * > .week-number-cell { ?-fx-padding: 0.333333em 0.583333em 0.333333em 0.583333em; /* 4 7 4 7 */ ?-fx-border-color: -fx-control-inner-background; ?-fx-border-width: 1px; ?-fx-background: -fx-control-inner-background; ?-fx-background-color: -fx-background; ?-fx-text-fill: -fx-accent; ? } ? .date-picker-popup > * > .day-cell { ?-fx-padding: 0.333333em 0.583333em 0.333333em 0.583333em; /* 4 7 4 7 */ ?-fx-border-color: derive(-fx-selection-bar-non-focused, 60%); ?-fx-border-width: 1px; ?-fx-font-size: 1em; ?-fx-background: -fx-control-inner-background; ?-fx-background-color: -fx-background; ?-fx-text-fill: -fx-text-background-color; ? } ? .date-picker-popup > * > .hijrah-day-cell { ?-fx-alignment: TOP_LEFT; ?-fx-padding: 0.083333em 0.333333em 0.083333em 0.333333em; /* 1 4 1 4 */ ?-fx-cell-size: 2.75em; ? } ? .date-picker-popup > * > .day-cell > .secondary-text { ?-fx-fill: #f3622d; ? } ? .date-picker-popup > * > .today { ?-fx-background-color: -fx-control-inner-background, derive(-fx-selection-bar-non-focused, -20%), -fx-control-inner-background; ?-fx-background-insets: 1, 2, 3; ? } ? .date-picker-popup > * > .day-cell:hover, ? .date-picker-popup > * > .selected, ? .date-picker-popup > * > .previous-month.selected, ? .date-picker-popup > * > .next-month.selected { ?-fx-background: -fx-selection-bar; ? } ? .date-picker-popup > * > .previous-month:hover, ? .date-picker-popup > * > .next-month:hover { ?-fx-background: -fx-selection-bar-non-focused; ? } ? .date-picker-popup > * > .today:hover, ? .date-picker-popup > * > .today.selected { ?-fx-background-color: -fx-selection-bar, derive(-fx-selection-bar-non-focused, -20%),-fx-selection-bar; ? } ? .date-picker-popup > * > .day-cell:focused, ? .date-picker-popup > * > .today:focused { ?-fx-background-color: -fx-control-inner-background, -fx-cell-focus-inner-border, -fx-control-inner-background; ?-fx-background-insets: 1, 2, 3; ? } ? .date-picker-popup > * > .day-cell:focused:hover, ? .date-picker-popup > * > .today:focused:hover, ? .date-picker-popup > * > .selected:focused, ? .date-picker-popup > * > .today.selected:focused { ?-fx-background-color: -fx-selection-bar, -fx-cell-focus-inner-border, -fx-selection-bar; ? } ? .date-picker-popup > * > .previous-month, ? .date-picker-popup > * > .next-month { ?-fx-background: derive(-fx-control-inner-background, -4%); ? } ? .date-picker-popup > * > .day-cell:hover > .secondary-text, ? .date-picker-popup > * > .previous-month > .secondary-text, ? .date-picker-popup > * > .next-month > .secondary-text, ? .date-picker-popup > * > .selected > .secondary-text { ?-fx-fill: -fx-text-background-color; ? } ? .date-picker-popup > * > .previous-month.today, ? .date-picker-popup > * > .next-month.today { ?-fx-background-color: derive(-fx-control-inner-background, -4%), derive(-fx-selection-bar-non-focused, -20%), derive(-fx-control-inner-background, -4%); ? } ?.date-picker-popup > * > .previous-month.today:hover, ? .date-picker-popup > * > .next-month.today:hover { ?-fx-background-color: -fx-selection-bar-non-focused, derive(-fx-selection-bar-non-focused, -20%), -fx-selection-bar-non-focused; ? } ?

?

總結

以上是生活随笔為你收集整理的JavaFX8 modena样式(css)源码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国产精品精品国产色婷婷 | 日本精品视频在线播放 | 国产一级视频免费看 | 国产一区二区中文字幕 | 日本久久综合网 | 国产在线欧美 | 国产 日韩 在线 亚洲 字幕 中文 | 久久大片网站 | 国产系列在线观看 | 亚洲精品一区二区网址 | 亚洲精品在线二区 | 91精品免费 | 在线日韩av | 久久精品久久99精品久久 | 精品国产视频在线观看 | 久久一本综合 | 久久高清国产视频 | 四虎影视4hu4虎成人 | 成人黄色片免费 | 狠狠色综合欧美激情 | 91香蕉亚洲精品 | 免费网站在线观看成人 | 在线观看国产高清视频 | 久久成人精品视频 | 在线观看韩日电影免费 | 久久久亚洲国产精品麻豆综合天堂 | 国内精品久久久久久久影视麻豆 | 免费一级日韩欧美性大片 | 天天视频色| 日日夜夜天天射 | 亚洲综合在线视频 | 成人97人人超碰人人99 | 欧美日韩p片| 日日操操 | 国产午夜激情视频 | 久久久久国产精品免费免费搜索 | 能在线观看的日韩av | 天天天色综合 | 欧美性生活免费 | 国产精品一区二区免费 | 公开超碰在线 | 成人夜晚看av | 亚洲精品小视频在线观看 | 国产精品大全 | 尤物97国产精品久久精品国产 | 激情丁香综合 | 高清不卡一区二区三区 | 国产精品久久一区二区无卡 | 亚洲午夜av电影 | 在线观看日韩视频 | 欧美色图88 | 天堂av在线 | 在线电影91 | 国产黄免费在线观看 | 国产一级视频在线观看 | 国产精品视频地址 | 国产亚洲精品日韩在线tv黄 | 久久免费在线观看视频 | www欧美日韩| 天天爱天天操 | 亚洲精品国产欧美在线观看 | 久久久五月天 | 免费网站黄 | 国产又粗又猛又黄又爽视频 | 人人澡人人澡人人 | 人人干人人艹 | 国产精品久久99综合免费观看尤物 | 麻豆一二 | 97人人人人| 天天干天天看 | 中文字幕在线免费看线人 | 在线国产一区二区 | 久久精品99久久久久久 | 国产精品久久久久aaaa九色 | av 一区 二区 久久 | 亚洲精品视频在线观看免费视频 | 欧美一级免费片 | 婷婷精品在线 | 久草在在线视频 | 西西大胆免费视频 | 国产视频资源在线观看 | 日韩欧美在线一区 | 亚洲精品男人的天堂 | 99精品国产一区二区三区不卡 | 国产精品网址在线观看 | 日韩三区在线 | 天天爱天天干天天爽 | 黄色午夜网站 | 国产精品久久久久久吹潮天美传媒 | 欧美aa一级片 | 成人av一区二区三区 | 久久视奸| 欧美久草网 | 日韩午夜视频在线观看 | 天天曰天天干 | 亚洲日本三级 | 中文字幕有码在线 | 久草在线一免费新视频 | 激情综合色综合久久综合 | 久久黄色免费视频 | 日韩欧美高清不卡 | 欧美精品一区二区免费 | 国产免费成人av | 国产在线久草 | 美女视频黄频大全免费 | 国产在线观看一区 | 在线观看日本韩国电影 | 一区二区三区免费在线播放 | 一区二区电影网 | 亚洲黄色一级大片 | 成人免费在线视频观看 | 欧美日韩国产综合网 | 欧美一级片在线免费观看 | 亚洲日本国产精品 | 在线观看av小说 | 日韩一区二区三区不卡 | 国产一级h | 国产精品久久视频 | 成人在线视频网 | 欧美一级性生活 | 在线观看一区视频 | 精品v亚洲v欧美v高清v | 亚洲欧美国产精品 | 午夜精品久久久久 | 9在线观看免费高清完整版 玖玖爱免费视频 | 色播五月激情五月 | 亚洲一区二区精品在线 | 国产精品免费在线视频 | 日韩久久精品一区二区三区下载 | 免费观看久久 | 91成人精品| 伊人狠狠操 | 日日操日日插 | 国产麻豆电影在线观看 | 久黄色 | 欧美一区,二区 | 午夜久久久久久久 | 在线成人免费av | 国产资源av | 国产精品免费观看在线 | 久草视频免费 | www最近高清中文国语在线观看 | 久久久久久久免费 | 国产精品第一页在线 | 一本一本久久a久久精品综合小说 | www.777奇米 | 国产美女精彩久久 | 欧美日本日韩aⅴ在线视频 插插插色综合 | 久久99精品久久久久久 | 97在线成人 | 香蕉久草在线 | 国产视频二 | 91精品久久久久久综合乱菊 | 色网站免费在线看 | 成人91在线| www.久久久久 | 黄色小说视频网站 | 婷婷国产在线观看 | 国产精品99久久久久久人免费 | 免费看色视频 | 日日夜精品 | 久久九九久久 | 97理论片 | 久久网址| 99热最新地址 | 在线日韩| 久久久国产精品成人免费 | 国产精品免费视频网站 | 伊人久久影视 | 欧美一级日韩三级 | 欧美aaa大片 | 日韩精品免费一区二区在线观看 | 97视频在线免费观看 | 日韩二区在线观看 | 欧美性脚交 | 欧美日韩国内在线 | 色婷婷综合久久久中文字幕 | 青青久草在线视频 | 欧美日韩精品在线视频 | 九九热国产| 麻豆成人网 | 亚洲精品乱码 | 国产a网站 | 在线91播放| 在线欧美小视频 | 国产视频精品久久 | 亚洲人视频在线 | 国产在线自 | 少妇自拍av | 久久久久免费精品视频 | 国产精品成人一区 | 精品成人在线 | 韩国av在线播放 | 国产精品视频资源 | 中文网丁香综合网 | 亚洲一区 影院 | 波多野结衣网址 | 中国一级特黄毛片大片久久 | 国产精品一区二区三区观看 | 日韩成人黄色 | 日韩美女久久 | 免费av网址在线观看 | 国产精品免费高清 | 日韩中文字幕国产精品 | 手机av在线不卡 | 精品国产亚洲日本 | 亚洲欧美日韩精品久久奇米一区 | 一区二区三区四区五区在线视频 | 日本久久久久久久久久久 | 精品999在线观看 | 色吧久久| 欧美日韩在线视频一区二区 | 久久精品五月 | 国产91电影在线观看 | avav片| 精品成人国产 | 2024国产精品视频 | 91精品推荐| 久久综合色综合88 | h网站免费在线观看 | 精品久久五月天 | 热九九精品 | 97在线视频网站 | 久在线观看视频 | 97操操| 91在线视频| 7777精品伊人久久久大香线蕉 | 精品亚洲成a人在线观看 | 国产精品 日韩 | 欧洲不卡av | 久久爱资源网 | 精品91 | 亚洲aⅴ乱码精品成人区 | 亚洲激情 | 超碰人人在线观看 | 久久99久久99免费视频 | 午夜视频一区二区三区 | 日韩在线一二三区 | 成人av在线直播 | 中文av在线天堂 | 国产精品综合久久久久久 | 国产一区二区在线观看免费 | 99爱在线| 国产精品一区二区在线观看免费 | 亚洲精品电影在线 | 日本99精品 | 天天操天天干天天操天天干 | 欧美日韩亚洲在线观看 | 在线观看视频免费播放 | 狠狠色丁婷婷日日 | 91精品国产99久久久久 | 最近高清中文字幕 | 国产无遮挡猛进猛出免费软件 | 久草视频免费观 | av免费网站观看 | 成人免费在线观看av | 午夜私人影院久久久久 | 97夜夜澡人人爽人人免费 | 久草免费新视频 | 亚洲国产精品传媒在线观看 | 久久a免费视频 | 97超碰人人澡 | 免费看特级毛片 | 国产亚洲婷婷 | 欧美国产日韩一区二区三区 | 国产一区二区在线免费观看 | 国产乱码精品一区二区三区介绍 | 9色在线视频| 久久综合免费视频 | 五月婷婷在线视频观看 | 国内精品久久久久久久久久久 | 人成午夜视频 | 在线黄频| 操操操日日日干干干 | 国产精品96久久久久久吹潮 | 成人动态视频 | 日韩久久久久久久久久久久 | 中文字幕一区三区 | 在线亚洲天堂网 | 精品欧美乱码久久久久久 | 夜夜嗨av色一区二区不卡 | 操处女逼 | 激情五月婷婷综合 | 欧美黑人猛交 | 欧美精品午夜 | 亚洲精品综合一二三区在线观看 | 不卡av电影在线 | www.天天干 | 特级毛片在线观看 | 欧美一级视频在线观看 | www.五月天 | 久久久久国产成人精品亚洲午夜 | 免费看片亚洲 | 夜夜躁狠狠躁日日躁视频黑人 | 久久精品香蕉 | 美女网站视频免费都是黄 | 亚洲国产视频直播 | www成人精品 | 黄在线免费看 | 久久久久久久久黄色 | 日日麻批40分钟视频免费观看 | 99久久精品免费看国产一区二区三区 | 久久精品草 | 久久久久久久久久伊人 | 亚洲一区网 | 天天色天天草天天射 | 成人在线免费观看网站 | 91精品入口| 亚洲精品视频在线播放 | 中文字幕高清有码 | 国产日韩欧美在线影视 | 最近更新好看的中文字幕 | 免费精品在线 | 国产69精品久久99不卡的观看体验 | 97国产情侣爱久久免费观看 | 色婷婷综合久久久中文字幕 | 成人黄色av免费在线观看 | 日韩免费 | 一级特黄av| 91精品免费 | 国产精品丝袜 | 69欧美视频 | 狠狠综合网 | 韩国三级一区 | 成人欧美亚洲 | 成 人 黄 色 片 在线播放 | www.夜夜操.com | 国产视频一区在线免费观看 | 九九视频精品免费 | 麻豆一区在线观看 | 久久资源总站 | 色播99| 婷婷深爱五月 | av在线进入 | 成人中心免费视频 | 国产在线中文字幕 | 青春草视频在线播放 | 欧美日韩在线视频免费 | 国产精品精品国产色婷婷 | 91最新国产| 婷婷深爱网 | 国产91区 | 成年人免费av | 激情五月婷婷综合 | 国产成人61精品免费看片 | 日本精品久久久一区二区三区 | 免费福利视频网 | 麻豆国产视频 | 日本黄区免费视频观看 | 99久久精品网| av成人免费在线观看 | 亚洲一区二区观看 | 国产综合91 | 9在线观看免费高清完整版在线观看明 | 国内外成人在线视频 | 久久成人国产 | a色视频 | 精品久久久久亚洲 | 五月开心网 | 亚洲一区二区视频 | 亚洲精品午夜一区人人爽 | 欧美另类高清 | 欧美极品少妇xxxxⅹ欧美极品少妇xxxx亚洲精品 | 99久久精品免费看 | 日韩精品中文字幕一区二区 | 欧美日产在线观看 | 国产精品高清在线 | 国产精品高清在线 | 色综合久久88色综合天天 | 国产免费不卡 | 成人aaa毛片 | 国产午夜一区二区 | 字幕网在线观看 | 午夜一级免费电影 | 午夜久久久久久久久久影院 | 日av免费 | 精品播放 | 在线观看视频色 | 国产成人l区 | 一区二区三区在线不卡 | 久久99国产精品免费网站 | 久久 一区 | 99精品网站 | 精品国产视频在线观看 | 婷婷丁香狠狠爱 | 成人av在线直播 | 精品在线观看一区二区 | 91在线看黄 | 99r在线精品 | 国产一及片 | 亚洲国产三级在线观看 | 国产精品99久久久久久武松影视 | 日韩在线小视频 | 国产精品激情在线观看 | 最近乱久中文字幕 | 毛片99| 中文字幕在线观看视频免费 | 成人免费视频视频在线观看 免费 | 欧美日韩一级视频 | 91视频久久久久久 | 青青河边草观看完整版高清 | 日韩欧美综合精品 | 五月av在线 | 人人爽人人爽人人爽 | 欧美 亚洲 另类 激情 另类 | 人人干人人上 | 国产极品尤物在线 | 亚洲精品国产精品国自产观看 | 精品在线观看一区二区 | 午夜在线看片 | 香蕉网站在线观看 | 97超碰资源网 | 综合视频在线 | 91最新地址永久入口 | 精品在线99| 女人高潮一级片 | 久久综合狠狠综合久久狠狠色综合 | 三级黄色在线观看 | 九色视频网址 | 久久99精品视频 | 天天操偷偷干 | 久久精品这里热有精品 | 国产一区二区在线免费观看 | 人人要人人澡人人爽人人dvd | 成人电影毛片 | 成人久久久久久久久久 | 国产欧美精品一区二区三区 | 麻豆精品传媒视频 | 日日草夜夜操 | 国产精品四虎 | 亚洲一区在线看 | 一区二区激情视频 | 91精品人成在线观看 | av天天在线观看 | 婷婷开心久久网 | 天天色婷婷 | 香蕉网在线| 国产香蕉视频在线播放 | 黄色大全免费网站 | 一区二区三区免费在线观看视频 | 日韩毛片一区 | 亚洲六月丁香色婷婷综合久久 | 精品国产乱码久久久久久天美 | 国产国产人免费人成免费视频 | 亚洲精欧美一区二区精品 | 在线视频观看成人 | 精品在线一区二区三区 | 精品视频成人 | 亚洲欧美精品一区 | 亚洲国产精品久久久久 | 亚州精品在线视频 | 一区二区三区国 | 中文字幕在线影院 | 亚洲黑丝少妇 | 精品久久五月天 | 精品综合久久久 | 欧美另类视频 | 国产黑丝一区二区三区 | 亚洲成人免费在线 | 美腿丝袜av| 国产高清第一页 | 亚洲高清国产视频 | 天天插一插 | 黄免费网站 | 91漂亮少妇露脸在线播放 | 国产成人精品久 | 国产一区二区三区网站 | 中文字幕在线观看免费观看 | 91欧美精品 | 成人午夜在线观看 | 国产视频在线免费观看 | 天天干天天天天 | 黄色片网站av| 午夜精品福利一区二区 | 久久综合综合久久综合 | 久久精品网站视频 | 亚洲激情在线 | 亚洲精品美女久久17c | 天天摸天天干天天操天天射 | 成人一级片在线观看 | www日韩| 亚洲国产中文在线 | 999精品网 | 99久久免费看 | 日韩高清免费电影 | 国产精品亚洲人在线观看 | 一级免费观看 | 97超碰影视| 91热视频 | 久久精品亚洲综合专区 | 国产精品18久久久久久久久久久久 | 欧美性性网 | 丁香婷婷激情 | 永久免费观看视频 | 五月婷婷亚洲 | 国产日韩高清在线 | 国产精品久久久一区二区 | 欧美激情xxxx性bbbb | 伊人成人久久 | 国产区免费 | 91传媒免费在线观看 | 四虎在线免费观看 | 国产一级片免费视频 | 久久精品中文字幕免费mv | 国产高清精 | 制服丝袜在线91 | 免费看v片 | 国产精品自产拍在线观看网站 | 国产小视频在线免费观看 | 国产一区二区三区四区大秀 | 久久视影| 日本三级中文字幕在线观看 | 一区二区三区四区五区六区 | 成人黄色免费观看 | 麻豆一二 | 999精品在线| 亚洲精品一区二区久 | www欧美日韩 | 91在线文字幕| 超碰在线人人97 | 国产免码va在线观看免费 | 国产精品手机在线播放 | 毛片视频电影 | 免费在线一区二区 | 天天爽夜夜爽人人爽一区二区 | 欧美夫妻性生活电影 | 丁香九月婷婷综合 | 天天伊人狠狠 | 成人资源站 | 天天操天天操天天操天天操 | 国产成人av电影 | 91福利视频久久久久 | 国产一区视频在线 | 91色国产在线 | 久久久久久久久国产 | 27xxoo无遮挡动态视频 | 丰满少妇久久久 | 国产视频日韩视频欧美视频 | 黄色av播放 | 国产综合婷婷 | 成人91在线 | 99久久精品国产亚洲 | 欧美一级xxxx | 九九久久久| 国产原创在线观看 | 天天爽综合网 | 美女网站视频免费黄 | 天天插综合网 | 中文字幕在线视频国产 | 免费看久久久 | 最近免费观看的电影完整版 | 欧洲精品一区二区 | 精品91视频 | 亚洲日本中文字幕在线观看 | 成年人电影免费看 | 麻豆免费视频网站 | 激情久久久久久久久久久久久久久久 | a在线观看免费视频 | 91视频免费看 | 日日夜夜免费精品 | 天天色天天射天天干 | 福利网址在线观看 | 成年人在线免费看片 | 欧美高清视频不卡网 | 国产精品久久久久久久久久免费看 | 日日摸日日添日日躁av | 免费黄a | 色噜噜噜 | 欧美日韩国产综合一区二区 | 婷婷五天天在线视频 | 亚洲人毛片| 在线观看日韩视频 | 日韩有码在线观看视频 | 久久99国产精品久久99 | 99热国产在线 | 亚洲www天堂com | 国产群p | 精品九九九 | 久草av在线播放 | 久久国产精品久久国产精品 | 亚洲最新av网址 | 99福利影院 | 国产精品国产三级国产不产一地 | 日本三级人妇 | 国产精品久久久 | 成人欧美日韩国产 | 懂色av一区二区在线播放 | 久久久99精品免费观看 | 精品一区欧美 | 美女免费视频网站 | 国产精品96久久久久久吹潮 | 亚洲视频一区二区三区在线观看 | 免费看特级毛片 | 色多多在线观看 | 精品亚洲男同gayvideo网站 | 日韩免费高清在线观看 | 黄色的网站免费看 | 97超碰人人网 | 婷婷五月在线视频 | 最新久久免费视频 | 黄色av一区二区三区 | 91麻豆精品91久久久久同性 | 久久艹精品 | 亚洲精品视频免费在线 | 正在播放国产一区 | 成人精品999| 日本少妇久久久 | 成人性生交大片免费观看网站 | 亚洲黄色app | 亚洲精品大片www | 免费精品在线 | 中文字幕一区二区三区在线视频 | 特级xxxxx欧美 | 午夜视频福利 | 国内外成人在线视频 | 天天色播| 五月婷婷六月丁香在线观看 | 天天插天天干天天操 | 2000xxx影视 | 亚洲精品午夜国产va久久成人 | 国产精品永久免费在线 | 国产一级电影免费观看 | www.亚洲| 亚洲成a人片77777kkkk1在线观看 | 天天爽夜夜爽精品视频婷婷 | 国产美女在线免费观看 | 日日摸日日添日日躁av | 伊人亚洲精品 | 久久久九色精品国产一区二区三区 | 欧美精品久久人人躁人人爽 | 91在线porny国产在线看 | 91精品欧美一区二区三区 | av成人在线播放 | 国产香蕉视频 | 日韩伦理一区二区三区av在线 | 91午夜精品| 在线a亚洲视频播放在线观看 | 81精品国产乱码久久久久久 | 综合激情伊人 | 亚洲 欧洲 国产 日本 综合 | 国产成人久久av | 免费在线国产视频 | 亚洲黄色小说网址 | 欧美日韩精品二区第二页 | 在线观看国产麻豆 | 在线视频在线观看 | 免费看一级黄色大全 | 国产精品成人自产拍在线观看 | 日韩精品一区二区三区免费观看 | 亚洲无吗视频在线 | 亚洲国产成人精品电影在线观看 | 久久久免费毛片 | 成人免费共享视频 | 久久综合中文字幕 | 免费日韩 精品中文字幕视频在线 | 夜夜操狠狠操 | 亚洲午夜av电影 | 久久久久久麻豆 | 国产精品大片免费观看 | 欧美99热| 亚洲日b视频 | 精品国产一二三 | 人人舔人人干 | 国产在线观看91 | 日韩欧美精品免费 | 国产精品第2页 | 国产精品专区在线观看 | 欧美日高清视频 | 九七视频在线观看 | 天天爽人人爽 | 亚洲精品国产成人av在线 | 午夜一级免费电影 | 精品国产一二三 | 欧美激情精品久久 | 国产不卡在线播放 | 18久久久 | 久久香蕉国产精品麻豆粉嫩av | 在线视频专区 | 成人免费看片网址 | 亚洲电影网站 | 免费久久网 | 日韩电影中文字幕在线 | 日韩午夜精品福利 | 国产成年免费视频 | 青草视频在线看 | 国产一区二区三区免费视频 | 国产黄色看片 | 日韩高清精品免费观看 | 国产不卡网站 | 亚洲 欧美 变态 国产 另类 | 成人污视频在线观看 | 精品久久久精品 | 黄色av一级片 | 久久精品欧美日韩精品 | 久久国产成人午夜av影院潦草 | 99se视频在线观看 | 久久久久影视 | 激情图片qvod | 中文成人字幕 | 成人午夜影院在线观看 | 国产高清免费在线观看 | 日韩精品中文字幕在线播放 | 久久麻豆精品 | 98久9在线 | 免费 | 日韩精品aaa| 国产96在线观看 | av成人免费在线看 | 999亚洲国产996395 | 久久国产精品99国产 | 啪嗒啪嗒免费观看完整版 | 狠狠婷婷 | av综合网址 | 久草视频免费在线播放 | 亚洲精品国产成人av在线 | 在线日韩中文字幕 | 久久精品国产一区二区电影 | av线上看| 天天综合久久 | 超碰在线人人97 | 日韩免费电影在线观看 | 天天射天天干天天操 | 国产亚洲精品久久久久秋 | 国产成人在线播放 | 午夜美女影院 | 欧洲亚洲国产视频 | 中国一级片在线观看 | 在线观看91视频 | 国产超碰在线观看 | 中文字幕在线久一本久 | 又黄又色又爽 | 亚洲免费一级电影 | 成人av免费看| 97在线精品 | 成人在线观看av | 成人欧美在线 | 亚洲 欧美 变态 国产 另类 | 99久久网站 | 91精品在线免费观看 | 超碰人人av | 久久久99精品免费观看app | 美女免费视频一区 | 免费看黄色毛片 | 日韩激情免费视频 | 欧美精品乱码久久久久久 | 亚洲黄色片在线 | 成人在线网站观看 | 国产一级在线看 | 欧美性生活久久 | 国产精品久久久久久久久久妇女 | 色视频在线看 | 国产免费视频一区二区裸体 | 国产偷在线 | 毛片网站免费在线观看 | 精品亚洲成人 | 亚洲精品久久久久999中文字幕 | 91精品国自产在线 | 91精品国产一区二区三区 | 99国产在线视频 | 四虎国产精品成人免费4hu | 成人午夜影院在线观看 | 在线视频成人 | 国产高清在线一区 | 国产精品国产三级国产不产一地 | 超碰人人草 | 国产精品露脸在线 | 4p变态网欧美系列 | 日韩久久精品一区二区 | 中文在线字幕免费观看 | 99热99re6国产在线播放 | 精品一二三四在线 | 亚洲精品国产成人 | 天天狠狠 | 黄色免费电影网站 | 夜夜操夜夜干 | 色姑娘综合 | 蜜臀久久99精品久久久酒店新书 | 亚洲电影影音先锋 | 999视频网 | 国产视频久久久久 | 国产精品日韩欧美 | 中文在线www | 99视频在线| 黄色中文字幕在线 | 国产精品久久久久久久久久不蜜月 | 91精品国产九九九久久久亚洲 | 激情婷婷在线观看 | 99精品免费在线观看 | 狠狠干狠狠操 | 91免费国产在线观看 | 成人黄色大片 | 国产免费午夜 | 99免费观看视频 | 国产91精品一区二区麻豆亚洲 | 天天射天天做 | 在线视频观看成人 | 色网站在线 | 天天艹日日干 | 亚洲精品国产精品国自产观看浪潮 | 国产资源网 | 中文字幕日本在线观看 | 日日草av| 国产美女网| 国产亚洲精品久久久久久网站 | 伊人精品影院 | 不卡的av在线播放 | 久久专区 | 国内精品亚洲 | 国产高清精品在线 | 国产在线播放观看 | 五月天色网站 | 国产毛片久久久 | 亚洲精品福利视频 | 国产美腿白丝袜足在线av | 亚洲视频免费在线看 | www色片 | 黄在线免费观看 | 久久精品国产免费看久久精品 | 午夜视频免费 | 在线天堂日本 | 精品国产一区二区三区四区在线观看 | 日本久久久久久科技有限公司 | 精品国产乱码一区二区三区在线 | 中文字幕激情 | 欧美精品亚州精品 | 亚洲一区二区三区四区精品 | 男女免费av | 午夜免费福利片 | 国产女教师精品久久av | 在线观看免费视频 | 波多野结衣动态图 | 欧美激情精品久久久久久变态 | 波多野结衣精品 | 深爱五月网 | 在线中文视频 | 99亚洲精品| 黄色成人影视 | 91精品国产九九九久久久亚洲 | 国产毛片aaa| av不卡中文字幕 | 播五月综合 | 天天操天天射天天操 | 欧美日韩高清一区二区 国产亚洲免费看 | 国产亚洲人成网站在线观看 | 午夜性色| 午夜久久视频 | 麻豆国产电影 | 国产91九色蝌蚪 | 香蕉视频免费在线播放 | 欧美日韩免费一区二区 | 欧美色操 | 91福利视频免费 | 97理论片| 久久免费国产精品 | 久久蜜臀一区二区三区av | 五月婷婷影视 | 天天曰视频 | 国产精品黄色 | 人人插人人艹 | 91福利区一区二区三区 | 亚洲视频每日更新 | 亚洲精品视频在线观看网站 | 伊人午夜 | 日操操| 人人爽人人爽人人爽 | 亚洲视频专区在线 | 久久久久久久久毛片 | 欧美另类调教 | 久草香蕉在线 | 欧美综合国产 | 国产专区一 | 国产精品尤物视频 | 日韩网页| 午夜av大片 | 中文字幕乱在线伦视频中文字幕乱码在线 | 免费精品在线观看 | 97精品国自产拍在线观看 | 日韩精品中文字幕一区二区 | 91成人精品在线 | 日色在线视频 | 国产精品国产三级国产不产一地 | 欧美极品一区二区三区 | 日韩一二三区不卡 | 人人看人人做人人澡 | 精品美女久久久久久免费 | 97在线免费视频观看 | 亚洲一二区精品 | 日韩xxx视频 | 97精品国自产拍在线观看 | 午夜三级大片 | 日韩大片在线观看 | 免费av大片 | 免费看特级毛片 | 91人人澡 | 亚洲一级特黄 | 国产在线va | 91手机视频 | 亚洲成av人影片在线观看 | 中文字幕免费高清在线观看 | 久久久影院官网 | 国产精品大片在线观看 | 国产精品久久久久久一区二区 | 日韩电影在线观看一区 | 天天干,天天插 | 久热免费在线观看 | 中文字幕av在线不卡 | 国产91欧美 | 日一日干一干 | 国产一级视频在线观看 | 中文字幕一区av | jizzjizzjizz亚洲| av中文字幕在线播放 | www国产亚洲精品 | 亚洲午夜久久久久久久久久久 | 亚洲精区二区三区四区麻豆 | se婷婷 | 最新av在线网址 | 天天综合网久久 | 久久精品屋| 日韩在线中文字幕 | av3级在线 | 久久国产精品二国产精品中国洋人 | 香蕉视频在线网站 | 国产日韩视频在线观看 | 国产精品国产亚洲精品看不卡15 | 超碰在线免费97 | 69视频在线播放 | 四虎在线永久免费观看 | 午夜av色 | 久久婷婷色 | 天天干天天插伊人网 | 午夜精品视频在线 | 噜噜色官网 | 国产在线观看中文字幕 | 久久免费黄色大片 | 午夜精品一区二区三区四区 | 亚洲黄色免费电影 | 在线观看日韩专区 | 中文字幕在线观看一区二区三区 | 亚洲精品视频免费观看 | 欧美一级性生活视频 | 在线观看视频三级 | 国产99久久久国产精品 | 国产一区二区三区高清播放 | 国内外成人在线视频 | 天天夜夜亚洲 | 欧美日韩在线电影 | 国产精品久久久亚洲 | 中文字幕资源网 | 日韩系列 | av福利超碰网站 | 成人在线视频免费看 | 狂野欧美激情性xxxx欧美 | 视频在线一区二区三区 | 国产特级毛片aaaaaa毛片 | 色综合久久天天 | 国产尤物视频在线 | 色999视频| 免费特级黄毛片 | 国产精品久久久久久一区二区三区 | 天天摸天天舔天天操 | 成人免费看视频 | 国产精品伦一区二区三区视频 | 亚洲美女精品 | 成年人免费在线观看 | 精精国产xxxx视频在线播放 | 在线观看中文字幕第一页 | 午夜久久福利影院 | 97超碰在线资源 | 天天草夜夜 | 91亚洲精品国偷拍 | 福利视频第一页 | 欧美日韩在线观看视频 | 国产日产精品一区二区三区四区的观看方式 | 久久精品这里热有精品 | 91欧美在线| 美女视频是黄的免费观看 | av五月婷婷| 99中文视频在线 | 人人草在线视频 | 久久中文字幕在线视频 | 欧美日韩中文字幕在线视频 | 日日日日日 | 视频在线观看日韩 | 久久人人精品 | 亚洲视频免费在线看 | 亚洲精品影视在线观看 | 欧美性生活免费看 | 日韩在线观看不卡 | 欧美日韩免费观看一区二区三区 | 精品视频9999 | 久久午夜电影院 | 夜夜天天干 | 国产成人精品午夜在线播放 | 91精品视频一区二区三区 | 欧美日韩一区二区三区在线观看视频 | www好男人 | www.久久久com| av资源网在线播放 |