init styles
1242
DarkStyle/darkStyle.css
Normal file
427
materialStyle/materialStyle.css
Normal file
@ -0,0 +1,427 @@
|
||||
QWidget:window { /* Borders around the code editor and debug window */
|
||||
border: 0px solid #263238;
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QToolTip {
|
||||
background-color: #80CBC4;
|
||||
color: black;
|
||||
padding: 5px;
|
||||
border-radius: 0;
|
||||
opacity: 200;
|
||||
}
|
||||
|
||||
/* ==================== Dialog ==================== */
|
||||
QLabel {
|
||||
background: transparent;
|
||||
color: #CFD8DC; /* Not sure about this one */
|
||||
}
|
||||
|
||||
QDialog, QListView {
|
||||
background-color: #263238;
|
||||
color: #546E7A;
|
||||
outline: 0;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
QListView::item:hover {
|
||||
color: #AFBDC4;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
|
||||
QListView::item:selected {
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* === QTabBar === */
|
||||
QTabBar {
|
||||
background: #263238;
|
||||
}
|
||||
|
||||
QTabWidget::pane {
|
||||
background: transparent; /* Only at the very bottom of the tabs */
|
||||
}
|
||||
|
||||
QTabBar::tab {
|
||||
background: transparent;
|
||||
border: 0px solid transparent;
|
||||
border-bottom: 2px solid transparent;
|
||||
color: #546E7A;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
QTabBar::tab:hover {
|
||||
background-color: transparent;
|
||||
border: 0px solid transparent;
|
||||
border-bottom: 2px solid #80CBC4;
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QTabBar::tab:selected {
|
||||
background-color: transparent;
|
||||
border: 0px solid transparent;
|
||||
border-top: none;
|
||||
border-bottom: 2px solid #80CBC4;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QStackedWidget {
|
||||
background: #263238; /* This covers a bunch of things, I was thinking about making it transparent, */
|
||||
/* but I would have to find all the other elements... but QTabWidget::pane may be it */
|
||||
}
|
||||
|
||||
|
||||
/* === QGroupBox === */
|
||||
QGroupBox {
|
||||
border: 1px solid transparent;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
QGroupBox::title {
|
||||
color: #80CBC4;
|
||||
subcontrol-origin: margin;
|
||||
left: 6px;
|
||||
padding: 0 3px 0 3px;
|
||||
}
|
||||
|
||||
QComboBox {
|
||||
color: #546E7A;
|
||||
background-color: transparent;
|
||||
selection-background-color: transparent;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
QComboBox QAbstractItemView
|
||||
{
|
||||
selection-background-color: transparent;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* === QCheckBox === */
|
||||
QCheckBox, QRadioButton {
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QCheckBox::indicator::unchecked {
|
||||
background-color: #263238;
|
||||
border: 1px solid #536D79;
|
||||
}
|
||||
|
||||
QRadioButton::indicator::unchecked {
|
||||
background-color: #263238;
|
||||
border: 1px solid #536D79;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
QCheckBox::indicator::checked, QTreeView::indicator::checked {
|
||||
background-color: qradialgradient(cx:0.5, cy:0.5, fx:0.25, fy:0.15, radius:0.3, stop:0 #80CBC4, stop:1 #263238);
|
||||
border: 1px solid #536D79;
|
||||
}
|
||||
|
||||
QRadioButton::indicator::checked {
|
||||
background-color: qradialgradient(cx:0.5, cy:0.5, fx:0.25, fy:0.15, radius:0.3, stop:0 #80CBC4, stop:1 #263238);
|
||||
border: 1px solid #536D79;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
QCheckBox::indicator:disabled, QRadioButton::indicator:disabled, QTreeView::indicator:disabled {
|
||||
background-color: #444444; /* Not sure what this looks like */
|
||||
}
|
||||
|
||||
QCheckBox::indicator::checked:disabled, QRadioButton::indicator::checked:disabled, QTreeView::indicator::checked:disabled {
|
||||
background-color: qradialgradient(cx:0.5, cy:0.5, fx:0.25, fy:0.15, radius:0.3, stop:0 #BBBBBB, stop:1 #444444); /* Not sure what this looks like */
|
||||
}
|
||||
|
||||
QTreeView {
|
||||
background-color: transparent;
|
||||
color: #546E7A;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
QTreeView::item:hover {
|
||||
background-color: transparent;
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QTreeView::item:selected {
|
||||
background-color: transparent;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QTreeView QHeaderView:section {
|
||||
background-color: #263238;
|
||||
color: #CFD8DC;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
QTreeView::indicator:checked {
|
||||
background-color: qradialgradient(cx:0.5, cy:0.5, fx:0.25, fy:0.15, radius:0.3, stop:0 #80CBC4, stop:1 #263238);
|
||||
border: 1px solid #536D79;
|
||||
selection-background-color: transparent;
|
||||
}
|
||||
|
||||
QTreeView::indicator:unchecked { /* This and the one above style the checkbox in the Options -> Keyboard */
|
||||
background-color: #263238; /* This is still a hover over in blue I can't get rid of */
|
||||
border: 1px solid #536D79;
|
||||
selection-background-color: transparent;
|
||||
}
|
||||
|
||||
/*QTreeView QScrollBar {
|
||||
background-color: #263238
|
||||
}*/
|
||||
|
||||
QTreeView::branch {
|
||||
/* Skip - applies to everything */
|
||||
}
|
||||
|
||||
QTreeView::branch:has-siblings:adjoins-item {
|
||||
/* Skip - files */
|
||||
}
|
||||
|
||||
QTreeView::branch:has-siblings:!adjoins-item {
|
||||
/* Skip - applies to almost all on the left side */
|
||||
}
|
||||
|
||||
QTreeView::branch:closed:has-children:has-siblings {
|
||||
background: url('./images/rightarrowgray.png') center center no-repeat;
|
||||
}
|
||||
|
||||
QTreeView::branch:has-children:!has-siblings:closed {
|
||||
background: url('./images/rightarrowgray.png') center center no-repeat;
|
||||
}
|
||||
|
||||
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
|
||||
/* Skip - files */
|
||||
}
|
||||
|
||||
QTreeView::branch:open:has-children:has-siblings {
|
||||
background: url('./images/downarrowgray.png') center center no-repeat;
|
||||
}
|
||||
|
||||
QTreeView::branch:open:has-children:!has-siblings {
|
||||
background: url('./images/downarrowgray.png') center center no-repeat;
|
||||
}
|
||||
|
||||
/* === QScrollBar:horizontal === */
|
||||
QScrollBar:horizontal {
|
||||
background: #263238; /* Background where slider is not */
|
||||
height: 10px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
QScrollBar:vertical {
|
||||
background: #263238; /* Background where slider is not */
|
||||
width: 10px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
QScrollBar::handle:horizontal {
|
||||
background: #37474F; /* Slider color */
|
||||
min-width: 16px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
QScrollBar::handle:vertical {
|
||||
background: #37474F; /* Slider color */
|
||||
min-height: 16px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal,
|
||||
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
|
||||
background: none; /* Removes the dotted background */
|
||||
}
|
||||
|
||||
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal,
|
||||
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { /* Hides the slider arrows */
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
QPushButton {
|
||||
background-color: transparent;
|
||||
color: #546E7A;
|
||||
border: 1px solid transparent;
|
||||
padding: 4px 22px;
|
||||
}
|
||||
|
||||
QPushButton:hover {
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QPushButton:pressed {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QLineEdit {
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
color: #546E7A;
|
||||
}
|
||||
|
||||
QSpinBox {
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
color: #546E7A;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
Main Screen
|
||||
*****************************************************************************/
|
||||
QTreeView {
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QMenu {
|
||||
background-color: #263238; /* File Menu Background color */
|
||||
color: #546E7A;
|
||||
}
|
||||
|
||||
QMenu::item:selected {
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QMenu::item:pressed {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QMenu::separator {
|
||||
height: 1px;
|
||||
background: transparent; /* Could change this to #546E7A and reduce the margin top and bottom to 1px */
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* === QMenuBar === */
|
||||
QMenuBar {
|
||||
background-color: #263238;
|
||||
color: #546E7A;
|
||||
}
|
||||
|
||||
QMenuBar::item {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
QMenuBar::item:disabled {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
QMenuBar::item:selected {
|
||||
color: #AFBDC4;
|
||||
}
|
||||
|
||||
QMenuBar::item:pressed {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QToolBar {
|
||||
background: #263238;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
QToolBar:handle {
|
||||
background: transparent;
|
||||
border-left: 2px dotted #80CBC4; /* Fix the 4 handle dots so it doesn't look crappy */
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
QToolBar::separator {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* === QToolButton === */
|
||||
QToolButton:hover, QToolButton:pressed {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
QToolButton::menu-button {
|
||||
background: url('./images/downarrowgray.png') center center no-repeat;
|
||||
background-color: #263238; /* This needs to be set to ensure the other brown arrows don't show */
|
||||
}
|
||||
|
||||
QToolButton::menu-button:hover, QToolButton::menu-button:pressed {
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QStatusBar {
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QLabel {
|
||||
color: #546E7A; /* Text at the bottom right corner of the screen */
|
||||
}
|
||||
|
||||
QToolButton { /* I don't like how the items depress */
|
||||
color: #546E7A;
|
||||
}
|
||||
|
||||
QToolButton:hover, QToolButton:pressed, QToolButton:checked {
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QToolButton:hover {
|
||||
color: #AFBDC4;
|
||||
|
||||
}
|
||||
|
||||
QToolButton:checked, QToolButton:pressed {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
QToolButton {
|
||||
border: 1px solid transparent;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
QToolButton:hover {
|
||||
background-color: transparent; /* I don't like how the down arrows in the top menu bar move down when clicked */
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
|
||||
padding-right: 20px; /* make way for the popup button */
|
||||
}
|
||||
|
||||
QToolButton::menu-button {
|
||||
border-left: 1px solid transparent;
|
||||
background: transparent;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
QToolButton::menu-button:hover {
|
||||
border-left: 1px solid transparent;
|
||||
background: transparent;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
QStatusBar::item {
|
||||
color: #546E7A;
|
||||
background-color: #263238;
|
||||
}
|
||||
|
||||
QAbstractScrollArea { /* Borders around the code editor and debug window */
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
Play around with these settings
|
||||
*****************************************************************************/
|
||||
|
||||
/* Force the dialog's buttons to follow the Windows guidelines. */
|
||||
QDialogButtonBox {
|
||||
button-layout: 0;
|
||||
}
|
||||
|
||||
QTabWidget::tab-bar {
|
||||
left: 0px; /* Test this out on OS X, it will affect the tabs in the Options Dialog, on OS X they are centered */
|
||||
}
|
||||
|
BIN
res/Hmovetoolbar.png
Normal file
After Width: | Height: | Size: 220 B |
BIN
res/Hsepartoolbar.png
Normal file
After Width: | Height: | Size: 172 B |
BIN
res/Vmovetoolbar.png
Normal file
After Width: | Height: | Size: 228 B |
BIN
res/Vsepartoolbar.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
res/branch_closed-on.png
Normal file
After Width: | Height: | Size: 147 B |
BIN
res/branch_closed.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
res/branch_open-on.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
res/branch_open.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
res/checkbox_checked.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
res/checkbox_checked_disabled.png
Normal file
After Width: | Height: | Size: 491 B |
BIN
res/checkbox_checked_focus.png
Normal file
After Width: | Height: | Size: 252 B |
BIN
res/checkbox_indeterminate.png
Normal file
After Width: | Height: | Size: 493 B |
BIN
res/checkbox_indeterminate_disabled.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
res/checkbox_indeterminate_focus.png
Normal file
After Width: | Height: | Size: 249 B |
BIN
res/checkbox_unchecked.png
Normal file
After Width: | Height: | Size: 464 B |
BIN
res/checkbox_unchecked_disabled.png
Normal file
After Width: | Height: | Size: 464 B |
BIN
res/checkbox_unchecked_focus.png
Normal file
After Width: | Height: | Size: 240 B |
BIN
res/close-hover.png
Normal file
After Width: | Height: | Size: 598 B |
BIN
res/close-pressed.png
Normal file
After Width: | Height: | Size: 598 B |
BIN
res/close.png
Normal file
After Width: | Height: | Size: 586 B |
BIN
res/down_arrow.png
Normal file
After Width: | Height: | Size: 165 B |
BIN
res/down_arrow_disabled.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
res/left_arrow.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
res/left_arrow_disabled.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
res/radio_checked.png
Normal file
After Width: | Height: | Size: 940 B |
BIN
res/radio_checked_disabled.png
Normal file
After Width: | Height: | Size: 972 B |
BIN
res/radio_checked_focus.png
Normal file
After Width: | Height: | Size: 846 B |
BIN
res/radio_unchecked.png
Normal file
After Width: | Height: | Size: 728 B |
BIN
res/radio_unchecked_disabled.png
Normal file
After Width: | Height: | Size: 760 B |
BIN
res/radio_unchecked_focus.png
Normal file
After Width: | Height: | Size: 646 B |
BIN
res/right_arrow.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
res/right_arrow_disabled.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
res/sizegrip.png
Normal file
After Width: | Height: | Size: 129 B |
BIN
res/stylesheet-branch-end.png
Normal file
After Width: | Height: | Size: 224 B |
BIN
res/stylesheet-branch-more.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
res/stylesheet-vline.png
Normal file
After Width: | Height: | Size: 239 B |
61
res/svg/assign.svg
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (3ce5693, 2018-03-11)"
|
||||
sodipodi:docname="assign.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="415.81613"
|
||||
inkscape:cy="795.88384"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#020202;stroke-width:0.14138965"
|
||||
d="m 152.70309,244.70345 c -12.61483,-1.12591 -23.75707,-6.36207 -32.5254,-15.28492 -4.12531,-4.19803 -7.15883,-8.533 -9.80904,-14.01735 -2.69322,-5.57336 -4.24095,-10.90343 -4.9907,-17.18693 -0.34268,-2.87192 -0.34268,-8.96641 0,-11.83832 0.75865,-6.35813 2.30829,-11.65886 5.06621,-17.32958 2.64665,-5.44192 5.62562,-9.68465 9.75589,-13.89458 4.08779,-4.16663 8.30469,-7.23253 13.65156,-9.92543 5.57247,-2.80651 10.7814,-4.38348 17.02941,-5.1555 2.82218,-0.34871 8.81109,-0.34871 11.63326,0 6.17468,0.76297 11.41244,2.33799 16.88927,5.07868 5.40323,2.70385 9.64764,5.78228 13.80392,10.01182 7.62385,7.75822 12.7031,17.79574 14.42415,28.50462 0.51633,3.21284 0.63867,4.86554 0.63867,8.62912 0,3.7636 -0.12229,5.4163 -0.63867,8.62913 -2.90629,18.08399 -15.16932,33.50955 -32.01239,40.26805 -4.17723,1.67618 -8.3444,2.73533 -13.03486,3.31303 -2.17988,0.26848 -7.82492,0.38168 -9.88128,0.19816 z m -1.392,-30.17166 c 1.98772,-0.59413 1.34533,0.009 17.81107,-16.73523 9.41688,-9.57645 15.56193,-15.93199 15.86905,-16.41269 2.71609,-4.25101 0.61459,-9.85451 -4.24653,-11.32307 -0.94261,-0.28476 -2.76763,-0.29578 -3.77552,-0.0228 -1.90805,0.51681 -1.45203,0.0961 -14.87788,13.72658 -6.90079,7.00598 -12.63768,12.73812 -12.74869,12.73812 -0.11104,0 -2.50658,-2.33001 -5.32351,-5.17777 -4.16498,-4.21055 -5.28125,-5.2623 -5.97573,-5.63033 -4.12016,-2.18343 -9.01606,-0.1394 -10.51438,4.38973 -0.18387,0.55575 -0.25956,1.20032 -0.25962,2.21077 -1e-4,1.6083 0.31171,2.78427 1.06306,4.00914 0.61921,1.0094 16.26711,16.8867 17.15245,17.40392 1.74934,1.0219 4.0669,1.34952 5.82623,0.82364 z M 1.9196561,184.63637 c -0.3836281,-0.3904 -0.1313073,-6.8532 0.3991512,-10.22353 1.8571789,-11.79996 8.9674077,-22.54229 18.9668597,-28.65564 6.014543,-3.6771 12.34933,-5.62739 19.381904,-5.96712 2.011591,-0.0972 5.340919,0.034 5.640184,0.2222 0.122987,0.0774 -0.164472,0.76765 -1.019157,2.44735 -2.90789,5.71474 -4.904129,11.85373 -5.892864,18.12214 -0.584015,3.70258 -0.672889,5.4346 -0.763718,14.88295 l -0.08913,9.27096 -18.227267,0.0362 c -14.0607971,0.0279 -18.2658281,-0.003 -18.3959753,-0.13549 z m 51.6062589,-0.0292 c -0.04148,-0.10992 -0.0505,-4.52254 -0.01993,-9.80582 0.06002,-10.39882 0.07606,-10.64815 0.949386,-14.74066 2.507472,-11.74993 9.919443,-22.31738 20.122737,-28.68959 2.057293,-1.28484 5.886335,-3.16103 8.115166,-3.97637 11.856069,-4.33716 25.253916,-3.26739 36.161226,2.88732 1.92027,1.08354 4.83554,3.05013 4.83554,3.26195 0,0.0956 -0.64649,0.57478 -1.43664,1.06497 -8.41005,5.21736 -15.61145,12.30028 -21.03105,20.68502 -5.370355,8.30859 -8.758366,17.38219 -10.186864,27.28207 -0.156872,1.08712 -0.319973,2.03383 -0.362461,2.10378 -0.04461,0.0734 -7.889877,0.1272 -18.574474,0.1272 -15.733521,0 -18.508493,-0.0298 -18.572594,-0.19986 z M 39.664179,124.59191 c -1.72914,-0.17734 -4.193729,-0.75487 -5.956799,-1.39589 -8.593282,-3.12437 -14.772186,-10.41472 -16.68666,-19.68824 -0.435635,-2.11019 -0.539327,-6.401169 -0.210315,-8.703397 2.31783,-16.218809 18.314693,-26.388906 33.43584,-21.257033 0.886512,0.300869 1.990275,0.732276 2.452796,0.958687 l 0.840957,0.411653 -0.04999,3.562122 c -0.05212,3.721459 0.07943,5.773588 0.552244,8.610871 1.263998,7.585321 4.465571,14.766757 9.247018,20.741997 0.804909,1.00588 1.582581,1.97979 1.728159,2.16426 0.262665,0.33284 0.261187,0.34169 -0.193979,1.16636 -1.328161,2.40636 -2.757132,4.26378 -4.880316,6.34354 -1.91724,1.87804 -3.665547,3.14266 -6.057838,4.38187 -4.454686,2.30755 -9.229294,3.21511 -14.221168,2.7032 z m 110.726281,0.0113 c -4.66119,-0.4927 -9.64729,-2.56529 -13.23805,-5.50271 -1.25145,-1.02373 -3.32573,-3.15978 -4.32316,-4.45193 -0.84483,-1.09443 -2.69188,-4.04475 -2.69188,-4.29978 0,-0.0591 0.5743,-0.80404 1.27624,-1.65562 5.47438,-6.64137 8.8098,-14.144374 10.10404,-22.728914 0.26927,-1.7861 0.31375,-2.680844 0.32611,-6.560992 l 0.0144,-4.492852 0.83226,-0.408018 c 1.21663,-0.596455 3.84781,-1.459253 5.46482,-1.79199 6.18364,-1.272425 12.80257,-0.06829 18.26874,3.323491 5.23772,3.250011 9.19135,8.315685 11.0953,14.216064 0.86277,2.673731 1.14081,4.381993 1.21798,7.482922 0.0971,3.902009 -0.3231,6.553969 -1.58578,10.008459 -4.02963,11.02421 -15.22898,18.08084 -26.76097,16.86187 z M 95.587952,109.6358 C 89.354457,109.18666 83.431788,106.71844 78.536876,102.52995 72.055433,96.983879 68.194104,88.472737 68.187851,79.718583 c -0.005,-7.881689 3.060317,-15.505714 8.474057,-21.072286 4.6275,-4.758137 10.517841,-7.765056 17.018695,-8.687747 2.056603,-0.291909 5.969495,-0.290971 8.033097,0.0022 11.19069,1.588344 20.3912,9.392947 23.99515,20.354639 1.05434,3.206845 1.58098,7.058327 1.43775,10.514473 -0.31621,7.629252 -3.26516,14.592815 -8.42779,19.901198 -6.1126,6.28515 -14.52785,9.5249 -23.130858,8.90502 z"
|
||||
id="path21"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
96
res/svg/checkbox_checked.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_checked.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_checked.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="5.8255992"
|
||||
inkscape:cy="4.5235727"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#a19f9f;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#a19f9f;fill-opacity:1;stroke:#a19f9f;stroke-width:1.29718292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="14.702817"
|
||||
height="14.702817"
|
||||
x="8.648591"
|
||||
y="1029.0107"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
96
res/svg/checkbox_checked_disabled.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_checked_disabled.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_checked_disabled.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="-8.9794497"
|
||||
inkscape:cy="4.5235727"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#615f5f;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#615f5f;fill-opacity:1;stroke:#615f5f;stroke-width:1.29718292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="14.702817"
|
||||
height="14.702817"
|
||||
x="8.648591"
|
||||
y="1029.0107"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
96
res/svg/checkbox_checked_focus.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_checked.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_checked_focus.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="-8.9794497"
|
||||
inkscape:cy="4.5235727"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#3d8ec9;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#3d8ec9;fill-opacity:1;stroke:#3d8ec9;stroke-width:1.29718292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="14.702817"
|
||||
height="14.702817"
|
||||
x="8.648591"
|
||||
y="1029.0107"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
96
res/svg/checkbox_indeterminate.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_indeterminate.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_indeterminate.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.655786"
|
||||
inkscape:cx="11.83601"
|
||||
inkscape:cy="14.365309"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#a19f9f;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#a19f9f;fill-opacity:1;stroke:#a19f9f;stroke-width:1.01589644;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="18.9841"
|
||||
height="6.9841037"
|
||||
x="6.5079508"
|
||||
y="1032.87"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
96
res/svg/checkbox_indeterminate_disabled.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_indeterminate_disabled.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_indeterminate_disabled.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.655786"
|
||||
inkscape:cx="1.1370901"
|
||||
inkscape:cy="14.365309"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#615f5f;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#615f5f;fill-opacity:1;stroke:#615f5f;stroke-width:1.01589644;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="18.9841"
|
||||
height="6.9841037"
|
||||
x="6.5079508"
|
||||
y="1032.87"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
96
res/svg/checkbox_indeterminate_focus.svg
Normal file
@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_indeterminate_focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_indeterminate_focus.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.655786"
|
||||
inkscape:cx="1.1370901"
|
||||
inkscape:cy="14.365309"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4203" />
|
||||
<sodipodi:guide
|
||||
position="-15,16"
|
||||
orientation="0,1"
|
||||
id="guide4205" />
|
||||
<sodipodi:guide
|
||||
position="16,22.000001"
|
||||
orientation="1,0"
|
||||
id="guide4207" />
|
||||
</sodipodi:namedview>
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#3d8ec9;stroke-width:1.74481475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2347"
|
||||
ry="3.9677963"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
style="opacity:1;fill:#3d8ec9;fill-opacity:1;stroke:#3d8ec9;stroke-width:1.01589644;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4159"
|
||||
width="18.9841"
|
||||
height="6.9841037"
|
||||
x="6.5079508"
|
||||
y="1032.87"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
71
res/svg/checkbox_unchecked.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_unchecked.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_unchecked.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.296875"
|
||||
inkscape:cx="5.0143756"
|
||||
inkscape:cy="15.015026"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#a19f9f;stroke-width:1.74481463;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2346"
|
||||
ry="3.9677958"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
71
res/svg/checkbox_unchecked_disabled.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_checked_disabled.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_unchecked_disabled.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.296875"
|
||||
inkscape:cx="4.4761835"
|
||||
inkscape:cy="14.431985"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#615f5f;stroke-width:1.74481463;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2346"
|
||||
ry="3.9677958"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
71
res/svg/checkbox_unchecked_focus.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:export-filename="/home/colin/checkbox_unchecked_focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="checkbox_unchecked_focus.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.296875"
|
||||
inkscape:cx="16.204284"
|
||||
inkscape:cy="14.297437"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1051"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<rect
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#3d8ec9;stroke-width:1.74481463;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3338"
|
||||
width="26.255186"
|
||||
height="26.255186"
|
||||
x="2.8724074"
|
||||
y="1023.2346"
|
||||
ry="3.9677958"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
95
res/svg/edit.svg
Normal file
@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (3ce5693, 2018-03-11)"
|
||||
sodipodi:docname="drawing.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="795.65978"
|
||||
inkscape:cy="876.04367"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g32"
|
||||
transform="matrix(0.75216001,0,0,0.75800043,42.541699,35.957564)">
|
||||
<path
|
||||
style="fill:#d1d1d1;stroke-width:0.26458332"
|
||||
d="m -8.3954614,273.08641 c -0.5820833,-0.12082 -1.5033942,-0.22653 -2.0473566,-0.23492 -1.484791,-0.0229 -5.787016,-1.47407 -9.065143,-3.05775 -11.565433,-5.58734 -19.980592,-15.75622 -23.09974,-27.91375 l -0.712759,-2.77812 v -91.28125 c 0,-73.0431 0.0674,-91.571998 0.337349,-92.736453 1.107669,-4.778097 3.865349,-10.916628 6.71344,-14.943953 2.092676,-2.959136 6.797871,-7.758231 9.684859,-9.878136 5.59091,-4.105384 11.904325,-6.774031 18.6332924,-7.876195 2.50086,-0.409625 8.49600858,-0.457089 71.1258476,-0.563108 59.637972,-0.100955 68.460872,-0.06638 68.910902,0.27006 0.48849,0.365187 0.13818,0.773412 -6.54459,7.626607 -3.88339,3.982422 -9.58743,9.651783 -12.67563,12.59858 l -5.61491,5.357812 -41.286323,0.02603 C 43.256299,47.716175 19.676829,47.818693 13.564954,47.929676 0.99137021,48.157992 0.86692874,48.17518 -3.6329615,50.304615 -10.303583,53.461287 -15.266431,59.517438 -17.306509,66.990417 l -0.613952,2.248958 v 78.581245 78.58125 l 0.615852,2.24896 c 2.622785,9.57784 10.0010063,16.73387 19.2278972,18.64886 1.9444917,0.40357 8.4440838,0.4392 79.9041638,0.43804 56.400648,-8e-4 78.296678,-0.0832 79.639488,-0.2993 5.33503,-0.85854 9.86661,-3.34582 13.96089,-7.66282 2.32977,-2.4565 4.08159,-5.23311 5.14987,-8.16249 1.45236,-3.98258 1.39443,-1.70936 1.39591,-54.77775 7.9e-4,-27.0177 0.0799,-50.30992 0.17599,-51.76049 l 0.17462,-2.63741 12.30115,-12.3777 c 9.24552,-9.30303 12.4551,-12.377688 12.92089,-12.377688 h 0.61973 l -0.0148,61.846348 c -0.008,34.0155 -0.11889,65.65636 -0.24611,70.31302 -0.20768,7.60142 -0.29838,8.75058 -0.88756,11.24479 -2.50118,10.58836 -8.75137,19.40115 -18.2987,25.80123 -4.40383,2.95212 -9.76331,5.34162 -13.49345,6.016 -1.92328,0.34772 -181.9628238,0.52709 -183.6208246,0.18294 z M 43.97795,184.6564 c -0.08027,-0.20917 0.821309,-3.76076 2.003505,-7.89242 2.688277,-9.39528 12.545707,-43.66876 13.251719,-46.07513 0.421074,-1.43519 0.627943,-1.78594 1.053354,-1.78594 0.341667,0 4.113855,3.54337 10.638276,9.99296 5.559893,5.49612 14.507823,14.3159 19.884286,19.59952 8.201514,8.05988 9.73066,9.67748 9.49759,10.04698 -0.343105,0.54393 -6.837911,2.68058 -15.039645,4.94771 -3.346979,0.92518 -13.586354,3.81818 -22.754166,6.4289 -19.188826,5.46441 -18.339275,5.24727 -18.534919,4.73742 z m 60.60367,-22.32 c -3.79209,-3.44122 -38.761459,-38.63765 -38.761459,-39.01314 0,-0.26178 18.963761,-19.35129 43.783549,-44.07388 34.83846,-34.702034 43.91888,-43.612087 44.44598,-43.612087 0.52291,0 4.84293,4.142408 20.5102,19.66696 12.00915,11.899751 19.84777,19.859749 19.84777,20.155114 0,0.579128 -87.6356,87.673453 -88.31775,87.772263 -0.24748,0.0359 -0.92621,-0.36701 -1.50829,-0.89523 z M 182.59965,52.239682 C 168.00006,37.725166 160.68464,30.146824 160.33209,29.171817 c -0.11884,-0.32867 11.56795,-12.015925 12.9089,-12.909409 2.54598,-1.696413 3.27627,-1.934991 6.42562,-2.099194 1.87639,-0.09783 3.35613,-0.045 4.02542,0.14372 1.26107,0.355584 4.77889,3.130026 9.98148,7.87221 3.22943,2.943637 19.08756,19.157345 20.79559,21.261868 1.21262,1.494125 1.71133,6.034836 0.99285,9.039888 -0.6293,2.632051 -1.64613,4.096843 -5.57617,8.032747 -5.53655,5.544804 -9.13523,8.858046 -9.62091,8.857806 -0.23829,-1.17e-4 -8.18764,-7.709413 -17.66522,-17.131771 z"
|
||||
id="path46"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#b0b0b0;stroke-width:0.26458332"
|
||||
d="m -9.4324904,272.92884 c -4.7199786,-0.73071 -10.5927826,-3.17594 -15.3783016,-6.40296 -9.19751,-6.20217 -15.419569,-15.26165 -18.017123,-26.23339 -0.444162,-1.87608 -0.474594,-6.79955 -0.55766,-90.22291 -0.05686,-57.102333 0.0051,-89.312201 0.175537,-91.281246 0.452501,-5.227177 2.239443,-10.591591 5.130419,-15.401562 2.259293,-3.758983 3.792878,-5.703915 7.049303,-8.940104 3.425018,-3.403734 6.815625,-5.843439 10.993188,-7.910129 6.056125,-2.996037 9.679027,-3.896479 17.1979164,-4.274399 8.2223819,-0.41328 134.9374916,-0.217554 134.9374916,0.208426 0,0.372908 -18.52572,19.077863 -22.4743,22.691727 l -2.60179,2.38125 L 54.869613,47.68125 2.7170382,47.818955 0.60037163,48.413061 C -7.2766602,50.623978 -13.70917,56.528993 -16.610207,64.212292 c -1.530341,4.053059 -1.436793,-1.351513 -1.445294,83.499728 -0.0086,85.91495 -0.127016,79.61946 1.580805,84.04799 1.285846,3.33431 3.248668,6.25788 6.083787,9.06165 3.3855843,3.34815 6.3966139,5.09544 11.25586395,6.53174 1.50140715,0.44379 5.82041245,0.47363 79.63958005,0.55033 54.690335,0.0568 78.707535,-0.004 80.241975,-0.20399 10.45913,-1.36161 19.30167,-9.74265 21.08825,-19.98762 0.35036,-2.00915 0.40206,-8.8871 0.40206,-53.49072 v -51.18512 l 1.64186,-1.76304 c 4.74504,-5.09526 23.15761,-23.326574 23.5585,-23.326574 0.43959,0 0.46774,1.66031 0.53037,31.286974 0.0966,45.68139 -0.0738,99.68091 -0.33038,104.70885 -0.3313,6.49235 -1.39527,10.74455 -3.97495,15.88617 -3.58553,7.1464 -9.88336,13.90251 -16.85582,18.08241 -2.20238,1.3203 -6.67715,3.40043 -8.80291,4.0921 -4.45114,1.44829 1.53694,1.36512 -95.51458,1.32659 -74.7283633,-0.0297 -89.9523078,-0.0961 -91.9214004,-0.40092 z M 44.234874,184.37186 c -0.108331,-0.2823 7.68855,-27.79491 14.631272,-51.6289 0.729576,-2.50459 1.122119,-3.45934 1.448113,-3.52209 0.294478,-0.0567 4.270549,3.6931 11.641666,10.97911 6.156944,6.08586 15.046613,14.84518 19.75482,19.46517 5.396235,5.29512 8.508465,8.53524 8.419945,8.76593 -0.181781,0.47371 -7.390621,2.78914 -16.583447,5.32649 -4.001822,1.10456 -12.395728,3.4803 -18.653124,5.27942 -11.995901,3.44905 -20.009071,5.69301 -20.329723,5.69301 -0.10565,0 -0.253936,-0.16116 -0.329522,-0.35814 z M 85.585144,143.2187 65.687869,123.36312 79.710785,109.3144 c 7.712604,-7.7268 27.561265,-27.503594 44.108135,-43.948437 22.87925,-22.73818 30.18015,-29.846592 30.48157,-29.677911 0.9793,0.548048 39.84258,39.330495 39.84258,39.759718 0,0.595474 -87.4228,87.42028 -88.14322,87.5403 -0.384,0.064 -5.64845,-5.03406 -20.414706,-19.76937 z M 186.54537,55.944751 c -7.53569,-7.423337 -15.13118,-14.969807 -16.87887,-16.769927 -3.50426,-3.609379 -8.8409,-9.464562 -9.02497,-9.901891 -0.13082,-0.310792 10.53815,-11.221592 12.20258,-12.479189 0.58209,-0.439804 1.83224,-1.193749 2.77813,-1.675433 1.65611,-0.843359 1.83808,-0.876465 4.91408,-0.894028 l 3.1943,-0.01824 2.05434,1.545049 c 3.37221,2.536194 7.37416,6.103663 12.05399,10.74532 5.6727,5.626416 16.184,16.602291 16.78407,17.525875 0.61482,0.946295 1.19478,3.44737 1.20646,5.202856 0.0133,2.005624 -0.67236,4.406524 -1.78669,6.255898 -1.11677,1.853425 -7.02834,7.840689 -13.68428,13.859513 -0.0615,0.05565 -6.27746,-5.972464 -13.81314,-13.395803 z"
|
||||
id="path44"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#919191;stroke-width:0.26458332"
|
||||
d="m -8.7923363,272.97522 c -15.6698007,-2.65279 -29.3680877,-15.29937 -33.3945797,-30.83064 -0.715901,-2.76143 -0.811303,-3.64196 -1.031992,-9.525 -0.13846,-3.69101 -0.209802,-42.71205 -0.16568,-90.61979 l 0.07749,-84.137498 0.556301,-2.38125 c 1.912603,-8.186903 5.486636,-14.5612 11.582053,-20.656617 6.239383,-6.239383 12.941897,-9.941428 21.3758048,-11.806643 2.2707387,-0.502189 3.7319266,-0.558628 19.3891448,-0.74892 21.1443274,-0.25698 107.3484944,-0.318672 115.9769444,-0.083 3.51606,0.09604 6.39284,0.262463 6.39284,0.369837 0,0.333729 -14.95633,15.439846 -20.06821,20.269195 l -4.85468,4.586356 -45.548447,0.02173 c -25.051646,0.01195 -48.703604,0.114205 -52.5599057,0.227227 -6.6408033,0.19463 -7.1303459,0.244088 -9.26041631,0.935582 -9.18987049,2.983349 -15.80717899,10.4717 -17.61992699,19.939253 -0.557473,2.911547 -0.556399,155.668108 0.0011,158.571158 1.963546,10.22446 9.6714989,18.28285 19.6031869,20.49442 2.0043537,0.44633 6.2722679,0.47094 80.4333301,0.46381 73.527169,-0.007 78.444619,-0.0358 80.408979,-0.46948 4.98553,-1.10076 8.7124,-3.16874 12.45451,-6.91084 3.14049,-3.14048 4.79962,-5.75037 6.17583,-9.71488 l 0.94257,-2.71528 0.23375,-12.56771 c 0.12856,-6.91223 0.17046,-24.65255 0.0931,-39.42291 -0.0774,-14.77036 -0.0693,-32.86786 0.0179,-40.21667 l 0.15853,-13.36145 12.35868,-12.4089 c 7.56069,-7.59141 12.47648,-12.336091 12.66211,-12.221365 0.36301,0.224351 0.39962,110.176535 0.0428,128.479215 -0.19327,9.91274 -0.28516,11.54878 -0.77572,13.81099 -2.74697,12.66749 -11.5559,23.53901 -23.83762,29.41913 -1.67175,0.80039 -3.95577,1.76023 -5.07558,2.133 -4.7192,1.5709 1.93272,1.47049 -95.462925,1.44096 -70.857533,-0.0215 -89.706634,-0.0965 -91.2812461,-0.36302 z M 44.388912,183.96813 c 0,-0.42063 4.809537,-17.31944 13.587539,-47.74124 1.084106,-3.75718 2.033354,-6.89348 2.109438,-6.96956 0.07608,-0.0761 0.315206,-0.0381 0.531381,0.0844 0.932915,0.52857 39.328213,38.62343 39.268242,38.96098 -0.07932,0.44646 -4.967038,2.1264 -11.70806,4.02415 -2.619375,0.73741 -13.319728,3.77026 -23.778564,6.73967 -10.458836,2.96941 -19.239695,5.39893 -19.51302,5.39893 -0.309949,0 -0.496956,-0.18713 -0.496956,-0.49728 z M 98.935158,156.38647 C 78.353171,136.05041 66.084744,123.69484 66.084744,123.30269 c 0,-0.48037 87.329326,-87.348724 87.945726,-87.481493 0.20657,-0.04449 9.31551,8.818253 20.30973,19.76081 l 19.93516,19.84149 -12.83229,12.861184 c -18.67435,18.716399 -75.0963,74.600619 -75.43232,74.713409 -0.15765,0.0529 -3.34166,-2.92231 -7.075592,-6.61162 z M 190.30661,59.53063 c -16.0263,-15.636811 -27.975,-27.908037 -29.23645,-30.025624 -0.38837,-0.651949 -0.35919,-0.701127 1.36139,-2.294055 0.96706,-0.895303 2.97254,-2.937512 4.45664,-4.538241 3.80238,-4.1012 6.11775,-6.054884 8.7138,-7.352586 2.20035,-1.0999 2.2646,-1.11408 5.04788,-1.11408 2.6947,0 2.86931,0.03469 3.95483,0.78575 2.15461,1.490746 7.80968,6.360138 11.22049,9.661603 5.11843,4.954334 18.55046,19.070637 19.01123,19.979729 1.14516,2.259375 1.26231,5.890236 0.27398,8.49131 -0.73022,1.92179 -2.37614,4.218111 -4.74089,6.61431 -3.03364,3.073993 -9.79997,9.370338 -10.05431,9.355942 -0.12045,-0.0068 -4.62432,-4.310645 -10.00859,-9.564058 z"
|
||||
id="path42"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#6f6f6f;stroke-width:0.26458332"
|
||||
d="m -8.6600447,272.94204 c -5.2243273,-0.92777 -11.3662063,-3.46855 -16.2718743,-6.73138 -3.405915,-2.26532 -9.104916,-7.96426 -11.353729,-11.3536 -2.955528,-4.45447 -4.993583,-9.10639 -6.149052,-14.0354 -0.895997,-3.82215 -1.033532,-18.89266 -0.943478,-103.38201 0.07776,-72.956663 0.11728,-78.944916 0.534298,-80.964602 3.796975,-18.389359 19.349897,-32.41416 37.6246753,-33.927942 5.09061223,-0.421678 136.9206147,-0.363265 136.9206147,0.06067 0,0.278534 -18.22529,18.60321 -23.094,23.219941 l -1.53045,1.451244 -52.047671,0.139301 -52.0476675,0.1393 -2.20077494,0.588592 C -8.2658023,50.56565 -15.363774,57.796234 -17.688497,66.960564 l -0.631581,2.489763 -0.0012,78.365403 -0.0012,78.36541 0.632821,2.49465 c 1.252414,4.93716 3.718871,9.10238 7.522031,12.70279 3.3757022,3.19574 6.8141821,5.09259 11.3360249,6.25356 1.7109334,0.43928 6.2795095,0.46556 80.9237171,0.46556 h 79.110414 l 2.24896,-0.59687 c 8.79453,-2.33407 15.37612,-8.73002 18.17216,-17.65961 l 0.74555,-2.38102 0.1323,-52.28643 0.13229,-52.28643 4.23333,-4.44209 c 4.29777,-4.50971 20.05023,-20.038244 20.4687,-20.177735 0.35078,-0.116924 0.60294,90.487315 0.32311,116.095815 -0.20174,18.46196 -0.32184,23.0111 -0.65311,24.73854 -1.62387,8.46778 -5.34711,15.40258 -11.65642,21.71091 -6.07281,6.07187 -13.18687,10.11534 -21.18228,12.03952 -2.06868,0.49785 -4.14111,0.5089 -91.41354,0.48751 -75.9196388,-0.0186 -89.613961,-0.0782 -91.4135377,-0.39777 z m 53.0489567,-88.7298 c 0,-0.32047 2.073462,-7.60861 9.826431,-34.53953 2.764941,-9.60438 5.205899,-18.08758 5.42435,-18.85157 0.229804,-0.80369 0.549449,-1.38906 0.758505,-1.38906 0.198728,0 6.17426,5.74477 13.278963,12.76615 7.1047,7.02138 15.922876,15.70884 19.595943,19.30546 3.673068,3.59663 6.678305,6.65857 6.678305,6.80432 0,0.34198 -8.19827,2.9561 -16.139582,5.14631 -3.41974,0.94316 -13.301927,3.73317 -21.960416,6.20003 -17.536961,4.99639 -17.462499,4.97695 -17.462499,4.55789 z M 85.74161,143.06686 65.952452,123.33036 106.96287,82.44842 C 129.5186,59.963354 149.3717,40.249297 151.08089,38.639404 l 3.1076,-2.927078 19.845,19.64047 c 10.91475,10.802257 19.845,19.838474 19.845,20.08048 0,0.546103 -87.20097,87.172354 -87.86615,87.287044 -0.33788,0.0583 -6.386334,-5.80602 -20.27073,-19.65346 z m 99.57436,-88.618719 c -8.19933,-8.086402 -16.6326,-16.579416 -18.74058,-18.873365 -4.52998,-4.929616 -5.76999,-6.316318 -5.76933,-6.451842 0.001,-0.234566 10.8217,-11.087814 11.90576,-11.941722 1.51456,-1.19301 4.02629,-2.467703 5.5578,-2.82056 1.68048,-0.387181 4.09566,-0.350877 5.11961,0.07695 1.27842,0.534156 6.89747,5.145649 11.20701,9.197453 2.06825,1.944562 7.39537,7.336176 11.83803,11.981365 7.09362,7.416985 8.14581,8.625605 8.63768,9.921875 1.24025,3.268522 0.89047,6.20245 -1.15381,9.678159 -1.1481,1.952014 -4.4605,5.420646 -10.45082,10.943746 l -3.24346,2.990482 z"
|
||||
id="path40"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#4f4f4f;stroke-width:0.26458332"
|
||||
d="M -6.9402531,273.18659 C -24.60597,270.33553 -38.74322,257.24869 -42.417739,240.34515 c -0.505523,-2.32552 -0.578167,-3.81936 -0.774541,-15.92766 -0.333105,-20.539 -0.31761,-160.777812 0.01813,-164.079769 1.024937,-10.080149 4.862711,-18.10177 12.14077,-25.376337 6.799168,-6.795907 14.830829,-10.876172 23.9608353,-12.172648 2.2723923,-0.322683 137.5867847,-0.720486 138.4040147,-0.406885 0.51951,0.199356 -10.39464,11.541378 -18.77761,19.513751 l -5.52152,5.251066 -43.161814,0.02085 c -23.739003,0.01146 -47.329009,0.11448 -52.422238,0.22892 C 2.4625329,47.598341 2.1172437,47.625651 -0.19337834,48.317216 -9.3562639,51.059651 -16.51904,59.199063 -18.187085,68.764337 c -0.596826,3.422451 -0.596826,154.690123 0,158.112573 1.430611,8.20372 6.610851,15.15891 14.0249568,18.83043 5.06497677,2.50821 2.2820603,2.30358 34.7927072,2.55836 35.083296,0.27495 128.841421,0.0386 131.101041,-0.33049 9.81236,-1.60275 18.34679,-9.8236 20.35172,-19.60396 0.37172,-1.81327 0.41807,-7.19859 0.41807,-48.57463 0,-25.59441 0.0785,-48.90591 0.17453,-51.80335 l 0.17454,-5.26806 12.04374,-12.10469 c 6.62405,-6.65758 12.20097,-12.104688 12.39316,-12.104688 0.28857,0 0.34603,10.543058 0.32985,60.523438 -0.0215,66.49089 -0.15613,77.64098 -0.98298,81.42552 -3.3929,15.52934 -15.871,28.01444 -32.25457,32.27266 l -2.56999,0.66796 -89.044245,-0.036 c -48.974331,-0.0198 -89.341896,-0.0841 -89.7056981,-0.14279 z M 44.653495,183.80478 c 0,-0.65666 15.341668,-53.93081 15.610424,-54.2074 0.126217,-0.12989 7.153042,6.60805 16.003775,15.34584 8.678317,8.56757 17.497842,17.22486 19.598946,19.23841 2.101101,2.01356 3.820186,3.81483 3.820186,4.00283 0,0.42433 -6.865723,2.66347 -15.345833,5.00477 -3.419739,0.94417 -13.323569,3.74158 -22.008514,6.21647 -8.684942,2.47489 -16.215645,4.5795 -16.734895,4.67691 -0.785024,0.14727 -0.944089,0.10046 -0.944089,-0.27783 z m 43.452847,-38.44605 c -18.4269,-18.22055 -21.757015,-21.56746 -21.757015,-21.86678 0,-0.099 0.10799,-0.38061 0.23998,-0.6257 0.348221,-0.64663 87.040303,-86.685394 87.434593,-86.775682 0.18228,-0.04174 9.2539,8.789147 20.15915,19.624197 l 19.82773,19.700088 -8.20208,8.238408 c -13.38561,13.444894 -79.50978,78.976349 -79.78907,79.073879 -0.14152,0.0494 -8.202503,-7.76637 -17.913288,-17.36841 z M 194.1379,62.953918 C 173.32067,42.391465 168.79702,37.860129 165.4586,34.225845 c -2.04984,-2.231505 -3.89175,-4.325686 -4.09314,-4.653736 -0.35132,-0.572292 -0.12624,-0.837731 5.55625,-6.552644 6.3378,-6.373956 7.66673,-7.395807 10.91121,-8.389946 2.24443,-0.687711 4.19883,-0.703341 5.59453,-0.04474 1.29564,0.611388 5.00074,3.569454 9.10017,7.265375 3.25845,2.937719 7.66103,7.367597 16.37585,16.477411 6.34561,6.633215 6.76993,7.318631 6.76993,10.935768 0,4.484558 -1.82584,7.079509 -11.12439,15.810365 -2.20762,2.072841 -4.11262,3.768079 -4.23334,3.767198 -0.12071,-7.94e-4 -2.90071,-2.650022 -6.17777,-5.886979 z"
|
||||
id="path38"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#2d2d2d;stroke-width:0.26458332"
|
||||
d="m -7.0725447,273.09188 c -0.5820834,-0.11506 -2.0703645,-0.44828 -3.3072913,-0.74047 -12.276397,-2.89998 -22.962849,-11.31637 -28.443762,-22.40163 -3.154676,-6.38039 -3.787372,-9.12068 -4.12349,-17.85937 -0.365435,-9.5009 -0.600555,-143.865313 -0.280338,-160.205202 0.23544,-12.013911 0.324434,-13.772763 0.811483,-16.037903 3.550888,-16.514267 16.662986,-29.262481 33.6236067,-32.690492 2.0848848,-0.421388 7.2821744,-0.460911 71.2390593,-0.541742 37.944557,-0.04796 68.990097,0.0055 68.990097,0.118788 0,0.228619 -19.31972,19.509373 -22.54916,22.503689 L 106.8437,47.13269 54.912658,47.213179 2.9816215,47.29367 0.73266329,47.890721 C -8.6028841,50.369118 -16.281137,58.504849 -18.170934,67.920615 c -0.384245,1.914475 -0.417182,9.491411 -0.351343,80.826045 l 0.07265,78.71354 0.579865,1.85914 c 1.849058,5.92836 5.555772,11.19227 10.2301289,14.52783 2.2475771,1.60383 5.6478961,3.19519 8.37229739,3.91824 l 2.24895821,0.59687 H 82.092035 161.20245 l 2.53202,-0.70027 c 8.36726,-2.3141 15.02375,-8.53586 17.68343,-16.52853 0.43017,-1.2927 0.90947,-3.28171 1.06511,-4.42003 0.19275,-1.40972 0.28298,-18.26001 0.28298,-52.84441 V 123.0943 l 4.6141,-4.83475 c 2.53776,-2.65912 8.05955,-8.19352 12.27064,-12.29868 l 7.65654,-7.463913 0.19804,40.663233 c 0.11965,24.56801 0.0898,52.02841 -0.0753,69.37641 -0.26397,27.72903 -0.29271,28.80655 -0.83863,31.43701 -3.04828,14.68797 -14.58596,27.13996 -29.37662,31.70458 -1.67625,0.51732 -3.28584,1.0788 -3.57689,1.24775 -0.61918,0.35943 -178.9034726,0.52315 -180.7104047,0.16594 z M 44.777309,183.47322 c 0.09965,-0.40018 3.282133,-11.50276 7.072186,-24.67239 3.79005,-13.16963 7.213605,-25.06916 7.6079,-26.4434 0.394295,-1.37423 0.834355,-2.53775 0.977913,-2.58561 0.143558,-0.0478 7.218174,6.78153 15.721369,15.1764 8.503198,8.39487 17.277312,17.05213 19.498037,19.23835 2.220722,2.18622 3.947128,4.06065 3.836458,4.16541 -0.270311,0.25587 -9.588058,3.20434 -12.90122,4.08242 -1.455209,0.38566 -8.837083,2.46788 -16.404166,4.62714 -14.687124,4.19096 -25.192656,7.13929 -25.438846,7.13929 -0.08295,0 -0.06928,-0.32742 0.03037,-0.72761 z M 85.886729,142.92249 66.217036,123.33998 100.48058,89.198361 c 18.84494,-18.777888 38.642,-38.43898 43.99346,-43.691311 l 9.72993,-9.549693 19.70497,19.673101 c 10.83773,10.820206 19.70497,19.775442 19.70497,19.900523 0,0.207362 -16.57637,16.733581 -68.59456,68.387039 -10.29502,10.22284 -18.88578,18.58698 -19.09058,18.58698 -0.20479,0 -9.223711,-8.81213 -20.042041,-19.58251 z M 186.47016,55.242626 C 173.48045,42.553512 167.61781,36.582995 162.98839,31.328764 c -1.05503,-1.197416 -1.91813,-2.206131 -1.918,-2.241587 1.2e-4,-0.03546 2.47149,-2.578217 5.49191,-5.650579 5.60859,-5.705037 7.84195,-7.504105 10.38286,-8.36385 5.1362,-1.737893 5.54524,-1.598833 12.5677,4.272542 5.06509,4.234847 24.19111,23.762444 24.98614,25.510771 0.20895,0.459468 0.56613,1.252117 0.79375,1.76144 0.47731,1.067999 0.53571,4.153831 0.0962,5.080645 -0.15856,0.334344 -0.61129,1.300883 -1.00605,2.147867 -1.04142,2.234406 -3.30639,4.938244 -6.89829,8.23492 -1.73527,1.592649 -4.04801,3.758631 -5.13941,4.8133 l -1.98438,1.917576 z"
|
||||
id="path36"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;stroke-width:0.26458332"
|
||||
d="m -6.6756698,273.10083 c -0.6548437,-0.10181 -1.0715624,-0.21186 -0.9260416,-0.24456 0.1455208,-0.0327 -0.7726336,-0.28308 -2.0403449,-0.55641 -16.3698317,-3.52949 -29.2731367,-16.4542 -32.5452837,-32.59928 l -0.603953,-2.97996 v -89.03229 c 0,-84.791499 0.02275,-89.144124 0.477699,-91.3802 1.687149,-8.292404 5.254621,-14.808313 11.540754,-21.078936 6.311545,-6.29597 12.660089,-9.795186 21.1663728,-11.666567 2.4504438,-0.539097 3.5188789,-0.565987 32.4318382,-0.816209 16.873092,-0.146025 46.999655,-0.175389 69.154222,-0.0674 l 39.256307,0.191342 -7.90318,7.927975 c -4.34675,4.360387 -9.8294,9.754583 -12.18366,11.9871 l -4.28047,4.059127 -51.678903,0.10928 C 7.1741824,47.055376 3.3701198,47.095884 1.5264133,47.525268 c -3.1214774,0.726966 -5.9464838,1.932569 -8.427471,3.596521 -5.3609133,3.59546 -9.0955043,8.637354 -11.0681563,14.942586 l -0.744997,2.38125 v 79.242705 c 0,75.99722 0.01984,79.31314 0.484371,80.9625 2.24392,7.96718 7.201388,14.12241 14.0677118,17.4666 1.4552083,0.70875 3.36020821,1.48654 4.23333318,1.72844 2.84356692,0.78779 21.89417502,0.9544 93.39791302,0.81682 72.696752,-0.13987 68.370912,-0.0536 72.369482,-1.44269 7.83834,-2.72294 14.31041,-9.82686 16.43546,-18.04001 l 0.58188,-2.24895 0.10658,-51.84109 c 0.10514,-51.14685 0.11358,-51.85017 0.62954,-52.51979 0.78147,-1.0142 23.34578,-23.565161 23.57911,-23.565161 0.26974,0 0.21501,110.324061 -0.0625,126.073951 -0.19099,10.83729 -0.28685,12.75965 -0.74593,14.95836 -3.1852,15.25523 -15.56252,27.96536 -31.26963,32.11046 -1.38244,0.36483 -2.33494,0.68307 -2.11666,0.7072 0.21828,0.0241 0.0397,0.13477 -0.39688,0.24586 -0.99425,0.25299 -177.6279065,0.25299 -179.2551998,0 z M 44.918078,183.78398 c 0,-0.28999 15.390058,-53.68679 15.508258,-53.80691 0.06304,-0.0641 2.22517,1.96589 4.804738,4.511 2.579571,2.54511 11.338668,11.19029 19.464662,19.21151 l 14.774531,14.58404 -4.588073,1.46224 c -2.523442,0.80423 -6.969326,2.11554 -9.879742,2.91403 -2.910417,0.79848 -12.792604,3.58613 -21.960416,6.19477 -18.359527,5.22408 -18.123958,5.16001 -18.123958,4.92932 z m -88.243383,-33.05294 c 1.2e-5,-15.13417 0.03194,-21.28655 0.07095,-13.67196 0.03901,7.61458 0.039,19.99708 -2.2e-5,27.51666 -0.03902,7.51958 -0.07094,1.28946 -0.07093,-13.8447 z M 86.036057,142.79266 66.481619,123.34491 96.908701,93.040505 C 113.6436,76.373079 133.37453,56.776765 140.75522,49.493138 l 13.41943,-13.242959 19.58734,19.514073 c 10.77303,10.732741 19.58733,19.607969 19.58733,19.722729 0,0.455406 -86.97231,86.753429 -87.43127,86.753429 -0.18016,0 -9.127051,-8.75148 -19.881993,-19.44775 z M 188.9837,57.451799 C 176.36579,45.173617 169.2148,37.939021 164.46521,32.64664 l -3.15882,-3.51982 4.53427,-4.682263 c 4.8725,-5.031515 7.13455,-7.095636 8.93448,-8.152709 1.93942,-1.138986 3.93173,-1.689014 6.11404,-1.68794 2.28208,0.0011 2.63455,0.162033 5.68602,2.595749 5.34377,4.261959 10.14944,8.888136 20.43566,19.672373 6.76405,7.091542 8.00488,8.65828 8.03254,10.142346 0.008,0.439089 0.0535,0.461608 0.26634,0.132292 0.17635,-0.272881 0.25774,0.331306 0.26053,1.933845 0.003,1.487397 -0.0917,2.271551 -0.26053,2.167196 -0.14552,-0.08994 -0.26468,0.05186 -0.26479,0.315114 -5.3e-4,0.917485 -1.51527,3.667754 -3.11437,5.654174 -0.88575,1.100294 -2.89881,3.175723 -4.47346,4.612058 -1.57465,1.436336 -3.81551,3.529968 -4.97967,4.652513 l -2.11667,2.040993 z m -8.53281,-43.295847 c 0.25466,-0.06655 0.67138,-0.06655 0.92604,0 0.25466,0.06655 0.0463,0.121 -0.46302,0.121 -0.50933,0 -0.71769,-0.05445 -0.46302,-0.121 z"
|
||||
id="path34"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
61
res/svg/linkNode.svg
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (3ce5693, 2018-03-11)"
|
||||
sodipodi:docname="drawingNode.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="840.11844"
|
||||
inkscape:cy="813.32938"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#060606;stroke-width:1.19586706"
|
||||
d="m 139.37262,280.12841 c -13.42898,-2.37934 -27.40331,-14.11917 -32.33007,-27.16055 -2.11326,-5.59401 -2.48572,-8.59856 -2.03128,-16.386 0.30609,-5.2448 0.96589,-10.78218 1.46627,-12.30533 0.79668,-2.42515 -1.11334,-4.77937 -15.365736,-18.93966 l -16.275468,-16.17034 -5.183001,1.0594 c -2.850655,0.58266 -9.772056,1.05953 -15.38089,1.05971 -8.756689,2.7e-4 -11.170995,-0.47444 -17.083748,-3.35916 -8.799148,-4.29295 -16.645281,-12.10341 -20.887726,-20.79278 -2.887387,-5.91392 -3.342262,-8.29171 -3.360755,-17.56766 -0.0181,-9.13688 0.450903,-11.73501 3.163291,-17.51814 4.057108,-8.65037 12.406334,-16.95307 21.136696,-21.01891 6.129527,-2.85457 8.071701,-3.15984 18.831869,-2.95977 6.598624,0.12255 13.419935,0.39106 15.158478,0.59599 2.647707,0.31221 5.829502,-2.21691 19.594914,-15.576584 13.796476,-13.389773 16.298206,-16.354959 15.588146,-18.475954 -0.46519,-1.389532 -1.09625,-6.817605 -1.40234,-12.062413 -0.45444,-7.787432 -0.0821,-10.791986 2.03128,-16.385983 3.17255,-8.397855 12.6153,-19.023199 20.38011,-22.93253 22.39407,-11.274581 49.19892,-2.026251 59.80358,20.633798 2.63898,5.638923 3.16584,8.450968 3.16584,16.896748 0,8.445738 -0.52686,11.257784 -3.16584,16.896697 -9.17522,19.605533 -30.39989,29.750311 -50.77724,24.270021 l -7.76652,-2.088692 -6.91134,6.000862 c -3.8012,3.30045 -11.19373,10.30764 -16.4278,15.57155 l -9.516527,9.57072 1.41821,6.10426 c 1.79447,7.72383 1.81274,17.61388 0.0453,24.58718 l -1.37277,5.4165 16.242727,16.13776 16.24275,16.1378 7.9062,-2.12631 c 20.19996,-5.43254 40.79714,4.02975 50.23558,23.07808 3.48516,7.03354 3.89635,8.94739 3.87314,18.02606 -0.0273,11.173 -2.91935,19.42776 -9.51834,27.18015 -9.68168,11.37384 -26.45792,17.27338 -41.52711,14.60348 z"
|
||||
id="path105"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
73
res/svg/radio_checked.svg
Normal file
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_checked.svg"
|
||||
inkscape:export-filename="/home/colin/radio_checked.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="13.330299"
|
||||
inkscape:cy="13.249832"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#a19f9f;stroke-width:1.41537094;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
<circle
|
||||
style="opacity:1;fill:#a19f9f;fill-opacity:1;stroke:#a19f9f;stroke-width:1.623402;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="5.1882992" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
73
res/svg/radio_checked_disabled.svg
Normal file
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_checked_disabled.svg"
|
||||
inkscape:export-filename="/home/colin/radio_checked_disabled.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.8389416"
|
||||
inkscape:cx="-15.099602"
|
||||
inkscape:cy="-5.3178987"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#615f5f;stroke-width:1.41537082;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="15.999998"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
<circle
|
||||
style="opacity:1;fill:#615f5f;fill-opacity:1;stroke:#615f5f;stroke-width:1.623402;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="5.1882992" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
73
res/svg/radio_checked_focus.svg
Normal file
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_checked_focus.svg"
|
||||
inkscape:export-filename="/home/colin/radio_checked_focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.8389416"
|
||||
inkscape:cx="-4.6390066"
|
||||
inkscape:cy="-3.914648"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#3d8ec9;stroke-width:1.41537094;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
<circle
|
||||
style="opacity:1;fill:#3d8ec9;fill-opacity:1;stroke:#3d8ec9;stroke-width:1.623402;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="5.1882992" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
67
res/svg/radio_unchecked.svg
Normal file
@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_unchecked.svg"
|
||||
inkscape:export-filename="/home/colin/radio_unchecked.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="6.4772926"
|
||||
inkscape:cy="12.06106"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#a19f9f;stroke-width:1.41537082;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
67
res/svg/radio_unchecked_disabled.svg
Normal file
@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_unchecked_disabled.svg"
|
||||
inkscape:export-filename="/home/colin/radio_unchecked_disabled.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="16.926058"
|
||||
inkscape:cy="14.333903"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#615f5f;stroke-width:1.41537094;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
67
res/svg/radio_unchecked_focus.svg
Normal file
@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32.000001"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="radio_unchecked_focus.svg"
|
||||
inkscape:export-filename="/home/colin/radio_unchecked_focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-1.0425169"
|
||||
inkscape:cy="-5.8497638"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1" />
|
||||
<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:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-1020.3622)">
|
||||
<circle
|
||||
style="opacity:1;fill:#000000;fill-opacity:0;stroke:#3d8ec9;stroke-width:1.41537094;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4138"
|
||||
cx="16"
|
||||
cy="1036.3622"
|
||||
r="9.2923145" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
61
res/svg/remove.svg
Normal file
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (3ce5693, 2018-03-11)"
|
||||
sodipodi:docname="remove.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="166.00742"
|
||||
inkscape:cy="531.48681"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#000000;stroke-width:0.47890946"
|
||||
d="m 17.835431,265.48448 c -0.2467,-0.16686 -0.368339,-33.13233 -0.299554,-81.1802 l 0.115814,-80.89912 38.903685,-0.0259 c 51.664424,-0.0345 52.313964,-0.0462 51.473804,-0.9278 C 107.22677,101.60943 79.38114,85.781806 53.351542,71.372348 43.030623,65.658892 34.303727,60.684196 33.958433,60.317487 c -0.529095,-0.561942 0.50247,-3.096732 6.561251,-16.122386 3.953978,-8.500585 7.661568,-16.137889 8.239081,-16.971786 0.577515,-0.833897 2.15544,-2.174898 3.5065,-2.980001 1.977501,-1.178399 3.037962,-1.469023 5.438695,-1.490495 3.317133,-0.02967 4.444126,0.49742 18.667212,8.730568 3.850244,2.22875 7.192097,3.922604 7.426319,3.764118 0.234204,-0.158487 1.401492,-2.364126 2.59395,-4.901421 2.725765,-5.799839 5.75652,-9.26479 9.539477,-10.906167 2.346891,-1.018277 3.53838,-1.188063 8.453102,-1.204569 8.72474,-0.0293 8.35054,-0.192262 39.36136,17.141462 20.12226,11.247494 22.01656,12.554335 26.3722,18.193814 3.1116,4.028753 4.65387,7.243215 5.44989,11.358996 0.87896,4.544462 0.28704,8.028433 -2.33518,13.74492 -1.11401,2.428579 -2.02548,4.74206 -2.02548,5.141024 0,0.443871 4.85915,3.458385 12.51931,7.766707 15.9451,8.968059 17.39069,10.501919 17.43989,18.505109 0.0192,3.12702 -0.0905,3.41081 -7.35771,19.02507 -4.0575,8.7179 -7.6618,16.03638 -8.00959,16.2633 -0.42163,0.27509 -4.93325,-2.01517 -13.53946,-6.87312 -7.09892,-4.00712 -13.12328,-7.28568 -13.38744,-7.28568 -0.33291,0 -0.48033,20.52328 -0.48033,66.86893 0,41.60679 -0.16399,66.97986 -0.43402,67.16259 -0.55661,0.37664 -139.568196,0.61082 -140.122029,0.23606 z m 75.247784,-26.5494 c 2.926981,-1.20678 5.05586,-3.04694 5.972942,-5.1629 0.678985,-1.56659 0.750947,-6.08812 0.750947,-47.18236 0,-51.096 0.242486,-47.59331 -3.489582,-50.40466 -2.746627,-2.06901 -5.301664,-2.96381 -8.462988,-2.96381 -4.509815,0 -9.621619,2.75457 -11.161258,6.01436 -0.99851,2.11408 -1.039602,92.51167 -0.04308,94.6088 1.289416,2.71336 4.206918,4.79929 8.281899,5.92139 2.608222,0.71819 4.980491,0.47638 8.151045,-0.83082 z m -35.286134,-0.0189 c 1.330899,-0.57296 3.089405,-1.59937 3.907792,-2.2809 3.034987,-2.52747 2.860085,0.55495 2.860085,-50.40454 0,-52.84203 0.359176,-48.41459 -4.155065,-51.21809 -2.35614,-1.46323 -2.736298,-1.54105 -7.528257,-1.54105 -4.516377,0 -5.286053,0.13485 -7.323046,1.28247 -1.25193,0.70538 -2.739647,2.03536 -3.306039,2.95553 l -1.029805,1.67301 v 47.04985 47.04986 l 1.71634,1.99866 c 3.520258,4.09936 9.892933,5.57274 14.857995,3.4352 z m 71.572269,-0.59788 c 1.2813,-0.71647 2.98047,-2.11424 3.77594,-3.10617 l 1.4463,-1.80351 v -47.06968 -47.06968 l -1.44417,-1.80085 c -2.13104,-2.65739 -4.5494,-3.80995 -8.63794,-4.11677 -4.33242,-0.32513 -7.57385,0.4637 -10.08304,2.45379 -3.36162,2.66618 -3.17706,-0.28437 -3.17706,50.79287 0,50.697 -0.1884,47.49466 2.94817,50.114 4.24127,3.54189 10.52083,4.20662 15.1718,1.606 z M 155.7337,68.938676 c 1.25826,-2.695287 2.1787,-5.211651 2.04541,-5.591921 -0.26679,-0.761224 -2.06224,-1.814232 -32.41319,-19.009984 -11.49322,-6.511631 -21.30874,-11.839335 -21.81226,-11.839335 -0.69823,0 -1.47745,1.19777 -3.28304,5.046346 -1.302132,2.775491 -2.265245,5.338137 -2.140246,5.69479 0.125068,0.356653 5.753906,3.714449 12.508696,7.461782 6.75476,3.747329 18.87214,10.533226 26.9275,15.079751 8.05534,4.546527 14.92359,8.219763 15.26274,8.162755 0.33917,-0.057 1.64614,-2.308898 2.90439,-5.004184 z"
|
||||
id="path21"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
BIN
res/transparent.png
Normal file
After Width: | Height: | Size: 195 B |
BIN
res/undock.png
Normal file
After Width: | Height: | Size: 578 B |
BIN
res/up_arrow.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
res/up_arrow_disabled.png
Normal file
After Width: | Height: | Size: 159 B |
208
vsDark/vsDark.css
Normal file
@ -0,0 +1,208 @@
|
||||
/*
|
||||
* QSS Qt Stylesheets Collection.
|
||||
* Created in 2013 by Khromathyon Software.
|
||||
* QSS Theme: Visual Studio(R) 2012 Dark Theme.
|
||||
* License: WTFPL
|
||||
*/
|
||||
QMainWindow {
|
||||
background-color:#2d2d30;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
|
||||
QMenuBar {
|
||||
|
||||
background-color:#2d2d30;
|
||||
text-transform: uppercase;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
QMenuBar::item:selected{
|
||||
background-color:#3e3e40;
|
||||
}
|
||||
|
||||
QMenu {
|
||||
border:0.5px solid #333337;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
QMenu::item:selected {
|
||||
background-color:#2d2d30;
|
||||
border-color:#333337;
|
||||
|
||||
}
|
||||
|
||||
QMenu::item {
|
||||
background-color:#1b1b1c;
|
||||
border-color:#333337;
|
||||
padding: 2px 25px 2px 20px;
|
||||
|
||||
}
|
||||
|
||||
QMenu::separator{
|
||||
background-color:#333337;
|
||||
spacing:2px;
|
||||
}
|
||||
|
||||
QTabBar::tab {
|
||||
background-color:#2d2d30;
|
||||
border: 1px solid transparent;
|
||||
color:#f1f1f1;
|
||||
padding:5px;
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:hover{
|
||||
background-color:#1c97ea;
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:selected{
|
||||
background-color:#007acc;
|
||||
}
|
||||
|
||||
QTabWidget::pane {
|
||||
border-top: 2px solid #007acc;
|
||||
background-color:#2d2d30;
|
||||
}
|
||||
|
||||
QDockWidget {
|
||||
background: #2d2d30;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
QDockWidget::active {
|
||||
border: 1px solid #007acc;
|
||||
}
|
||||
|
||||
QDockWidget::title {
|
||||
color:#f1f1f1;
|
||||
background:#007acc;
|
||||
}
|
||||
|
||||
QComboBox {
|
||||
border-style:none;
|
||||
background-color:#333337;
|
||||
color:#b2b2b2;
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
QComboBox:on {
|
||||
background-color:#3f3f46;
|
||||
}
|
||||
|
||||
QComboBox:down-arrow {
|
||||
border-style:none;
|
||||
border-left: 1px solid #007acc;
|
||||
}
|
||||
|
||||
QComboBox:drop-down {
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
/*Needs fix*/
|
||||
QScrollBar{
|
||||
background:#3e3e42;
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
QScrollbar::horizontal{
|
||||
height: 15px;
|
||||
margin: 0px 20px 0 20px;
|
||||
}
|
||||
|
||||
QScrollBar:handle {
|
||||
border-style:none;
|
||||
background:#9d9d9d;
|
||||
margin: inherited;
|
||||
|
||||
}
|
||||
QPushButton {
|
||||
border-style:none;
|
||||
border-bottom:1px solid #007acc;
|
||||
color:#f1f1f1;
|
||||
background:#3e3e42;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
QPushButton::pressed {
|
||||
border: 1px solid #007acc;
|
||||
background:#3e3e42;
|
||||
|
||||
}
|
||||
|
||||
QToolButton {
|
||||
border-style:none;
|
||||
background:#2d2d30;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
QToolButton:pressed {
|
||||
border: 1px solid #007acc;
|
||||
background:#3e3e42;
|
||||
}
|
||||
|
||||
QLabel {
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
QLineEdit {
|
||||
border: 1px solid #3e3e42;
|
||||
background-color:#3f3f46;
|
||||
color:#b2b2b2;
|
||||
selection-background-color:#1c97ea;
|
||||
|
||||
}
|
||||
QLineEdit:selected {
|
||||
border-color:#007acc;
|
||||
}
|
||||
|
||||
|
||||
QToolBar {
|
||||
background:#2d2d30;
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
QToolBox{
|
||||
background:#2d2d30;
|
||||
}
|
||||
|
||||
QToolBox::tab{
|
||||
background:#2d2d30;
|
||||
color:#f1f1f1;
|
||||
border-style:none;
|
||||
border-bottom-style: solid;
|
||||
border-bottom: 2px solid #007acc;
|
||||
}
|
||||
|
||||
QToolBox::tab:selected {
|
||||
border:1px solid #007acc;
|
||||
}
|
||||
|
||||
QWidget{
|
||||
background:#2d2d30;
|
||||
color:#f1f1f1;
|
||||
}
|
||||
|
||||
QTreeView {
|
||||
background-color:#2d2d30;
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
QTreeView::item:selected
|
||||
{
|
||||
background:#007acc;
|
||||
}
|
||||
|
||||
QTreeView::item:selected!active {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
QTreeView::item:selected {
|
||||
background: #3f3f46;
|
||||
}
|
||||
QListView {
|
||||
background-color:#252526;
|
||||
border-style:none;
|
||||
|
||||
}
|
||||
|