[GUI] Stylesheet fixes for overlay icons, pop-up notifcation and QMDI window (#11244)
* Fix for the overlay icons and pop-up notifcation * Added a fix for the QMDI window
@@ -29,6 +29,18 @@ SET(Overlay_Stylesheets_Files
|
||||
"overlay/edithide.svg"
|
||||
"overlay/mode.svg"
|
||||
"overlay/transparent.svg"
|
||||
"overlay/taskshow_light.svg"
|
||||
"overlay/mode_lighter.svg"
|
||||
"overlay/overlay_lighter.svg"
|
||||
"overlay/close_lighter.svg"
|
||||
"overlay/close_light.svg"
|
||||
"overlay/float_lighter.svg"
|
||||
"overlay/overlay_light.svg"
|
||||
"overlay/mode_light.svg"
|
||||
"overlay/transparent_light.svg"
|
||||
"overlay/float_light.svg"
|
||||
"overlay/transparent_lighter.svg"
|
||||
"overlay/close_red.svg"
|
||||
)
|
||||
|
||||
# Find all the image files
|
||||
|
||||
@@ -2632,3 +2632,87 @@ Gui--UrlLabel {
|
||||
color : rgba(0,91,255,255); /* Deep sky blue */
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
Gui--NotificationLabel {
|
||||
background-color: #444444;
|
||||
border: 1px solid #696968;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:!hover{
|
||||
background-color: transparent;
|
||||
border: 0px solid transparent;
|
||||
image: url(qss:overlay/close_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
|
||||
image: url(qss:overlay/close_red.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:!checked {
|
||||
image: url(qss:overlay/transparent_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:hover {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:checked {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:!checked{
|
||||
image: url(qss:overlay/overlay_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:hover {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:checked {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:!checked {
|
||||
image: url(qss:overlay/mode_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:hover {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:checked {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:!checked {
|
||||
image: url(qss:overlay/float_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:hover {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:checked {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
|
||||
/*==================================================================================================
|
||||
Forming windows below are the border settings. See also https://forum.freecad.org/viewtopic.php?p=439797#p439797
|
||||
==================================================================================================*/
|
||||
QMdiSubWindow {
|
||||
border:2px solid #333333;
|
||||
border-radius: 2px;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
QMdiSubWindow:hover {
|
||||
border:2px solid #696968;
|
||||
}
|
||||
|
||||
QMdiSubWindow:active {
|
||||
border:2px solid @ThemeAccentColor1;
|
||||
}
|
||||
|
||||
@@ -2611,3 +2611,86 @@ Gui--UrlLabel {
|
||||
color : rgba(0,91,255,255); /* Deep sky blue */
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
Gui--NotificationLabel {
|
||||
background-color: #7F7F7F;
|
||||
border: 1px solid #696968;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:!hover{
|
||||
background-color: transparent;
|
||||
border: 0px solid transparent;
|
||||
image: url(qss:overlay/close_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
|
||||
image: url(qss:overlay/close_red.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:!checked {
|
||||
image: url(qss:overlay/transparent_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:hover {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:checked {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:!checked{
|
||||
image: url(qss:overlay/overlay_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:hover {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:checked {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:!checked {
|
||||
image: url(qss:overlay/mode_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:hover {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:checked {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:!checked {
|
||||
image: url(qss:overlay/float_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:hover {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:checked {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
/*==================================================================================================
|
||||
Forming windows below are the border settings. See also https://forum.freecad.org/viewtopic.php?p=439797#p439797
|
||||
==================================================================================================*/
|
||||
QMdiSubWindow {
|
||||
border:2px solid #696968;
|
||||
border-radius: 2px;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
QMdiSubWindow:hover {
|
||||
border:2px solid #333333;
|
||||
}
|
||||
|
||||
QMdiSubWindow:active {
|
||||
border:2px solid @ThemeAccentColor1;
|
||||
}
|
||||
|
||||
@@ -2616,3 +2616,88 @@ Gui--UrlLabel {
|
||||
color : rgba(0,91,255,255); /* Deep sky blue */
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
Gui--NotificationLabel {
|
||||
background-color: #444444;
|
||||
border: 1px solid #696968;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:!hover{
|
||||
background-color: transparent;
|
||||
border: 0px solid transparent;
|
||||
image: url(qss:overlay/close_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
|
||||
image: url(qss:overlay/close_red.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:!checked {
|
||||
image: url(qss:overlay/transparent_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:hover {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Transparent"]:checked {
|
||||
image: url(qss:overlay/transparent_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:!checked{
|
||||
image: url(qss:overlay/overlay_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:hover {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Overlay"]:checked {
|
||||
image: url(qss:overlay/overlay_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:!checked {
|
||||
image: url(qss:overlay/mode_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:hover {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN AutoMode"]:checked {
|
||||
image: url(qss:overlay/mode_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:!checked {
|
||||
image: url(qss:overlay/float_light.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:hover {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton[objectName="OBTN Float"]:checked {
|
||||
image: url(qss:overlay/float_lighter.svg);
|
||||
}
|
||||
|
||||
/*==================================================================================================
|
||||
Forming windows below are the border settings. See also https://forum.freecad.org/viewtopic.php?p=439797#p439797
|
||||
==================================================================================================*/
|
||||
QMdiSubWindow {
|
||||
border:2px solid #333333;
|
||||
border-radius: 2px;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
QMdiSubWindow:hover {
|
||||
border:2px solid #696968;
|
||||
}
|
||||
|
||||
QMdiSubWindow:active {
|
||||
border:2px solid @ThemeAccentColor1;
|
||||
}
|
||||
|
||||
|
||||
@@ -2641,3 +2641,28 @@ Gui--UrlLabel {
|
||||
color : rgba(0,91,255,255); /* Deep sky blue */
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
Gui--NotificationLabel {
|
||||
background-color: #f6f6f6;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/*==================================================================================================
|
||||
Forming windows below are the border settings. See also https://forum.freecad.org/viewtopic.php?p=439797#p439797
|
||||
==================================================================================================*/
|
||||
QMdiSubWindow {
|
||||
border:2px solid #ffffff;
|
||||
border-radius: 2px;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
QMdiSubWindow:hover {
|
||||
border:2px solid #cccccc;
|
||||
}
|
||||
|
||||
QMdiSubWindow:active {
|
||||
border:2px solid @ThemeAccentColor1;
|
||||
}
|
||||
@@ -2623,3 +2623,28 @@ Gui--UrlLabel {
|
||||
color : rgba(0,91,255,255); /* Deep sky blue */
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
Gui--NotificationLabel {
|
||||
background-color: #f6f6f6;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/*==================================================================================================
|
||||
Forming windows below are the border settings. See also https://forum.freecad.org/viewtopic.php?p=439797#p439797
|
||||
==================================================================================================*/
|
||||
QMdiSubWindow {
|
||||
border:2px solid #ffffff;
|
||||
border-radius: 2px;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
QMdiSubWindow:hover {
|
||||
border:2px solid #cccccc;
|
||||
}
|
||||
|
||||
QMdiSubWindow:active {
|
||||
border:2px solid @ThemeAccentColor1;
|
||||
}
|
||||
@@ -42,38 +42,33 @@ Gui--OverlayProxyWidget {
|
||||
|
||||
Gui--OverlayToolButton {
|
||||
background: #444444;
|
||||
padding: -2px;
|
||||
padding: 1px;
|
||||
border: 0px outset rgb(255, 255, 255);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
background: #ffffff;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:focus {
|
||||
background: #cfcfcf;
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
border: 1px rgb(135, 135, 135);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton::pressed {
|
||||
background: rgb(159, 159, 159);
|
||||
border: 2px inset rgb(84, 84, 84);
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked {
|
||||
background: #bebebe;
|
||||
border: 2px inset #bebebe;
|
||||
padding: 0px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked:hover {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border: 2px inset rgb(255, 255, 255);
|
||||
|
||||
background: #000000;
|
||||
border: 1px inset #525252;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* Use the following selector to customize title bar for each side */
|
||||
|
||||
@@ -41,39 +41,34 @@ Gui--OverlayProxyWidget {
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton {
|
||||
background: #444444;
|
||||
padding: -2px;
|
||||
background-color: qlineargradient(x1:0, y1:0.3, x2:0, y2:1, stop:0 #333333, stop:1 #2a2a2a);
|
||||
padding: 0px;
|
||||
border: 0px outset rgb(255, 255, 255);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
background: #ffffff;
|
||||
padding: 0px;
|
||||
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:focus {
|
||||
background: #cfcfcf;
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
border: 1px rgb(135, 135, 135);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton::pressed {
|
||||
background: rgb(159, 159, 159);
|
||||
border: 2px inset rgb(84, 84, 84);
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked {
|
||||
background: #bebebe;
|
||||
border: 2px inset #bebebe;
|
||||
padding: 0px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked:hover {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border: 2px inset rgb(255, 255, 255);
|
||||
|
||||
border: 0px inset #525252;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
/* Use the following selector to customize title bar for each side */
|
||||
|
||||
@@ -42,38 +42,33 @@ Gui--OverlayProxyWidget {
|
||||
|
||||
Gui--OverlayToolButton {
|
||||
background-color: qlineargradient(x1:0, y1:0.3, x2:0, y2:1, stop:0 #333333, stop:1 #2a2a2a);
|
||||
padding: -2px;
|
||||
padding: 1px;
|
||||
border: 0px outset rgb(255, 255, 255);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:hover {
|
||||
background: #ffffff;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:focus {
|
||||
background: #cfcfcf;
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
border: 1px rgb(135, 135, 135);
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton::pressed {
|
||||
background: rgb(159, 159, 159);
|
||||
border: 2px inset rgb(84, 84, 84);
|
||||
background: #000000;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked {
|
||||
background: #bebebe;
|
||||
border: 2px inset #bebebe;
|
||||
padding: 0px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Gui--OverlayToolButton:checked:hover {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border: 2px inset rgb(255, 255, 255);
|
||||
|
||||
background: #000000;
|
||||
border: 1px inset #525252;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* Use the following selector to customize title bar for each side */
|
||||
|
||||
41
src/Gui/Stylesheets/overlay/close_light.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
viewBox="0 0 12 12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path2"
|
||||
style="fill:#bfbfbf;stroke:#bfbfbf;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;fill-opacity:1;stroke-opacity:1"
|
||||
d="m 10,2 -8,8 m 0,-8 8,8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
41
src/Gui/Stylesheets/overlay/close_lighter.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
viewBox="0 0 12 12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path2"
|
||||
style="fill:#ffffff;stroke:#e9ecef;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;fill-opacity:1"
|
||||
d="m 10,2 -8,8 m 0,-8 8,8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
41
src/Gui/Stylesheets/overlay/close_red.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
viewBox="0 0 12 12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path2"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;fill-opacity:1"
|
||||
d="m 10,2 -8,8 m 0,-8 8,8" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
53
src/Gui/Stylesheets/overlay/float_light.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 12 12"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="12"
|
||||
width="12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="matrix(1.0000159,0,0,1.0000019,-1074.0835,-344.59866)"
|
||||
id="layer1"
|
||||
style="stroke:#bfbfbf;stroke-width:0.999991;stroke-opacity:1">
|
||||
<rect
|
||||
y="349.09799"
|
||||
x="1075.5664"
|
||||
height="6.0000062"
|
||||
width="6.0000587"
|
||||
id="rect4200"
|
||||
style="opacity:1;fill:none;fill-opacity:0.501961;stroke:#bfbfbf;stroke-width:0.999991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4200-1"
|
||||
d="m 1078.5663,348.09799 v -2 h 6 v 6 h -2"
|
||||
style="opacity:1;fill:none;fill-opacity:0.501961;stroke:#bfbfbf;stroke-width:0.999991;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
53
src/Gui/Stylesheets/overlay/float_lighter.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 12 12"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="12"
|
||||
width="12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="matrix(1.1111184,0,0,1.1111102,-1194.0816,-383.55299)"
|
||||
id="layer1"
|
||||
style="stroke:#ffffff;stroke-width:0.999991;stroke-opacity:1">
|
||||
<rect
|
||||
y="349.09799"
|
||||
x="1075.5664"
|
||||
height="6.0000062"
|
||||
width="6.0000587"
|
||||
id="rect4200"
|
||||
style="opacity:1;fill:none;fill-opacity:0.501961;stroke:#ffffff;stroke-width:0.999991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4200-1"
|
||||
d="m 1078.5663,348.09799 v -2 h 6 v 6 h -2"
|
||||
style="opacity:1;fill:none;fill-opacity:0.501961;stroke:#ffffff;stroke-width:0.999991;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
346
src/Gui/Stylesheets/overlay/mode_light.svg
Normal file
|
After Width: | Height: | Size: 17 KiB |
346
src/Gui/Stylesheets/overlay/mode_lighter.svg
Normal file
|
After Width: | Height: | Size: 17 KiB |
33
src/Gui/Stylesheets/overlay/overlay_light.svg
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
viewBox="0 0 12 12"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1" />
|
||||
<g
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:none;stroke:#bfbfbf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect1"
|
||||
width="9.000001"
|
||||
height="9.0000019"
|
||||
x="1.5"
|
||||
y="1.4999989"
|
||||
ry="4.9960045e-17" />
|
||||
<rect
|
||||
style="fill:#bfbfbf;fill-opacity:1;stroke:none;stroke-width:0.936846;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-opacity:0.501961"
|
||||
id="rect2"
|
||||
width="7.9999995"
|
||||
height="1"
|
||||
x="2"
|
||||
y="4"
|
||||
ry="5.5511148e-17" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 940 B |
29
src/Gui/Stylesheets/overlay/overlay_lighter.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
viewBox="0 0 12 12"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs1" />
|
||||
<g
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;-inkscape-stroke:none;fill-opacity:1"
|
||||
d="M 1.5,1 A 0.50004899,0.50004899 0 0 0 1,1.5 v 9 A 0.50004899,0.50004899 0 0 0 1.5,11 h 9 A 0.50004899,0.50004899 0 0 0 11,10.5 v -9 A 0.50004899,0.50004899 0 0 0 10.5,1 Z M 2,2 h 8 v 8 H 2 Z"
|
||||
id="rect1" />
|
||||
<rect
|
||||
style="fill:#ffffff;stroke:none;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-opacity:0.501961;fill-opacity:1"
|
||||
id="rect2"
|
||||
width="9.1148882"
|
||||
height="1"
|
||||
x="1.4425559"
|
||||
y="4"
|
||||
ry="5.5511148e-17" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1023 B |
29
src/Gui/Stylesheets/overlay/taskshow_light.svg
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="svg6528"
|
||||
height="12"
|
||||
width="12"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata6538">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6536" />
|
||||
<path
|
||||
id="path4139-0"
|
||||
style="color:#000000;fill:#bfbfbf;fill-opacity:0.99875158;fill-rule:evenodd;-inkscape-stroke:none"
|
||||
d="M 3,8 V 9 H 9 V 8 Z M 3,6 V 7 H 9 V 6 Z M 3,4 V 5 H 9 V 4 Z M 3,0.37795276 V 0.87795274 3.3779528 H 9 V 0.37795276 Z M 4,1.3779528 h 4 v 1 H 4 Z M 1,1.5 V 11 H 11 V 1.5 H 9 v 1 h 1 V 10 H 2 V 2.5 h 1 v -1 z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1007 B |
51
src/Gui/Stylesheets/overlay/transparent_light.svg
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
viewBox="0 0 12 12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<ellipse
|
||||
ry="1.9936409"
|
||||
rx="1.9999999"
|
||||
cy="6"
|
||||
cx="6"
|
||||
id="path5584"
|
||||
style="opacity:1;fill:#bfbfbf;fill-opacity:1;stroke:none;stroke-width:0.999992;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:0.501961" />
|
||||
<ellipse
|
||||
ry="4.5"
|
||||
rx="5.5"
|
||||
cy="6"
|
||||
cx="6"
|
||||
id="path5586"
|
||||
style="opacity:1;fill:none;fill-opacity:0.501961;stroke:#bfbfbf;stroke-width:0.999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
48
src/Gui/Stylesheets/overlay/transparent_lighter.svg
Normal file
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="12"
|
||||
height="12"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
viewBox="0 0 12 12"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Pablo Gil</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>SVG</rdf:li>
|
||||
<rdf:li>template</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<ellipse
|
||||
ry="1.9936409"
|
||||
rx="1.9999999"
|
||||
cy="6"
|
||||
cx="6"
|
||||
id="path5584"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.999992;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:63;stroke-opacity:0.501961" />
|
||||
<path
|
||||
style="color:#000000;fill:#ffffff;stroke-linecap:square;stroke-linejoin:round;stroke-dashoffset:63;-inkscape-stroke:none;fill-opacity:1"
|
||||
d="M 6,1 C 2.7413482,1 0,3.1844528 0,6 0,8.8155472 2.7413482,11 6,11 9.2586518,11 12,8.8155472 12,6 12,3.1844528 9.2586518,1 6,1 Z m 0,1 c 2.8164744,0 5,1.8449894 5,4 0,2.1550106 -2.1835256,4 -5,4 C 3.1835256,10 1,8.1550106 1,6 1,3.8449894 3.1835256,2 6,2 Z"
|
||||
id="path5586" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |