Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | update awthemes to version 7.5 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a32aea7c57535b3f64db1a1b74120993 |
User & Date: | chw 2019-12-04 17:17:48.139 |
Context
2019-12-06
| ||
20:22 | add selected tk upstream changes check-in: 2798507499 user: chw tags: trunk | |
2019-12-04
| ||
17:21 | merge with trunk check-in: fa3e31c6b2 user: chw tags: wtf-8-experiment | |
17:17 | update awthemes to version 7.5 check-in: a32aea7c57 user: chw tags: trunk | |
17:17 | add tk upstream changes check-in: 34a720b31d user: chw tags: trunk | |
Changes
Changes to assets/awthemes7/README.txt.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | The following files are needed: awthemes.tcl, colorutils.tcl, pkgIndex.tcl, awblack.tcl, awdark.tcl, awlight.tcl, awwinxpblue.tcl, i/ Try: # application scaling tclsh demottk.tcl winxpblue -fontscale 1.2 # tk scaling only tclsh demottk.tcl winxpblue -ttkscale 2.0 # user with high dpi, smaller font tclsh demottk.tcl winxpblue -ttkscale 2.0 -fontscale 0.7 7.3 (2019-12-2) - fix spinbox scaled styling 7.2 (2019-12-2) - setBackground will not do anything if the background color is unchanged. - fixed a bug with graphical buttons. | > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | The following files are needed: awthemes.tcl, colorutils.tcl, pkgIndex.tcl, awblack.tcl, awdark.tcl, awlight.tcl, awwinxpblue.tcl, i/ Demonstration scripts: demottk.tcl, demoscaled.tcl Try: # application scaling tclsh demottk.tcl winxpblue -fontscale 1.2 # tk scaling only tclsh demottk.tcl winxpblue -ttkscale 2.0 # user with high dpi, smaller font tclsh demottk.tcl winxpblue -ttkscale 2.0 -fontscale 0.7 # scaled styling tclsh demoscaled.tcl winxpblue 7.5 (2019-12-4) - reworked all .svg files. - cleaned up notebook colors. - fixed scaling issue with scaled style scaling. - fixed combobox scaling. - fixed scrollbar arrows. - scaled combobox listbox scrollbar. 7.4 (2019-12-3) - added hasImage routine for use by checkButtonToggle - Fix menu highlight color 7.3 (2019-12-2) - fix spinbox scaled styling 7.2 (2019-12-2) - setBackground will not do anything if the background color is unchanged. - fixed a bug with graphical buttons. |
︙ | ︙ |
Changes to assets/awthemes7/awdark.tcl.
1 2 3 4 | #!/usr/bin/tclsh # # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/tclsh # # package provide awdark 7.1 package provide ttk::theme::awdark 7.1 set ap [file normalize [file dirname [info script]]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { |
︙ | ︙ | |||
67 68 69 70 71 72 73 | set colors(${prefix}base.entry.box) $colors(base.dark) set colors(${prefix}tab.use.topbar) true set colors(${prefix}base.tab.bg.active) $colors(base.dark) set colors(${prefix}base.tab.bg.disabled) $colors(base.dark) set colors(${prefix}base.tab.bg.inactive) $colors(base.dark) set colors(${prefix}base.tab.bg.selected) $colors(base.dark) set colors(${prefix}base.tab.border) $colors(base.bg) | < | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | set colors(${prefix}base.entry.box) $colors(base.dark) set colors(${prefix}tab.use.topbar) true set colors(${prefix}base.tab.bg.active) $colors(base.dark) set colors(${prefix}base.tab.bg.disabled) $colors(base.dark) set colors(${prefix}base.tab.bg.inactive) $colors(base.dark) set colors(${prefix}base.tab.bg.selected) $colors(base.dark) set colors(${prefix}base.tab.border) $colors(base.bg) set colors(${prefix}base.tab.highlight) #8b9ca1 set colors(${prefix}base.tab.highlight.inactive) $colors(base.darker) set colors(${prefix}text.fg) $colors(base.lightest) set colors(${prefix}text.select.bg.inactive) $colors(base.darkest) # set colors(${prefix}base.entry.fg) $colors(text.fg) # |
︙ | ︙ |
Changes to assets/awthemes7/awlight.tcl.
1 2 3 4 | #!/usr/bin/tclsh # # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/tclsh # # package provide awlight 7.1 package provide ttk::theme::awlight 7.1 set ap [file normalize [file dirname [info script]]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { |
︙ | ︙ | |||
68 69 70 71 72 73 74 | set colors(${prefix}base.labelframe) $colors(base.darker) set colors(${prefix}tab.use.topbar) true set colors(${prefix}base.tab.bg.active) $colors(base.dark) set colors(${prefix}base.tab.bg.disabled) $colors(base.dark) set colors(${prefix}base.tab.bg.inactive) $colors(base.dark) set colors(${prefix}base.tab.bg.selected) $colors(base.dark) set colors(${prefix}base.tab.border) $colors(base.bg) | < | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | set colors(${prefix}base.labelframe) $colors(base.darker) set colors(${prefix}tab.use.topbar) true set colors(${prefix}base.tab.bg.active) $colors(base.dark) set colors(${prefix}base.tab.bg.disabled) $colors(base.dark) set colors(${prefix}base.tab.bg.inactive) $colors(base.dark) set colors(${prefix}base.tab.bg.selected) $colors(base.dark) set colors(${prefix}base.tab.border) $colors(base.bg) set colors(${prefix}base.tab.highlight) $colors(base.darkest) set colors(${prefix}base.tab.highlight.inactive) $colors(base.darker) set colors(${prefix}text.fg) $colors(base.darkest) set colors(${prefix}text.select.bg.inactive) $colors(base.darkest) # set colors(${prefix}base.entry.fg) $colors(text.fg) # |
︙ | ︙ |
Changes to assets/awthemes7/awthemes.tcl.
︙ | ︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | # prefix for the name of the new style # the standard font name (default font size) # the font name to scale to # # ::ttk::theme::${theme}::setBackground color # requires the colorutils package # # ::ttk::theme::${theme}::setHighlight color # requires the colorutils package # ** This does not work with the scalable graphics. ** # ** May be removed at a later date ** # # Mac OS X notes for prior to 8.6.9: # To style the scrollbars, use: # ttk::scrollbar .sb -style Vertical.TScrollbar # or ttk::scrollbar .sb -style Horizontal.TScrollbar # This will turn off the aqua styling and use the theme styling. # Also note that the styling for the scrollbar cannot be configured # afterwards, it must be configured when the scrollbar is created. # # 7.3 (2019-12-2) # - fix spinbox scaled styling # 7.2 (2019-12-2) # - setBackground will not do anything if the background color is unchanged. # - fixed a bug with graphical buttons. # - make setbackground more robust. # 7.1 (2019-12-1) | > > > > > > > > > > > > | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | # prefix for the name of the new style # the standard font name (default font size) # the font name to scale to # # ::ttk::theme::${theme}::setBackground color # requires the colorutils package # # ::ttk::theme::${theme}::getColor theme colorname # # ::ttk::theme::${theme}::setHighlight color # requires the colorutils package # ** This does not work with the scalable graphics. ** # ** May be removed at a later date ** # # Mac OS X notes for prior to 8.6.9: # To style the scrollbars, use: # ttk::scrollbar .sb -style Vertical.TScrollbar # or ttk::scrollbar .sb -style Horizontal.TScrollbar # This will turn off the aqua styling and use the theme styling. # Also note that the styling for the scrollbar cannot be configured # afterwards, it must be configured when the scrollbar is created. # # 7.5 (2019-12-4) # - reworked all .svg files. # - cleaned up notebook colors. # - fixed scaling issue with scaled style scaling. # - fixed combobox scaling. # - fixed scrollbar arrows. # - scaled combobox listbox scrollbar. # 7.4 (2019-12-3) # - added hasImage routine for use by checkButtonToggle # - Fix menu highlight color # 7.3 (2019-12-2) # - fix spinbox scaled styling # 7.2 (2019-12-2) # - setBackground will not do anything if the background color is unchanged. # - fixed a bug with graphical buttons. # - make setbackground more robust. # 7.1 (2019-12-1) |
︙ | ︙ | |||
191 192 193 194 195 196 197 | # - added setMenuColors helper routine # - cleaned up the radiobutton image # - resized checkbutton and radiobutton images. # 0.1 # - initial coding # | | | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | # - added setMenuColors helper routine # - cleaned up the radiobutton image # - resized checkbutton and radiobutton images. # 0.1 # - initial coding # package provide awthemes 7.5 package require Tk # set ::notksvg to true for testing purposes if { ! [info exists ::notksvg] || ! $::notksvg } { catch { package require tksvg } } |
︙ | ︙ | |||
233 234 235 236 237 238 239 240 241 242 243 244 245 246 | interp alias {} ::ttk::theme::${theme}::scaledStyle {} ::ttk::awthemes::scaledStyle interp alias {} ::ttk::theme::${theme}::setBackground {} ::ttk::awthemes::setBackground interp alias {} ::ttk::theme::${theme}::setHighlight {} ::ttk::awthemes::setHighlight interp alias {} ::ttk::theme::${theme}::setListboxColors {} ::ttk::awthemes::setListboxColors interp alias {} ::ttk::theme::${theme}::setMenuColors {} ::ttk::awthemes::setMenuColors interp alias {} ::ttk::theme::${theme}::setTextColors {} ::ttk::awthemes::setTextColors interp alias {} ::ttk::theme::${theme}::hasImage {} ::ttk::awthemes::hasImage foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::${theme} $var $var } set tkscale [tk scaling] if { $tkscale eq "Inf" || $tkscale eq "" } { | > | 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | interp alias {} ::ttk::theme::${theme}::scaledStyle {} ::ttk::awthemes::scaledStyle interp alias {} ::ttk::theme::${theme}::setBackground {} ::ttk::awthemes::setBackground interp alias {} ::ttk::theme::${theme}::setHighlight {} ::ttk::awthemes::setHighlight interp alias {} ::ttk::theme::${theme}::setListboxColors {} ::ttk::awthemes::setListboxColors interp alias {} ::ttk::theme::${theme}::setMenuColors {} ::ttk::awthemes::setMenuColors interp alias {} ::ttk::theme::${theme}::setTextColors {} ::ttk::awthemes::setTextColors interp alias {} ::ttk::theme::${theme}::hasImage {} ::ttk::awthemes::hasImage interp alias {} ::ttk::theme::${theme}::getColor {} ::ttk::awthemes::getColor foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::${theme} $var $var } set tkscale [tk scaling] if { $tkscale eq "Inf" || $tkscale eq "" } { |
︙ | ︙ | |||
260 261 262 263 264 265 266 267 268 269 270 271 272 273 | set vars(image.dir) [file join $d i $imagedir] set vars(cache.menu) [dict create] set vars(cache.text) [dict create] set vars(cache.listbox) [dict create] set vars(cache.popdown) false set vars(nb.img.width) 20 set vars(nb.img.height) 3 set vars(have.tksvg) false if { ! [catch {package present tksvg}] } { set vars(have.tksvg) true } # order is important set vars(fallback.images) { | > | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | set vars(image.dir) [file join $d i $imagedir] set vars(cache.menu) [dict create] set vars(cache.text) [dict create] set vars(cache.listbox) [dict create] set vars(cache.popdown) false set vars(nb.img.width) 20 set vars(nb.img.height) 3 set vars(registered.combobox) [dict create] set vars(have.tksvg) false if { ! [catch {package present tksvg}] } { set vars(have.tksvg) true } # order is important set vars(fallback.images) { |
︙ | ︙ | |||
366 367 368 369 370 371 372 373 | proc _setDerivedColors { theme } { foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::${theme} $var $var } foreach {prefix} {{} curr.} { # common defaults set colors(${prefix}base.fg.disabled) \ | > | | 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | proc _setDerivedColors { theme } { foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::${theme} $var $var } foreach {prefix} {{} curr.} { # common defaults set colors(${prefix}parent.theme) clam set colors(${prefix}base.fg.disabled) \ [::colorutils::disabledColor $colors(base.fg) $colors(base.bg) 0.65] set colors(${prefix}base.arrow) $colors(base.darkest) set colors(${prefix}base.arrow.disabled) \ [::colorutils::disabledColor $colors(base.arrow) $colors(base.bg)] set colors(${prefix}base.border) $colors(base.dark) set colors(${prefix}base.border.dark) $colors(base.darker) set colors(${prefix}base.border.disabled) \ [::colorutils::disabledColor $colors(base.border) $colors(base.bg) 0.8] |
︙ | ︙ | |||
1267 1268 1269 1270 1271 1272 1273 | } if { ! [info exists images($n)] && [info exists imgdata($n)] } { set images($n) [image create photo -data $imgdata($n)] } } | | | | 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 | } if { ! [info exists images($n)] && [info exists imgdata($n)] } { set images($n) [image create photo -data $imgdata($n)] } } proc _createButton { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(button-n)] } { # adjust the borders and padding by the scale factor set sf [expr {$vars(scale.factor)*$colors(curr.scale.factor)*$scale}] set imgbord {} set imgpad {} foreach {sz} $colors(curr.button.image.border) { lappend imgbord [expr {round(double($sz)*$sf)}] } foreach {sz} $colors(curr.button.image.padding) { lappend imgpad [expr {round(double($sz)*$sf)}] |
︙ | ︙ | |||
1313 1314 1315 1316 1317 1318 1319 | ttk::style configure ${pfx}TButton \ -width -8 \ -borderwidth 1 \ -relief raised } # prefix must include the trailing dot. | | | 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 | ttk::style configure ${pfx}TButton \ -width -8 \ -borderwidth 1 \ -relief raised } # prefix must include the trailing dot. proc _createCheckButton { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } ttk::style element create ${pfx}Checkbutton.indicator image \ [list $images(cb-un${sfx}) \ |
︙ | ︙ | |||
1365 1366 1367 1368 1369 1370 1371 | -focusthickness 0 ttk::style configure ${pfx}Flexmenu.TCheckbutton \ -borderwidth 0 \ -relief none \ -focusthickness 0 } | | < > > > | < > > | | | | 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 | -focusthickness 0 ttk::style configure ${pfx}Flexmenu.TCheckbutton \ -borderwidth 0 \ -relief none \ -focusthickness 0 } proc _createCombobox { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(combo-arrow-down-n)] } { set sf [expr {$vars(scale.factor)*$colors(curr.scale.factor)*$scale}] set wid [image width $images(combo-arrow-down-n${sfx})] ttk::style element create ${pfx}Combobox.downarrow image \ [list $images(combo-arrow-down-n${sfx}) \ disabled $images(combo-arrow-down-d${sfx})] \ -sticky e -border [list $wid 0 0 0] if { $pfx ne {} } { set layout [ttk::style layout TCombobox] regsub {(Combobox.downarrow)} $layout "${pfx}\\1" layout ttk::style layout ${pfx}TCombobox $layout dict set vars(registered.combobox) ${pfx}TCombobox $pfx } } ttk::style configure ${pfx}TCombobox \ -borderwidth 1 \ -arrowsize $wid \ -relief none } proc _createEntry { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } ttk::style configure ${pfx}TEntry \ -borderwidth 0 \ -relief none } proc _createLabelframe { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme ttk::style configure TLabelframe \ -borderwidth 1 \ -relief groove } proc _createMenubutton { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(mb-arrow-down-n)] } { ttk::style element create ${pfx}Menubutton.indicator image \ |
︙ | ︙ | |||
1434 1435 1436 1437 1438 1439 1440 | } } ttk::style configure ${pfx}TMenubutton \ -borderwidth 1 } | | | | | | 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 | } } ttk::style configure ${pfx}TMenubutton \ -borderwidth 1 } proc _createNotebook { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } _createNotebookStyle $currtheme $pfx if { $vars(have.tksvg) && [info exists images(notebook-tab-i)] } { # adjust the borders and padding by the scale factor set sf [expr {$vars(scale.factor)*$colors(curr.scale.factor)*$scale}] set imgbord {} foreach {sz} $colors(curr.tab.image.border) { lappend imgbord [expr {round(double($sz)*$sf)}] } ttk::style element create ${pfx}tab image \ [list $images(notebook-tab-i${sfx}) \ {selected !disabled} $images(notebook-tab-a${sfx})] \ -border $imgbord } ttk::style configure ${pfx}TNotebook \ -borderwidth 0 ttk::style configure ${pfx}TNotebook.Tab \ -borderwidth 0 ttk::style map ${pfx}TNotebook.Tab \ -borderwidth [list disabled 0] } proc _createPanedwindow { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme ttk::style configure Sash \ -sashthickness 10 } proc _createProgressbar { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(slider-hn)] } { ttk::style element create ${pfx}Horizontal.Progressbar.pbar image \ |
︙ | ︙ | |||
1500 1501 1502 1503 1504 1505 1506 | ttk::style configure ${pfx}TProgressbar \ -borderwidth 1 \ -pbarrelief none } # prefix must include the trailing dot. | | | 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 | ttk::style configure ${pfx}TProgressbar \ -borderwidth 1 \ -pbarrelief none } # prefix must include the trailing dot. proc _createRadioButton { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } ttk::style element create ${pfx}Radiobutton.indicator image \ [list $images(rb-un$sfx) \ |
︙ | ︙ | |||
1553 1554 1555 1556 1557 1558 1559 | ttk::style configure ${pfx}Flexmenu.TRadiobutton \ -padding $colors(curr.padding.radiobutton) \ -borderwidth 0 \ -relief none \ -focusthickness 0 } | | | 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 | ttk::style configure ${pfx}Flexmenu.TRadiobutton \ -padding $colors(curr.padding.radiobutton) \ -borderwidth 0 \ -relief none \ -focusthickness 0 } proc _createScale { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(scale-hn)] } { # using a separate image for the grip for the scale slider |
︙ | ︙ | |||
1591 1592 1593 1594 1595 1596 1597 | } } ttk::style configure TScale \ -borderwidth 1 } | | > > > > > > | 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 | } } ttk::style configure TScale \ -borderwidth 1 } proc _createScrollbars { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(slider-vn)] } { ttk::style element create ${pfx}Vertical.Scrollbar.uparrow image \ [list $images(arrow-bg-up-n${sfx}) \ disabled $images(arrow-bg-up-d${sfx})] ttk::style element create ${pfx}Vertical.Scrollbar.downarrow image \ [list $images(arrow-bg-down-n${sfx}) \ disabled $images(arrow-bg-down-d${sfx})] ttk::style element create ${pfx}Vertical.Scrollbar.grip image \ [list $images(slider-v-grip${sfx})] -sticky {} ttk::style element create ${pfx}Vertical.Scrollbar.thumb image \ [list $images(sb-slider-vn${sfx}) \ disabled $images(sb-slider-vd${sfx}) \ {pressed !disabled} $images(sb-slider-vp${sfx}) \ {active !pressed !disabled} $images(sb-slider-va${sfx}) \ |
︙ | ︙ | |||
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 | set grip {} if { $colors(curr.scrollbar.grip) } { set grip "-children { [list ${pfx}Vertical.Scrollbar.grip -sticky {}] }" } regsub {_GRIP_} $vlayout $grip vlayout ttk::style layout ${pfx}Vertical.TScrollbar $vlayout ttk::style element create ${pfx}Horizontal.Scrollbar.grip image \ [list $images(slider-h-grip${sfx})] -sticky {} ttk::style element create ${pfx}Horizontal.Scrollbar.thumb image \ [list $images(sb-slider-hn${sfx}) \ disabled $images(sb-slider-hd${sfx}) \ {pressed !disabled} $images(sb-slider-hp${sfx}) \ {active !pressed !disabled} $images(sb-slider-ha${sfx}) \ | > > > > > > | 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 | set grip {} if { $colors(curr.scrollbar.grip) } { set grip "-children { [list ${pfx}Vertical.Scrollbar.grip -sticky {}] }" } regsub {_GRIP_} $vlayout $grip vlayout ttk::style layout ${pfx}Vertical.TScrollbar $vlayout ttk::style element create ${pfx}Horizontal.Scrollbar.leftarrow image \ [list $images(arrow-bg-left-n${sfx}) \ disabled $images(arrow-bg-left-d${sfx})] ttk::style element create ${pfx}Horizontal.Scrollbar.rightarrow image \ [list $images(arrow-bg-right-n${sfx}) \ disabled $images(arrow-bg-right-d${sfx})] ttk::style element create ${pfx}Horizontal.Scrollbar.grip image \ [list $images(slider-h-grip${sfx})] -sticky {} ttk::style element create ${pfx}Horizontal.Scrollbar.thumb image \ [list $images(sb-slider-hn${sfx}) \ disabled $images(sb-slider-hd${sfx}) \ {pressed !disabled} $images(sb-slider-hp${sfx}) \ {active !pressed !disabled} $images(sb-slider-ha${sfx}) \ |
︙ | ︙ | |||
1654 1655 1656 1657 1658 1659 1660 | } ttk::style configure TScrollbar \ -borderwidth 0 \ -arrowsize 14 } | | | | 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 | } ttk::style configure TScrollbar \ -borderwidth 0 \ -arrowsize 14 } proc _createSizegrip { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(sizegrip)] } { ttk::style element create ${pfx}Sizegrip.sizegrip image $images(sizegrip${sfx}) if { $pfx ne {} } { set layout [ttk::style layout TSizegrip] regsub {(Sizegrip.sizegrip)} $layout "${pfx}\\1" layout ttk::style layout ${pfx}TSizegrip $layout } } } proc _createSpinbox { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(spin-arrow-bg-down-n)] } { ttk::style element create ${pfx}Spinbox.uparrow image \ |
︙ | ︙ | |||
1702 1703 1704 1705 1706 1707 1708 | -relief none \ -arrowsize 14 } # Treeview # Item # Cell | | | 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 | -relief none \ -arrowsize 14 } # Treeview # Item # Cell proc _createTreeview { {pfx {}} {sfx {}} {scale 1.0} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { $vars(have.tksvg) && [info exists images(tree-arrow-down-n)] } { ttk::style element create ${pfx}Treeitem.indicator image \ |
︙ | ︙ | |||
1735 1736 1737 1738 1739 1740 1741 | # the styling is set here. # the images are created here. # the colors are set in setStyledColors (called by scaledStyle) bind ComboboxListbox <Map> \ [list +::ttk::awthemes::awCboxHandler %W] | | | 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 | # the styling is set here. # the images are created here. # the colors are set in setStyledColors (called by scaledStyle) bind ComboboxListbox <Map> \ [list +::ttk::awthemes::awCboxHandler %W] ttk::style theme create $theme -parent $colors(parent.theme) -settings { scaledStyle {} {} {} $theme } } proc _createNotebookStyle { theme {pfx {}} } { variable currtheme foreach {var} {colors images imgdata vars} { |
︙ | ︙ | |||
1791 1792 1793 1794 1795 1796 1797 | Notebook.label -side top -sticky {} \ } \ ] \ ] \ ] } | | | 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 | Notebook.label -side top -sticky {} \ } \ ] \ ] \ ] } proc _setStyledColors { {pfx {}} {scale {}} } { variable currtheme foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } set theme $vars(theme.name) |
︙ | ︙ | |||
1971 1972 1973 1974 1975 1976 1977 | # panedwindow ttk::style configure ${pfx}TPanedwindow \ -background $colors(curr.base.bg) ttk::style configure Sash \ -lightcolor $colors(curr.base.lighter) \ -darkcolor $colors(curr.base.darker) \ | > | | 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 | # panedwindow ttk::style configure ${pfx}TPanedwindow \ -background $colors(curr.base.bg) ttk::style configure Sash \ -lightcolor $colors(curr.base.lighter) \ -darkcolor $colors(curr.base.darker) \ -sashthickness \ [expr {round(10*$vars(scale.factor)*$colors(curr.scale.factor)*$scale)}] # progressbar ttk::style configure ${pfx}TProgressbar \ -troughcolor $colors(curr.base.trough) \ -background $colors(curr.highlight.darkhighlight) \ -bordercolor $colors(curr.base.slider.border) \ |
︙ | ︙ | |||
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | set rc false if { $vars(have.tksvg) && [info exists images($nm)] } { set rc true } return $rc } proc setBackground { bcol } { variable currtheme set currtheme [ttk::style theme use] foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } | > > > > > > > > > > > > | 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 | set rc false if { $vars(have.tksvg) && [info exists images($nm)] } { set rc true } return $rc } proc getColor { theme nm } { foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$theme $var $var } set rc {} if { [info exists colors($nm)] } { set rc $colors($nm) } return $rc } proc setBackground { bcol } { variable currtheme set currtheme [ttk::style theme use] foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } |
︙ | ︙ | |||
2347 2348 2349 2350 2351 2352 2353 | disabled $images(arrow-bg-${dir}-d${sfx}) \ pressed $images(arrow-bg-${dir}-n${sfx}) \ active $images(arrow-bg-${dir}-n${sfx})] \ -border 4 -sticky news } } | | | | | | | | | | | | | | | | > > > > > > > > > > > > | 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 | disabled $images(arrow-bg-${dir}-d${sfx}) \ pressed $images(arrow-bg-${dir}-n${sfx}) \ active $images(arrow-bg-${dir}-n${sfx})] \ -border 4 -sticky news } } _createButton $pfx $sfx $sf _createCheckButton $pfx $sfx $sf _createCombobox $pfx $sfx $sf _createEntry $pfx $sfx $sf _createLabelframe $pfx $sfx $sf _createMenubutton $pfx $sfx $sf _createNotebook $pfx $sfx $sf _createProgressbar $pfx $sfx $sf _createRadioButton $pfx $sfx $sf _createScale $pfx $sfx $sf _createScrollbars $pfx $sfx $sf _createSizegrip $pfx $sfx $sf _createSpinbox $pfx $sfx $sf _createTreeview $pfx $sfx $sf } _setStyledColors $pfx $sf } proc awCboxHandler { w } { variable currtheme set currtheme [ttk::style theme use] foreach {var} {colors images imgdata vars} { namespace upvar ::ttk::theme::$currtheme $var $var } if { [info exists colors(curr.base.entry.bg)] && $currtheme eq $vars(theme.name) && ! [dict exists $vars(cache.listbox) $w] } { regsub {\.popdown\.f\.l$} $w {} cbw set style [$cbw cget -style] if { [dict exists $vars(registered.combobox) $style] != -1 } { set pfx [dict get $vars(registered.combobox) $style] set sb $cbw.popdown.f.sb set sborient [string totitle [$sb cget -orient]] set sbstyle [$sb cget -style] if { $sbstyle eq {} } { set sbstyle ${sborient}.TScrollbar } $cbw.popdown.f.sb configure -style ${pfx}${sbstyle} } ::ttk::awthemes::setListboxColors $w } } } # scale.factor # additional scaling factor (default 1.0) |
︙ | ︙ | |||
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 | relief.menubutton scale.factor text.select.bg text.select.fg width.menubutton } set vars(names.colors.derived) { base.active base.arrow base.arrow.disabled base.border base.border.dark base.border.disabled base.button.active | > | 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 | relief.menubutton scale.factor text.select.bg text.select.fg width.menubutton } set vars(names.colors.derived) { parent.theme base.active base.arrow base.arrow.disabled base.border base.border.dark base.border.disabled base.button.active |
︙ | ︙ |
Changes to assets/awthemes7/awwinxpblue.tcl.
1 2 3 4 | #!/usr/bin/tclsh # # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/tclsh # # package provide winxpblue 7.1 package provide ttk::theme::winxpblue 7.1 set ap [file normalize [file dirname [info script]]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { |
︙ | ︙ | |||
71 72 73 74 75 76 77 | set colors(${prefix}base.active) #c1d2ee set colors(${prefix}base.trough) $colors(base.lightest) set colors(${prefix}base.labelframe) $colors(base.darker) set colors(${prefix}padding.radiobutton) $colors(padding.checkbutton) set colors(${prefix}text.fg) $colors(base.darkest) set colors(${prefix}tab.use.topbar) false set colors(${prefix}base.tab.border) $colors(base.bg) | < | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | set colors(${prefix}base.active) #c1d2ee set colors(${prefix}base.trough) $colors(base.lightest) set colors(${prefix}base.labelframe) $colors(base.darker) set colors(${prefix}padding.radiobutton) $colors(padding.checkbutton) set colors(${prefix}text.fg) $colors(base.darkest) set colors(${prefix}tab.use.topbar) false set colors(${prefix}base.tab.border) $colors(base.bg) set colors(${prefix}base.tab.bg.active) $colors(base.tab.bg.inactive) set colors(${prefix}base.tab.bg.inactive) #f0f0eb set colors(${prefix}tab.image.border) {3 4 3 4} set colors(${prefix}graphics.color.scrollbar.border) #c1d2ee set colors(${prefix}graphics.color.scrollbar) #c1d2ee # set colors(${prefix}base.entry.bg.disabled) $colors(base.entry.bg) |
︙ | ︙ |
Changes to assets/awthemes7/colorutils.tcl.
︙ | ︙ | |||
90 91 92 93 94 95 96 | # and then blend it back together with the new background. set rnew [expr {($rn * $bga + $rorig * $fga) / 65535}] set gnew [expr {($gn * $bga + $gorig * $fga) / 65535}] set bnew [expr {($bn * $bga + $borig * $fga) / 65535}] return [rgbToHexStr [list $rnew $gnew $bnew]] } | | < | | | | | | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | # and then blend it back together with the new background. set rnew [expr {($rn * $bga + $rorig * $fga) / 65535}] set gnew [expr {($gn * $bga + $gorig * $fga) / 65535}] set bnew [expr {($bn * $bga + $borig * $fga) / 65535}] return [rgbToHexStr [list $rnew $gnew $bnew]] } proc opaqueblend { fg bg fga {sz 4} } { variable vars # caching winfo rgb does not help lassign [winfo rgb . $fg] rf gf bf lassign [winfo rgb . $bg] rb gb bb set bga [expr {65535-$fga}] set rn [expr {($rb * $bga + $rf * $fga) / 65535}] set gn [expr {($gb * $bga + $gf * $fga) / 65535}] set bn [expr {($bb * $bga + $bf * $fga) / 65535}] return [rgbToHexStr [list $rn $gn $bn] $sz] } proc lightenColor { col {sz 4} } { # 0.8 * 65535 = 52428 return [opaqueblend $col #ffffff 52428 $sz] } proc darkenColor { col {sz 4} } { # 0.9 * 65535 = 58982 return [opaqueblend $col #000000 58982 $sz] } # blend with the background proc disabledColor { col bg {perc 0.6} } { set val [expr {round(65535.0*$perc)}] return [opaqueblend $col $bg $val] } |
︙ | ︙ | |||
369 370 371 372 373 374 375 | return [list [expr {round($r * 65535.0)}] \ [expr {round($g * 65535.0)}] \ [expr {round($b * 65535.0)}]]; } } | | | 368 369 370 371 372 373 374 375 | return [list [expr {round($r * 65535.0)}] \ [expr {round($g * 65535.0)}] \ [expr {round($b * 65535.0)}]]; } } package provide colorutils 4.5 |
Changes to assets/awthemes7/demoscaled.tcl.
1 2 3 4 5 6 7 8 9 | #!/usr/bin/tclsh package require Tk if { 1 } { set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } | > > > > < > < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/usr/bin/tclsh package require Tk set ap [file normalize [file dirname [info script]]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } if { 1 } { set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } } unset ap if { [llength $::argv] < 1 } { puts "Usage: demottk.tcl <theme> \[-ttkscale <scale-factor>] \[-scale <scale-factor>] \[-fontscale <scale-factor>] \[-highlightcolor <color>] \[-notksvg]" exit 1 } set theme [lindex $::argv 0] set ::notksvg false set fontscale 1.0 ; # default set sf 1.0 set gc {} for {set idx 1} {$idx < [llength $::argv]} {incr idx} { |
︙ | ︙ |
Changes to assets/awthemes7/demottk.tcl.
1 2 3 4 5 6 7 8 9 | #!/usr/bin/tclsh package require Tk if { 1 } { set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } | > > > > > | | < | > < < > > > > > | | > > > > > | > > > | > > | | | | | | | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | #!/usr/bin/tclsh package require Tk set ap [file dirname [info script]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } if { 1 } { set ap [file normalize [file join [file dirname [info script]] .. code]] if { $ap ni $::auto_path } { lappend ::auto_path $ap } } unset ap if { [llength $::argv] < 1 } { puts "Usage: demottk.tcl <theme> \[-ttkscale <scale-factor>] \[-scale <scale-factor>] \[-fontscale <scale-factor>] " puts " \[-background <color>] \[-highlightcolor <color>] \[-notksvg]" exit 1 } set theme [lindex $::argv 0] set ::notksvg false set fontscale 1.0 ; # default set sf 1.0 set gc {} set nbg {} for {set idx 1} {$idx < [llength $::argv]} {incr idx} { if { [lindex $::argv $idx] eq "-ttkscale" } { incr idx tk scaling [lindex $::argv $idx] } if { [lindex $::argv $idx] eq "-scale" } { incr idx set sf [lindex $::argv $idx] } if { [lindex $::argv $idx] eq "-highlightcolor" } { incr idx set gc [lindex $::argv $idx] } if { [lindex $::argv $idx] eq "-background" } { incr idx set nbg [lindex $::argv $idx] } if { [lindex $::argv $idx] eq "-fontscale" } { incr idx set fontscale [lindex $::argv $idx] } if { [lindex $::argv $idx] eq "-notksvg" } { set ::notksvg true } } # now do the require so that -notksvg has an effect. catch { package require awthemes } set ::havethemeutils false if { ! [catch {package present awthemes}] } { set ::havethemeutils true } catch { package require checkButtonToggle } set ::havecbt false if { ! [catch {package present checkButtonToggle}] } { set ::havecbt true } if { $havethemeutils } { if { $gc ne {} } { ::themeutils::setThemeColors $theme \ graphics.color $gc } ::themeutils::setThemeColors $theme \ scale.factor $sf } if { ! $::notksvg } { catch { package require tksvg } } set havetksvg false if { ! [catch {package present tksvg}] } { set havetksvg true } set fn data/bll-tecra/tkscale.txt if { [file exists $fn] } { set fh [open $fn r] set scale [gets $fh] close $fh tk scaling -displayof . $scale |
︙ | ︙ | |||
90 91 92 93 94 95 96 97 98 99 100 | set loaded false if { 1 } { set fn [file join $::env(HOME) s ballroomdj code themes themeloader.tcl] if { [file exists $fn] } { source $fn themeloader::loadTheme $theme set loaded true } } | > < < < < < > > > > > > > > > > > > > | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | set loaded false if { 1 } { set fn [file join $::env(HOME) s ballroomdj code themes themeloader.tcl] if { [file exists $fn] } { source $fn themeloader::loadTheme $theme puts "loaded $theme" set loaded true } } set ttheme $theme if { ($havetksvg && $theme eq "black") || ($havetksvg && $theme eq "winxpblue") } { set ttheme aw${theme} } if { [file exists $ttheme.tcl] && ! $loaded } { source $ttheme.tcl puts "loaded $ttheme.tcl" set loaded true } set tfn [file join $env(HOME) s ballroomdj code themes $ttheme.tcl] if { [file exists $tfn] && ! $loaded } { source $tfn puts "loaded $tfn" set loaded true } ttk::style theme use $theme if { $nbg ne {} && [info commands ::ttk::theme::${theme}::setBackground] ne {} } { ::ttk::theme::${theme}::setBackground $nbg } set val 55 set valb $theme set off 0 set on 1 . configure -background [ttk::style lookup TFrame -background] |
︙ | ︙ | |||
170 171 172 173 174 175 176 | } ttk::style configure TFrame -borderwidth 0 ttk::notebook .nb pack .nb -side left -fill both -expand true ttk::frame .one | < < > > | | > > < | > > > > > > > > | > > > < | > < < | < > > > > > < < < < < < < < < < < < < | > | > > > > > > > > > > | > > > > > > > | 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | } ttk::style configure TFrame -borderwidth 0 ttk::notebook .nb pack .nb -side left -fill both -expand true ttk::frame .one .nb add .one -text $theme ttk::frame .two .nb add .two -text {Text w/scroll} ttk::frame .three .nb add .three -text {Paned Window} ttk::frame .four .nb add .four -text {Treeview} ttk::frame .five .nb add .five -text {Menubutton} ttk::frame .six .nb add .six -text {Listbox} ttk::frame .seven .nb add .seven -text {Inactive} -state disabled ttk::labelframe .lfn -text " Normal " ttk::labelframe .lfd -text " Disabled " foreach {k} {n d} { set s !disabled if { $k eq "d" } { set s disabled } set row 0 ttk::label .lb$k -text $theme -state $s ttk::button .b$k -text $theme -state $s grid .lb$k .b$k -in .lf$k -sticky w -padx 3p -pady 3p incr row ttk::combobox .combo$k -values \ [list aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk lll mmm nnn ooo ppp] \ -textvariable valb \ -width 15 \ -state $s \ -height 5 \ -font TkDefaultFont option add *TCombobox*Listbox.font TkDefaultFont grid .combo$k -in .lf$k -sticky w -padx 3p -pady 3p -columnspan 2 ttk::checkbutton .cboff$k -text off -variable off -state $s ttk::checkbutton .cbon$k -text on -variable on -state $s grid .cboff$k .cbon$k -in .lf$k -sticky w -padx 3p -pady 3p incr row if { $::havecbt } { ttk::checkbutton .cbtoff$k -text off -variable off -state $s \ -style Toggle.TCheckbutton ttk::checkbutton .cbton$k -text on -variable on -state $s \ -style Toggle.TCheckbutton grid .cbtoff$k .cbton$k -in .lf$k -sticky w -padx 3p -pady 3p incr row } ttk::separator .sep$k grid .sep$k -in .lf$k -sticky ew -padx 3p -pady 3p -columnspan 5 incr row ttk::radiobutton .rboff$k -text off -variable on -value 0 -state $s ttk::radiobutton .rbon$k -text on -variable on -value 1 -state $s grid .rboff$k .rbon$k -in .lf$k -sticky w -padx 3p -pady 3p incr row grid columnconfigure .lf$k 4 -weight 1 ttk::scale .sc$k \ -from 0 \ -to 100 \ -variable val \ -orient horizontal \ -length [expr {round(100*$scalefactor)}] .sc$k state $s grid .sc$k -in .lf$k -sticky w -padx 3p -pady 3p -columnspan 2 incr row ttk::progressbar .pb$k \ -orient horizontal \ -mode determinate \ -variable val \ -length [expr {round(100*$scalefactor)}] .pb$k state $s ttk::scale .scv$k \ -orient vertical \ -from 0 -to 100 \ -variable val \ -length [expr {round(100*$scalefactor)}] .scv$k state $s ttk::progressbar .pbv$k \ -orient vertical \ -mode determinate \ -variable val \ -length [expr {round(100*$scalefactor)}] .pbv$k state $s grid .pb$k .scv$k .pbv$k -in .lf$k -sticky w -padx 3p -pady 3p incr row grid configure .pb$k -columnspan 2 grid configure .scv$k -rowspan 3 -column 2 grid configure .pbv$k -rowspan 3 -column 3 ttk::entry .ent$k -textvariable valb \ -width 15 \ -state $k \ -font TkDefaultFont incr row grid .ent$k -in .lf$k -sticky w -padx 3p -pady 3p -columnspan 2 -row $row ttk::spinbox .sbox$k -textvariable val \ -width 5 \ -from 1 -to 100 -increment 0.1 \ -state $k \ -font TkDefaultFont grid .sbox$k -in .lf$k -sticky w -padx 3p -pady 3p -columnspan 2 incr row } pack .lfn .lfd -in .one -side left -padx 3p -pady 3p -expand 1 -fill both ttk::sizegrip .sg pack .sg -in .one -side right -anchor se proc twrap { } { set c [.text cget -wrap] |
︙ | ︙ | |||
386 387 388 389 390 391 392 | menu .menubar.dis.m -tearoff 0 -font MenuFont .menubar.dis.m add command -label "xyzzy" .menubar.dis.m add command -label "plugh" if { [info commands ::ttk::theme::${theme}::setMenuColors] ne {} } { ::ttk::theme::${theme}::setMenuColors .menubar.dis.m } | > > > | | 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | menu .menubar.dis.m -tearoff 0 -font MenuFont .menubar.dis.m add command -label "xyzzy" .menubar.dis.m add command -label "plugh" if { [info commands ::ttk::theme::${theme}::setMenuColors] ne {} } { ::ttk::theme::${theme}::setMenuColors .menubar.dis.m } ttk::button .menubar.tba -text {Toolbutton A} -style Toolbutton ttk::button .menubar.tbb -text {Toolbutton B} -style Toolbutton -state disabled pack .menubar.file .menubar.edit .menubar.dis .menubar.tba .menubar.tbb -side left ttk::scrollbar .sblbox1 -command [list .lbox1 yview] ttk::scrollbar .sblbox2 -command [list .lbox2 yview] set ::lbox [list aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk lll mmm nnn ooo ppp qqq rrr sss ttt uuu vvv www xxx yyy zzz] listbox .lbox1 \ -listvariable ::lbox \ -yscrollcommand [list .sblbox1 set] \ |
︙ | ︙ | |||
411 412 413 414 415 416 417 | ::ttk::theme::${theme}::setListboxColors .lbox1 ::ttk::theme::${theme}::setListboxColors .lbox2 } pack .lbox1 -in .six -padx 3p -pady 3p -expand true -fill both -side left pack .sblbox1 -in .six -padx 0 -pady 3p -fill y -side left pack .lbox2 -in .six -padx 3p -pady 3p -expand true -fill both -side left pack .sblbox2 -in .six -padx 0 -pady 3p -fill y -side left | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 | ::ttk::theme::${theme}::setListboxColors .lbox1 ::ttk::theme::${theme}::setListboxColors .lbox2 } pack .lbox1 -in .six -padx 3p -pady 3p -expand true -fill both -side left pack .sblbox1 -in .six -padx 0 -pady 3p -fill y -side left pack .lbox2 -in .six -padx 3p -pady 3p -expand true -fill both -side left pack .sblbox2 -in .six -padx 0 -pady 3p -fill y -side left # until released, have this off. if { 0 && $::tcl_platform(os) eq "Darwin" } { # unmute set imgdata { iVBORw0KGgoAAAANSUhEUgAAABwAAAAZCAYAAAAiwE4nAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz AAAbrwAAG68BXhqRHAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAMoSURB VEiJtZVPbFRVFIe/c+97pWClxT8Y40DBaKILQWwloQzNuCBsmpBIajTERKkzICZUmILRjeNGpUxH MYHEmaaEEBaGEEQNITGSQt8ILlgZggY2agUTiFCpte28uccFxbCgM9Ox81ve8zvnu+e+c98V/ocS Lal5Ou/vLKodBnn582DPyXI5plrYG7FdEZ07OoTqRqDRoWsryfOqgXW171hhQndcYdG94lvaehYW Letv/tlw8MiF1OTdsRl3GF+d3Gic+X46GICzEkHJLFgwen5TdPvj1QIlEe1JIXIIqJ/O9Hr7jkXg FtvQe0bRMYsNutqSzTMCbo1tbYhHe44qvA9IKa8t8piqZIteMet7Zj1wxYocS8VSHoCXaEn47r75 EeeK9yzkiddUCPUAsKySzfXnM+e6Vm1/ylj7VSFkQA2dOH78PRzdBmQkHk3+ALKykmJllAnF/9jT wiVR3ecX6jKTdeEFRN/GydOIxuvvn1hqZgkGwIGhj64J2qEiWybrCu2gn6jjTau6D3h4/C9/XdX3 cDplg75ARHYD3b4nB0VYNWmKDYqcRkzHrAMBBPcN0Gbnjt8A+cmoeVbgLNBSE6CO3boEmPFbfjPo ZWPME6LusgrNNQFmz2cLgEN9H7iuqg84IzdFaawJ8LVYqh7w1BbHgIdQuS6OOcBETYB1buRJoDDy yC+/gjwquGsIEYSrtfmGznsJ+G7+cKQRtNVZOQMsV+XirAMTq3e9ANptkM+sZ14EuXi7U9ainDII J2YL9tbKdx9UcV8L8mFBJa8qKeDTxitL1gELi9YdLfkjhtsPrYTuS6CljDWTC9JJgM7OTtt0dckh 0MW5IN0ejybPCjKcDdIbyh5p/2DvsO+NxYBjZVucUtMfzScQfT407pXEmmQ3yPJQzXtQ4fO0f3D/ aC5IbxD4ANByfnUyIHNsq+dMq6rsBn1nIN/7c8XAO3WyQTqF6qvAeCljf37PF0y4zcARhL25oG/v ndiMpzSX7zvsjGsT+K3k7mCZKptzQ+mdd6+XHZrpNDVMx4Hnppb+G5pSqvoe9g/2Dss/DWsQOQyM GOTbSvL+BWexMdZ81ssiAAAAAElFTkSuQmCC } set img [image create photo -data $imgdata -format png] foreach {k} {n d} { set s !disabled if { $k eq "d" } { set s disabled } ttk::frame .dbf$k ttk::button .dbi$k -text unmute -image $img -state $s -style ImageButton set layout [ttk::style layout TButton] regsub {Button.button} $layout RoundedRectButton.button rrlayout ttk::style layout RR.TButton $rrlayout ttk::button .dbrr$k -text $theme -state $s -style RR.TButton regsub {Button.button} $layout DisclosureButton.button disclayout ttk::style layout Disc.TButton $disclayout ttk::button .dbdisc$k -state $s -style Disc.TButton regsub {Button.button} $layout GradientButton.button glayout ttk::style layout Gradient.TButton $glayout ttk::button .dbg$k -text $theme -state $s -style Gradient.TButton regsub {Button.button} $layout HelpButton.button hlayout ttk::style layout Help.TButton $hlayout ttk::button .dbhelp$k -state $s -style Help.TButton grid .dbi$k .dbrr$k .dbdisc$k .dbg$k .dbhelp$k -in .dbf$k -sticky w -padx 3p -pady 3p grid .dbf$k -in .lf$k -sticky ew -padx 3p -pady 3p -columnspan 5 } } |
Changes to assets/awthemes7/i/awthemes/cb-sa-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | > > > > > > | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sa-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:#424a4d;fill-opacity:1;stroke:#000000;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.4356288" x="1.8054633" y="59.043018" id="text9056" transform="scale(0.94783288,1.0550383)"><tspan sodipodi:role="line" id="tspan9054" x="1.8054633" y="59.043018" style="fill:#ffffff;fill-opacity:1;stroke-width:0.4356288">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sa.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | > > > > > > | | | | > | | | | | | | | < > | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sa.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:_BG_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> <g aria-label="✔" transform="scale(0.94783288,1.0550383)" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCCB_;fill-opacity:1;stroke:none;stroke-width:0.4356288" id="text9056"> <path d="m 5.6597567,52.287369 q 0.3318266,0 0.5019941,0.544536 0.340335,1.021005 0.4849773,1.021005 0.1106089,0 0.2297261,-0.170167 2.3908531,-3.513959 4.4243548,-5.002924 0.859345,-0.62962 1.676149,-0.62962 1.080564,0 1.301782,0.06807 0.09359,0.02553 0.09359,0.212709 0,0.153151 -0.195693,0.382877 -5.4708844,6.27918 -6.5174144,8.168039 -0.3573517,0.646637 -1.6506245,0.646637 -0.4254187,0 -0.8933793,-0.221218 -0.1956926,-0.1021 -0.6806699,-1.301781 -0.612603,-1.514491 -0.612603,-2.654613 0,-0.41691 0.5955862,-0.689178 Q 5.234338,52.287369 5.64274,52.287369 Z" style="fill:_GCCB_;fill-opacity:1;stroke-width:0.4356288" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sd-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | > > > > > > | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sd-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.10602462,-47.041234)"> <rect style="fill:#2d3234;fill-opacity:0.4;stroke:#202425;stroke-width:0.92784667;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect9014" width="16.072153" height="16.072153" x="0.35789871" y="47.505157" ry="2.836462" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#d3d3ce;fill-opacity:0.40000001;stroke:none;stroke-width:0.43562874;" x="1.5642898" y="58.897461" id="text9056" transform="scale(0.9478328,1.0550384)"><tspan sodipodi:role="line" id="tspan9054" x="1.5642898" y="58.897461" style="fill:#d3d3ce;fill-opacity:0.40000001;stroke-width:0.43562874;">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sd.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | > > > > > > | | | | > | | | | | | | | < > | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sd.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.10602462,-47.041234)"> <rect style="fill:_DARK_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.92784667;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect9014" width="16.072153" height="16.072153" x="0.35789871" y="47.505157" ry="2.836462" /> <g aria-label="✔" transform="scale(0.9478328,1.0550384)" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCCB_;fill-opacity:0.4;stroke:none;stroke-width:0.43562874" id="text9056"> <path d="m 5.4185832,52.141812 q 0.3318266,0 0.5019941,0.544536 0.3403349,1.021005 0.4849773,1.021005 0.1106089,0 0.2297261,-0.170168 2.3908531,-3.513958 4.4243543,-5.002924 0.859346,-0.629619 1.67615,-0.629619 1.080563,0 1.301781,0.06807 0.09359,0.02552 0.09359,0.212709 0,0.153151 -0.195692,0.382877 -5.4708849,6.27918 -6.5174149,8.168039 -0.3573517,0.646636 -1.6506245,0.646636 -0.4254187,0 -0.8933793,-0.221217 -0.1956926,-0.102101 -0.6806699,-1.301782 -0.612603,-1.51449 -0.612603,-2.654612 0,-0.416911 0.5955862,-0.689179 0.8168039,-0.374368 1.2252059,-0.374368 z" style="fill:_GCCB_;fill-opacity:0.4;stroke-width:0.43562874" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sn-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | > > > > > > | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sn-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5000006" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:#252a2c;fill-opacity:1;stroke:#000000;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.4356288" x="1.8054632" y="59.043015" id="text9056" transform="scale(0.94783288,1.0550383)"><tspan sodipodi:role="line" id="tspan9054" x="1.8054632" y="59.043015" style="fill:#ffffff;fill-opacity:1;stroke-width:0.4356288">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sn-small-base.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="15" height="15" id="svg4152" version="1.1" | | | | | | | | | > > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 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="15" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15 15" sodipodi:docname="cb-sn-small-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-left="0" fit-margin-top="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | | | | | | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256807,-49.194801)"> <rect style="fill:#252a2c;fill-opacity:1;stroke:#000000;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191221" y="49.604145" ry="2.5027611" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:15.68263435px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39206588" x="1.4795929" y="59.365486" id="text9056" transform="scale(0.94783288,1.0550383)"><tspan sodipodi:role="line" id="tspan9054" x="1.4795929" y="59.365486" style="fill:#ffffff;fill-opacity:1;stroke-width:0.39206588">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sn-small.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="15" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" | | | | | | | > > > > > > | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="15" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15 15" sodipodi:docname="cb-sn-small.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-left="0" fit-margin-top="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | | < > | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256807,-49.194801)"> <rect style="fill:#252a2c;fill-opacity:1;stroke:#000000;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191221" y="49.604145" ry="2.5027611" /> <g aria-label="✔" transform="scale(0.94783288,1.0550383)" style="font-style:normal;font-weight:normal;font-size:15.68263435px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39206588" id="text9056"> <path d="m 4.9484569,53.285402 q 0.2986439,0 0.4517946,0.490083 0.3063015,0.918904 0.4364796,0.918904 0.099548,0 0.2067535,-0.153151 2.1517677,-3.162562 3.9819184,-4.502631 0.773412,-0.566658 1.508535,-0.566658 0.972507,0 1.171603,0.06126 0.08423,0.02297 0.08423,0.191438 0,0.137836 -0.176123,0.344589 -4.9237961,5.651262 -5.8656731,7.351235 -0.3216165,0.581973 -1.485562,0.581973 -0.3828769,0 -0.8040414,-0.199096 Q 4.2822512,57.711458 3.8457716,56.631746 3.294429,55.268704 3.294429,54.242594 q 0,-0.375219 0.5360276,-0.62026 0.7351235,-0.336932 1.1026852,-0.336932 z" style="fill:#ffffff;fill-opacity:1;stroke-width:0.39206588" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-sn.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | > > > > > > | | | | > | | | | | | | | < > | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-sn.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> <g aria-label="✔" transform="scale(0.94783288,1.0550383)" style="font-style:normal;font-weight:normal;font-size:17.42514992px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCCB_;fill-opacity:1;stroke:none;stroke-width:0.4356288" id="text9056"> <path d="m 5.6597566,52.287366 q 0.3318266,0 0.5019941,0.544536 0.3403349,1.021004 0.4849773,1.021004 0.1106089,0 0.2297261,-0.170167 2.3908531,-3.513959 4.4243549,-5.002924 0.859345,-0.62962 1.676149,-0.62962 1.080564,0 1.301781,0.06807 0.09359,0.02553 0.09359,0.21271 0,0.15315 -0.195693,0.382877 -5.4708845,6.27918 -6.5174145,8.168039 -0.3573517,0.646636 -1.6506246,0.646636 -0.4254187,0 -0.8933792,-0.221218 -0.1956926,-0.1021 -0.6806699,-1.301781 -0.612603,-1.514491 -0.612603,-2.654613 0,-0.41691 0.5955862,-0.689178 0.8168039,-0.374368 1.2252059,-0.374368 z" style="fill:_GCCB_;fill-opacity:1;stroke-width:0.4356288" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-ua.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-ua.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:_BG_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-ud.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-ud.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.10602462,-47.041234)"> <rect style="fill:_BG_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.92784667;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect9014" width="16.072153" height="16.072153" x="0.35789871" y="47.505157" ry="2.836462" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-un-small.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="15" height="15" id="svg4152" version="1.1" | | | | | | | | > > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 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="15" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15 15" sodipodi:docname="cb-un-small.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-left="0" fit-margin-top="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256807,-49.194801)"> <rect style="fill:#252a2c;fill-opacity:1;stroke:#000000;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191221" y="49.604145" ry="2.5027611" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/cb-un.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="cb-un.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.882353" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256804,-47.194799)"> <rect style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.92784673;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="16.072153" height="16.072153" x="0.58649141" y="47.658722" ry="2.8364625" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/menu-cb-sn-pad-base.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="18" height="15" id="svg4152" version="1.1" | | | | | | | | | > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 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="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-cb-sn-pad-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.111111" inkscape:cx="9" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | | | | | | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256801,-49.194793)"> <rect style="fill:#252a2c;fill-opacity:1;stroke:#000000;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191215" y="49.604137" ry="2.5027611" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:15.68263435px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39206591" x="1.4795933" y="59.365475" id="text9056" transform="scale(0.9478328,1.0550384)"><tspan sodipodi:role="line" id="tspan9054" x="1.4795933" y="59.365475" style="fill:#ffffff;fill-opacity:1;stroke-width:0.39206591">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/menu-cb-sn-pad.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" | | | | | | | | > > > > > | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-cb-sn-pad.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.111111" inkscape:cx="9" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | | < > | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256801,-49.194793)"> <rect style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191215" y="49.604137" ry="2.5027611" /> <g aria-label="✔" transform="scale(0.9478328,1.0550384)" style="font-style:normal;font-weight:normal;font-size:15.68263435px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCCB_;fill-opacity:1;stroke:none;stroke-width:0.39206591" id="text9056"> <path d="m 4.9484572,53.285391 q 0.2986439,0 0.4517947,0.490082 0.3063014,0.918905 0.4364795,0.918905 0.099548,0 0.2067535,-0.153151 2.1517677,-3.162563 3.9819191,-4.502632 0.773411,-0.566657 1.508534,-0.566657 0.972508,0 1.171604,0.06126 0.08423,0.02297 0.08423,0.191438 0,0.137836 -0.176123,0.34459 -4.9237958,5.651261 -5.8656727,7.351234 -0.3216166,0.581973 -1.4855621,0.581973 -0.3828768,0 -0.8040413,-0.199096 -0.1761233,-0.09189 -0.6126029,-1.171603 -0.5513426,-1.363041 -0.5513426,-2.389151 0,-0.375219 0.5360275,-0.620261 0.7351235,-0.336931 1.1026853,-0.336931 z" style="fill:_GCCB_;fill-opacity:1;stroke-width:0.39206591" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/menu-cb-un-pad.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="18" height="15" id="svg4152" version="1.1" | | | | | | | | | > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 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="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-cb-un-pad.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.111111" inkscape:cx="9" inkscape:cy="7.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="221" inkscape:window-y="0" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.12256801,-49.194793)"> <rect style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.81868827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect9014" width="14.181312" height="14.181312" x="0.53191215" y="49.604137" ry="2.5027611" /> </g> </svg> |
Added assets/awthemes7/i/awthemes/menu-rb-sn-pad-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?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="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-rb-sn-pad-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.222222" inkscape:cx="8.9243697" inkscape:cy="1.4495798" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-2.1228466,-47.067856)"> <circle style="fill:#404040;fill-opacity:1;stroke:#040202;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="9.7615023" cy="54.643486" r="7.03125" /> <ellipse style="fill:#ffffff;fill-opacity:1;stroke-width:0.23282206" id="path4500" cx="9.7615023" cy="54.643486" rx="4.4731231" ry="4.4731226" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/menu-rb-sn-pad.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="18" height="15" id="svg4152" version="1.1" | | | | | | | | | > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 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="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-rb-sn-pad.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.222222" inkscape:cx="8.9243697" inkscape:cy="1.4495798" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | | | | | > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-2.1228466,-47.067856)"> <circle style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="9.7615023" cy="54.643486" r="7.03125" /> <ellipse style="fill:_GC_;fill-opacity:1;stroke-width:0.23282206" id="path4500" cx="9.7615023" cy="54.643486" rx="4.4731231" ry="4.4731226" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/menu-rb-un-pad.svg.
︙ | ︙ | |||
9 10 11 12 13 14 15 | 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="18" height="15" id="svg4152" version="1.1" | | | | | | | | | | | > > > > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 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="18" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 18 15" sodipodi:docname="menu-rb-un-pad.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="13.222222" inkscape:cx="8.9243697" inkscape:cy="1.4495798" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-right="3" fit-margin-top="0" fit-margin-left="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | | | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-2.1228466,-47.067856)"> <circle style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="9.7615023" cy="54.643486" r="7.03125" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-sa.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | > | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-sa.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="5.6428571" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_BG_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> <circle style="fill:_GC_;fill-opacity:1;stroke-width:0.26500306" id="path4500" cx="8.6622648" cy="55.477901" r="5.3000612" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-sd.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | > > > > > > | | | | > | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-sd.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="5.6428571" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_DARK_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> <circle style="fill:_GC_;fill-opacity:0.4;stroke-width:0.26500306" id="path4500" cx="8.6622648" cy="55.477901" r="5.3000612" /> </g> </svg> |
Added assets/awthemes7/i/awthemes/rb-sn-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-sn-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:#5a577a;fill-opacity:1;stroke:#000000;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> <circle style="fill:#241a7d;fill-opacity:1;stroke-width:0.26500306" id="path4500" cx="8.6622648" cy="55.477901" r="5.3000612" /> </g> </svg> |
Added assets/awthemes7/i/awthemes/rb-sn-small-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | <?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="15.000001" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15.000001 15" sodipodi:docname="rb-sn-small-base.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.4999995" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1013" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.45843729,-48.791062)"> <ellipse id="path4485" cx="7.041563" cy="56.291061" style="fill:#565979;fill-opacity:1;stroke:#000000;stroke-width:0.98968762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" rx="7.0051565" ry="7.005156" /> <circle style="fill:#222dad;fill-opacity:1;stroke-width:0.23195803" id="path4500" cx="7.041563" cy="56.41687" r="4.4565225" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-sn-small.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <?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="15.000001" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15.000001 15" sodipodi:docname="rb-sn-small.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.4999995" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1013" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | < | | > | > | | | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.45843729,-48.791062)"> <ellipse id="path4485" cx="7.041563" cy="56.291061" style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.98968762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" rx="7.0051565" ry="7.005156" /> <circle style="fill:_GC_;fill-opacity:1;stroke-width:0.23195803" id="path4500" cx="7.041563" cy="56.41687" r="4.4565225" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-sn.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | | > | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-sn.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="5.6428571" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> <circle style="fill:_GC_;fill-opacity:1;stroke-width:0.26500306" id="path4500" cx="8.6622648" cy="55.477901" r="5.3000612" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-ua.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | > > > > > > | | | > | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-ua.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_BG_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-ud.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | > > > > > > | | | | > | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-ud.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_DARK_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-un-small.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <?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="15.000001" height="15" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 15.000001 15" sodipodi:docname="rb-un-small.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="15.733333" inkscape:cx="7.5" inkscape:cy="7.4999995" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1013" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type |
︙ | ︙ | |||
65 66 67 68 69 70 71 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" | | > | < | | > | > | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0.45843729,-48.791062)"> <ellipse id="path4485" cx="7.041563" cy="56.291061" style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.98968762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" rx="7.0051565" ry="7.005156" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/rb-un.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | > > > > > > | | | | > | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <?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="17" height="17" id="svg4152" version="1.1" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" viewBox="0 0 17 17" sodipodi:docname="rb-un.svg"> <defs id="defs4154" /> <sodipodi:namedview id="base" pagecolor="#c3c3c3" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="14" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:current-layer="layer1" showgrid="true" inkscape:document-units="px" inkscape:grid-bbox="true" inkscape:window-width="1015" inkscape:window-height="708" inkscape:window-x="241" inkscape:window-y="4" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <metadata id="metadata4157"> <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:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /> <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /> <cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /> <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> <cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(-0.24784642,-46.942856)"> <circle style="fill:_DARK_;fill-opacity:1;stroke:_BORDDARK_;stroke-width:0.99376142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4485" cx="8.7478466" cy="55.442856" r="8.0031195" /> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/tree-arrow-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.875" inkscape:cx="7.9370079" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="560" inkscape:window-x="152" inkscape:window-y="32" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <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 /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.09316635px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.30232915" x="-132.38084" y="151.76192" id="text817" transform="scale(1.0351751,0.96602014)"><tspan sodipodi:role="line" id="tspan815" x="-132.38084" y="151.76192" style="font-size:25.79875755px;fill:#ffffff;fill-opacity:1;stroke-width:0.30232915">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/tree-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | < < | > | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.875" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="560" inkscape:window-x="152" inkscape:window-y="32" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <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" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" transform="scale(1.0351751,0.96602014)" style="font-style:normal;font-weight:normal;font-size:12.09316635px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.30232915" id="text817"> <path d="m -115.37946,137.00503 q 0.23219,0 0.23219,0.18059 0,0.0258 -0.0258,0.0774 l -4.1794,7.86862 q -0.0774,0.15479 -0.15479,0.15479 -0.0774,0 -0.1548,-0.15479 l -4.1794,-7.84283 q 0,-0.0516 0,-0.10319 0,-0.18059 0.25799,-0.18059 z" style="font-size:25.79875755px;fill:_GCARR_;fill-opacity:1;stroke-width:0.30232915" id="path9" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/tree-arrow-right-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-right-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="594" inkscape:window-x="159" inkscape:window-y="71" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" /> <metadata id="metadata5"> <rdf:RDF> <cc:Work rdf:about=""> |
︙ | ︙ | |||
57 58 59 60 61 62 63 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34964)"> <text xml:space="preserve" | | | | | | | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34964)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.09316635px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.30232921" x="118.83002" y="-117.43248" id="text817" transform="matrix(0,1.0351751,0.96602014,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="118.83002" y="-117.43248" style="font-size:25.79875755px;fill:#ffffff;fill-opacity:1;stroke-width:0.30232921">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/awthemes/tree-arrow-right-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-right-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8.0655738" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="594" inkscape:window-x="159" inkscape:window-y="71" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" /> <metadata id="metadata5"> <rdf:RDF> <cc:Work rdf:about=""> |
︙ | ︙ | |||
57 58 59 60 61 62 63 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34964)"> <g aria-label="⏷" | | | | < | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34964)"> <g aria-label="⏷" transform="matrix(0,1.0351751,0.96602014,0,0,0)" style="font-style:normal;font-weight:normal;font-size:12.09316635px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.30232921" id="text817"> <path d="m 135.8314,-132.18937 q 0.23219,0 0.23219,0.18059 0,0.0258 -0.0258,0.0774 l -4.1794,7.86862 q -0.0774,0.15479 -0.15479,0.15479 -0.0774,0 -0.1548,-0.15479 l -4.17939,-7.84282 q 0,-0.0516 0,-0.1032 0,-0.18059 0.25798,-0.18059 z" style="font-size:25.79875755px;fill:_GCARR_;fill-opacity:1;stroke-width:0.30232921" id="path9" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/black/cb-sd.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | > > > > > > | | | | | | | > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="12.000001" height="12" viewBox="0 0 12.000001 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sd.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="20.5" inkscape:cx="6" inkscape:cy="5.9999991" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="642" inkscape:window-x="176" inkscape:window-y="39" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.00675219,-284.99321)"> <rect style="opacity:0.98999999;fill:#fbfbfb;fill-opacity:0.4;stroke:#626262;stroke-width:1.18544734;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect814" width="10.814553" height="10.814552" x="0.58597147" y="285.58594" /> <g aria-label="×" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.92497659px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:0.4;stroke:none;stroke-width:0.07312441" id="text1428" transform="matrix(3.7617684,0,0,3.7974696,0.02144072,-830.82665)"> <path d="m 2.6244737,294.6666 -0.7475857,0.74759 0.7475857,0.74414 -0.289388,0.28939 L 1.5875,295.70358 0.8399143,296.44772 0.55052629,296.15833 1.298112,295.41419 0.55052629,294.6666 0.8399143,294.37721 1.5875,295.1248 2.3350857,294.37721 Z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.52777767px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.07312441" id="path10" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/black/cb-sn-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | > > > > > > | | | | | | | | | | > | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="12.000001" height="12" viewBox="0 0 12.000001 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sn-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="20.5" inkscape:cx="6" inkscape:cy="5.9999991" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="659" inkscape:window-x="178" inkscape:window-y="27" inkscape:window-maximized="0" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.00675219,-284.99321)"> <rect style="opacity:0.98999999;fill:#fbfbfb;fill-opacity:1;stroke:#626262;stroke-width:1.18544734;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="10.814553" height="10.814552" x="0.58597147" y="285.58594" /> <text xml:space="preserve" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.05517387px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.27637929" x="0.43561032" y="293.80185" id="text1428" transform="scale(0.99528824,1.0047341)"><tspan sodipodi:role="line" id="tspan1426" x="0.43561032" y="293.80185" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.33350658px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.27637929">×</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/black/cb-sn.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | | | | | > > > > > > | | | | | | | > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sn.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="20.5" inkscape:cx="6" inkscape:cy="6.0000003" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="630" inkscape:window-x="219" inkscape:window-y="38" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(0.00675219,-284.99321)"> <rect style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke:#626262;stroke-width:1.18544734;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="10.814552" height="10.814552" x="0.58597147" y="285.58594" /> <g aria-label="×" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.92497659px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.07312441" id="text1428" transform="matrix(3.7617682,0,0,3.7974697,0.02144075,-830.82673)"> <path d="m 2.6244737,294.6666 -0.7475857,0.74759 0.7475857,0.74414 -0.289388,0.28939 L 1.5875,295.70358 0.8399143,296.44772 0.55052629,296.15833 1.298112,295.41419 0.55052629,294.6666 0.8399143,294.37721 1.5875,295.1248 2.3350857,294.37721 Z" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.52777767px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.07312441" id="path10" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/black/cb-ud.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | | | | | | > > > > > > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-ud.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="20.5" inkscape:cx="6" inkscape:cy="6" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="640" inkscape:window-x="162" inkscape:window-y="35" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(0.00675219,-284.99321)"> <rect style="opacity:0.98999999;fill:#fbfbfb;fill-opacity:0.4;stroke:#626262;stroke-width:1.18544734;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect814" width="10.814552" height="10.814552" x="0.58597147" y="285.58594" /> </g> </svg> |
Changes to assets/awthemes7/i/black/cb-un.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | | | | | > > > > > > > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-un.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="20.500001" inkscape:cx="5.9999998" inkscape:cy="5.9999998" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="649" inkscape:window-x="200" inkscape:window-y="30" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" scale-x="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.00675219,-284.99321)"> <rect style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke:#626262;stroke-width:1.18544734;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="10.814552" height="10.814552" x="0.58597147" y="285.58594" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-sd.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | | > > > > > > | | | | | | > < > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?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="12.000245" height="11.999918" viewBox="0 0 12.000245 11.999918" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-sd.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.499581" inkscape:cx="6.0001225" inkscape:cy="5.999959" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="644" inkscape:window-x="232" inkscape:window-y="32" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-0.10893731,-285.01029)"> <path style="opacity:1;fill:#ffffff;fill-opacity:0.4;stroke:#626262;stroke-width:0.92525172;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" inkscape:transform-center-x="0.015238464" inkscape:transform-center-y="-0.50843776" d="m 11.623745,288.74279 -0.0083,0.0711 -0.0039,4.493 -0.05612,0.0445 -3.1793824,3.17422 -0.071118,-0.008 -4.4924098,-0.004 -0.044461,-0.0561 -3.17384484,-3.17979 0.00824,-0.0711 0.003916,-4.49296 0.056113,-0.0445 3.17938264,-3.17427 0.071118,0.008 4.49241,0.004 0.04446,0.0557 z" id="path815" inkscape:connector-curvature="0" /> <path style="opacity:0.98999999;fill:#000000;fill-opacity:0.4;stroke:#626262;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" d="m 9.1637075,290.96974 a 3.0877524,3.0881609 0 0 1 -3.0877522,3.08819 3.0877524,3.0881609 0 0 1 -3.0877526,-3.08819 3.0877524,3.0881609 0 0 1 3.0877526,-3.08815 3.0877524,3.0881609 0 0 1 3.0877522,3.08815 z" id="path1458" inkscape:connector-curvature="0" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-sn-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | > > > > > > | | | > | | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <?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="12.000166" height="11.999966" viewBox="0 0 12.000166 11.999966" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-sn-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="21.508435" inkscape:cx="5.7409611" inkscape:cy="6.2509324" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="586" inkscape:window-x="226" inkscape:window-y="51" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(-0.27805827,-285.12479)"> <path sodipodi:type="star" style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:#626262;stroke-width:0.24319783;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" sodipodi:sides="8" sodipodi:cx="1.5961874" sodipodi:cy="295.4231" sodipodi:r1="1.5673321" sodipodi:r2="1.5583082" sodipodi:arg1="-0.39003564" sodipodi:arg2="-0.3794685" inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" d="m 3.0458058,294.82716 -0.00217,0.0187 -0.00103,1.18088 -0.01475,0.0117 -0.8357403,0.83428 -0.018694,-0.002 -1.18088579,-0.001 -0.0116873,-0.0148 -0.83428454,-0.83574 0.002166,-0.0187 0.001029,-1.18088 0.01475,-0.0117 0.83574025,-0.83428 0.018694,0.002 1.1808858,0.001 0.011687,0.0147 z" inkscape:transform-center-x="0.015221362" inkscape:transform-center-y="-0.50816491" transform="matrix(3.8043396,0,0,3.8042763,0.20570225,-832.74631)" /> <ellipse style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#626262;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path1458" cx="6.2450914" cy="291.08438" rx="3.0878081" ry="3.0877569" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-sn.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | > > > > > > | | | | | | > < > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?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="12.001524" height="11.999937" viewBox="0 0 12.001524 11.999937" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-sn.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.828523" inkscape:cx="5.9061755" inkscape:cy="6.0203072" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="631" inkscape:window-x="128" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(-0.11281676,-285.01043)"> <path style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#626262;stroke-width:0.92529994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:transform-center-x="0.015236276" inkscape:transform-center-y="-0.50852045" d="m 11.629155,288.7431 -0.0082,0.0711 -0.004,4.49284 -0.05612,0.0446 -3.1798177,3.17411 -0.071128,-0.008 -4.4930238,-0.004 -0.044468,-0.0563 -3.17427835,-3.17971 0.008241,-0.0711 0.003915,-4.49286 0.0561207,-0.0446 3.17981685,-3.17413 0.071128,0.008 4.4930237,0.004 0.044467,0.0559 z" id="path815" inkscape:connector-curvature="0" /> <path style="opacity:0.98999999;fill:#000000;fill-opacity:1;stroke:#626262;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 9.1687807,290.97001 a 3.0881742,3.0880612 0 0 1 -3.0881743,3.08807 3.0881742,3.0880612 0 0 1 -3.0881742,-3.08807 3.0881742,3.0880612 0 0 1 3.0881742,-3.08808 3.0881742,3.0880612 0 0 1 3.0881743,3.08808 z" id="path1458" inkscape:connector-curvature="0" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-ud.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | | > > > > > > | | | | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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="12.001524" height="11.999937" viewBox="0 0 12.001524 11.999937" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-ud.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.497397" inkscape:cx="6.000762" inkscape:cy="5.9999671" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="576" inkscape:window-x="160" inkscape:window-y="36" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(-0.11281676,-285.01043)"> <path style="opacity:1;fill:#ffffff;fill-opacity:0.4;stroke:#626262;stroke-width:0.92529994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" inkscape:transform-center-x="0.015236276" inkscape:transform-center-y="-0.50852045" d="m 11.629155,288.7431 -0.0082,0.0711 -0.004,4.49284 -0.05612,0.0446 -3.1798177,3.17411 -0.071128,-0.008 -4.4930238,-0.004 -0.044468,-0.0563 -3.17427835,-3.17971 0.008241,-0.0711 0.003915,-4.49286 0.0561207,-0.0446 3.17981685,-3.17413 0.071128,0.008 4.4930237,0.004 0.044467,0.0559 z" id="path815" inkscape:connector-curvature="0" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-un-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | > > > > > > | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="12.000132" height="12.000776" viewBox="0 0 12.000132 12.000776" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-un-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.499775" inkscape:cx="6.0000658" inkscape:cy="6.0003881" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="605" inkscape:window-x="193" inkscape:window-y="35" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(-0.27807534,-285.124)"> <path sodipodi:type="star" style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:#626262;stroke-width:0.24319783;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" sodipodi:sides="8" sodipodi:cx="1.5961874" sodipodi:cy="295.4231" sodipodi:r1="1.5673321" sodipodi:r2="1.5583082" sodipodi:arg1="-0.39003564" sodipodi:arg2="-0.3794685" inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" d="m 3.0458058,294.82716 -0.00217,0.0187 -0.00103,1.18088 -0.01475,0.0117 -0.8357403,0.83428 -0.018694,-0.002 -1.18088579,-0.001 -0.0116873,-0.0148 -0.83428454,-0.83574 0.002166,-0.0187 0.001029,-1.18088 0.01475,-0.0117 0.83574025,-0.83428 0.018694,0.002 1.1808858,0.001 0.011687,0.0147 z" inkscape:transform-center-x="0.015221288" inkscape:transform-center-y="-0.50819664" transform="matrix(3.8043288,0,0,3.8045331,0.20571952,-832.82256)" /> </g> </svg> |
Changes to assets/awthemes7/i/black/rb-un.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | | > > > > > > | | | | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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="12.001524" height="11.999937" viewBox="0 0 12.001524 11.999937" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-un.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.497397" inkscape:cx="6.000762" inkscape:cy="5.9999685" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1023" inkscape:window-height="604" inkscape:window-x="224" inkscape:window-y="61" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(-0.11281676,-285.01043)"> <path style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#626262;stroke-width:0.92529994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:transform-center-x="0.015236276" inkscape:transform-center-y="-0.50852045" d="m 11.629155,288.7431 -0.0082,0.0711 -0.004,4.49284 -0.05612,0.0446 -3.1798177,3.17411 -0.071128,-0.008 -4.4930238,-0.004 -0.044468,-0.0563 -3.17427835,-3.17971 0.008241,-0.0711 0.003915,-4.49286 0.0561207,-0.0446 3.17981685,-3.17413 0.071128,0.008 4.4930237,0.004 0.044467,0.0559 z" id="path815" inkscape:connector-curvature="0" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-down-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-d-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="608" inkscape:window-x="281" inkscape:window-y="15" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69759,-116.58261)"> <rect style="opacity:1;fill:#224162;fill-opacity:0.4;stroke:#202425;stroke-width:0.96274209;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.037258" height="15.037258" x="-131.21622" y="117.06398" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.54131889px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.31353298" x="-137.79814" y="134.8548" id="text817" transform="scale(0.99408095,1.0059543)"><tspan sodipodi:role="line" id="tspan815" x="-137.79814" y="134.8548" style="font-size:26.75481796px;fill:#919282;fill-opacity:0.4;stroke-width:0.31353298">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-down-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | | | | | | | | | | > | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-d.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="608" inkscape:window-x="281" inkscape:window-y="15" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69759,-116.58261)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.96274209;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.037258" height="15.037258" x="-131.21622" y="117.06398" /> <g aria-label="⏷" transform="scale(0.99408095,1.0059543)" style="font-style:normal;font-weight:normal;font-size:12.54131889px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.31353298" id="text817"> <path d="m -120.16672,119.55104 q 0.2408,0 0.2408,0.18729 0,0.0267 -0.0268,0.0803 l -4.33428,8.16022 q -0.0803,0.16053 -0.16053,0.16053 -0.0803,0 -0.16053,-0.16053 l -4.33428,-8.13347 q 0,-0.0535 0,-0.10701 0,-0.18729 0.26755,-0.18729 z" style="font-size:26.75481796px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.31353298" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | > | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="589" inkscape:window-x="222" inkscape:window-y="29" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" showborder="false" /> <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" transform="translate(131.70088,-116.57901)"> <rect style="opacity:1;fill:#215d9c;fill-opacity:1;stroke:#000000;stroke-width:0.96274209;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.037258" height="15.037258" x="-131.21951" y="117.06038" /> <g aria-label="⏷" transform="matrix(-3.7035383,0,0,3.8570759,369.41268,614.34853)" style="font-style:normal;font-weight:normal;font-size:3.31193089px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.08279828" id="text817-3"> <path inkscape:connector-curvature="0" d="m 134.27015,-128.10965 q 0.0636,0 0.0636,0.0495 0,0.007 -0.007,0.0212 l -1.1446,2.15496 q -0.0212,0.0424 -0.0424,0.0424 -0.0212,0 -0.0424,-0.0424 l -1.1446,-2.1479 q 0,-0.0141 0,-0.0283 0,-0.0495 0.0707,-0.0495 z" style="font-size:7.06545353px;fill:#ffffff;fill-opacity:1;stroke-width:0.08279828" id="path2037" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | | | | | | | | | | | > | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="589" inkscape:window-x="222" inkscape:window-y="29" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" showborder="false" /> <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" transform="translate(131.70088,-116.57901)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:0.96274209;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.037258" height="15.037258" x="-131.21951" y="117.06038" /> <g aria-label="⏷" transform="matrix(-3.7035383,0,0,3.8570759,369.41268,614.34853)" style="font-style:normal;font-weight:normal;font-size:3.31193089px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.08279828" id="text817-3"> <path inkscape:connector-curvature="0" d="m 134.27015,-128.10965 q 0.0636,0 0.0636,0.0495 0,0.007 -0.007,0.0212 l -1.1446,2.15496 q -0.0212,0.0424 -0.0424,0.0424 -0.0212,0 -0.0424,-0.0424 l -1.1446,-2.1479 q 0,-0.0141 0,-0.0283 0,-0.0495 0.0707,-0.0495 z" style="font-size:7.06545353px;fill:_GCARR_;fill-opacity:1;stroke-width:0.08279828" id="path2037" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-left-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="15.999999" height="16" viewBox="0 0 15.999999 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-left-d-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375001" inkscape:cx="7.9999995" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="624" inkscape:window-x="158" inkscape:window-y="46" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" /> <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" transform="translate(131.69761,-116.58297)"> <rect style="opacity:1;fill:#224162;fill-opacity:0.4;stroke:#202425;stroke-width:0.96098143;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.039018" height="15.039019" x="-131.21712" y="117.06346" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:14.22740746px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.3556852" x="111.97843" y="133.70036" id="text817" transform="matrix(0,0.9798945,-1.020518,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="111.97843" y="133.70036" style="font-size:30.35180283px;fill:#919282;fill-opacity:0.4;stroke-width:0.3556852">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-left-d.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | > | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | <?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="_ARROWH_.999999" height="_ARROWH_" viewBox="0 0 15.999999 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-left-d.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.250001" inkscape:cx="7.9999995" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="624" inkscape:window-x="158" inkscape:window-y="46" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" /> <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" transform="translate(131.69761,-116.58297)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.96098143;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.039018" height="15.039019" x="-131.21712" y="117.06346" /> <g aria-label="⏷" transform="matrix(0,0.9798945,-1.020518,0,0,0)" style="font-style:normal;font-weight:normal;font-size:14.22740746px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.3556852" id="text817"> <path d="m 131.98027,116.33913 q 0.27317,0 0.27317,0.21246 0,0.0304 -0.0304,0.0911 l -4.91699,9.2573 q -0.091,0.18211 -0.18211,0.18211 -0.0911,0 -0.18211,-0.18211 l -4.91699,-9.22695 q 0,-0.0607 0,-0.12141 0,-0.21246 0.30352,-0.21246 z" style="font-size:30.35180283px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.3556852" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-left-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | | > > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="15.999999" height="16" viewBox="0 0 15.999999 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-left-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8.000018" inkscape:cy="-3.7666694" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="604" inkscape:window-x="220" inkscape:window-y="40" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69761,-116.58297)"> <rect style="opacity:1;fill:#215d9c;fill-opacity:1;stroke:#000000;stroke-width:0.96098143;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.039018" height="15.039019" x="-131.21712" y="117.06346" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.5175333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.31293836" x="113.80047" y="132.19931" id="text817" transform="matrix(0,0.97989455,-1.020518,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="113.80047" y="132.19931" style="font-size:26.70407677px;fill:#ffffff;fill-opacity:1;stroke-width:0.31293836">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-left-n.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | | | | | > > | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | <?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="_ARROWH_.999999" height="_ARROWH_" viewBox="0 0 15.999999 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-left-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.250001" inkscape:cx="7.9999995" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="604" inkscape:window-x="220" inkscape:window-y="40" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69761,-116.58297)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:0.96098143;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.039018" height="15.039019" x="-131.21712" y="117.06346" /> <g aria-label="⏷" transform="matrix(0,0.97989455,-1.020518,0,0,0)" style="font-style:normal;font-weight:normal;font-size:12.5175333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.31293836" id="text817"> <path d="m 131.39846,116.92458 q 0.24033,0 0.24033,0.18693 0,0.0267 -0.0267,0.0801 l -4.32606,8.14474 q -0.0801,0.16023 -0.16023,0.16023 -0.0801,0 -0.16022,-0.16023 l -4.32606,-8.11804 q 0,-0.0534 0,-0.10681 0,-0.18693 0.26704,-0.18693 z" style="font-size:26.70407677px;fill:_GCARR_;fill-opacity:1;stroke-width:0.31293836" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-right-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | | > > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-right-d-base.svg" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="671" inkscape:window-x="203" inkscape:window-y="38" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69758,-116.58298)"> <rect style="opacity:1;fill:#224162;fill-opacity:0.4;stroke:#202425;stroke-width:0.96089751;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.039103" height="15.039103" x="-131.21713" y="117.06343" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:14.22872829px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.35571823" x="112.24481" y="-108.46488" id="text817" transform="matrix(0,0.97783454,1.0226679,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="112.24481" y="-108.46488" style="font-size:30.35462189px;fill:#919282;fill-opacity:0.4;stroke-width:0.35571823">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-right-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | > | | | | | | | | | | > > | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-right-d.svg" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="671" inkscape:window-x="203" inkscape:window-y="38" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69758,-116.58298)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.96089751;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.039103" height="15.039103" x="-131.21713" y="117.06343" /> <g aria-label="⏷" transform="matrix(0,0.97783454,1.0226679,0,0,0)" style="font-style:normal;font-weight:normal;font-size:14.22872829px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.35571823" id="text817"> <path d="m 132.24851,-125.82773 q 0.27319,0 0.27319,0.21249 0,0.0303 -0.0304,0.0911 l -4.91744,9.25816 q -0.0911,0.18213 -0.18213,0.18213 -0.0911,0 -0.18213,-0.18213 l -4.91745,-9.2278 q 0,-0.0607 0,-0.12142 0,-0.21249 0.30355,-0.21249 z" style="font-size:30.35462189px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.35571823" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-right-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | > > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-right-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="594" inkscape:window-x="220" inkscape:window-y="36" inkscape:window-maximized="0" units="px" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(131.69589,-116.58336)"> <rect style="opacity:1;fill:#215d9c;fill-opacity:1;stroke:#000000;stroke-width:0.96089739;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.039103" height="15.039103" x="-131.21544" y="117.06381" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.52143574px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.31303599" x="113.86363" y="-110.15305" id="text817-3" transform="matrix(0,0.97937908,1.0210551,0,0,0)"><tspan sodipodi:role="line" id="tspan815-6" x="113.86363" y="-110.15305" style="font-size:26.71239853px;fill:#ffffff;fill-opacity:1;stroke-width:0.31303599">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-right-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | | | | | | | | | | > > | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-right-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="594" inkscape:window-x="220" inkscape:window-y="36" inkscape:window-maximized="0" units="px" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(131.69589,-116.58336)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:0.96089739;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.039103" height="15.039103" x="-131.21544" y="117.06381" /> <g aria-label="⏷" transform="matrix(0,0.97937908,1.0210551,0,0,0)" style="font-style:normal;font-weight:normal;font-size:12.52143574px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.31303599" id="text817-3"> <path d="m 131.4671,-125.43255 q 0.24041,0 0.24041,0.18699 0,0.0267 -0.0267,0.0801 l -4.32741,8.14728 q -0.0801,0.16027 -0.16027,0.16027 -0.0801,0 -0.16028,-0.16027 l -4.3274,-8.12057 q 0,-0.0534 0,-0.10685 0,-0.18699 0.26712,-0.18699 z" style="font-size:26.71239853px;fill:_GCARR_;fill-opacity:1;stroke-width:0.31303599" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-up-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-up-d-base.svg" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.75" inkscape:cx="8.3389813" inkscape:cy="-3.7666652" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="657" inkscape:window-x="145" inkscape:window-y="35" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69759,-116.58298)"> <rect style="opacity:1;fill:#224162;fill-opacity:0.4;stroke:#202425;stroke-width:0.96103352;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.038966" height="15.038966" x="-131.21707" y="117.06349" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.16834164px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.30420852" x="-133.94347" y="-116.70261" id="text817" transform="scale(1.0224896,-0.97800502)"><tspan sodipodi:role="line" id="tspan815" x="-133.94347" y="-116.70261" style="font-size:25.95912933px;fill:#919282;fill-opacity:0.4;stroke-width:0.30420852">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-up-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | > | | | | | | | | | | > | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-up-d.svg" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.25" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="657" inkscape:window-x="145" inkscape:window-y="35" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69759,-116.58298)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.96103352;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.038966" height="15.038966" x="-131.21707" y="117.06349" /> <g aria-label="⏷" transform="scale(1.0224896,-0.97800502)" style="font-style:normal;font-weight:normal;font-size:12.16834164px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.30420852" id="text817"> <path d="m -116.8364,-131.55123 q 0.23363,0 0.23363,0.18172 0,0.0259 -0.026,0.0779 l -4.20538,7.91754 q -0.0779,0.15575 -0.15575,0.15575 -0.0779,0 -0.15576,-0.15575 l -4.20537,-7.89158 q 0,-0.0519 0,-0.10383 0,-0.18172 0.25959,-0.18172 z" style="font-size:25.95912933px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.30420852" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-up-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | > | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-up-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="678" inkscape:window-x="195" inkscape:window-y="45" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69872,-116.58513)"> <rect style="opacity:1;fill:#215d9c;fill-opacity:1;stroke:#000000;stroke-width:0.96103352;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.038966" height="15.038966" x="-131.2182" y="117.06564" /> <g aria-label="⏷" transform="matrix(3.7035385,0,0,-3.8570759,-616.79564,-365.17769)" style="font-style:normal;font-weight:normal;font-size:3.31193089px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.08279828" id="text817-3"> <path inkscape:connector-curvature="0" d="m 134.27015,-128.10965 q 0.0636,0 0.0636,0.0495 0,0.007 -0.007,0.0212 l -1.1446,2.15496 q -0.0212,0.0424 -0.0424,0.0424 -0.0212,0 -0.0424,-0.0424 l -1.1446,-2.1479 q 0,-0.0141 0,-0.0283 0,-0.0495 0.0707,-0.0495 z" style="font-size:7.06545353px;fill:#ffffff;fill-opacity:1;stroke-width:0.08279828" id="path2037" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/arrow-bg-up-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="_ARROWH_" height="_ARROWH_" | | | | | | | | | | | > | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="_ARROWH_" height="_ARROWH_" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-up-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1023" inkscape:window-height="678" inkscape:window-x="195" inkscape:window-y="45" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(131.69872,-116.58513)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:0.96103352;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.038966" height="15.038966" x="-131.2182" y="117.06564" /> <g aria-label="⏷" transform="matrix(3.7035385,0,0,-3.8570759,-616.79564,-365.17769)" style="font-style:normal;font-weight:normal;font-size:3.31193089px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.08279828" id="text817-3"> <path inkscape:connector-curvature="0" d="m 134.27015,-128.10965 q 0.0636,0 0.0636,0.0495 0,0.007 -0.007,0.0212 l -1.1446,2.15496 q -0.0212,0.0424 -0.0424,0.0424 -0.0212,0 -0.0424,-0.0424 l -1.1446,-2.1479 q 0,-0.0141 0,-0.0283 0,-0.0495 0.0707,-0.0495 z" style="font-size:7.06545353px;fill:_GCARR_;fill-opacity:1;stroke-width:0.08279828" id="path2037" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/combo-arrow-down-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="27" | | | | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <?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="16" height="27" viewBox="0 0 16 27" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="combo-arrow-down-d-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.148148" inkscape:cx="8" inkscape:cy="13.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1163" inkscape:window-height="638" inkscape:window-x="167" inkscape:window-y="37" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" scale-x="1.3" showborder="false" /> <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" transform="translate(131.70754,-105.59394)"> <rect style="opacity:1;fill:#224162;fill-opacity:0.4;stroke:#202425;stroke-width:0.42496577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.575034" height="26.575035" x="-131.49506" y="105.80642" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.52090454px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.31302261" x="-137.91023" y="129.21371" id="text817" transform="scale(0.99296617,1.0070837)"><tspan sodipodi:role="line" id="tspan815" x="-137.91023" y="129.21371" style="font-size:26.71126556px;fill:#919282;fill-opacity:0.4;stroke-width:0.31302261">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/combo-arrow-down-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="_CBOXH_" | | | | | | | | | | | | | | | | | | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?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="16" height="_CBOXH_" viewBox="0 0 16 27" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="combo-arrow-down-d.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.148148" inkscape:cx="8.0000001" inkscape:cy="13.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1163" inkscape:window-height="638" inkscape:window-x="167" inkscape:window-y="37" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" scale-x="1.3" showborder="false" /> <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" transform="translate(131.70754,-105.59394)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:0.42496577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect819" width="15.575034" height="26.575035" x="-131.49506" y="105.80642" /> <g aria-label="⏷" transform="scale(0.99296617,1.0070837)" style="font-style:normal;font-weight:normal;font-size:12.52090454px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.31302261" id="text817"> <path d="m -120.30751,113.93487 q 0.2404,0 0.2404,0.18698 0,0.0267 -0.0267,0.0801 l -4.32722,8.14694 q -0.0801,0.16027 -0.16027,0.16027 -0.0801,0 -0.16027,-0.16027 l -4.32722,-8.12023 q 0,-0.0534 0,-0.10684 0,-0.18698 0.26711,-0.18698 z" style="font-size:26.71126556px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.31302261" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/combo-arrow-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="27" | | | | | | | | | | > | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | <?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="16" height="27" viewBox="0 0 16 27" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="combo-arrow-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="8.8518519" inkscape:cx="8.5748484" inkscape:cy="-6.3452221" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1029" inkscape:window-height="627" inkscape:window-x="174" inkscape:window-y="50" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" scale-x="1" showborder="false" /> <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" transform="translate(131.70758,-105.59397)"> <rect style="opacity:1;fill:#215d9c;fill-opacity:1;stroke:#000000;stroke-width:0.42496574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.575034" height="26.575035" x="-131.4951" y="105.80645" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.5132246px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.31283066" x="-137.82567" y="129.29579" id="text817" transform="scale(0.99357554,1.006466)"><tspan sodipodi:role="line" id="tspan815" x="-137.82567" y="129.29579" style="font-size:26.69488335px;fill:#ffffff;fill-opacity:1;stroke-width:0.31283066">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/combo-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="_CBOXH_" | | | | | | | > | | < > | | | | | | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | <?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="16" height="_CBOXH_" viewBox="0 0 16 27" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="combo-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.625" inkscape:cx="8" inkscape:cy="13.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1029" inkscape:window-height="627" inkscape:window-x="174" inkscape:window-y="50" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" scale-x="1" showborder="false" /> <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" transform="translate(131.70758,-105.59397)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:0.42496574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect819" width="15.575034" height="26.575035" x="-131.4951" y="105.80645" /> <g aria-label="⏷" transform="scale(0.99357554,1.006466)" style="font-style:normal;font-weight:normal;font-size:12.5132246px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.31283066" id="text817"> <path d="m -120.23374,114.02632 q 0.24025,0 0.24025,0.18686 0,0.0267 -0.0267,0.0801 l -4.32457,8.14194 q -0.0801,0.16017 -0.16017,0.16017 -0.0801,0 -0.16017,-0.16017 l -4.32457,-8.11525 q 0,-0.0534 0,-0.10678 0,-0.18686 0.26695,-0.18686 z" style="font-size:26.69488335px;fill:_GCARR_;fill-opacity:1;stroke-width:0.31283066" id="path815" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/mb-arrow-down-d-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | > | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-d-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.875" inkscape:cx="7.9370079" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="578" inkscape:window-x="186" inkscape:window-y="83" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="true" /> <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" transform="translate(130.76376,-115.61079)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:12.74731731px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#919282;fill-opacity:0.4;stroke:none;stroke-width:0.31868294" x="-126.09004" y="146.07088" id="text817" transform="scale(1.0911704,0.91644715)"><tspan sodipodi:role="line" id="tspan815" x="-126.09004" y="146.07088" style="font-size:27.19427681px;fill:#919282;fill-opacity:0.4;stroke-width:0.31868294">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/mb-arrow-down-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | < < | > | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-d.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.75" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="578" inkscape:window-x="186" inkscape:window-y="83" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showborder="true" /> <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" transform="translate(130.76376,-115.61079)"> <g aria-label="⏷" transform="scale(1.0911704,0.91644715)" style="font-style:normal;font-weight:normal;font-size:12.74731731px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:0.4;stroke:none;stroke-width:0.31868294" id="text817"> <path d="m -108.16901,130.51575 q 0.24474,0 0.24474,0.19036 0,0.0272 -0.0272,0.0816 l -4.40547,8.29426 q -0.0816,0.16316 -0.16317,0.16316 -0.0816,0 -0.16316,-0.16316 l -4.40548,-8.26706 q 0,-0.0544 0,-0.10878 0,-0.19036 0.27195,-0.19036 z" style="font-size:27.19427681px;fill:_GCARR_;fill-opacity:0.4;stroke-width:0.31868294" id="path814" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/mb-arrow-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.9375" inkscape:cx="8.334728" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="610" inkscape:window-x="181" inkscape:window-y="63" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <metadata id="metadata5"> <rdf:RDF> |
︙ | ︙ | |||
58 59 60 61 62 63 64 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" | | | | | | | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:13.36568356px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.33414206" x="-133.10394" y="153.63055" id="text817" transform="scale(1.040687,0.9609037)"><tspan sodipodi:role="line" id="tspan815" x="-133.10394" y="153.63055" style="font-size:28.51346207px;fill:#ffffff;fill-opacity:1;stroke-width:0.33414206">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/mb-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | < < | > | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.75" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="610" inkscape:window-x="181" inkscape:window-y="63" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <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" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" transform="scale(1.040687,0.9609037)" style="font-style:normal;font-weight:normal;font-size:13.36568356px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:_GCARR_;fill-opacity:1;stroke:none;stroke-width:0.33414206" id="text817"> <path d="m -114.31357,137.32085 q 0.25662,0 0.25662,0.1996 0,0.0285 -0.0285,0.0855 l -4.61918,8.6966 q -0.0855,0.17109 -0.17109,0.17109 -0.0855,0 -0.17108,-0.17109 l -4.61918,-8.66809 q 0,-0.057 0,-0.11405 0,-0.1996 0.28514,-0.1996 z" style="font-size:28.51346207px;fill:_GCARR_;fill-opacity:1;stroke-width:0.33414206" id="path814" /> </g> </g> </svg> |
Added assets/awthemes7/i/generic/scale-hd-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | <?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="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="scale-hd-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.933333" inkscape:cx="14.983745" inkscape:cy="6.9357502" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="45" inkscape:window-y="74" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-97.370069,-139.42419)"> <rect style="opacity:1;fill:#0000ff;fill-opacity:0.4;stroke:#0080ff;stroke-width:1.01093411;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" id="rect815" width="12.989066" height="28.989065" x="139.92966" y="-126.8646" ry="0" transform="rotate(90)" /> <g transform="matrix(5.3366013,0,0,4.4197025,-425.6917,-478.9388)" id="g3071-3"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-67" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3-5" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6-3" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7-5" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5-6" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/scale-hd.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" | | | | | | > > | | | | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="scale-hd-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.933333" inkscape:cx="14.983745" inkscape:cy="6.9357502" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="45" inkscape:window-y="74" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-97.370069,-139.42419)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:1.01093411;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" id="rect815" width="12.989066" height="28.989065" x="139.92966" y="-126.8646" ry="0" transform="rotate(90)" /> <g transform="matrix(5.3366013,0,0,4.4197025,-425.6917,-478.9388)" id="g3071-3"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" |
︙ | ︙ |
Added assets/awthemes7/i/generic/scale-hn-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | <?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="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="scale-hn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.933333" inkscape:cx="15.030598" inkscape:cy="6.9316984" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-97.323216,-139.42014)"> <rect style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:#0080ff;stroke-width:1.14806557;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.851934" height="28.851934" x="139.99417" y="-126.74918" ry="0" transform="rotate(90)" /> <g transform="matrix(5.3185097,0,0,4.3988103,-423.91876,-475.94979)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/scale-hn.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" | | | | | | | > > | | | | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="scale-hn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" style="shape-rendering:crispEdges"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.933333" inkscape:cx="15.030598" inkscape:cy="6.9316984" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-97.323216,-139.42014)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:1.14806557;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.851934" height="28.851934" x="139.99417" y="-126.74918" ry="0" transform="rotate(90)" /> <g transform="matrix(5.3185097,0,0,4.3988103,-423.91876,-475.94979)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" |
︙ | ︙ |
Added assets/awthemes7/i/generic/scale-vd-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | <?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="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="scale-vd-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.733333" inkscape:cx="6.9285948" inkscape:cy="15.171553" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-99.559997,-136.11208)"> <rect style="opacity:1;fill:#0000ff;fill-opacity:0.4;stroke:#0080ff;stroke-width:1.00739932;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" id="rect815" width="12.9926" height="28.992601" x="-113.0563" y="-165.60838" ry="0" transform="scale(-1)" /> <g transform="matrix(0,5.3085329,-4.4394866,0,734.74395,-384.27344)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:#000000;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/scale-vd.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" | | | | | | > > | | | | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="scale-vd-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.733333" inkscape:cx="6.9285948" inkscape:cy="15.171553" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-99.559997,-136.11208)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:1.00739932;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.8" id="rect815" width="12.9926" height="28.992601" x="-113.0563" y="-165.60838" ry="0" transform="scale(-1)" /> <g transform="matrix(0,5.3085329,-4.4394866,0,734.74395,-384.27344)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" |
︙ | ︙ |
Added assets/awthemes7/i/generic/scale-vn-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | <?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="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="scale-vn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.733333" inkscape:cx="7.0305568" inkscape:cy="15.056807" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="44" inkscape:window-y="37" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" scale-x="0.26458" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-99.459233,-135.98227)"> <rect style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:#0080ff;stroke-width:1.14806581;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.851934" height="28.851934" x="-112.8852" y="-165.40823" ry="0" transform="scale(-1)" /> <g transform="matrix(0,5.3046984,-4.3616954,0,723.61877,-383.88702)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/scale-vn.svg.
︙ | ︙ | |||
10 11 12 13 14 15 16 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" | | | | | | > > | | | | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="scale-vn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.733333" inkscape:cx="7.0305568" inkscape:cy="15.056807" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="44" inkscape:window-y="37" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" scale-x="0.26458" inkscape:pagecheckerboard="true" showborder="false" /> <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" transform="translate(-99.459233,-135.98227)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:1.14806581;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.851934" height="28.851934" x="-112.8852" y="-165.40823" ry="0" transform="scale(-1)" /> <g transform="matrix(0,5.3046984,-4.3616954,0,723.61877,-383.88702)" id="g3071"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" |
︙ | ︙ |
Changes to assets/awthemes7/i/generic/sizegrip-base.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="18" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="18" viewBox="0 0 18 18" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="sizegrip-base.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
55 56 57 58 59 60 61 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" | | | | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.833333" inkscape:cx="9.0000002" inkscape:cy="9.0000002" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="1214" inkscape:window-height="532" inkscape:window-x="86" inkscape:window-y="25" inkscape:window-maximized="0" |
︙ | ︙ | |||
98 99 100 101 102 103 104 | </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-1.6121707,-293.47064)"> | | | | | < | | | | | < < | > | | | | | | | | | | | | < | | | | | | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-1.6121707,-293.47064)"> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827" cx="17.398338" cy="309.25586" r="1.9999994" /> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3" cx="-12.711312" cy="309.25586" transform="scale(-1,1)" r="1.9999994" /> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-6" cx="17.398474" cy="304.56882" r="1.9999994" /> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-7" cx="8.0244226" cy="309.25574" r="1.9999994" /> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-5" cx="12.711312" cy="304.56894" r="1.9999994" /> <circle style="opacity:1;fill:#046edd;fill-opacity:1;stroke:#e59700;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-3" cx="17.398474" cy="299.88174" r="1.9999994" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/sizegrip.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="18" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18" height="18" viewBox="0 0 18 18" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="sizegrip-base.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
55 56 57 58 59 60 61 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" | | | | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.833333" inkscape:cx="9.0000002" inkscape:cy="9.0000002" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="1214" inkscape:window-height="532" inkscape:window-x="86" inkscape:window-y="25" inkscape:window-maximized="0" |
︙ | ︙ | |||
98 99 100 101 102 103 104 | </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-1.6121707,-293.47064)"> | | | | | < | | | | | < < | > | | | | | | | | | | | | < | | | | | | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-1.6121707,-293.47064)"> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827" cx="17.398338" cy="309.25586" r="1.9999994" /> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3" cx="-12.711312" cy="309.25586" transform="scale(-1,1)" r="1.9999994" /> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-6" cx="17.398474" cy="304.56882" r="1.9999994" /> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-7" cx="8.0244226" cy="309.25574" r="1.9999994" /> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-5" cx="12.711312" cy="304.56894" r="1.9999994" /> <circle style="opacity:1;fill:_SZGRIP_;fill-opacity:1;stroke:_SZGRIP_;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:normal" id="path827-3-3" cx="17.398474" cy="299.88174" r="1.9999994" /> </g> </svg> |
Added assets/awthemes7/i/generic/slider-h-grip-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | <?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="10" height="8" viewBox="0 0 10 8" version="1.1" id="svg8" sodipodi:docname="slider-h-grip.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="53.8" inkscape:cx="5" inkscape:cy="4" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" scale-x="0.06458" inkscape:pagecheckerboard="true" /> <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" transform="translate(-99.998011,-140.27973)"> <g id="g3791" transform="matrix(4.0868168,0,0,3.8541909,-307.07101,-401.08207)"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-h-grip.svg.
︙ | ︙ | |||
21 22 23 24 25 26 27 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" | | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="53.8" inkscape:cx="5" inkscape:cy="4" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" |
︙ | ︙ | |||
55 56 57 58 59 60 61 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-99.998011,-140.27973)"> <g id="g3791" transform="matrix(4.0868168,0,0,3.8541909,-307.07101,-401.08207)"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:_GRIP_;fill:_GRIP_;fill:_GRIP_;fill-opacity:1;stroke:_GRIP_;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:_GRIP_;fill:_GRIP_;fill-opacity:1;stroke:_GRIP_;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:_GRIP_;fill:_GRIP_;fill-opacity:1;stroke:_GRIP_;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:_GRIP_;fill:_GRIP_;fill-opacity:1;stroke:_GRIP_;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:_GRIP_;fill:_GRIP_;fill-opacity:1;stroke:_GRIP_;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-hd.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | | > > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="slider-hn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.214287" inkscape:cx="14.00001" inkscape:cy="7.0000036" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-97.35381,-139.48844)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect815" width="12.961873" height="28.961874" x="140.00751" y="-126.83475" ry="0" transform="rotate(90)" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-hn-base.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="slider-hn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.214287" inkscape:cx="14.00001" inkscape:cy="7.0000036" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-97.35381,-139.48844)"> <rect style="opacity:1;fill:#8080ff;fill-opacity:1;stroke:#8000ff;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.961873" height="28.961874" x="140.00751" y="-126.83475" ry="0" transform="rotate(90)" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-hn.svg.
1 2 3 4 5 6 7 8 9 10 11 | <?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" | | | | | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="30" height="14" viewBox="0 0 30 14" version="1.1" id="svg8" sodipodi:docname="slider-hn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.214287" inkscape:cx="14.00001" inkscape:cy="7.0000036" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-97.35381,-139.48844)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.961873" height="28.961874" x="140.00751" y="-126.83475" ry="0" transform="rotate(90)" /> </g> </svg> |
Added assets/awthemes7/i/generic/slider-v-grip-base.svg.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | <?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="8" height="10" viewBox="0 0 8 10" version="1.1" id="svg8" sodipodi:docname="slider-v-grip.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="44.2" inkscape:cx="4" inkscape:cy="5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" scale-x="0.06458" inkscape:pagecheckerboard="true" showborder="true" /> <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" transform="translate(-99.785633,-139.23795)"> <g id="g833" transform="matrix(0,4.0868168,-3.8541909,0,649.14743,-267.83107)"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" id="rect1368" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-99.875397" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-3" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-101.50807" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-6" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-102.05229" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-7" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <rect transform="rotate(90)" ry="0.1349985" y="-100.41962" x="140.46056" height="0.269997" width="2.0756626" id="rect1368-5" style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-v-grip.svg.
︙ | ︙ | |||
21 22 23 24 25 26 27 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" | | | | > | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="44.2" inkscape:cx="4" inkscape:cy="5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" scale-x="0.06458" inkscape:pagecheckerboard="true" showborder="true" /> <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" transform="translate(-99.785633,-139.23795)"> <g id="g833" transform="matrix(0,4.0868168,-3.8541909,0,649.14743,-267.83107)"> <rect transform="rotate(90)" ry="0.1349985" y="-100.96384" x="140.46056" height="0.269997" width="2.0756626" |
︙ | ︙ |
Changes to assets/awthemes7/i/generic/slider-vd.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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="14" | | | | | | | | > > > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="slider-vn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.785715" inkscape:cx="7.000009" inkscape:cy="14" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-104.35381,-130.48844)"> <rect style="opacity:1;fill:_GC_;fill-opacity:0.4;stroke:_BORD_;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect815" width="12.961873" height="28.961874" x="-117.83475" y="-159.96938" ry="0" transform="scale(-1)" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-vn-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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="14" | | | | | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="slider-vn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.785715" inkscape:cx="7.000009" inkscape:cy="14" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-104.35381,-130.48844)"> <rect style="opacity:1;fill:#8080ff;fill-opacity:1;stroke:#8000ff;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.961873" height="28.961874" x="-117.83475" y="-159.96938" ry="0" transform="scale(-1)" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/slider-vn.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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="14" | | | | | | | > | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <?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="14" height="30" viewBox="0 0 14 30" version="1.1" id="svg8" sodipodi:docname="slider-vn-base.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.785715" inkscape:cx="7.000009" inkscape:cy="14" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1315" inkscape:window-height="617" inkscape:window-x="41" inkscape:window-y="42" inkscape:window-maximized="0" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px" showguides="false" showborder="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(-104.35381,-130.48844)"> <rect style="opacity:1;fill:_GC_;fill-opacity:1;stroke:_BORD_;stroke-width:1.03812647;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect815" width="12.961873" height="28.961874" x="-117.83475" y="-159.96938" ry="0" transform="scale(-1)" /> </g> </svg> |
Changes to assets/awthemes7/i/generic/tree-arrow-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.875" inkscape:cx="7.9370079" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="552" inkscape:window-x="152" inkscape:window-y="40" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <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" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:11.43843365px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" x="-124.11995" y="160.7244" id="text817" transform="scale(1.1051221,0.90487738)"><tspan sodipodi:role="line" id="tspan815" x="-124.11995" y="160.7244" style="font-size:24.4019928px;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/tree-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="23.5625" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="552" inkscape:window-x="152" inkscape:window-y="40" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <metadata id="metadata5"> <rdf:RDF> |
︙ | ︙ | |||
58 59 60 61 62 63 64 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" | | | | | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" transform="scale(1.1051221,0.90487738)" style="font-style:normal;font-weight:normal;font-size:11.43843365px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:none;fill-opacity:1;stroke:_FG_;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m -108.03904,146.76646 q 0.21962,0 0.21962,0.17081 0,0.0244 -0.0244,0.0732 l -3.95312,7.4426 q -0.0732,0.14642 -0.14641,0.14642 -0.0732,0 -0.14642,-0.14642 l -3.95312,-7.4182 q 0,-0.0488 0,-0.0976 0,-0.17081 0.24402,-0.17081 z" style="font-size:24.4019928px;fill:none;fill-opacity:1;stroke:_FG_;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path45" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/generic/tree-arrow-empty.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-empty.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.9375" inkscape:cx="8.334728" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" |
︙ | ︙ |
Changes to assets/awthemes7/i/generic/tree-arrow-right-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-right-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.9375" inkscape:cx="8.334728" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" |
︙ | ︙ | |||
58 59 60 61 62 63 64 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" | | | | | | | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:11.43843269px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.91205972;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" x="-135.56848" y="-126.65952" id="text817" transform="matrix(0,-1.1051221,0.90487739,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="-135.56848" y="-126.65952" style="font-size:24.4019928px;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.91205972;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">⏷</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/generic/tree-arrow-right-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="16" height="16" | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?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="16" height="16" viewBox="0 0 16 16" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-right-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.9375" inkscape:cx="8" inkscape:cy="8" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1031" inkscape:window-height="414" inkscape:window-x="203" inkscape:window-y="187" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" /> <metadata id="metadata5"> <rdf:RDF> |
︙ | ︙ | |||
58 59 60 61 62 63 64 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" | | | | | | < | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(131.69759,-128.34961)"> <g aria-label="⏷" transform="matrix(0,-1.1051221,0.90487739,0,0,0)" style="font-style:normal;font-weight:normal;font-size:11.43843269px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:none;fill-opacity:1;stroke:_FG_;stroke-width:0.91205972;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m -119.48757,-140.61746 q 0.21962,0 0.21962,0.17081 0,0.0244 -0.0244,0.0732 l -3.95313,7.4426 q -0.0732,0.14642 -0.14641,0.14642 -0.0732,0 -0.14641,-0.14642 l -3.95312,-7.4182 q 0,-0.0488 0,-0.0976 0,-0.17081 0.24402,-0.17081 z" style="font-size:24.4019928px;fill:none;fill-opacity:1;stroke:_FG_;stroke-width:0.91205972;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path16" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/arrow-bg-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999997" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
48 49 50 51 52 53 54 | 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" /> | | | | | | | | | | | | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | 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" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:16.57995033px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" x="114.19289" y="137.26534" id="text817" transform="matrix(0,1.0619009,-0.94170747,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="114.19289" y="137.26534" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">›</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/arrow-bg-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" inkscape:window-height="527" inkscape:window-x="116" inkscape:window-y="73" inkscape:window-maximized="0" units="px" inkscape:pagecheckerboard="true" showguides="true" showborder="false" /> <metadata id="metadata5"> |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(0,4.0134838,-3.5592094,0,363.25511,-363.94223)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/arrow-bg-left-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-left-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(-4.0134838,0,0,-3.5592094,364.18938,612.88134)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/arrow-bg-right-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-right-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(4.0134838,0,0,3.5592094,-613.56845,-363.00796)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/arrow-bg-up-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="arrow-bg-up-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(0,-4.0134838,3.5592094,0,-612.63419,613.8156)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/button-a.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="20" viewBox="0 0 14 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="button-a.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
48 49 50 51 52 53 54 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | | | | | | | | | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.5250277,0,0,3.601378,0.47135492,-772.71324)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient844" id="linearGradient846" x1="1.9700694" y1="291.78424" x2="1.9536264" y2="296.63419" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.4441214,0,0,3.5857108,0.64824742,-768.1835)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.714285" inkscape:cx="7.0000005" inkscape:cy="10.000001" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1025" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" /> <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" transform="translate(2.9802322e-8,-276.85845)"> <rect style="opacity:1;fill:url(#linearGradient823);fill-opacity:1;stroke:#003c74;stroke-width:0.94270998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect815" width="13.05729" height="19.057289" x="0.47135496" y="277.3298" ry="3.7795279" /> <rect style="opacity:1;fill:#cdcac3;fill-opacity:0;stroke:url(#linearGradient846);stroke-width:1.85959923;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect836" width="10.213867" height="16.401115" x="1.865695" y="278.53677" ry="2.1907041" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/button-d.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="20" viewBox="0 0 14 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="button-d.svg"> <defs id="defs2"> <linearGradient inkscape:collect="always" id="linearGradient821"> <stop style="stop-color:#ffffff;stop-opacity:1" |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" | | | | | | | | > | | | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.5250277,0,0,3.601378,0.47135487,-772.71319)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.714286" inkscape:cx="7" inkscape:cy="10" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1025" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(8.9406967e-8,-276.85845)"> <rect style="opacity:1;fill:url(#linearGradient823);fill-opacity:0.4;stroke:#003c74;stroke-width:0.94270998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4;paint-order:normal" id="rect815" width="13.05729" height="19.057289" x="0.4713549" y="277.3298" ry="3.7795279" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/button-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13.999999" height="20" viewBox="0 0 13.999999 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="button-n.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" | | | | | | | | > | | | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.5104987,0,0,3.591208,0.46961835,-769.692)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.714286" inkscape:cx="7.0286449" inkscape:cy="10.028637" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="-0.2" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1025" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.0286451,-276.88739)"> <rect style="opacity:1;fill:url(#linearGradient823);fill-opacity:1;stroke:#003c74;stroke-width:0.99652702;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect815" width="13.003472" height="19.003473" x="0.46961841" y="277.38565" ry="3.7688546" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/button-p.svg.
1 2 3 4 5 6 7 8 9 10 11 12 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?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:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="14" height="20" viewBox="0 0 14 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="button-p.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" | | | | | | | > | | | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | xlink:href="#linearGradient821" id="linearGradient823" x1="1.8520833" y1="291.69006" x2="1.8520832" y2="296.71826" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.5250277,0,0,3.601378,0.47135487,-758.00488)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="17.857143" inkscape:cx="7" inkscape:cy="9.9999996" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1027" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(8.9406967e-8,311.56676)"> <rect style="opacity:1;fill:url(#linearGradient823);fill-opacity:1;stroke:#003c74;stroke-width:0.94270998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect815" width="13.05729" height="19.057289" x="0.4713549" y="292.03812" ry="3.7795279" transform="scale(1,-1)" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/cb-sd.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sd.svg" style="shape-rendering:crispEdges"> <defs id="defs2"> <linearGradient inkscape:collect="always" id="linearGradient823"> <stop |
︙ | ︙ | |||
37 38 39 40 41 42 43 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | | > | > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.0752498,0,0,4.113925,-0.10174979,-924.67265)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19" inkscape:cx="6.7631579" inkscape:cy="9.5711543" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1034" inkscape:window-height="556" inkscape:window-x="270" inkscape:window-y="31" inkscape:window-maximized="0" showborder="false" inkscape:pagecheckerboard="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.13229173,-284.13224)"> <rect style="opacity:1;fill:url(#linearGradient825);fill-opacity:0.4;stroke:#003c74;stroke-width:1.28423464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect814" width="11.715765" height="11.715765" x="0.50982559" y="284.77435" /> <g aria-label="✔" style="font-style:normal;font-weight:normal;font-size:3.13044333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#21a12a;fill-opacity:0.4;stroke:none;stroke-width:0.07826108" id="text817" transform="matrix(3.7795275,0,0,3.7795275,0.36770846,-825.88727)"> <path d="m 0.9699711,295.32229 q 0.0596129,0 0.0901837,0.0978 0.061141,0.18342 0.087127,0.18342 0.019871,0 0.04127,-0.0306 0.4295188,-0.63128 0.7948391,-0.89878 0.1543822,-0.11311 0.3011217,-0.11311 0.1941242,0 0.2338662,0.0122 0.016814,0.005 0.016814,0.0382 0,0.0275 -0.035156,0.0688 -0.9828491,1.12806 -1.1708592,1.46739 -0.064199,0.11617 -0.2965361,0.11617 -0.0764268,0 -0.16049636,-0.0397 -0.0351563,-0.0183 -0.12228294,-0.23387 -0.11005465,-0.27208 -0.11005465,-0.4769 0,-0.0749 0.10699758,-0.12381 0.14673953,-0.0673 0.22010929,-0.0673 z" style="fill:#21a12a;fill-opacity:0.4;stroke-width:0.07826108" id="path936" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/cb-sn-base.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sn-base.svg" style="shape-rendering:crispEdges"> <defs id="defs2"> |
︙ | ︙ | |||
37 38 39 40 41 42 43 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | | | | | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.0752498,0,0,4.113925,-0.10174979,-924.67265)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.769231" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1034" inkscape:window-height="556" inkscape:window-x="270" inkscape:window-y="31" inkscape:window-maximized="0" showborder="false" inkscape:pagecheckerboard="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.13229173,-284.13224)"> <rect style="opacity:0.98999999;fill:url(#linearGradient825);fill-opacity:1;stroke:#003c74;stroke-width:1.28423464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="11.715765" height="11.715765" x="0.50982559" y="284.77435" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:11.83159733px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#21a12a;fill-opacity:1;stroke:none;stroke-width:0.2957899" x="1.4166934" y="294.87854" id="text817"><tspan sodipodi:role="line" id="tspan815" x="1.4166934" y="294.87854" style="fill:#21a12a;fill-opacity:1;stroke-width:0.2957899">✔</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/cb-sn.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-sn.svg" style="shape-rendering:crispEdges"> <defs id="defs2"> |
︙ | ︙ | |||
37 38 39 40 41 42 43 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | > | > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.0752498,0,0,4.113925,-0.10174979,-924.67265)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.769231" inkscape:cx="6.5" inkscape:cy="6.5000003" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1034" inkscape:window-height="556" inkscape:window-x="270" inkscape:window-y="31" inkscape:window-maximized="0" showborder="false" inkscape:pagecheckerboard="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.13229173,-284.13224)"> <rect style="opacity:0.98999999;fill:url(#linearGradient825);fill-opacity:1;stroke:#003c74;stroke-width:1.28423464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="11.715765" height="11.715765" x="0.50982559" y="284.77435" /> <g aria-label="✔" style="font-style:normal;font-weight:normal;font-size:3.13044333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#21a12a;fill-opacity:1;stroke:none;stroke-width:0.07826108" id="text817" transform="matrix(3.7795275,0,0,3.7795275,0.36770846,-825.88727)"> <path d="m 0.9699711,295.32229 q 0.0596129,0 0.0901837,0.0978 0.061141,0.18342 0.087127,0.18342 0.019871,0 0.04127,-0.0306 0.4295188,-0.63128 0.7948391,-0.89878 0.1543822,-0.11311 0.3011217,-0.11311 0.1941242,0 0.2338662,0.0122 0.016814,0.005 0.016814,0.0382 0,0.0275 -0.035156,0.0688 -0.9828491,1.12806 -1.1708592,1.46739 -0.064199,0.11617 -0.2965361,0.11617 -0.0764268,0 -0.16049636,-0.0397 -0.0351563,-0.0183 -0.12228294,-0.23387 -0.11005465,-0.27208 -0.11005465,-0.4769 0,-0.0749 0.10699758,-0.12381 0.14673953,-0.0673 0.22010929,-0.0673 z" style="fill:#21a12a;fill-opacity:1;stroke-width:0.07826108" id="path936" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/cb-ud.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-ud.svg" style="shape-rendering:crispEdges"> <defs id="defs2"> <linearGradient inkscape:collect="always" id="linearGradient823"> <stop |
︙ | ︙ | |||
37 38 39 40 41 42 43 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.0752498,0,0,4.113925,-0.10174979,-924.67265)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.769231" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1034" inkscape:window-height="556" inkscape:window-x="270" inkscape:window-y="31" inkscape:window-maximized="0" showborder="false" inkscape:pagecheckerboard="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.13229173,-284.13224)"> <rect style="opacity:1;fill:url(#linearGradient825);fill-opacity:0.4;stroke:#003c74;stroke-width:1.28423464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="rect814" width="11.715765" height="11.715765" x="0.50982559" y="284.77435" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/cb-un.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="cb-un.svg" style="shape-rendering:crispEdges"> <defs id="defs2"> |
︙ | ︙ | |||
37 38 39 40 41 42 43 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" | | | | | | | | | | | | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | xlink:href="#linearGradient823" id="linearGradient825" x1="0.29451442" y1="294.15106" x2="2.872113" y2="296.67389" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.0752498,0,0,4.113925,-0.10174979,-924.67265)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.769231" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1034" inkscape:window-height="556" inkscape:window-x="270" inkscape:window-y="31" inkscape:window-maximized="0" showborder="false" inkscape:pagecheckerboard="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <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" transform="translate(0.13229173,-284.13224)"> <rect style="opacity:0.98999999;fill:url(#linearGradient825);fill-opacity:1;stroke:#003c74;stroke-width:1.28423464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect814" width="11.715765" height="11.715765" x="0.50982559" y="284.77435" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/mb-arrow-down-a-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-a-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#c1d2ee;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:16.57995033px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" x="114.19289" y="137.26534" id="text817" transform="matrix(0,1.0619009,-0.94170747,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="114.19289" y="137.26534" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">›</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/mb-arrow-down-a.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-a.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#c1d2ee;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(0,4.0134838,-3.5592094,0,363.25511,-363.94223)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/mb-arrow-down-n-base.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-n-base.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ece9d8;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:16.57995033px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" x="114.19289" y="137.26534" id="text817" transform="matrix(0,1.0619009,-0.94170747,0,0,0)"><tspan sodipodi:role="line" id="tspan815" x="114.19289" y="137.26534" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.61499542;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">›</tspan></text> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/mb-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="mb-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ece9d8;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(0,4.0134838,-3.5592094,0,363.25511,-363.94223)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/notebook-tab-a.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="20" height="20" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="20" height="20" viewBox="0 0 20 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="notebook-tab-a.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient829" id="linearGradient831" x1="4.5147576" y1="296.03827" x2="4.5147576" y2="296.75052" gradientUnits="userSpaceOnUse" | | | | | | > | | | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | xlink:href="#linearGradient829" id="linearGradient831" x1="4.5147576" y1="296.03827" x2="4.5147576" y2="296.75052" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3781018,0,0,3.5671532,0.11355684,-762.96476)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="12.5" inkscape:cx="10" inkscape:cy="10" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1027" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" showguides="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.00757903,-277.25184)"> <rect style="opacity:1;fill:#f0f0eb;fill-opacity:1;stroke:url(#linearGradient831);stroke-width:1.12381673;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect815" width="18.876183" height="18.876183" x="0.55432934" y="277.81375" ry="2.0733767" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/notebook-tab-i.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="20" height="20" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="20" height="20" viewBox="0 0 20 20" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="notebook-tab-i.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient829" id="linearGradient831" x1="4.5147576" y1="296.03827" x2="4.5147576" y2="296.75052" gradientUnits="userSpaceOnUse" | | | | | | > | | | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | xlink:href="#linearGradient829" id="linearGradient831" x1="4.5147576" y1="296.03827" x2="4.5147576" y2="296.75052" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.3781017,0,0,3.5671529,0.11355677,-762.96475)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="12.5" inkscape:cx="10" inkscape:cy="10" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" units="px" inkscape:window-width="1027" inkscape:window-height="577" inkscape:window-x="260" inkscape:window-y="78" inkscape:window-maximized="0" showguides="false" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.00757909,-277.25187)"> <rect style="opacity:1;fill:#f0f0eb;fill-opacity:1;stroke:url(#linearGradient831);stroke-width:1.12381673;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="rect815" width="18.876183" height="18.876183" x="0.55432928" y="277.81378" ry="2.0733764" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/rb-sd.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-sd.svg"> <defs id="defs2"> <linearGradient inkscape:collect="always" id="linearGradient1482"> <stop style="stop-color:#5ede5e;stop-opacity:1" |
︙ | ︙ | |||
48 49 50 51 52 53 54 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" | | | | | | | | > | | | | | | | | | > | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.2755907,0,0,3.2755907,1.1677089,-677.01804)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient1482" id="linearGradient1484" x1="0.77584541" y1="294.61938" x2="1.5846398" y2="295.4339" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.4918891,0,0,3.4918892,0.82433406,-740.91534)" /> </defs> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.692308" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1046" inkscape:window-height="570" inkscape:window-x="254" inkscape:window-y="3" inkscape:window-maximized="0" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.13229197,-284.13226)"> <circle style="opacity:1;fill:url(#linearGradient1476);fill-opacity:0.4;stroke:#003c74;stroke-width:1.34878194;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4;paint-order:normal" id="path1468" cx="6.3677082" cy="290.63226" r="5.8256092" /> <ellipse style="opacity:1;fill:url(#linearGradient1484);fill-opacity:0.4;stroke:#626262;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4" id="path1458" cx="6.3677082" cy="290.63226" rx="2.8342061" ry="2.8342063" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/rb-sn.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-sn.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
48 49 50 51 52 53 54 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" | | | | | | | | > | | | | | | | | | > | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.2755907,0,0,3.2755907,1.1677089,-677.01804)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient1482" id="linearGradient1484" x1="0.77584541" y1="294.61938" x2="1.5846398" y2="295.4339" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.4918891,0,0,3.4918892,0.82433406,-740.91534)" /> </defs> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.692308" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1046" inkscape:window-height="570" inkscape:window-x="254" inkscape:window-y="3" inkscape:window-maximized="0" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.13229197,-284.13226)"> <circle style="opacity:1;fill:url(#linearGradient1476);fill-opacity:1;stroke:#003c74;stroke-width:1.34878194;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="path1468" cx="6.3677082" cy="290.63226" r="5.8256092" /> <ellipse style="opacity:0.98999999;fill:url(#linearGradient1484);fill-opacity:1;stroke:#626262;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path1458" cx="6.3677082" cy="290.63226" rx="2.8342061" ry="2.8342063" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/rb-ud.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-ud.svg"> <defs id="defs2"> <linearGradient inkscape:collect="always" id="linearGradient1474"> <stop style="stop-color:#e2e2dd;stop-opacity:1" |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" | | | | | | | | > | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.2755907,0,0,3.2755907,1.1677089,-677.01804)" /> </defs> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="19.923077" inkscape:cx="6.7509655" inkscape:cy="-3.0604166" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1046" inkscape:window-height="570" inkscape:window-x="254" inkscape:window-y="3" inkscape:window-maximized="0" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.13229197,-284.13226)"> <circle style="opacity:1;fill:url(#linearGradient1476);fill-opacity:0.4;stroke:#003c74;stroke-width:1.34878194;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4;paint-order:normal" id="path1468" cx="6.3677082" cy="290.63226" r="5.8256092" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/rb-un.svg.
︙ | ︙ | |||
8 9 10 11 12 13 14 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13" height="13" viewBox="0 0 13 13" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="rb-un.svg"> <defs id="defs2"> <linearGradient |
︙ | ︙ | |||
36 37 38 39 40 41 42 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" | | | | | | | > | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | xlink:href="#linearGradient1474" id="linearGradient1476" x1="0.45715976" y1="294.3374" x2="3.5618277" y2="297.38177" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.2755907,0,0,3.2755907,1.1677089,-677.01804)" /> </defs> <sodipodi:namedview id="base" pagecolor="#424242" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="20.692308" inkscape:cx="6.5" inkscape:cy="6.5" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" units="px" inkscape:window-width="1046" inkscape:window-height="570" inkscape:window-x="254" inkscape:window-y="3" inkscape:window-maximized="0" showborder="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:pagecheckerboard="true" /> <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" transform="translate(0.13229197,-284.13226)"> <circle style="opacity:1;fill:url(#linearGradient1476);fill-opacity:1;stroke:#003c74;stroke-width:1.34878194;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" id="path1468" cx="6.3677082" cy="290.63226" r="5.8256092" /> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/tree-arrow-down-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-down-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ece9d8;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(0,4.0134838,-3.5592094,0,363.25511,-363.94223)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/i/winxpblue/tree-arrow-right-n.svg.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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="12" height="12" | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <?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="12" height="12" viewBox="0 0 12 12" version="1.1" id="svg8" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="tree-arrow-right-n.svg"> <defs id="defs2" /> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="29.333334" inkscape:cx="5.9999999" inkscape:cy="5.9999999" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1166" |
︙ | ︙ | |||
56 57 58 59 60 61 62 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" | | | | | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(130.68951,-118.93672)"> <rect y="118.93672" x="-130.68951" height="12" width="12" id="rect11" style="opacity:1;fill:#ece9d8;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> <g aria-label="›" transform="matrix(4.0134838,0,0,3.5592094,-613.56845,-363.00796)" style="font-style:normal;font-weight:normal;font-size:4.38677835px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="text817"> <path d="m 121.30682,136.11038 1.00459,0.89535 v 0.17564 l -1.00459,0.89535 v -0.40912 l 0.64474,-0.57405 -0.64474,-0.57405 z" style="fill:#003c74;fill-opacity:1;stroke:#003c74;stroke-width:0.16271754;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path815" inkscape:connector-curvature="0" /> </g> </g> </svg> |
Changes to assets/awthemes7/pkgIndex.tcl.
|
| | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | package ifneeded awthemes 7.5 \ [list source [file join $dir awthemes.tcl]] package ifneeded colorutils 4.5 \ [list source [file join $dir colorutils.tcl]] package ifneeded awdark 7.1 \ [list source [file join $dir awdark.tcl]] package ifneeded awlight 7.1 \ [list source [file join $dir awlight.tcl]] package ifneeded black 7.0 \ [list source [file join $dir awblack.tcl]] package ifneeded winxpblue 7.1 \ [list source [file join $dir awwinxpblue.tcl]] package ifneeded ttk::theme::awdark 7.1 \ [list source [file join $dir awdark.tcl]] package ifneeded ttk::theme::awlight 7.1 \ [list source [file join $dir awlight.tcl]] package ifneeded ttk::theme::black 7.0 \ [list source [file join $dir awblack.tcl]] package ifneeded ttk::theme::winxpblue 7.1 \ [list source [file join $dir awwinxpblue.tcl]] |