3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

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

java

JavaFX8 modena样式(css)源码

發布時間:2023/12/3 java 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)源码的全部內容,希望文章能夠幫你解決所遇到的問題。

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

婷婷色婷婷开心五月四房播播 | 免费人成网站视频在线观看 | 牲交欧美兽交欧美 | 亚洲精品一区三区三区在线观看 | 99er热精品视频 | 极品嫩模高潮叫床 | 亚洲综合精品香蕉久久网 | 久久人人爽人人爽人人片av高清 | 欧美乱妇无乱码大黄a片 | 人人妻人人澡人人爽欧美精品 | 国产人妻大战黑人第1集 | 久久综合给久久狠狠97色 | 国产精品手机免费 | 丰满少妇女裸体bbw | 一个人看的www免费视频在线观看 | av小次郎收藏 | 亚洲成av人综合在线观看 | 奇米影视7777久久精品 | 国产极品视觉盛宴 | 思思久久99热只有频精品66 | 欧美熟妇另类久久久久久多毛 | 中文字幕无码免费久久99 | 亚洲综合无码一区二区三区 | 国产精品亚洲五月天高清 | 国产又爽又猛又粗的视频a片 | 国产熟妇高潮叫床视频播放 | 双乳奶水饱满少妇呻吟 | 国产乱人无码伦av在线a | 亚洲精品鲁一鲁一区二区三区 | 欧美日韩人成综合在线播放 | 国产午夜手机精彩视频 | 午夜福利试看120秒体验区 | 日产国产精品亚洲系列 | 丁香啪啪综合成人亚洲 | 中国大陆精品视频xxxx | 国产欧美熟妇另类久久久 | 亚洲精品午夜无码电影网 | 香蕉久久久久久av成人 | 日韩欧美中文字幕公布 | 一区二区三区乱码在线 | 欧洲 | 国产精品办公室沙发 | 成人动漫在线观看 | 2019nv天堂香蕉在线观看 | 无码人妻黑人中文字幕 | 国产亚洲精品久久久久久久久动漫 | 无码av免费一区二区三区试看 | 国产亚洲精品久久久久久久久动漫 | 精品aⅴ一区二区三区 | 午夜精品一区二区三区在线观看 | 久久精品女人的天堂av | 精品久久综合1区2区3区激情 | 中文字幕无线码免费人妻 | 国产精品18久久久久久麻辣 | 欧美人与动性行为视频 | 55夜色66夜色国产精品视频 | 在线播放亚洲第一字幕 | 国产av久久久久精东av | 天堂在线观看www | 男女性色大片免费网站 | 狠狠色色综合网站 | 国产精品免费大片 | 18无码粉嫩小泬无套在线观看 | 精品久久久中文字幕人妻 | 日本熟妇大屁股人妻 | 一区二区三区乱码在线 | 欧洲 | 欧美日韩在线亚洲综合国产人 | 日韩人妻无码中文字幕视频 | 成人无码精品一区二区三区 | 中文字幕无码av波多野吉衣 | 欧美阿v高清资源不卡在线播放 | 狠狠色丁香久久婷婷综合五月 | 牲欲强的熟妇农村老妇女 | 99er热精品视频 | 国产在热线精品视频 | 久久国产精品偷任你爽任你 | 国产人妖乱国产精品人妖 | 久热国产vs视频在线观看 | 人妻少妇精品久久 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产极品美女高潮无套在线观看 | 午夜免费福利小电影 | 我要看www免费看插插视频 | 亚洲 日韩 欧美 成人 在线观看 | 欧美三级不卡在线观看 | 国产精品办公室沙发 | 国产精品国产三级国产专播 | 一本无码人妻在中文字幕免费 | 秋霞特色aa大片 | 国产肉丝袜在线观看 | a国产一区二区免费入口 | 国产偷国产偷精品高清尤物 | 精品久久久久久亚洲精品 | 中文字幕乱码中文乱码51精品 | 一本色道婷婷久久欧美 | 精品欧洲av无码一区二区三区 | 欧美阿v高清资源不卡在线播放 | 欧美人与禽猛交狂配 | 无码免费一区二区三区 | 国产精品嫩草久久久久 | 女人被男人躁得好爽免费视频 | 国产福利视频一区二区 | 六十路熟妇乱子伦 | 亚洲国产精品一区二区美利坚 | 国产精品va在线播放 | 少妇高潮一区二区三区99 | 国产精品第一区揄拍无码 | 无码国内精品人妻少妇 | 成人免费无码大片a毛片 | 国产精品二区一区二区aⅴ污介绍 | 国产亲子乱弄免费视频 | 欧美日韩久久久精品a片 | 久久国产精品二国产精品 | 亲嘴扒胸摸屁股激烈网站 | 国产精品久久国产精品99 | 精品无人区无码乱码毛片国产 | 亚洲成av人在线观看网址 | 国产av一区二区三区最新精品 | 久久99精品久久久久久 | 久久国产36精品色熟妇 | 久久综合九色综合97网 | 国产精品国产三级国产专播 | 久久久www成人免费毛片 | 国产精品人人爽人人做我的可爱 | 51国偷自产一区二区三区 | 中国女人内谢69xxxxxa片 | 国产女主播喷水视频在线观看 | 国产精品自产拍在线观看 | 久久久亚洲欧洲日产国码αv | 欧美黑人乱大交 | 波多野结衣av一区二区全免费观看 | 午夜福利一区二区三区在线观看 | 人人妻人人澡人人爽精品欧美 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 国产精品18久久久久久麻辣 | 九九综合va免费看 | 动漫av网站免费观看 | 国产另类ts人妖一区二区 | 欧美老人巨大xxxx做受 | 国产av剧情md精品麻豆 | 性色av无码免费一区二区三区 | 疯狂三人交性欧美 | 一本久道久久综合婷婷五月 | 久久国产精品二国产精品 | 帮老师解开蕾丝奶罩吸乳网站 | 欧美性生交活xxxxxdddd | 日韩av无码一区二区三区不卡 | 色婷婷香蕉在线一区二区 | 欧美人与动性行为视频 | 波多野结衣av在线观看 | 国产成人精品久久亚洲高清不卡 | 日日橹狠狠爱欧美视频 | 女人和拘做爰正片视频 | 亚洲日韩av片在线观看 | 国产亚洲精品久久久久久国模美 | 一本大道久久东京热无码av | 未满小14洗澡无码视频网站 | 粉嫩少妇内射浓精videos | 精品国产成人一区二区三区 | 露脸叫床粗话东北少妇 | 男女猛烈xx00免费视频试看 | 亚洲乱亚洲乱妇50p | 日本一区二区更新不卡 | 亚洲午夜无码久久 | 亚洲一区二区三区在线观看网站 | 国产国产精品人在线视 | 熟妇女人妻丰满少妇中文字幕 | 一个人看的www免费视频在线观看 | 熟妇人妻激情偷爽文 | 国产精品国产自线拍免费软件 | 性色欲网站人妻丰满中文久久不卡 | 色诱久久久久综合网ywww | 无码成人精品区在线观看 | 国产69精品久久久久app下载 | 97夜夜澡人人爽人人喊中国片 | 国产一区二区不卡老阿姨 | 亚洲熟妇色xxxxx亚洲 | 狠狠色欧美亚洲狠狠色www | 亚洲中文字幕乱码av波多ji | 999久久久国产精品消防器材 | 国产农村妇女高潮大叫 | 国产亚洲欧美日韩亚洲中文色 | 精品亚洲韩国一区二区三区 | 亚洲色www成人永久网址 | www国产精品内射老师 | 学生妹亚洲一区二区 | 国内综合精品午夜久久资源 | 狠狠亚洲超碰狼人久久 | 99国产精品白浆在线观看免费 | 国产人妻久久精品二区三区老狼 | 国产真人无遮挡作爱免费视频 | 日本一本二本三区免费 | 好屌草这里只有精品 | 亚洲男女内射在线播放 | 亚洲小说春色综合另类 | 欧美刺激性大交 | 俺去俺来也在线www色官网 | 国产在线一区二区三区四区五区 | 国产一区二区三区影院 | 少妇的肉体aa片免费 | 欧美肥老太牲交大战 | 成人无码精品一区二区三区 | 4hu四虎永久在线观看 | av小次郎收藏 | 国产黄在线观看免费观看不卡 | 国产极品美女高潮无套在线观看 | 亚洲自偷自拍另类第1页 | 荫蒂添的好舒服视频囗交 | 丰满少妇女裸体bbw | 无码一区二区三区在线观看 | 美女张开腿让人桶 | 激情五月综合色婷婷一区二区 | 黑人粗大猛烈进出高潮视频 | 国产色在线 | 国产 | 国产综合色产在线精品 | 久久国语露脸国产精品电影 | 又紧又大又爽精品一区二区 | 亚洲乱码日产精品bd | 亚洲高清偷拍一区二区三区 | 扒开双腿疯狂进出爽爽爽视频 | 久久精品国产大片免费观看 | 日日夜夜撸啊撸 | 久久久久99精品成人片 | 国产精品无码一区二区三区不卡 | 国产精品手机免费 | 国产又爽又黄又刺激的视频 | 亚洲精品综合一区二区三区在线 | 成人aaa片一区国产精品 | 131美女爱做视频 | 亚洲午夜无码久久 | 色一情一乱一伦 | 中文字幕亚洲情99在线 | 国产做国产爱免费视频 | 人人爽人人澡人人高潮 | 妺妺窝人体色www婷婷 | 精品无码成人片一区二区98 | 久久亚洲精品中文字幕无男同 | 色综合久久久无码中文字幕 | 久久天天躁夜夜躁狠狠 | 日韩少妇白浆无码系列 | 97久久国产亚洲精品超碰热 | 亚洲大尺度无码无码专区 | 一本久道久久综合婷婷五月 | 国产特级毛片aaaaaa高潮流水 | 人妻与老人中文字幕 | 亚洲区欧美区综合区自拍区 | 精品夜夜澡人妻无码av蜜桃 | 午夜精品久久久内射近拍高清 | 熟女俱乐部五十路六十路av | 欧美野外疯狂做受xxxx高潮 | 最新版天堂资源中文官网 | 免费观看的无遮挡av | 免费观看又污又黄的网站 | 国产做国产爱免费视频 | 国产亚av手机在线观看 | 蜜臀av无码人妻精品 | 亚洲一区二区三区含羞草 | 巨爆乳无码视频在线观看 | 国产成人无码专区 | 午夜福利试看120秒体验区 | 日本精品高清一区二区 | 成在人线av无码免观看麻豆 | 久久99精品国产.久久久久 | 免费播放一区二区三区 | 亚欧洲精品在线视频免费观看 | 99久久人妻精品免费一区 | 中文字幕人妻无码一区二区三区 | 99国产精品白浆在线观看免费 | 久久久久久亚洲精品a片成人 | 久久综合久久自在自线精品自 | 亚洲国产av精品一区二区蜜芽 | 成人免费视频在线观看 | 国产艳妇av在线观看果冻传媒 | 人妻少妇精品无码专区动漫 | 一本大道伊人av久久综合 | 狠狠色丁香久久婷婷综合五月 | 中文字幕 人妻熟女 | 国产乱子伦视频在线播放 | 精品人妻人人做人人爽 | 精品人妻人人做人人爽夜夜爽 | 性色欲情网站iwww九文堂 | 青青草原综合久久大伊人精品 | 无码国产乱人伦偷精品视频 | 久久国产精品_国产精品 | 中文字幕乱码人妻二区三区 | 中文无码伦av中文字幕 | 午夜免费福利小电影 | 成人精品一区二区三区中文字幕 | 人妻少妇精品无码专区动漫 | 国产av无码专区亚洲awww | 精品国产一区av天美传媒 | 亚洲国产精品无码久久久久高潮 | 国产又爽又黄又刺激的视频 | 国产精品第一区揄拍无码 | 妺妺窝人体色www婷婷 | 久久综合九色综合欧美狠狠 | 国产超级va在线观看视频 | 久久久国产一区二区三区 | 在线欧美精品一区二区三区 | 精品夜夜澡人妻无码av蜜桃 | 亚洲日韩一区二区三区 | 国语自产偷拍精品视频偷 | 澳门永久av免费网站 | 国产精品久久福利网站 | 亚洲人成人无码网www国产 | 国产熟妇高潮叫床视频播放 | 丝袜人妻一区二区三区 | 天天躁夜夜躁狠狠是什么心态 | 国产 精品 自在自线 | 国产成人av免费观看 | 性色欲网站人妻丰满中文久久不卡 | 中文字幕乱妇无码av在线 | 国产人妖乱国产精品人妖 | 亚洲国产欧美日韩精品一区二区三区 | 欧美精品一区二区精品久久 | 好屌草这里只有精品 | 欧美丰满老熟妇xxxxx性 | 久久久中文字幕日本无吗 | 精品人妻人人做人人爽夜夜爽 | 亚洲成a人片在线观看无码3d | 国产人妻精品一区二区三区 | 亚洲熟妇自偷自拍另类 | 中文字幕乱码人妻二区三区 | 欧美黑人巨大xxxxx | 亚洲国产精品成人久久蜜臀 | 极品嫩模高潮叫床 | 亚洲男人av香蕉爽爽爽爽 | 任你躁国产自任一区二区三区 | 又大又硬又爽免费视频 | 久久精品国产99久久6动漫 | 一本久久a久久精品vr综合 | 国产精品怡红院永久免费 | 欧美亚洲日韩国产人成在线播放 | 亚洲国产午夜精品理论片 | 国产69精品久久久久app下载 | 亚洲日韩中文字幕在线播放 | 精品无码国产自产拍在线观看蜜 | 国产精品福利视频导航 | 欧美性黑人极品hd | 国产偷国产偷精品高清尤物 | 亚洲七七久久桃花影院 | 婷婷丁香五月天综合东京热 | 国产免费久久精品国产传媒 | 成人亚洲精品久久久久软件 | 国产精品国产三级国产专播 | 精品国产av色一区二区深夜久久 | 国产办公室秘书无码精品99 | 性欧美牲交xxxxx视频 | 国产成人精品三级麻豆 | 午夜精品久久久久久久久 | 精品一二三区久久aaa片 | 亚洲乱码国产乱码精品精 | 成人av无码一区二区三区 | 亚洲欧洲中文日韩av乱码 | 国产激情综合五月久久 | 内射巨臀欧美在线视频 | 无码av最新清无码专区吞精 | 精品久久8x国产免费观看 | 丰满妇女强制高潮18xxxx | 久久97精品久久久久久久不卡 | 波多野结衣aⅴ在线 | 77777熟女视频在线观看 а天堂中文在线官网 | 蜜臀av无码人妻精品 | 丰满岳乱妇在线观看中字无码 | 国产熟女一区二区三区四区五区 | 乌克兰少妇性做爰 | 牲欲强的熟妇农村老妇女 | 国产精品多人p群无码 | 在教室伦流澡到高潮hnp视频 | 少妇高潮一区二区三区99 | 国产精品亚洲五月天高清 | 日本又色又爽又黄的a片18禁 | 99久久久国产精品无码免费 | 国产无套粉嫩白浆在线 | 日韩精品无码免费一区二区三区 | 又紧又大又爽精品一区二区 | 国产精品沙发午睡系列 | 国产超碰人人爽人人做人人添 | 日韩精品无码免费一区二区三区 | 亚洲精品一区二区三区在线观看 | 真人与拘做受免费视频 | 欧美国产亚洲日韩在线二区 | 人人妻人人澡人人爽欧美一区九九 | 久久99精品国产麻豆 | 乌克兰少妇xxxx做受 | 国产一精品一av一免费 | 中文字幕av无码一区二区三区电影 | 亚洲国产精品成人久久蜜臀 | 久久精品99久久香蕉国产色戒 | 大屁股大乳丰满人妻 | 精品国产青草久久久久福利 | 人人妻人人澡人人爽欧美一区九九 | 超碰97人人射妻 | 一二三四社区在线中文视频 | 日韩精品一区二区av在线 | 亚洲精品无码人妻无码 | 极品尤物被啪到呻吟喷水 | 国内少妇偷人精品视频 | 国产无遮挡又黄又爽免费视频 | 亚洲国产午夜精品理论片 | 国产成人精品视频ⅴa片软件竹菊 | 一个人看的视频www在线 | 国产九九九九九九九a片 | aⅴ亚洲 日韩 色 图网站 播放 | 久久精品国产一区二区三区 | 在线看片无码永久免费视频 | 波多野42部无码喷潮在线 | 十八禁视频网站在线观看 | 中文无码成人免费视频在线观看 | 亚无码乱人伦一区二区 | 免费人成在线观看网站 | 亚洲男女内射在线播放 | 国产精品久久久久无码av色戒 | 国产一区二区不卡老阿姨 | 久久久久久av无码免费看大片 | 亚洲国产精品久久久天堂 | 蜜臀av在线播放 久久综合激激的五月天 | 一本加勒比波多野结衣 | 人妻互换免费中文字幕 | 中文字幕乱码人妻无码久久 | 少妇人妻av毛片在线看 | 奇米影视888欧美在线观看 | 久久国产精品精品国产色婷婷 | 99久久精品无码一区二区毛片 | 精品久久综合1区2区3区激情 | 无码福利日韩神码福利片 | 国产三级精品三级男人的天堂 | 国产精品高潮呻吟av久久4虎 | 亚洲欧美中文字幕5发布 | 丰满人妻一区二区三区免费视频 | 水蜜桃亚洲一二三四在线 | 大乳丰满人妻中文字幕日本 | 日本熟妇人妻xxxxx人hd | 性色欲网站人妻丰满中文久久不卡 | 日日天干夜夜狠狠爱 | 亚洲成熟女人毛毛耸耸多 | 色欲av亚洲一区无码少妇 | 天下第一社区视频www日本 | 欧美 日韩 人妻 高清 中文 | 亚洲成a人片在线观看无码 | 青草视频在线播放 | 精品偷拍一区二区三区在线看 | 久久久久久久久888 | 51国偷自产一区二区三区 | 麻豆精品国产精华精华液好用吗 | 99久久人妻精品免费二区 | 国产97在线 | 亚洲 | 麻豆精品国产精华精华液好用吗 | 狠狠cao日日穞夜夜穞av | 少妇太爽了在线观看 | 老熟妇乱子伦牲交视频 | 少妇无套内谢久久久久 | 国产无av码在线观看 | 亚洲男女内射在线播放 | 少妇性俱乐部纵欲狂欢电影 | 色欲综合久久中文字幕网 | 在线播放免费人成毛片乱码 | 日本乱人伦片中文三区 | 人人爽人人爽人人片av亚洲 | 红桃av一区二区三区在线无码av | 国产精品无码一区二区桃花视频 | 成人无码精品1区2区3区免费看 | 久久久国产一区二区三区 | 爆乳一区二区三区无码 | 日韩欧美成人免费观看 | 少妇性荡欲午夜性开放视频剧场 | 少妇无码一区二区二三区 | 女人和拘做爰正片视频 | 亚洲人成人无码网www国产 | 日日摸天天摸爽爽狠狠97 | 人妻无码αv中文字幕久久琪琪布 | 国产两女互慰高潮视频在线观看 | 98国产精品综合一区二区三区 | 亚洲熟妇色xxxxx欧美老妇y | 人妻中文无码久热丝袜 | 中文字幕无线码免费人妻 | 2020久久超碰国产精品最新 | 麻豆国产人妻欲求不满谁演的 | 久久99热只有频精品8 | 国产乱人无码伦av在线a | 亚洲精品无码国产 | 成人aaa片一区国产精品 | 77777熟女视频在线观看 а天堂中文在线官网 | 樱花草在线社区www | 国产在线精品一区二区高清不卡 | 日本一区二区更新不卡 | 曰韩无码二三区中文字幕 | av无码久久久久不卡免费网站 | 天下第一社区视频www日本 | 波多野结衣高清一区二区三区 | 老子影院午夜伦不卡 | 天堂无码人妻精品一区二区三区 | 300部国产真实乱 | 国产成人精品三级麻豆 | 精品偷自拍另类在线观看 | 亚洲精品国产品国语在线观看 | 精品午夜福利在线观看 | 精品久久久久久亚洲精品 | 国产精品久久久久久亚洲毛片 | 国产成人无码av片在线观看不卡 | 国产精品自产拍在线观看 | 麻豆md0077饥渴少妇 | 久久久精品成人免费观看 | 老司机亚洲精品影院无码 | 久久久久久av无码免费看大片 | 青青草原综合久久大伊人精品 | www国产精品内射老师 | 国产免费无码一区二区视频 | 蜜桃无码一区二区三区 | 成 人影片 免费观看 | 国产黄在线观看免费观看不卡 | 日本www一道久久久免费榴莲 | 国产精品99爱免费视频 | 一本精品99久久精品77 | 性做久久久久久久久 | 国产激情一区二区三区 | av无码不卡在线观看免费 | 亚洲精品中文字幕 | 国产人妻精品一区二区三区不卡 | 日本丰满护士爆乳xxxx | 久久久精品456亚洲影院 | 高清不卡一区二区三区 | 激情内射亚州一区二区三区爱妻 | 成熟妇人a片免费看网站 | 国产av一区二区精品久久凹凸 | 久青草影院在线观看国产 | 强开小婷嫩苞又嫩又紧视频 | 久久99久久99精品中文字幕 | 纯爱无遮挡h肉动漫在线播放 | 婷婷丁香六月激情综合啪 | 中文字幕无码日韩专区 | 久久久久亚洲精品男人的天堂 | 丰满肥臀大屁股熟妇激情视频 | 国产精品沙发午睡系列 | 国产熟妇高潮叫床视频播放 | 亚洲色偷偷男人的天堂 | 亚洲区小说区激情区图片区 | 国产口爆吞精在线视频 | 亚洲精品午夜无码电影网 | 国产三级精品三级男人的天堂 | 中文字幕亚洲情99在线 | 国产 浪潮av性色四虎 | 中文字幕人成乱码熟女app | 亚洲一区二区三区偷拍女厕 | 日本熟妇人妻xxxxx人hd | 97色伦图片97综合影院 | 久久天天躁狠狠躁夜夜免费观看 | 97se亚洲精品一区 | 中文字幕无码av波多野吉衣 | 欧美日韩一区二区三区自拍 | 国产精品无码mv在线观看 | 日韩亚洲欧美中文高清在线 | 波多野结衣 黑人 | 久热国产vs视频在线观看 | 国产精品18久久久久久麻辣 | 午夜熟女插插xx免费视频 | 久久精品人人做人人综合试看 | 久久久久国色av免费观看性色 | a国产一区二区免费入口 | 天天摸天天碰天天添 | 免费观看的无遮挡av | 女人被男人躁得好爽免费视频 | 狠狠色色综合网站 | 国产农村乱对白刺激视频 | 亚洲中文字幕无码中文字在线 | 初尝人妻少妇中文字幕 | 色综合久久久久综合一本到桃花网 | 男女超爽视频免费播放 | 久久午夜无码鲁丝片 | 国产麻豆精品一区二区三区v视界 | 午夜精品久久久久久久 | 国产亚洲精品久久久闺蜜 | 97夜夜澡人人双人人人喊 | 高清无码午夜福利视频 | 色一情一乱一伦一区二区三欧美 | 99精品视频在线观看免费 | 精品国产一区二区三区四区 | 精品国产青草久久久久福利 | 激情五月综合色婷婷一区二区 | 伊人色综合久久天天小片 | 久久zyz资源站无码中文动漫 | 日韩精品一区二区av在线 | 2020最新国产自产精品 | 内射后入在线观看一区 | 天天燥日日燥 | 国内综合精品午夜久久资源 | 国产精品久久久久9999小说 | 国产国产精品人在线视 | 国产成人一区二区三区别 | 国产av一区二区精品久久凹凸 | 亚洲成av人片在线观看无码不卡 | 国产真人无遮挡作爱免费视频 | 无码国产乱人伦偷精品视频 | 麻豆精品国产精华精华液好用吗 | 天天av天天av天天透 | 午夜肉伦伦影院 | 亚洲 另类 在线 欧美 制服 | 麻豆蜜桃av蜜臀av色欲av | 激情人妻另类人妻伦 | 九九在线中文字幕无码 | 日本一卡二卡不卡视频查询 | 亚洲色欲色欲欲www在线 | 影音先锋中文字幕无码 | 亚洲最大成人网站 | a在线亚洲男人的天堂 | 日韩精品a片一区二区三区妖精 | 乱码午夜-极国产极内射 | 东京热无码av男人的天堂 | 任你躁国产自任一区二区三区 | 国产精品久久久久无码av色戒 | 纯爱无遮挡h肉动漫在线播放 | 免费人成在线视频无码 | 久久久亚洲欧洲日产国码αv | 一本大道伊人av久久综合 | 西西人体www44rt大胆高清 | 国产性生交xxxxx无码 | 狠狠色噜噜狠狠狠狠7777米奇 | 一本久道高清无码视频 | 少妇人妻偷人精品无码视频 | 久久久久亚洲精品中文字幕 | 国产午夜精品一区二区三区嫩草 | 熟妇人妻无码xxx视频 | 一本大道久久东京热无码av | 国产精品久久精品三级 | 精品乱码久久久久久久 | 久青草影院在线观看国产 | 人人妻人人澡人人爽欧美一区九九 | 亚洲成av人在线观看网址 | 水蜜桃亚洲一二三四在线 | 亚洲人亚洲人成电影网站色 | 国产色在线 | 国产 | www国产亚洲精品久久网站 | 色 综合 欧美 亚洲 国产 | 少妇高潮喷潮久久久影院 | 宝宝好涨水快流出来免费视频 | 色偷偷人人澡人人爽人人模 | 婷婷综合久久中文字幕蜜桃三电影 | 成人精品视频一区二区三区尤物 | 无码人妻av免费一区二区三区 | 国产亚洲日韩欧美另类第八页 | 亚洲国产日韩a在线播放 | 中文字幕无码日韩欧毛 | 国产精品久久久午夜夜伦鲁鲁 | 久久亚洲国产成人精品性色 | 亚洲日本va中文字幕 | 99久久精品日本一区二区免费 | 377p欧洲日本亚洲大胆 | 亚洲精品国产第一综合99久久 | 中文字幕无线码免费人妻 | 久久99精品久久久久久动态图 | 欧美亚洲国产一区二区三区 | 又大又硬又黄的免费视频 | 欧美xxxxx精品 | 少妇人妻大乳在线视频 | 中文字幕色婷婷在线视频 | 无遮挡啪啪摇乳动态图 | 天堂亚洲免费视频 | 亚洲自偷自拍另类第1页 | 搡女人真爽免费视频大全 | 嫩b人妻精品一区二区三区 | 久久精品无码一区二区三区 | 女人被爽到呻吟gif动态图视看 | a国产一区二区免费入口 | 亚洲日韩av一区二区三区中文 | 人人妻人人澡人人爽欧美一区九九 | 成人亚洲精品久久久久软件 | 少妇愉情理伦片bd | 精品久久综合1区2区3区激情 | 荫蒂被男人添的好舒服爽免费视频 | 日韩精品无码一本二本三本色 | 欧美丰满老熟妇xxxxx性 | 波多野结衣一区二区三区av免费 | 在线观看欧美一区二区三区 | 成 人 免费观看网站 | 免费播放一区二区三区 | 人妻尝试又大又粗久久 | 亚洲一区二区三区含羞草 | 国产成人无码av片在线观看不卡 | 少妇人妻av毛片在线看 | 东京热一精品无码av | 亚洲日本在线电影 | 九一九色国产 | 国产成人精品视频ⅴa片软件竹菊 | 亚洲成a人片在线观看无码 | 国产综合色产在线精品 | 一本久久a久久精品vr综合 | 国产凸凹视频一区二区 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲男女内射在线播放 | 久久久久久国产精品无码下载 | 欧美日韩久久久精品a片 | 中文字幕乱码中文乱码51精品 | 精品一区二区三区波多野结衣 | 色欲av亚洲一区无码少妇 | 天天综合网天天综合色 | 国产亚洲欧美日韩亚洲中文色 | 精品国偷自产在线视频 | 性做久久久久久久久 | 成人无码精品1区2区3区免费看 | 99久久婷婷国产综合精品青草免费 | 一本久久伊人热热精品中文字幕 | 少妇无码一区二区二三区 | 55夜色66夜色国产精品视频 | 激情国产av做激情国产爱 | 丰满肥臀大屁股熟妇激情视频 | 欧美成人家庭影院 | 亚洲a无码综合a国产av中文 | 亚洲国产av美女网站 | 麻豆果冻传媒2021精品传媒一区下载 | 国产精品对白交换视频 | 国产av一区二区三区最新精品 | 综合激情五月综合激情五月激情1 | 久久婷婷五月综合色国产香蕉 | 国产99久久精品一区二区 | 免费乱码人妻系列无码专区 | 一本色道久久综合亚洲精品不卡 | 性生交大片免费看女人按摩摩 | 国产色xx群视频射精 | 国产av人人夜夜澡人人爽麻豆 | 亚洲国产av美女网站 | 欧美亚洲日韩国产人成在线播放 | 露脸叫床粗话东北少妇 | 丝袜人妻一区二区三区 | 久久久久成人精品免费播放动漫 | 亚洲人成影院在线观看 | a片在线免费观看 | 亚洲成在人网站无码天堂 | 国产热a欧美热a在线视频 | 黑人大群体交免费视频 | 九一九色国产 | 精品无码国产一区二区三区av | 国产美女极度色诱视频www | 丰满少妇熟乱xxxxx视频 | 成人精品一区二区三区中文字幕 | 天堂无码人妻精品一区二区三区 | 色情久久久av熟女人妻网站 | 成人一在线视频日韩国产 | 日本精品久久久久中文字幕 | 欧洲熟妇精品视频 | 成人性做爰aaa片免费看 | 国产精品-区区久久久狼 | 日本精品人妻无码免费大全 | 精品国产一区二区三区四区 | 国产肉丝袜在线观看 | 成熟妇人a片免费看网站 | 亚洲国产精品无码久久久久高潮 | 国产精品igao视频网 | 97久久超碰中文字幕 | 亚洲精品美女久久久久久久 | 午夜精品久久久久久久久 | 国产精品亚洲а∨无码播放麻豆 | 欧美 日韩 人妻 高清 中文 | 国内少妇偷人精品视频 | 中文字幕亚洲情99在线 | 暴力强奷在线播放无码 | 国产成人无码一二三区视频 | 欧美成人免费全部网站 | a片在线免费观看 | 人人妻在人人 | 中文字幕无码免费久久9一区9 | 大乳丰满人妻中文字幕日本 | 欧美老熟妇乱xxxxx | 精品偷自拍另类在线观看 | 精品国产精品久久一区免费式 | 免费观看的无遮挡av | 性生交片免费无码看人 | 夜夜影院未满十八勿进 | √天堂资源地址中文在线 | 色一情一乱一伦一区二区三欧美 | 日韩人妻系列无码专区 | 中文字幕亚洲情99在线 | 黑人巨大精品欧美黑寡妇 | 国产性生大片免费观看性 | 国产女主播喷水视频在线观看 | 亚洲人成影院在线无码按摩店 | 亚洲娇小与黑人巨大交 | 久久精品国产一区二区三区肥胖 | 久久国产精品偷任你爽任你 | 亚洲国产精品一区二区第一页 | 欧美熟妇另类久久久久久多毛 | 免费人成在线观看网站 | 国产精品久久国产精品99 | 理论片87福利理论电影 | 99久久久无码国产aaa精品 | 国产人妖乱国产精品人妖 | 18无码粉嫩小泬无套在线观看 | 狠狠cao日日穞夜夜穞av | 国产成人精品一区二区在线小狼 | 久久无码中文字幕免费影院蜜桃 | 成熟人妻av无码专区 | 欧美日韩视频无码一区二区三 | 亚洲色欲久久久综合网东京热 | 天堂亚洲免费视频 | 中文字幕色婷婷在线视频 | аⅴ资源天堂资源库在线 | 风流少妇按摩来高潮 | 图片区 小说区 区 亚洲五月 | 国产精品亚洲五月天高清 | 欧美精品一区二区精品久久 | 大肉大捧一进一出好爽视频 | 欧美猛少妇色xxxxx | 在线成人www免费观看视频 | 中文字幕人成乱码熟女app | 天海翼激烈高潮到腰振不止 | 国产婷婷色一区二区三区在线 | 亚洲国产精品无码久久久久高潮 | 久久综合久久自在自线精品自 | 亚洲日韩av一区二区三区中文 | 午夜嘿嘿嘿影院 | 天天拍夜夜添久久精品大 | 亚洲精品综合一区二区三区在线 | 狂野欧美激情性xxxx | 性生交片免费无码看人 | 亚洲日韩av一区二区三区四区 | 精品午夜福利在线观看 | 久久精品女人天堂av免费观看 | 国产免费观看黄av片 | 18无码粉嫩小泬无套在线观看 | 国产乱人伦av在线无码 | 久9re热视频这里只有精品 | 中文无码成人免费视频在线观看 | 久久午夜夜伦鲁鲁片无码免费 | 牲欲强的熟妇农村老妇女 | 亚洲の无码国产の无码影院 | 青草青草久热国产精品 | 国内精品人妻无码久久久影院 | 一本大道伊人av久久综合 | 国产成人无码av一区二区 | 精品久久久中文字幕人妻 | 天天摸天天碰天天添 | aⅴ在线视频男人的天堂 | 一二三四社区在线中文视频 | 精品熟女少妇av免费观看 | 日日躁夜夜躁狠狠躁 | 亚洲国产av美女网站 | 老头边吃奶边弄进去呻吟 | 老熟女重囗味hdxx69 | 国产福利视频一区二区 | 精品乱子伦一区二区三区 | 清纯唯美经典一区二区 | 97夜夜澡人人爽人人喊中国片 | 欧美精品免费观看二区 | 国产亲子乱弄免费视频 | 特黄特色大片免费播放器图片 | 久久久久国色av免费观看性色 | 日本免费一区二区三区最新 | 永久免费精品精品永久-夜色 | 国产精品第一国产精品 | 中文字幕人妻丝袜二区 | 国产亚洲精品久久久久久久 | 无码国模国产在线观看 | 鲁大师影院在线观看 | 人人妻人人藻人人爽欧美一区 | 免费国产黄网站在线观看 | 无码人中文字幕 | 免费乱码人妻系列无码专区 | 成人一在线视频日韩国产 | 欧美国产日产一区二区 | 国产精品手机免费 | 国产人妻精品一区二区三区不卡 | 欧洲欧美人成视频在线 | 日本熟妇乱子伦xxxx | 少妇高潮喷潮久久久影院 | 人妻人人添人妻人人爱 | 日韩精品久久久肉伦网站 | 在线播放免费人成毛片乱码 | 无码国产乱人伦偷精品视频 | 高清无码午夜福利视频 | a在线亚洲男人的天堂 | 欧美性生交xxxxx久久久 | 亚洲色www成人永久网址 | 精品无人国产偷自产在线 | 永久免费精品精品永久-夜色 | 精品欧美一区二区三区久久久 | 亚洲区欧美区综合区自拍区 | 老熟妇乱子伦牲交视频 | 欧美丰满老熟妇xxxxx性 | 最近的中文字幕在线看视频 | 人妻人人添人妻人人爱 | 国产亚洲精品精品国产亚洲综合 | 永久免费观看国产裸体美女 | 性做久久久久久久免费看 | 国产香蕉尹人视频在线 | 亚洲人成网站在线播放942 | 国产福利视频一区二区 | 成人无码影片精品久久久 | 少妇性l交大片 | 国产日产欧产精品精品app | 亚洲gv猛男gv无码男同 | 国内精品久久久久久中文字幕 | 中文字幕无线码免费人妻 | 国产一区二区三区四区五区加勒比 | 草草网站影院白丝内射 | 亚洲一区二区三区无码久久 | 国产精品多人p群无码 | 亚洲午夜久久久影院 | 亚洲aⅴ无码成人网站国产app | 亚洲欧洲日本无在线码 | 99久久精品无码一区二区毛片 | 久久久久久久久蜜桃 | √天堂中文官网8在线 | 久久久久成人片免费观看蜜芽 | 99久久亚洲精品无码毛片 | 国产成人综合在线女婷五月99播放 | 樱花草在线社区www | 麻豆成人精品国产免费 | 激情人妻另类人妻伦 | 又大又硬又黄的免费视频 | a片免费视频在线观看 | 亚洲精品成a人在线观看 | 午夜性刺激在线视频免费 | 国产精品美女久久久网av | 伊在人天堂亚洲香蕉精品区 | 色一情一乱一伦一区二区三欧美 | 国产精品成人av在线观看 | 国产亚洲日韩欧美另类第八页 | 成人亚洲精品久久久久软件 | 18禁止看的免费污网站 | 男女性色大片免费网站 | 无遮挡国产高潮视频免费观看 | 婷婷色婷婷开心五月四房播播 | 国产精品久久久久影院嫩草 | 国产三级精品三级男人的天堂 | 性色av无码免费一区二区三区 | 国产无遮挡又黄又爽又色 | 日本乱偷人妻中文字幕 | 欧美成人午夜精品久久久 | 久久婷婷五月综合色国产香蕉 | 少妇无套内谢久久久久 | 精品无人区无码乱码毛片国产 | 丰满肥臀大屁股熟妇激情视频 | 久久无码人妻影院 | 午夜理论片yy44880影院 | 亚洲综合久久一区二区 | 日韩人妻无码一区二区三区久久99 | 中文字幕人妻无码一区二区三区 | 夜夜高潮次次欢爽av女 | 亚洲aⅴ无码成人网站国产app | 伊人久久婷婷五月综合97色 | 国产精品-区区久久久狼 | 国产农村乱对白刺激视频 | 国产激情无码一区二区 | 亚洲天堂2017无码 | 狠狠色色综合网站 | 亚洲日本va中文字幕 | 高中生自慰www网站 | 成熟妇人a片免费看网站 | 亚洲小说图区综合在线 | 小sao货水好多真紧h无码视频 | 亚洲欧美国产精品专区久久 | 欧美35页视频在线观看 | 久久久久久国产精品无码下载 | 亚洲爆乳精品无码一区二区三区 | 国产无遮挡又黄又爽免费视频 | 大地资源网第二页免费观看 | 亚洲日韩一区二区三区 | 成人aaa片一区国产精品 | 亚洲国产综合无码一区 | 人妻插b视频一区二区三区 | 国产人妻精品一区二区三区 | 成人免费无码大片a毛片 | a国产一区二区免费入口 | 人妻中文无码久热丝袜 | 无码乱肉视频免费大全合集 | 国产精品久久久久久亚洲影视内衣 | 久久亚洲国产成人精品性色 | 伊人久久大香线蕉av一区二区 | 成年美女黄网站色大免费全看 | 巨爆乳无码视频在线观看 | 国产人妻人伦精品1国产丝袜 | 国产一精品一av一免费 | 一本无码人妻在中文字幕免费 | 丁香啪啪综合成人亚洲 | 国产午夜精品一区二区三区嫩草 | 大肉大捧一进一出好爽视频 | 国内揄拍国内精品人妻 | 亚洲国产欧美日韩精品一区二区三区 | 未满小14洗澡无码视频网站 | 无码人妻黑人中文字幕 | 未满成年国产在线观看 | 久久97精品久久久久久久不卡 | 欧美大屁股xxxxhd黑色 | 国产成人精品一区二区在线小狼 | 亚洲精品中文字幕 | 天天av天天av天天透 | 国产精品美女久久久久av爽李琼 | 一本大道伊人av久久综合 | 又大又硬又爽免费视频 | 国产精品免费大片 | 中文字幕+乱码+中文字幕一区 | av在线亚洲欧洲日产一区二区 | 在线亚洲高清揄拍自拍一品区 | 鲁一鲁av2019在线 | 亚洲 高清 成人 动漫 | 西西人体www44rt大胆高清 | 国精产品一品二品国精品69xx | 国产精品毛片一区二区 | 成人女人看片免费视频放人 | 精品无码成人片一区二区98 | 成熟女人特级毛片www免费 | 国产人妻人伦精品 | 欧美日韩一区二区综合 | 亚洲自偷自拍另类第1页 | 最近的中文字幕在线看视频 | 野外少妇愉情中文字幕 | 日本肉体xxxx裸交 | 中文字幕无码免费久久9一区9 | 国产乱人伦偷精品视频 | 狠狠色色综合网站 | 精品国产一区二区三区av 性色 | 一本加勒比波多野结衣 | 在线欧美精品一区二区三区 | 久久99精品国产.久久久久 | 日本在线高清不卡免费播放 | 乱人伦人妻中文字幕无码久久网 | 色欲人妻aaaaaaa无码 | 亚洲色偷偷偷综合网 | 美女张开腿让人桶 | 无码人妻少妇伦在线电影 | 国产av无码专区亚洲a∨毛片 | 亚洲日本va中文字幕 | 午夜福利一区二区三区在线观看 | 欧美怡红院免费全部视频 | 精品无码av一区二区三区 | 国产成人人人97超碰超爽8 | 在线а√天堂中文官网 | 亚洲一区二区三区香蕉 | 国产精品久久久久久亚洲影视内衣 | 精品国产av色一区二区深夜久久 | av在线亚洲欧洲日产一区二区 | 国产超碰人人爽人人做人人添 | 成人女人看片免费视频放人 | 久久综合香蕉国产蜜臀av | 少妇性俱乐部纵欲狂欢电影 | 亚洲高清偷拍一区二区三区 | 国内精品一区二区三区不卡 | 成人免费无码大片a毛片 | 国产精品久久久久无码av色戒 | 亚洲精品无码人妻无码 | 亚洲成熟女人毛毛耸耸多 | 日本丰满熟妇videos | 中文字幕亚洲情99在线 | 日本一区二区更新不卡 | 亚洲熟妇色xxxxx欧美老妇y | 日本va欧美va欧美va精品 | 国产艳妇av在线观看果冻传媒 | 黑人粗大猛烈进出高潮视频 | 成人无码精品1区2区3区免费看 | 精品一二三区久久aaa片 | 国产精品美女久久久久av爽李琼 | 国产婷婷色一区二区三区在线 | a片在线免费观看 | 欧美乱妇无乱码大黄a片 | 曰韩无码二三区中文字幕 | 国产精品人妻一区二区三区四 | 国产人妻人伦精品1国产丝袜 | 少妇无码吹潮 | 亚洲精品国产第一综合99久久 | 国产午夜福利亚洲第一 | 国产精品igao视频网 | 亚洲男人av香蕉爽爽爽爽 | 久久午夜无码鲁丝片 | 日产国产精品亚洲系列 | 97久久精品无码一区二区 | 狠狠色噜噜狠狠狠狠7777米奇 | 亚洲综合无码久久精品综合 | 亚洲乱码日产精品bd | 午夜福利试看120秒体验区 | 狠狠色噜噜狠狠狠7777奇米 | 日韩人妻无码中文字幕视频 | 久久人妻内射无码一区三区 | 亚洲熟女一区二区三区 | 性啪啪chinese东北女人 | 成人无码精品一区二区三区 | 特黄特色大片免费播放器图片 | 无码播放一区二区三区 | 欧美人与善在线com | 综合人妻久久一区二区精品 | 国内精品久久毛片一区二区 | 99久久婷婷国产综合精品青草免费 | 人人澡人人透人人爽 | 男女爱爱好爽视频免费看 | 水蜜桃亚洲一二三四在线 | 中文字幕无线码免费人妻 | 99久久精品无码一区二区毛片 | 一本久道高清无码视频 | 日产精品99久久久久久 | 国产 浪潮av性色四虎 | 久久久久se色偷偷亚洲精品av | 亚洲欧美日韩国产精品一区二区 | а√资源新版在线天堂 | 白嫩日本少妇做爰 | 色综合久久久久综合一本到桃花网 | 精品久久综合1区2区3区激情 | 国産精品久久久久久久 | 又色又爽又黄的美女裸体网站 | 国产婷婷色一区二区三区在线 | 国产特级毛片aaaaaaa高清 | 女高中生第一次破苞av | 国产 精品 自在自线 | 熟妇人妻中文av无码 | 国产欧美熟妇另类久久久 | 精品无人国产偷自产在线 | 欧美丰满老熟妇xxxxx性 | 久久精品国产亚洲精品 | 国产美女极度色诱视频www | 日韩人妻系列无码专区 | 天堂亚洲2017在线观看 | 玩弄人妻少妇500系列视频 | 国内精品人妻无码久久久影院蜜桃 | 天下第一社区视频www日本 | 少妇高潮一区二区三区99 | 欧美自拍另类欧美综合图片区 | 丰满人妻被黑人猛烈进入 | 午夜精品久久久久久久 | 岛国片人妻三上悠亚 | 一区二区三区乱码在线 | 欧洲 | 曰本女人与公拘交酡免费视频 | 久久久久亚洲精品中文字幕 | 在线播放免费人成毛片乱码 | 久久熟妇人妻午夜寂寞影院 | 国产av无码专区亚洲awww | 国产精品亚洲专区无码不卡 | 国产亲子乱弄免费视频 | 少妇性俱乐部纵欲狂欢电影 | 日本va欧美va欧美va精品 | 国产乱子伦视频在线播放 | 久久久久99精品成人片 | 97久久国产亚洲精品超碰热 | 亚洲狠狠色丁香婷婷综合 | 强辱丰满人妻hd中文字幕 | 蜜桃视频韩日免费播放 | 亚洲中文字幕va福利 | 又紧又大又爽精品一区二区 | 欧洲精品码一区二区三区免费看 | 国产亚洲精品久久久ai换 | 激情内射日本一区二区三区 | 18黄暴禁片在线观看 | 国产精品无码永久免费888 | 永久免费精品精品永久-夜色 | 内射白嫩少妇超碰 | 久久视频在线观看精品 | 伊人久久大香线焦av综合影院 | 撕开奶罩揉吮奶头视频 | 成人亚洲精品久久久久软件 | 2020久久超碰国产精品最新 | 又大又硬又黄的免费视频 | 精品国产一区二区三区四区 | 久久99精品国产.久久久久 | 国产又爽又猛又粗的视频a片 | 亚洲人成影院在线无码按摩店 | 香港三级日本三级妇三级 | 波多野结衣aⅴ在线 | 全黄性性激高免费视频 | 88国产精品欧美一区二区三区 | 久久国产36精品色熟妇 | 性做久久久久久久久 | 国产莉萝无码av在线播放 | 国产在线精品一区二区高清不卡 | 夜精品a片一区二区三区无码白浆 | 人人爽人人爽人人片av亚洲 | 麻豆md0077饥渴少妇 | 波多野结衣高清一区二区三区 | 少妇无码av无码专区在线观看 | 亚洲欧洲无卡二区视頻 | 日本一区二区三区免费高清 | 国产人妻人伦精品1国产丝袜 | 久久精品99久久香蕉国产色戒 | 欧美精品国产综合久久 | 玩弄中年熟妇正在播放 | 久久久www成人免费毛片 | 人妻互换免费中文字幕 | 国精品人妻无码一区二区三区蜜柚 | 久久精品中文闷骚内射 | 中国女人内谢69xxxxxa片 | 久久精品无码一区二区三区 | 激情爆乳一区二区三区 | 我要看www免费看插插视频 | 精品国产乱码久久久久乱码 | 欧美丰满熟妇xxxx性ppx人交 | 国产成人无码av一区二区 | 免费观看的无遮挡av | 亚洲国产一区二区三区在线观看 | 蜜桃无码一区二区三区 | 亚洲精品www久久久 | 无码人妻精品一区二区三区不卡 | 精品国产一区av天美传媒 | 无码av免费一区二区三区试看 | 最近免费中文字幕中文高清百度 | 麻豆精品国产精华精华液好用吗 | 色欲人妻aaaaaaa无码 | 国产精品爱久久久久久久 | 国产亚洲精品久久久久久久 | 国内精品九九久久久精品 | 亚洲 激情 小说 另类 欧美 | 老熟妇乱子伦牲交视频 | 性生交片免费无码看人 | 亚洲第一无码av无码专区 | 樱花草在线社区www | 国产人妻精品一区二区三区不卡 | 久久久中文字幕日本无吗 | 亚洲欧美综合区丁香五月小说 | 欧美怡红院免费全部视频 | 最新国产麻豆aⅴ精品无码 | 伊人久久大香线焦av综合影院 | 国产真实乱对白精彩久久 | 亚洲成av人在线观看网址 | 一本久道高清无码视频 | 亚洲区欧美区综合区自拍区 | 精品夜夜澡人妻无码av蜜桃 | 无码人中文字幕 | 狠狠色噜噜狠狠狠狠7777米奇 | 夜精品a片一区二区三区无码白浆 | 18精品久久久无码午夜福利 | 欧美日韩综合一区二区三区 | 一本色道久久综合亚洲精品不卡 | 亚洲色www成人永久网址 | 国产午夜手机精彩视频 | 国产乱人偷精品人妻a片 | 少妇激情av一区二区 | 亚洲爆乳精品无码一区二区三区 | 乌克兰少妇性做爰 | 在线观看国产午夜福利片 | 色诱久久久久综合网ywww | 国产成人人人97超碰超爽8 | 丰满妇女强制高潮18xxxx | 色一情一乱一伦一视频免费看 | 人妻天天爽夜夜爽一区二区 | 久久精品中文闷骚内射 | 亚洲理论电影在线观看 | 青草视频在线播放 | 国产精品久久久久久亚洲影视内衣 | 日本一区二区三区免费高清 | 成人欧美一区二区三区 | 无码人妻丰满熟妇区毛片18 | 精品人人妻人人澡人人爽人人 | 亚洲啪av永久无码精品放毛片 | 1000部夫妻午夜免费 | 青草青草久热国产精品 | 熟女少妇人妻中文字幕 | 扒开双腿吃奶呻吟做受视频 | 日本精品人妻无码免费大全 | 人人妻人人澡人人爽人人精品浪潮 | 性欧美熟妇videofreesex | 宝宝好涨水快流出来免费视频 | 无码国模国产在线观看 | 精品国产青草久久久久福利 | 精品国产一区二区三区av 性色 | 亚洲国产日韩a在线播放 | 丝袜 中出 制服 人妻 美腿 | 国产成人精品三级麻豆 | 国产精品久久久久7777 | 一个人看的www免费视频在线观看 | 亚洲自偷精品视频自拍 | 美女张开腿让人桶 | 荫蒂被男人添的好舒服爽免费视频 | 人妻人人添人妻人人爱 | 中文字幕色婷婷在线视频 | 国产精品自产拍在线观看 | 欧美阿v高清资源不卡在线播放 | 亚洲国产精品美女久久久久 | www一区二区www免费 | av香港经典三级级 在线 | 一个人看的www免费视频在线观看 | 97久久精品无码一区二区 | 野外少妇愉情中文字幕 | 久久www免费人成人片 | 亚洲精品久久久久久一区二区 | 精品乱码久久久久久久 | 成人精品天堂一区二区三区 | 久久精品国产一区二区三区 | 乱中年女人伦av三区 | 女人被爽到呻吟gif动态图视看 | 国产免费无码一区二区视频 | 国产乱子伦视频在线播放 | 午夜福利一区二区三区在线观看 | 99久久精品无码一区二区毛片 | 国产女主播喷水视频在线观看 | 对白脏话肉麻粗话av | 天天摸天天碰天天添 | 大胆欧美熟妇xx | a片在线免费观看 | 奇米影视7777久久精品人人爽 | 撕开奶罩揉吮奶头视频 | 国产精品久久久久久久9999 | 色婷婷久久一区二区三区麻豆 | 熟妇人妻无码xxx视频 | 67194成是人免费无码 | 狠狠色色综合网站 | 中文字幕无码日韩专区 | 人人妻人人澡人人爽欧美精品 | 全黄性性激高免费视频 | 成人一区二区免费视频 | 久久久精品成人免费观看 | 久久久婷婷五月亚洲97号色 | 精品无码国产自产拍在线观看蜜 | 日本在线高清不卡免费播放 | 国内揄拍国内精品少妇国语 | 亚洲一区二区三区偷拍女厕 | 国产欧美亚洲精品a | 人妻无码αv中文字幕久久琪琪布 | 67194成是人免费无码 | 亚洲国产av美女网站 | 日产精品高潮呻吟av久久 | 日韩精品无码免费一区二区三区 | 国产精品18久久久久久麻辣 | 日本高清一区免费中文视频 | 成人av无码一区二区三区 | 无码免费一区二区三区 | 国产另类ts人妖一区二区 | 国产成人无码av一区二区 | 日韩精品a片一区二区三区妖精 | 人妻少妇精品无码专区二区 | 国产特级毛片aaaaaaa高清 | 色综合久久久无码中文字幕 | 亚洲精品一区二区三区婷婷月 | 国产高清不卡无码视频 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲中文字幕久久无码 | 精品成在人线av无码免费看 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲精品鲁一鲁一区二区三区 | 国产亚洲人成a在线v网站 | 精品久久久久香蕉网 | 日本精品久久久久中文字幕 | 老头边吃奶边弄进去呻吟 | 男女作爱免费网站 | 亚洲阿v天堂在线 | 乱人伦中文视频在线观看 | 色综合久久88色综合天天 | 黄网在线观看免费网站 | 亚洲の无码国产の无码步美 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 国产综合在线观看 | 国产深夜福利视频在线 | 亚洲熟妇色xxxxx欧美老妇 | 国产国语老龄妇女a片 | 少妇高潮一区二区三区99 | 丰满肥臀大屁股熟妇激情视频 | 亚洲熟妇自偷自拍另类 | 精品国产aⅴ无码一区二区 | 国产精品资源一区二区 | 久久国内精品自在自线 | 国产精品18久久久久久麻辣 | 一区二区三区乱码在线 | 欧洲 | 香蕉久久久久久av成人 | 国产乱子伦视频在线播放 | 亚洲男人av香蕉爽爽爽爽 | 亚洲欧美精品伊人久久 | 亚洲熟女一区二区三区 | 无码一区二区三区在线观看 | 乱码午夜-极国产极内射 | 精品无人区无码乱码毛片国产 | 亚洲日韩av片在线观看 | 国产精品无码永久免费888 | 欧美黑人性暴力猛交喷水 | 精品人人妻人人澡人人爽人人 | 久久久久亚洲精品中文字幕 | 日韩人妻无码中文字幕视频 | 无码人妻出轨黑人中文字幕 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 日本一本二本三区免费 | 亚洲区小说区激情区图片区 | 欧美成人免费全部网站 | 亚洲一区av无码专区在线观看 | 国产成人综合色在线观看网站 | 成熟女人特级毛片www免费 | 欧美日韩在线亚洲综合国产人 | 欧美性生交活xxxxxdddd | 久久 国产 尿 小便 嘘嘘 | 九九久久精品国产免费看小说 | 成人精品视频一区二区 | 无码人妻黑人中文字幕 | 少妇人妻av毛片在线看 | 久久精品中文闷骚内射 | 特级做a爰片毛片免费69 | 亚洲欧美精品伊人久久 | 欧美三级a做爰在线观看 | 日韩av激情在线观看 | 天堂无码人妻精品一区二区三区 | 国产偷自视频区视频 | 夜夜高潮次次欢爽av女 | 亚洲aⅴ无码成人网站国产app | 午夜男女很黄的视频 | 欧美黑人乱大交 | 国产人妻久久精品二区三区老狼 | 亚洲区小说区激情区图片区 | 亚洲国产精品久久人人爱 | 在线亚洲高清揄拍自拍一品区 | 99久久99久久免费精品蜜桃 | 无遮挡国产高潮视频免费观看 | 男女爱爱好爽视频免费看 | 亚洲经典千人经典日产 | 久久久久免费精品国产 | 国产精品久久久久久亚洲影视内衣 | 兔费看少妇性l交大片免费 | 国产精品怡红院永久免费 | 无码国产激情在线观看 | 日韩人妻少妇一区二区三区 | 天堂亚洲2017在线观看 | 欧洲精品码一区二区三区免费看 | 免费中文字幕日韩欧美 | 男女作爱免费网站 | 国产亚洲视频中文字幕97精品 | 亚洲无人区午夜福利码高清完整版 | yw尤物av无码国产在线观看 | 国产艳妇av在线观看果冻传媒 | 亚洲精品一区三区三区在线观看 | 77777熟女视频在线观看 а天堂中文在线官网 | 国产精品久免费的黄网站 | 久久99久久99精品中文字幕 | 国产熟女一区二区三区四区五区 | 国产成人精品久久亚洲高清不卡 | 成人无码精品一区二区三区 | 狂野欧美性猛xxxx乱大交 | 久久精品人人做人人综合 | 久久久久亚洲精品中文字幕 | 丰满人妻一区二区三区免费视频 | 中文字幕无线码免费人妻 | 国产在线aaa片一区二区99 | 97夜夜澡人人双人人人喊 | 国产网红无码精品视频 | 亚洲阿v天堂在线 | 久久婷婷五月综合色国产香蕉 | 日韩人妻少妇一区二区三区 | 岛国片人妻三上悠亚 | 狠狠色噜噜狠狠狠狠7777米奇 | 亚洲精品一区国产 | 亚洲精品国产精品乱码不卡 | 国产日产欧产精品精品app | 成人精品视频一区二区三区尤物 | 内射巨臀欧美在线视频 | 国产精品亚洲一区二区三区喷水 | 乌克兰少妇性做爰 | 奇米影视888欧美在线观看 | 99精品视频在线观看免费 | 曰韩无码二三区中文字幕 | 伊人久久大香线蕉亚洲 | 亚洲色欲色欲欲www在线 | 亚洲国产欧美日韩精品一区二区三区 | 成人免费视频视频在线观看 免费 | 天天拍夜夜添久久精品大 | 国产精华av午夜在线观看 | 成人精品一区二区三区中文字幕 | 99精品国产综合久久久久五月天 | 国产激情精品一区二区三区 | 毛片内射-百度 | 99riav国产精品视频 | 精品国产一区二区三区四区 | 欧美亚洲日韩国产人成在线播放 | 荫蒂被男人添的好舒服爽免费视频 | 真人与拘做受免费视频 | 久久精品人人做人人综合 | 久久久av男人的天堂 | 久久五月精品中文字幕 | 中文字幕日产无线码一区 | 国产口爆吞精在线视频 | 国产成人精品视频ⅴa片软件竹菊 | 亚洲の无码国产の无码步美 | 久久无码中文字幕免费影院蜜桃 | 久久熟妇人妻午夜寂寞影院 | 女人高潮内射99精品 | 漂亮人妻洗澡被公强 日日躁 | 老熟妇仑乱视频一区二区 | 亚洲欧美日韩成人高清在线一区 | 天天摸天天碰天天添 | 99久久久无码国产aaa精品 | 丝袜 中出 制服 人妻 美腿 | 久久久久国色av免费观看性色 | 野外少妇愉情中文字幕 | 高清国产亚洲精品自在久久 | 欧美野外疯狂做受xxxx高潮 | 97无码免费人妻超级碰碰夜夜 | 波多野结衣一区二区三区av免费 | 亚洲区小说区激情区图片区 | 乱人伦人妻中文字幕无码久久网 | 精品久久8x国产免费观看 | 久青草影院在线观看国产 | 成人一在线视频日韩国产 | 在线播放免费人成毛片乱码 | 国产免费久久久久久无码 | 国产成人无码区免费内射一片色欲 | 丰满诱人的人妻3 | 97夜夜澡人人双人人人喊 | 欧美日韩人成综合在线播放 | 亚洲乱码中文字幕在线 | 性生交大片免费看女人按摩摩 | 性色欲网站人妻丰满中文久久不卡 | 全球成人中文在线 | 久精品国产欧美亚洲色aⅴ大片 | 国产偷抇久久精品a片69 | 色综合久久网 | 色综合视频一区二区三区 | 国产精华av午夜在线观看 | 欧美性猛交xxxx富婆 | 婷婷色婷婷开心五月四房播播 | 成人精品天堂一区二区三区 | 亚洲国产精品一区二区第一页 | 国产一区二区三区四区五区加勒比 | 久久成人a毛片免费观看网站 | 女高中生第一次破苞av | 午夜性刺激在线视频免费 | 丰满少妇人妻久久久久久 | 国产午夜亚洲精品不卡 | 国产女主播喷水视频在线观看 | 国产极品视觉盛宴 | 黑人玩弄人妻中文在线 | 亚洲自偷自拍另类第1页 | 青青久在线视频免费观看 | 最近中文2019字幕第二页 | 青青青爽视频在线观看 | 99久久精品无码一区二区毛片 | 暴力强奷在线播放无码 | 午夜福利电影 | 国产无遮挡又黄又爽又色 | 国产成人无码专区 | 国内精品人妻无码久久久影院蜜桃 | а√资源新版在线天堂 | 亚洲精品成人av在线 | 久久人人97超碰a片精品 | 成人精品一区二区三区中文字幕 | 九九在线中文字幕无码 | 桃花色综合影院 | 欧洲欧美人成视频在线 | 露脸叫床粗话东北少妇 | 99久久久无码国产精品免费 | 亚洲大尺度无码无码专区 | 国产成人午夜福利在线播放 | 亚洲狠狠婷婷综合久久 | 黑人大群体交免费视频 | 老熟女重囗味hdxx69 | 小sao货水好多真紧h无码视频 | 亚洲精品久久久久久久久久久 | 国精品人妻无码一区二区三区蜜柚 | 亚洲精品欧美二区三区中文字幕 | 97人妻精品一区二区三区 | 国产在线精品一区二区高清不卡 | 国产一区二区三区影院 | 无码国内精品人妻少妇 | 亚洲国产精品久久人人爱 | 欧美日韩视频无码一区二区三 | 无码人妻丰满熟妇区毛片18 | 亚洲精品综合一区二区三区在线 | 爽爽影院免费观看 | 97资源共享在线视频 | 一本一道久久综合久久 | 人人妻人人澡人人爽精品欧美 | 日本护士毛茸茸高潮 | 亚洲国产成人av在线观看 | 亚洲国产综合无码一区 | 国产精品内射视频免费 | 亚洲熟妇色xxxxx欧美老妇 | 高清无码午夜福利视频 | 漂亮人妻洗澡被公强 日日躁 | 精品亚洲韩国一区二区三区 | 中文久久乱码一区二区 | 性史性农村dvd毛片 | 国产亚洲欧美在线专区 | 永久免费观看美女裸体的网站 | 初尝人妻少妇中文字幕 | 台湾无码一区二区 | av香港经典三级级 在线 | 大肉大捧一进一出好爽视频 | 麻豆国产丝袜白领秘书在线观看 | 大地资源网第二页免费观看 | 色五月丁香五月综合五月 | 少女韩国电视剧在线观看完整 | 对白脏话肉麻粗话av | 亚洲s码欧洲m码国产av | 久久久久久久久888 | 少妇激情av一区二区 | 图片小说视频一区二区 | 国产人妻人伦精品1国产丝袜 | 无码福利日韩神码福利片 | 国产色精品久久人妻 | 国产97色在线 | 免 | 精品一区二区三区波多野结衣 | 人妻夜夜爽天天爽三区 | 精品成在人线av无码免费看 | 免费无码肉片在线观看 | 人妻少妇精品无码专区动漫 | 亚洲色大成网站www国产 | 国产又粗又硬又大爽黄老大爷视 | 久久国语露脸国产精品电影 | 久久久久成人精品免费播放动漫 | 在线观看欧美一区二区三区 | 无码中文字幕色专区 | 午夜精品一区二区三区的区别 | 国产综合在线观看 | 日韩精品乱码av一区二区 | 国产午夜精品一区二区三区嫩草 | 中文字幕无码人妻少妇免费 | 巨爆乳无码视频在线观看 | 亚洲精品国产品国语在线观看 | 亚洲小说春色综合另类 | 风流少妇按摩来高潮 | 久久99精品国产麻豆 | 国产精品怡红院永久免费 | 夜夜躁日日躁狠狠久久av | 欧洲熟妇色 欧美 | 成人无码精品1区2区3区免费看 | 暴力强奷在线播放无码 | 少妇太爽了在线观看 | 四虎国产精品一区二区 | 国产亚洲精品久久久闺蜜 | 永久免费观看美女裸体的网站 | 国产精品亚洲五月天高清 | 国产性生大片免费观看性 | 精品无人区无码乱码毛片国产 | 双乳奶水饱满少妇呻吟 | 日韩精品久久久肉伦网站 | 日本乱偷人妻中文字幕 | 亚洲一区二区三区四区 | 中文精品久久久久人妻不卡 | 久久国产自偷自偷免费一区调 | 久久精品中文字幕一区 | 97资源共享在线视频 | 无码国产乱人伦偷精品视频 | 国产精品国产自线拍免费软件 | 久久精品99久久香蕉国产色戒 | 国产农村妇女高潮大叫 | a在线亚洲男人的天堂 | 亚洲天堂2017无码 | 日韩精品无码一本二本三本色 | 四虎国产精品一区二区 | 国产综合在线观看 | 无码午夜成人1000部免费视频 | 丰满少妇熟乱xxxxx视频 | 亚洲经典千人经典日产 | 丰满少妇人妻久久久久久 | 水蜜桃色314在线观看 | 一个人看的www免费视频在线观看 | 欧美精品免费观看二区 | 精品无码一区二区三区的天堂 | 亚洲中文字幕av在天堂 | 夜夜躁日日躁狠狠久久av | 亚洲精品国产品国语在线观看 | 亚洲欧美精品伊人久久 | 国产 浪潮av性色四虎 | 久久精品女人的天堂av | 亚洲欧美日韩综合久久久 | 成人亚洲精品久久久久 | 欧美xxxxx精品 | 中文字幕中文有码在线 | 久久人人爽人人爽人人片av高清 | 国产熟妇高潮叫床视频播放 | 天堂一区人妻无码 | 巨爆乳无码视频在线观看 | 未满成年国产在线观看 | 久久精品国产亚洲精品 | 亚洲精品国产精品乱码不卡 | 67194成是人免费无码 | 婷婷色婷婷开心五月四房播播 | 亚洲人成人无码网www国产 | 国产欧美精品一区二区三区 | 熟妇人妻中文av无码 | 亚洲综合另类小说色区 | 在线 国产 欧美 亚洲 天堂 | 国产网红无码精品视频 | 国产人妻大战黑人第1集 | 欧洲精品码一区二区三区免费看 | 老熟女重囗味hdxx69 | 中文字幕乱码人妻二区三区 | 日韩欧美成人免费观看 | 亚洲va中文字幕无码久久不卡 | 亚洲国产一区二区三区在线观看 | 天干天干啦夜天干天2017 | 大肉大捧一进一出好爽视频 | 国产人成高清在线视频99最全资源 | 欧美人与动性行为视频 | 中文字幕无码视频专区 | 久久久久久av无码免费看大片 | 国产偷自视频区视频 | 激情五月综合色婷婷一区二区 | 久久天天躁狠狠躁夜夜免费观看 | 欧美激情内射喷水高潮 | 久久久国产精品无码免费专区 |