jfxtras.scene.control.window.default.css Maven / Gradle / Ivy
/**
* Copyright 2012-2016 Michael Hoffer . All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* Please cite the following publication(s):
*
* M. Hoffer, C.Poliwoda, G.Wittum. Visual Reflection Library -
* A Framework for Declarative GUI Programming on the Java Platform.
* Computing and Visualization in Science, 2011, in press.
*
* THIS SOFTWARE IS PROVIDED BY Michael Hoffer "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Michael Hoffer OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Michael Hoffer .
*/
/*
Document : default.css
Created on : 08.10.2012, 10:17:51
Author : Michael Hoffer
Description:
Purpose of the stylesheet follows.
*/
.window {
-fx-skin: "jfxtras.internal.scene.control.skin.window.DefaultWindowSkin";
-fx-glass-color: rgba(85, 132, 160, 0.9);
-fx-alignment: center;
-fx-background-color: linear-gradient(to bottom, derive(-fx-glass-color, 50%), -fx-glass-color);
-fx-border-color: derive(-fx-glass-color, -60%);
-fx-border-width: 2;
-fx-background-insets: 1;
-fx-border-radius: 3;
-fx-background-radius: 3;
-fx-font-size: 18;
/*-fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.65), 100, 0.5, 0.0, 0.0);*/
/*-fx-padding: -2;*/
}
.window-icon {
-fx-skin: "jfxtras.internal.scene.control.skin.window.DefaultWindowIconSkin";
-fx-border-color: rgb(255,255,255);
-fx-border-radius: 3;
}
.window-close-icon {
-fx-skin: "jfxtras.internal.scene.control.skin.window.DefaultWindowIconSkin";
-fx-border-color: rgb(255,255,255);
-fx-shape: "m 81.451435,47.885404 -39.71427,39.714277 m 0,-39.714277 39.71427,39.714277 m 27.285725,-19.85714 c 0,26.03628 -21.106585,47.142859 -47.142865,47.142859 -26.03628,0 -47.14285,-21.106579 -47.14285,-47.142859 0,-26.036277 21.10657,-47.142853 47.14285,-47.142853 26.03628,0 47.142865,21.106576 47.142865,47.142853 z";
-fx-border-width: 2;
-fx-border-insets: 1;
}
.window-rotate-icon {
-fx-skin: "jfxtras.internal.scene.control.skin.window.DefaultWindowIconSkin";
-fx-border-color: rgb(255,255,255);
-fx-shape: "m 238.03158,30.844083 -34.78125,9.875 0,0.25 34.78125,13.4375 0,-23.5625 z m -7.85745,10.984542 c 27.30327,0 49.43694,22.133672 49.43694,49.43694 0,27.303265 -22.13367,49.436935 -49.43694,49.436935 -27.30327,0 -49.43694,-22.13367 -49.43694,-49.436937 0,0 0,-10e-7 0,-10e-7";
-fx-border-width: 2.0;
-fx-border-insets: 1;
/*-fx-background-color: rgb(255,255,255);*/
}
.window-minimize-icon {
-fx-skin: "jfxtras.internal.scene.control.skin.window.DefaultWindowIconSkin";
-fx-border-color: rgb(255,255,255);
-fx-shape: "m 84.388275,210.34884 -47.71427,-0.28572 m 70.999995,0.14286 c 0,26.03628 -21.106585,47.14286 -47.142865,47.14286 -26.03628,0 -47.14285,-21.10658 -47.14285,-47.14286 0,-26.03628 21.10657,-47.14285 47.14285,-47.14285 26.03628,0 47.142865,21.10657 47.142865,47.14285 z";
-fx-border-width: 2;
-fx-border-insets: 1;
}
.window-titlebar {
-fx-glass-color: rgba(42, 42, 42, 0.9);
-fx-alignment: center;
-fx-background-color: linear-gradient(to bottom, derive(-fx-glass-color, 30%), -fx-glass-color);
-fx-border-color: derive(-fx-glass-color, -60%);
-fx-border-width: 2;
-fx-background-insets: 1;
-fx-border-radius: 3;
-fx-background-radius: 3;
-fx-stroke: rgba(255,255,255,50);
-fx-fill: rgba(255,255,255,50);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy