diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..bf7d840dfe817a803ab373c02a6a13d66f8d9586 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +.directory diff --git a/html/themes/breezy/datepicker.css b/html/themes/breezy/datepicker.css new file mode 100644 index 0000000000000000000000000000000000000000..3505b4c8f56cc09d4de099f39547621b86ae2eeb --- /dev/null +++ b/html/themes/breezy/datepicker.css @@ -0,0 +1,196 @@ + + +div.datepicker { +position:absolute; +text-align:center; +border:1px #AAA solid; +font-family:arial; +background:#FFF; +font-size:10px; +padding:0; +} + +div.datepicker-calendar table { +font-size:10px; +border:1px solid #FFF; +margin:0; +padding:0; +text-align:center; +} + +div.datepicker div.datepicker-header { +font-size:11px; +font-weight:bold; +background:#F0F0F0; +border-bottom:1px solid #AAA; +padding:2px; +text-align:center; +} + +div.datepicker table.header { +width:175px; +border:0; +padding:0; +text-align:center; +border-spacing:0; +border-collapse:collapse; +} + +td.prev,td.prev_year,td.next,td.next_year { +width:8%; +cursor:pointer; +font-weight:bold; +line-height:16px; +} + +td.prev:hover,td.prev_year:hover,td.next:hover,td.next_year:hover { +background-color:#D0D0D0; +} + +td.header { +text-align:center; +width:68%; +font-weight:bold; +line-height:16px; +} + +div.datepicker-header { +height:16px; +} + +div.datepicker-calendar table tbody tr { +border:1px solid #FFF; +margin:0; +padding:0; +} + +div.datepicker-calendar table tbody tr td { +border:1px #EAEAEA solid; +margin:0; +padding:0; +text-align:center; +height:16px; +line-height:16px; +width:21px; +cursor:pointer; +} + +div.datepicker-calendar table tbody tr td:hover,div.datepicker-calendar table tbody tr td.outbound:hover,div.datepicker-calendar table tbody tr td.today:hover { +border:1px #CCE9FF solid; +background:#E9F5FF; +cursor:pointer; +} + +div.datepicker-calendar table tbody tr td.wday { +border:1px #AAA solid; +background:#CCC; +cursor:text; +width:21px; +height:16px; +line-height:16px; +font-weight:bold; +} + +div.datepicker-calendar table tbody tr td.outbound { +background:#F4F3F3; +} + +div.datepicker-calendar table tbody tr td.today { +border:1px #CCE9FF solid; +background:#E9F5FF; +background-image:url(../../images/date_active.png); +background-repeat:no-repeat; +width:21px; +height:16px; +line-height:16px; +} + +div.datepicker-calendar table tbody tr td.today:hover { +border:1px #CCE9FF solid; +background:#E9F5FF; +background-image:url(../../images/date_active.png); +background-repeat:no-repeat; +} + +div.datepicker-calendar table tbody tr td.nclick,div.datepicker-calendar table tbody tr td.nclick_outbound { +cursor:default; +color:#aaa; +width:21px; +height:16px; +line-height:16px; +} + +div.datepicker-calendar table tbody tr td.nclick_outbound { +background:#E8E4E4; +width:21px; +height:16px; +line-height:16px; +} + +div.datepicker-calendar table tbody tr td.nclick:hover,div.datepicker-calendar table tbody tr td.nclick_outbound:hover { +border:1px #EAEAEA solid; +background:#FFF; +} + +div.datepicker-calendar table tbody tr td.nclick_outbound:hover { +background:#E8E4E4; +} + +div.datepicker div.datepicker-footer { +font-size:10px; +background:#F0F0F0; +border-top:1px solid #AAA; +cursor:pointer; +text-align:center; +padding:2px; +} + +.date { +float:left; +text-align:center; +width:90px; +} +html.rtl .date { +float:right; +} + +.datepicker-opener-table { +border:1px solid transparent; +padding:0; +border-spacing:0; +margin:0 0 0 93px; +background:transparent url(../../geticon.php?context=applications&icon=office-calendar&size=16) no-repeat 0 0; +width:18px; +height:18px; +cursor:pointer; +} +html.rtl .datepicker-opener-table { +margin:0 93px 0 0; +} + +.Opera .datepicker-opener-table { +float:right; +} +html.rtl .Opera .datepicker-opener-table { +float:left; +} + +.IE7 .datepicker-opener-table { +position:relative; +top:0; +left:3px; +} +html.rtl .IE7 .datepicker-opener-table { +right:3px; +left:auto; +} + +.datepicker-opener { +width:16px; +height:16px; +margin:0 0 0 3px; +cursor:pointer; +} +html.rtl .datepicker-opener { +margin:0 3px 0 0; +} diff --git a/html/themes/breezy/dialog.css b/html/themes/breezy/dialog.css new file mode 100644 index 0000000000000000000000000000000000000000..7ed68719db78ccf59e53c98f5d384bfc36e2f684 --- /dev/null +++ b/html/themes/breezy/dialog.css @@ -0,0 +1,32 @@ + +div.msgtitle { +width:auto; +background-color:#F0F0F0; +border: solid 1px #BBBBBB; +margin-bottom:7px; +} +div.msgtitle h2 { +margin:10px; +} + +div.msgdialog { +width:60%; +z-index:150; +position:relative; +display:none; +margin:auto; +top:200px; +} +@media (max-height: 600px) { + div.msgdialog { + top:auto; + } +} + +/* Small screens (i.e. phones) */ +@media (max-width: 640px) { + div.msgdialog { + top:auto; + width:auto; + } +} diff --git a/html/themes/breezy/form.css b/html/themes/breezy/form.css new file mode 100644 index 0000000000000000000000000000000000000000..610bbf86b3f2649481bba642b659c7b98cc0291e --- /dev/null +++ b/html/themes/breezy/form.css @@ -0,0 +1,27 @@ +input, input:focus, select, textarea, textarea:focus { +font-size:12px; +} + +input[type=text], input[type=password], select { +padding:2px; +} + +input[disabled] { +color:#888; +background-color:#DDD; +} + +textarea[disabled], select[disabled] { +color:#000; +background-color:#DDD; +} + +/* On small screens */ +@media (max-width: 640px) { + input[type=text], input[type=password], input[type=file], textarea, select { + max-width:100%; + } + input.base_selector { + max-width:100px; + } +} diff --git a/html/themes/breezy/icons/16/actions/add.png b/html/themes/breezy/icons/16/actions/add.png new file mode 100644 index 0000000000000000000000000000000000000000..26713fd2a72e882372baebdb755a55427d3aab12 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/add.png differ diff --git a/html/themes/breezy/icons/16/actions/document-edit.png b/html/themes/breezy/icons/16/actions/document-edit.png new file mode 100644 index 0000000000000000000000000000000000000000..a11c31757742ec86c590aa30520eb341270897c6 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/document-edit.png differ diff --git a/html/themes/breezy/icons/16/actions/document-export.png b/html/themes/breezy/icons/16/actions/document-export.png new file mode 120000 index 0000000000000000000000000000000000000000..955450ad8aefddbbb910f4220f5933791d5674db --- /dev/null +++ b/html/themes/breezy/icons/16/actions/document-export.png @@ -0,0 +1 @@ +export.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/actions/document-import.png b/html/themes/breezy/icons/16/actions/document-import.png new file mode 100644 index 0000000000000000000000000000000000000000..48097aa369985651fba326a32944119109ad8fdd Binary files /dev/null and b/html/themes/breezy/icons/16/actions/document-import.png differ diff --git a/html/themes/breezy/icons/16/actions/document-new.png b/html/themes/breezy/icons/16/actions/document-new.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7b13cc50f5e0e0ff74b8b1e5f717ad64ad7f4f Binary files /dev/null and b/html/themes/breezy/icons/16/actions/document-new.png differ diff --git a/html/themes/breezy/icons/16/actions/document-restore.png b/html/themes/breezy/icons/16/actions/document-restore.png new file mode 100644 index 0000000000000000000000000000000000000000..c1b3f5f73852c5fa75a05bc2b487656116fca836 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/document-restore.png differ diff --git a/html/themes/breezy/icons/16/actions/document-save.png b/html/themes/breezy/icons/16/actions/document-save.png new file mode 120000 index 0000000000000000000000000000000000000000..37b0485e473b554d318aa54f72b13a558e4e2046 --- /dev/null +++ b/html/themes/breezy/icons/16/actions/document-save.png @@ -0,0 +1 @@ +save.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/actions/down.png b/html/themes/breezy/icons/16/actions/down.png new file mode 100644 index 0000000000000000000000000000000000000000..4459ab35d9395be18d072a8ba89c17c1afe9277c Binary files /dev/null and b/html/themes/breezy/icons/16/actions/down.png differ diff --git a/html/themes/breezy/icons/16/actions/edit-copy.png b/html/themes/breezy/icons/16/actions/edit-copy.png new file mode 100644 index 0000000000000000000000000000000000000000..b804d7a981d61d0fb24bf90579fba0394952a761 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/edit-copy.png differ diff --git a/html/themes/breezy/icons/16/actions/edit-cut.png b/html/themes/breezy/icons/16/actions/edit-cut.png new file mode 100644 index 0000000000000000000000000000000000000000..795d4a1fb6b07a7c425fe471c15495d09a4b1e05 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/edit-cut.png differ diff --git a/html/themes/breezy/icons/16/actions/edit-delete.png b/html/themes/breezy/icons/16/actions/edit-delete.png new file mode 100644 index 0000000000000000000000000000000000000000..21ce6f71c3218ef8c943176a61a60a26178568b8 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/edit-delete.png differ diff --git a/html/themes/breezy/icons/16/actions/edit-paste.png b/html/themes/breezy/icons/16/actions/edit-paste.png new file mode 100644 index 0000000000000000000000000000000000000000..8fe8effbc3b7a29c6c17526bea157ee6b96c91a9 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/edit-paste.png differ diff --git a/html/themes/breezy/icons/16/actions/export.png b/html/themes/breezy/icons/16/actions/export.png new file mode 100644 index 0000000000000000000000000000000000000000..42060fc3a9f9a3d8acdab2fb66c560a3847b4c01 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/export.png differ diff --git a/html/themes/breezy/icons/16/actions/go-first.png b/html/themes/breezy/icons/16/actions/go-first.png new file mode 100644 index 0000000000000000000000000000000000000000..f4fb1b827046a49e1b94202cf8fc647017832268 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/go-first.png differ diff --git a/html/themes/breezy/icons/16/actions/go-home.png b/html/themes/breezy/icons/16/actions/go-home.png new file mode 100644 index 0000000000000000000000000000000000000000..58bf7c130ca5f5576e576554823f18eeca901c18 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/go-home.png differ diff --git a/html/themes/breezy/icons/16/actions/go-previous.png b/html/themes/breezy/icons/16/actions/go-previous.png new file mode 100644 index 0000000000000000000000000000000000000000..cb61de83721ed99dc9658a2a5f1b426785787a9c Binary files /dev/null and b/html/themes/breezy/icons/16/actions/go-previous.png differ diff --git a/html/themes/breezy/icons/16/actions/go-up.png b/html/themes/breezy/icons/16/actions/go-up.png new file mode 120000 index 0000000000000000000000000000000000000000..56c7bd87160a7f54dcefddb10ed4acec3d845eea --- /dev/null +++ b/html/themes/breezy/icons/16/actions/go-up.png @@ -0,0 +1 @@ +go-previous.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/actions/next.png b/html/themes/breezy/icons/16/actions/next.png new file mode 100644 index 0000000000000000000000000000000000000000..1d5e3d9d4f8ed6e145222c603db1131fe34341de Binary files /dev/null and b/html/themes/breezy/icons/16/actions/next.png differ diff --git a/html/themes/breezy/icons/16/actions/previous.png b/html/themes/breezy/icons/16/actions/previous.png new file mode 120000 index 0000000000000000000000000000000000000000..56c7bd87160a7f54dcefddb10ed4acec3d845eea --- /dev/null +++ b/html/themes/breezy/icons/16/actions/previous.png @@ -0,0 +1 @@ +go-previous.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/actions/process-stop.png b/html/themes/breezy/icons/16/actions/process-stop.png new file mode 100644 index 0000000000000000000000000000000000000000..04180cc79aae222f9b36861f2c9f93fec0080ef7 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/process-stop.png differ diff --git a/html/themes/breezy/icons/16/actions/remove.png b/html/themes/breezy/icons/16/actions/remove.png new file mode 100644 index 0000000000000000000000000000000000000000..453133763bf6ee2759b7af2d8acfa5c5023d0b90 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/remove.png differ diff --git a/html/themes/breezy/icons/16/actions/save.png b/html/themes/breezy/icons/16/actions/save.png new file mode 100644 index 0000000000000000000000000000000000000000..5f3e7777b71ea113255ecd72a4636b5ab3871f2c Binary files /dev/null and b/html/themes/breezy/icons/16/actions/save.png differ diff --git a/html/themes/breezy/icons/16/actions/snapshot.png b/html/themes/breezy/icons/16/actions/snapshot.png new file mode 100644 index 0000000000000000000000000000000000000000..1bdb715d2c516a3b759f7f66f65c9d99d12b491b Binary files /dev/null and b/html/themes/breezy/icons/16/actions/snapshot.png differ diff --git a/html/themes/breezy/icons/16/actions/submit.png b/html/themes/breezy/icons/16/actions/submit.png new file mode 100644 index 0000000000000000000000000000000000000000..a732cc6b2eca5cf356a17e52bc1a1dc205d10df4 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/submit.png differ diff --git a/html/themes/breezy/icons/16/actions/system-reboot.png b/html/themes/breezy/icons/16/actions/system-reboot.png new file mode 120000 index 0000000000000000000000000000000000000000..521b94e2e90b0bed64a937c1c2c4a56ae2fa9c98 --- /dev/null +++ b/html/themes/breezy/icons/16/actions/system-reboot.png @@ -0,0 +1 @@ +view-refresh.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/actions/system-reinstall.png b/html/themes/breezy/icons/16/actions/system-reinstall.png new file mode 100644 index 0000000000000000000000000000000000000000..91313c962b00de053221a6e0e63ded43b3999922 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/system-reinstall.png differ diff --git a/html/themes/breezy/icons/16/actions/system-search.png b/html/themes/breezy/icons/16/actions/system-search.png new file mode 100644 index 0000000000000000000000000000000000000000..ec245aa03ab2f42b5f660719fb976a22d66a7922 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/system-search.png differ diff --git a/html/themes/breezy/icons/16/actions/system-shutdown.png b/html/themes/breezy/icons/16/actions/system-shutdown.png new file mode 100644 index 0000000000000000000000000000000000000000..054e1eb03418f9357ec2dacb6397ebab24810629 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/system-shutdown.png differ diff --git a/html/themes/breezy/icons/16/actions/system-update.png b/html/themes/breezy/icons/16/actions/system-update.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf85a527a4cf65af53cd92e05769d00fe8e9c5 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/system-update.png differ diff --git a/html/themes/breezy/icons/16/actions/tools-wizard.png b/html/themes/breezy/icons/16/actions/tools-wizard.png new file mode 100644 index 0000000000000000000000000000000000000000..269f73d221e64a7a64b11390d436cffee8b73d0b Binary files /dev/null and b/html/themes/breezy/icons/16/actions/tools-wizard.png differ diff --git a/html/themes/breezy/icons/16/actions/up.png b/html/themes/breezy/icons/16/actions/up.png new file mode 100644 index 0000000000000000000000000000000000000000..31aae289f01b7541e9b9ff667b1397a5aa8b8230 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/up.png differ diff --git a/html/themes/breezy/icons/16/actions/view-refresh.png b/html/themes/breezy/icons/16/actions/view-refresh.png new file mode 100644 index 0000000000000000000000000000000000000000..6486ddd3116618b6fddd7d0406c1602f47d115e3 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/view-refresh.png differ diff --git a/html/themes/breezy/icons/16/actions/view-sort-ascending.png b/html/themes/breezy/icons/16/actions/view-sort-ascending.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d127cfe0b933f7e14d2ccfd64c40a2d58c82a9 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/view-sort-ascending.png differ diff --git a/html/themes/breezy/icons/16/actions/view-sort-descending.png b/html/themes/breezy/icons/16/actions/view-sort-descending.png new file mode 100644 index 0000000000000000000000000000000000000000..9e7034dfc671a757f05b4af2e5870e5cd914e477 Binary files /dev/null and b/html/themes/breezy/icons/16/actions/view-sort-descending.png differ diff --git a/html/themes/breezy/icons/16/apps/antivirus.png b/html/themes/breezy/icons/16/apps/antivirus.png new file mode 100644 index 0000000000000000000000000000000000000000..ae36237ebdb95f676175c77f6558705fdc89640f Binary files /dev/null and b/html/themes/breezy/icons/16/apps/antivirus.png differ diff --git a/html/themes/breezy/icons/16/apps/apache.png b/html/themes/breezy/icons/16/apps/apache.png new file mode 100644 index 0000000000000000000000000000000000000000..49071a81aadd16b9f7a3288903fa46eb490a37cf Binary files /dev/null and b/html/themes/breezy/icons/16/apps/apache.png differ diff --git a/html/themes/breezy/icons/16/apps/imap.png b/html/themes/breezy/icons/16/apps/imap.png new file mode 100644 index 0000000000000000000000000000000000000000..5b23a8fd88ea4ddac933d736ce78b7f0760ec577 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/imap.png differ diff --git a/html/themes/breezy/icons/16/apps/internet-mail.png b/html/themes/breezy/icons/16/apps/internet-mail.png new file mode 100644 index 0000000000000000000000000000000000000000..c36d6c9b16d8698865f4c7a40666737a95dd7f66 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/internet-mail.png differ diff --git a/html/themes/breezy/icons/16/apps/ldap.png b/html/themes/breezy/icons/16/apps/ldap.png new file mode 100644 index 0000000000000000000000000000000000000000..ce8075c3923632dd91dfb97629223323da8076f4 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/ldap.png differ diff --git a/html/themes/breezy/icons/16/apps/office-calendar.png b/html/themes/breezy/icons/16/apps/office-calendar.png new file mode 100644 index 0000000000000000000000000000000000000000..3053b72e36a5a88717fdb57ea6f83f88fc3021c3 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/office-calendar.png differ diff --git a/html/themes/breezy/icons/16/apps/os-linux.png b/html/themes/breezy/icons/16/apps/os-linux.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc2db25aef73f1fb6059c575c980bd26497de0b Binary files /dev/null and b/html/themes/breezy/icons/16/apps/os-linux.png differ diff --git a/html/themes/breezy/icons/16/apps/os-windows.png b/html/themes/breezy/icons/16/apps/os-windows.png new file mode 100644 index 0000000000000000000000000000000000000000..e61128ef83f289bacdd7de18a86bdf3b9ff61e01 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/os-windows.png differ diff --git a/html/themes/breezy/icons/16/apps/smtp.png b/html/themes/breezy/icons/16/apps/smtp.png new file mode 100644 index 0000000000000000000000000000000000000000..5d945a7df652d6d26714107b1781802e78861507 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/smtp.png differ diff --git a/html/themes/breezy/icons/16/apps/spamassassin.png b/html/themes/breezy/icons/16/apps/spamassassin.png new file mode 100644 index 0000000000000000000000000000000000000000..741f0af7f97f59f430cc68b870132859fa8e8ce7 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/spamassassin.png differ diff --git a/html/themes/breezy/icons/16/apps/utilities-system-monitor.png b/html/themes/breezy/icons/16/apps/utilities-system-monitor.png new file mode 100644 index 0000000000000000000000000000000000000000..4b0f5693eb756bd7481760ef7227a4ea6f30a8a8 Binary files /dev/null and b/html/themes/breezy/icons/16/apps/utilities-system-monitor.png differ diff --git a/html/themes/breezy/icons/16/categories/acl.png b/html/themes/breezy/icons/16/categories/acl.png new file mode 100644 index 0000000000000000000000000000000000000000..4a490637c2d3424bc9e3d7920db7c2faa75c7a43 Binary files /dev/null and b/html/themes/breezy/icons/16/categories/acl.png differ diff --git a/html/themes/breezy/icons/16/categories/applications-internet.png b/html/themes/breezy/icons/16/categories/applications-internet.png new file mode 100644 index 0000000000000000000000000000000000000000..f2a5d418912b05fcee31ffd9b46e4b3f20e85b78 Binary files /dev/null and b/html/themes/breezy/icons/16/categories/applications-internet.png differ diff --git a/html/themes/breezy/icons/16/categories/settings.png b/html/themes/breezy/icons/16/categories/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..18b3f8b30b8bb0e01e78c8e4125e9674b362047e Binary files /dev/null and b/html/themes/breezy/icons/16/categories/settings.png differ diff --git a/html/themes/breezy/icons/16/devices/computer.png b/html/themes/breezy/icons/16/devices/computer.png new file mode 100644 index 0000000000000000000000000000000000000000..ffb0d23696e64b4176e6e7b9f83b40ebfc0324d8 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/computer.png differ diff --git a/html/themes/breezy/icons/16/devices/media-cdrom.png b/html/themes/breezy/icons/16/devices/media-cdrom.png new file mode 100644 index 0000000000000000000000000000000000000000..c929518f9aceaba91796cac44bbf57a606b04297 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/media-cdrom.png differ diff --git a/html/themes/breezy/icons/16/devices/network-device.png b/html/themes/breezy/icons/16/devices/network-device.png new file mode 100644 index 0000000000000000000000000000000000000000..d320c3d965c886b17e6162f48ab0073ea726f763 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/network-device.png differ diff --git a/html/themes/breezy/icons/16/devices/phone.png b/html/themes/breezy/icons/16/devices/phone.png new file mode 100644 index 0000000000000000000000000000000000000000..2faff6c2c25384f81249fe81864ce5b6d51f76ed Binary files /dev/null and b/html/themes/breezy/icons/16/devices/phone.png differ diff --git a/html/themes/breezy/icons/16/devices/printer.png b/html/themes/breezy/icons/16/devices/printer.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f3bae9db893c4d876f4880875e3d5fade93b31 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/printer.png differ diff --git a/html/themes/breezy/icons/16/devices/server.png b/html/themes/breezy/icons/16/devices/server.png new file mode 100644 index 0000000000000000000000000000000000000000..11f96cb0ffea2a5ffd3fe2d31ef43bffc6028914 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/server.png differ diff --git a/html/themes/breezy/icons/16/devices/telephone.png b/html/themes/breezy/icons/16/devices/telephone.png new file mode 100644 index 0000000000000000000000000000000000000000..7094edf32bbb9a1be6922a9e07dab16ab693d2db Binary files /dev/null and b/html/themes/breezy/icons/16/devices/telephone.png differ diff --git a/html/themes/breezy/icons/16/devices/terminal.png b/html/themes/breezy/icons/16/devices/terminal.png new file mode 100644 index 0000000000000000000000000000000000000000..61bd3feb9cabe9a746d3181d812e9f57e8052523 Binary files /dev/null and b/html/themes/breezy/icons/16/devices/terminal.png differ diff --git a/html/themes/breezy/icons/16/mimetypes/application-certificate.png b/html/themes/breezy/icons/16/mimetypes/application-certificate.png new file mode 100644 index 0000000000000000000000000000000000000000..ff1475cd6f8686e8cdeb672a8b965064262fb6b3 Binary files /dev/null and b/html/themes/breezy/icons/16/mimetypes/application-certificate.png differ diff --git a/html/themes/breezy/icons/16/mimetypes/application-pdf.png b/html/themes/breezy/icons/16/mimetypes/application-pdf.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc7ed7e7d8552bd741e097ae9c4fbad2ae5b1b9 Binary files /dev/null and b/html/themes/breezy/icons/16/mimetypes/application-pdf.png differ diff --git a/html/themes/breezy/icons/16/mimetypes/application-x-executable.png b/html/themes/breezy/icons/16/mimetypes/application-x-executable.png new file mode 100644 index 0000000000000000000000000000000000000000..60143ae376a1596c8a64ee019018f09758f871b3 Binary files /dev/null and b/html/themes/breezy/icons/16/mimetypes/application-x-executable.png differ diff --git a/html/themes/breezy/icons/16/mimetypes/package-x-generic.png b/html/themes/breezy/icons/16/mimetypes/package-x-generic.png new file mode 100644 index 0000000000000000000000000000000000000000..8e5c2394c12211a7ffd10938a82f9e3630d9022f Binary files /dev/null and b/html/themes/breezy/icons/16/mimetypes/package-x-generic.png differ diff --git a/html/themes/breezy/icons/16/mimetypes/text-csv.png b/html/themes/breezy/icons/16/mimetypes/text-csv.png new file mode 100644 index 0000000000000000000000000000000000000000..875d121bf1df19c4ef910c56ac2ef4de8141add0 Binary files /dev/null and b/html/themes/breezy/icons/16/mimetypes/text-csv.png differ diff --git a/html/themes/breezy/icons/16/places/folder.png b/html/themes/breezy/icons/16/places/folder.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2ea1a3f363c7c6094b347dd782e9f7cda4d124 Binary files /dev/null and b/html/themes/breezy/icons/16/places/folder.png differ diff --git a/html/themes/breezy/icons/16/status/dialog-error.png b/html/themes/breezy/icons/16/status/dialog-error.png new file mode 100644 index 0000000000000000000000000000000000000000..2e671bb882e37ee14d0b31badc9008b161f6b92a Binary files /dev/null and b/html/themes/breezy/icons/16/status/dialog-error.png differ diff --git a/html/themes/breezy/icons/16/status/dialog-information.png b/html/themes/breezy/icons/16/status/dialog-information.png new file mode 100644 index 0000000000000000000000000000000000000000..3f44b366fda2703ba6d4ddee33fc41042466e139 Binary files /dev/null and b/html/themes/breezy/icons/16/status/dialog-information.png differ diff --git a/html/themes/breezy/icons/16/status/dialog-password.png b/html/themes/breezy/icons/16/status/dialog-password.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5d6f08f202fe65f56f5956e9b8538ad70e281b Binary files /dev/null and b/html/themes/breezy/icons/16/status/dialog-password.png differ diff --git a/html/themes/breezy/icons/16/status/dialog-warning.png b/html/themes/breezy/icons/16/status/dialog-warning.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6decaa7806177333fcad60c4a8de1562a659f9 Binary files /dev/null and b/html/themes/breezy/icons/16/status/dialog-warning.png differ diff --git a/html/themes/breezy/icons/16/status/locked.png b/html/themes/breezy/icons/16/status/locked.png new file mode 100644 index 0000000000000000000000000000000000000000..5fcd75689dbdfb70ed306702a0d84b58c0353b20 Binary files /dev/null and b/html/themes/breezy/icons/16/status/locked.png differ diff --git a/html/themes/breezy/icons/16/status/object-locked.png b/html/themes/breezy/icons/16/status/object-locked.png new file mode 120000 index 0000000000000000000000000000000000000000..df5f696f582462575fbf7e054865a012b489c281 --- /dev/null +++ b/html/themes/breezy/icons/16/status/object-locked.png @@ -0,0 +1 @@ +locked.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/status/object-unlocked.png b/html/themes/breezy/icons/16/status/object-unlocked.png new file mode 120000 index 0000000000000000000000000000000000000000..1f22af4c8b8fbfb44d48f17716e88a61a0c66da7 --- /dev/null +++ b/html/themes/breezy/icons/16/status/object-unlocked.png @@ -0,0 +1 @@ +unlocked.png \ No newline at end of file diff --git a/html/themes/breezy/icons/16/status/task-complete.png b/html/themes/breezy/icons/16/status/task-complete.png new file mode 100644 index 0000000000000000000000000000000000000000..26713fd2a72e882372baebdb755a55427d3aab12 Binary files /dev/null and b/html/themes/breezy/icons/16/status/task-complete.png differ diff --git a/html/themes/breezy/icons/16/status/task-failure.png b/html/themes/breezy/icons/16/status/task-failure.png new file mode 100644 index 0000000000000000000000000000000000000000..db42df4f1a3dea7804e497eaf430fd5e13d08390 Binary files /dev/null and b/html/themes/breezy/icons/16/status/task-failure.png differ diff --git a/html/themes/breezy/icons/16/status/task-running.png b/html/themes/breezy/icons/16/status/task-running.png new file mode 100644 index 0000000000000000000000000000000000000000..58888a8f6fc4cd7597e230e134f6db7bf7d6444e Binary files /dev/null and b/html/themes/breezy/icons/16/status/task-running.png differ diff --git a/html/themes/breezy/icons/16/status/task-stopped.png b/html/themes/breezy/icons/16/status/task-stopped.png new file mode 100644 index 0000000000000000000000000000000000000000..a5549723710750c9d1e32976e43a80e049f4c79a Binary files /dev/null and b/html/themes/breezy/icons/16/status/task-stopped.png differ diff --git a/html/themes/breezy/icons/16/status/unlocked.png b/html/themes/breezy/icons/16/status/unlocked.png new file mode 100644 index 0000000000000000000000000000000000000000..3d27b27a8dfaa3bade8de1fc776aa3f6d9af44b7 Binary files /dev/null and b/html/themes/breezy/icons/16/status/unlocked.png differ diff --git a/html/themes/breezy/icons/16/types/action.png b/html/themes/breezy/icons/16/types/action.png new file mode 100644 index 0000000000000000000000000000000000000000..ce573973589143cdbdda1c2911d5f7f513f83505 Binary files /dev/null and b/html/themes/breezy/icons/16/types/action.png differ diff --git a/html/themes/breezy/icons/16/types/application.png b/html/themes/breezy/icons/16/types/application.png new file mode 100644 index 0000000000000000000000000000000000000000..49ab42402f23851e5ff7f2e88c4b522bd82644ef Binary files /dev/null and b/html/themes/breezy/icons/16/types/application.png differ diff --git a/html/themes/breezy/icons/16/types/contact.png b/html/themes/breezy/icons/16/types/contact.png new file mode 100644 index 0000000000000000000000000000000000000000..ffec716b8d0a79001bf45692569deabba00637e9 Binary files /dev/null and b/html/themes/breezy/icons/16/types/contact.png differ diff --git a/html/themes/breezy/icons/16/types/country.png b/html/themes/breezy/icons/16/types/country.png new file mode 100644 index 0000000000000000000000000000000000000000..e407cc36423ea06d22a993935ea5411c4422b9a3 Binary files /dev/null and b/html/themes/breezy/icons/16/types/country.png differ diff --git a/html/themes/breezy/icons/16/types/dc.png b/html/themes/breezy/icons/16/types/dc.png new file mode 100644 index 0000000000000000000000000000000000000000..48950d22b4f33938021ef6834206da3bd17f9c61 Binary files /dev/null and b/html/themes/breezy/icons/16/types/dc.png differ diff --git a/html/themes/breezy/icons/16/types/domain.png b/html/themes/breezy/icons/16/types/domain.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ba0236fbebb445bb2585088de88c75a147db04 Binary files /dev/null and b/html/themes/breezy/icons/16/types/domain.png differ diff --git a/html/themes/breezy/icons/16/types/locality.png b/html/themes/breezy/icons/16/types/locality.png new file mode 100644 index 0000000000000000000000000000000000000000..95d41d8f0a5ab9896a87a44521f47363c8afcd7a Binary files /dev/null and b/html/themes/breezy/icons/16/types/locality.png differ diff --git a/html/themes/breezy/icons/16/types/organization.png b/html/themes/breezy/icons/16/types/organization.png new file mode 100644 index 0000000000000000000000000000000000000000..11f96cb0ffea2a5ffd3fe2d31ef43bffc6028914 Binary files /dev/null and b/html/themes/breezy/icons/16/types/organization.png differ diff --git a/html/themes/breezy/icons/16/types/resource-group.png b/html/themes/breezy/icons/16/types/resource-group.png new file mode 100644 index 0000000000000000000000000000000000000000..fd92f8280586b005e21360175a1c95b2d3aefaba Binary files /dev/null and b/html/themes/breezy/icons/16/types/resource-group.png differ diff --git a/html/themes/breezy/icons/16/types/role.png b/html/themes/breezy/icons/16/types/role.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c0a361486fcdd8ef59ac248367adc685efba7b Binary files /dev/null and b/html/themes/breezy/icons/16/types/role.png differ diff --git a/html/themes/breezy/icons/16/types/user-group.png b/html/themes/breezy/icons/16/types/user-group.png new file mode 100644 index 0000000000000000000000000000000000000000..3c757f8a76032ef100cfaa3fc464e6ace43e35db Binary files /dev/null and b/html/themes/breezy/icons/16/types/user-group.png differ diff --git a/html/themes/breezy/icons/16/types/user.png b/html/themes/breezy/icons/16/types/user.png new file mode 100644 index 0000000000000000000000000000000000000000..8d48d1606a0dffed9971c40c44059984ba088e25 Binary files /dev/null and b/html/themes/breezy/icons/16/types/user.png differ diff --git a/html/themes/breezy/icons/22/actions/application-exit.png b/html/themes/breezy/icons/22/actions/application-exit.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b5c263bc6c73622375b3e6159929014b50561a Binary files /dev/null and b/html/themes/breezy/icons/22/actions/application-exit.png differ diff --git a/html/themes/breezy/icons/22/actions/go-home.png b/html/themes/breezy/icons/22/actions/go-home.png new file mode 100644 index 0000000000000000000000000000000000000000..0ea70e946fbbc8f6fd78420425f3f22e137923eb Binary files /dev/null and b/html/themes/breezy/icons/22/actions/go-home.png differ diff --git a/html/themes/breezy/icons/22/status/dialog-error.png b/html/themes/breezy/icons/22/status/dialog-error.png new file mode 100644 index 0000000000000000000000000000000000000000..157871afa35486236be5e64882dff31a6b34adca Binary files /dev/null and b/html/themes/breezy/icons/22/status/dialog-error.png differ diff --git a/html/themes/breezy/icons/22/status/dialog-information.png b/html/themes/breezy/icons/22/status/dialog-information.png new file mode 100644 index 0000000000000000000000000000000000000000..4f2512b92e670b2186cbe20b075cd32710cf56c5 Binary files /dev/null and b/html/themes/breezy/icons/22/status/dialog-information.png differ diff --git a/html/themes/breezy/icons/32/status/dialog-error.png b/html/themes/breezy/icons/32/status/dialog-error.png new file mode 100644 index 0000000000000000000000000000000000000000..7f717bcd2d199f1bc3dcb764fe904015c7c5ea64 Binary files /dev/null and b/html/themes/breezy/icons/32/status/dialog-error.png differ diff --git a/html/themes/breezy/icons/32/status/dialog-information.png b/html/themes/breezy/icons/32/status/dialog-information.png new file mode 100644 index 0000000000000000000000000000000000000000..94ad87cff425cda04e9bba1151f9c4ab9cebd607 Binary files /dev/null and b/html/themes/breezy/icons/32/status/dialog-information.png differ diff --git a/html/themes/breezy/icons/32/status/dialog-warning.png b/html/themes/breezy/icons/32/status/dialog-warning.png new file mode 100644 index 0000000000000000000000000000000000000000..e57a7b664f3cae2b826551b59b040685a4855952 Binary files /dev/null and b/html/themes/breezy/icons/32/status/dialog-warning.png differ diff --git a/html/themes/breezy/icons/32/status/object-locked.png b/html/themes/breezy/icons/32/status/object-locked.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4ad36bc1a735c55d9d1cde21e2f3553df1ea9c Binary files /dev/null and b/html/themes/breezy/icons/32/status/object-locked.png differ diff --git a/html/themes/breezy/icons/48/actions/view-task.png b/html/themes/breezy/icons/48/actions/view-task.png new file mode 100644 index 0000000000000000000000000000000000000000..83e102c60bad055c7792d502c8cda7da4b22902c Binary files /dev/null and b/html/themes/breezy/icons/48/actions/view-task.png differ diff --git a/html/themes/breezy/icons/48/apps/apache.png b/html/themes/breezy/icons/48/apps/apache.png new file mode 100644 index 0000000000000000000000000000000000000000..eda64f44f58392bf2a2edaab5c2b92e8b1ca1be6 Binary files /dev/null and b/html/themes/breezy/icons/48/apps/apache.png differ diff --git a/html/themes/breezy/icons/48/apps/config-language.png b/html/themes/breezy/icons/48/apps/config-language.png new file mode 100644 index 0000000000000000000000000000000000000000..e7defacbc0bf331678b7e7e86a019f9dcdcee013 Binary files /dev/null and b/html/themes/breezy/icons/48/apps/config-language.png differ diff --git a/html/themes/breezy/icons/48/apps/config-welcome.png b/html/themes/breezy/icons/48/apps/config-welcome.png new file mode 100644 index 0000000000000000000000000000000000000000..fac7493d2207c11559b4b4bc122310f8c292d1d6 Binary files /dev/null and b/html/themes/breezy/icons/48/apps/config-welcome.png differ diff --git a/html/themes/breezy/icons/48/apps/internet-mail.png b/html/themes/breezy/icons/48/apps/internet-mail.png new file mode 100644 index 0000000000000000000000000000000000000000..332af4d921d901c04bddc6563d3e43765e85f3ec Binary files /dev/null and b/html/themes/breezy/icons/48/apps/internet-mail.png differ diff --git a/html/themes/breezy/icons/48/apps/os-linux.png b/html/themes/breezy/icons/48/apps/os-linux.png new file mode 100644 index 0000000000000000000000000000000000000000..0b06a53e16304ca20e836fc33816e5eb6c41d487 Binary files /dev/null and b/html/themes/breezy/icons/48/apps/os-linux.png differ diff --git a/html/themes/breezy/icons/48/apps/samba.png b/html/themes/breezy/icons/48/apps/samba.png new file mode 100644 index 0000000000000000000000000000000000000000..04ea3ad4b5c2212a18197688b54bc7775d07beb0 Binary files /dev/null and b/html/themes/breezy/icons/48/apps/samba.png differ diff --git a/html/themes/breezy/icons/48/apps/utilities-system-monitor.png b/html/themes/breezy/icons/48/apps/utilities-system-monitor.png new file mode 100644 index 0000000000000000000000000000000000000000..704a20c575fb69211c8560c5f5c374d95954ad6f Binary files /dev/null and b/html/themes/breezy/icons/48/apps/utilities-system-monitor.png differ diff --git a/html/themes/breezy/icons/48/categories/acl.png b/html/themes/breezy/icons/48/categories/acl.png new file mode 100644 index 0000000000000000000000000000000000000000..40b868f91c2cc1755492deea4b7eb1cd184af10c Binary files /dev/null and b/html/themes/breezy/icons/48/categories/acl.png differ diff --git a/html/themes/breezy/icons/48/categories/applications-development.png b/html/themes/breezy/icons/48/categories/applications-development.png new file mode 100644 index 0000000000000000000000000000000000000000..a5519b23546773a6a306a05d412c2abd19a01ee8 Binary files /dev/null and b/html/themes/breezy/icons/48/categories/applications-development.png differ diff --git a/html/themes/breezy/icons/48/categories/applications-other.png b/html/themes/breezy/icons/48/categories/applications-other.png new file mode 100644 index 0000000000000000000000000000000000000000..671fc7db7cd9cf4e39a13584429f1c6220ad1315 Binary files /dev/null and b/html/themes/breezy/icons/48/categories/applications-other.png differ diff --git a/html/themes/breezy/icons/48/categories/settings.png b/html/themes/breezy/icons/48/categories/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..b636ff0e63d6eafa5864387d44848a632cf7561c Binary files /dev/null and b/html/themes/breezy/icons/48/categories/settings.png differ diff --git a/html/themes/breezy/icons/48/devices/computer.png b/html/themes/breezy/icons/48/devices/computer.png new file mode 100644 index 0000000000000000000000000000000000000000..8e11658a9d576b51910689bed5501229dea6c925 Binary files /dev/null and b/html/themes/breezy/icons/48/devices/computer.png differ diff --git a/html/themes/breezy/icons/48/mimetypes/application-certificate.png b/html/themes/breezy/icons/48/mimetypes/application-certificate.png new file mode 100644 index 0000000000000000000000000000000000000000..fe298c2ed19b1a0881a688dc83db3f15b5db333f Binary files /dev/null and b/html/themes/breezy/icons/48/mimetypes/application-certificate.png differ diff --git a/html/themes/breezy/icons/48/places/folder.png b/html/themes/breezy/icons/48/places/folder.png new file mode 100644 index 0000000000000000000000000000000000000000..413ecce4c76f63ae68a6fb5f4c7c45254616160f Binary files /dev/null and b/html/themes/breezy/icons/48/places/folder.png differ diff --git a/html/themes/breezy/icons/48/places/network-server.png b/html/themes/breezy/icons/48/places/network-server.png new file mode 100644 index 0000000000000000000000000000000000000000..a680306c25b1d469b8cec99dc678af35bcbbef3c Binary files /dev/null and b/html/themes/breezy/icons/48/places/network-server.png differ diff --git a/html/themes/breezy/icons/48/status/dialog-password.png b/html/themes/breezy/icons/48/status/dialog-password.png new file mode 100644 index 0000000000000000000000000000000000000000..cfe82a9350c120fde7fa1eefc220cc4db5d92a30 Binary files /dev/null and b/html/themes/breezy/icons/48/status/dialog-password.png differ diff --git a/html/themes/breezy/icons/48/types/contact.png b/html/themes/breezy/icons/48/types/contact.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc482b1e4feb53ff8547ca511da29ab408c04af Binary files /dev/null and b/html/themes/breezy/icons/48/types/contact.png differ diff --git a/html/themes/breezy/icons/48/types/resource-group.png b/html/themes/breezy/icons/48/types/resource-group.png new file mode 100644 index 0000000000000000000000000000000000000000..ef462d2a355457940b9190a5887f8e6f3ff0b900 Binary files /dev/null and b/html/themes/breezy/icons/48/types/resource-group.png differ diff --git a/html/themes/breezy/icons/48/types/role.png b/html/themes/breezy/icons/48/types/role.png new file mode 100644 index 0000000000000000000000000000000000000000..1f42817a40c0e0d151bd540965ffb4fc641c0166 Binary files /dev/null and b/html/themes/breezy/icons/48/types/role.png differ diff --git a/html/themes/breezy/icons/48/types/user-group.png b/html/themes/breezy/icons/48/types/user-group.png new file mode 100644 index 0000000000000000000000000000000000000000..e563f60feb2c1a548fb88ab91384b9085bbaf556 Binary files /dev/null and b/html/themes/breezy/icons/48/types/user-group.png differ diff --git a/html/themes/breezy/icons/48/types/user.png b/html/themes/breezy/icons/48/types/user.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f730901a94fa3b5dbe653a85ba736845dc1187 Binary files /dev/null and b/html/themes/breezy/icons/48/types/user.png differ diff --git a/html/themes/breezy/icons/AUTHORS b/html/themes/breezy/icons/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..4edd0306fa7094ed1295ff42f86fb7864c3645c4 --- /dev/null +++ b/html/themes/breezy/icons/AUTHORS @@ -0,0 +1,216 @@ +Icon update for FusionDirectory by Timothée Giet, 2016. +All new icons are either copies, modified versions or creations largely inspired from the Breeze icon set. +See a copy of the license below, or at the original source location: +https://projects.kde.org/projects/kde/workspace/breeze/repository/revisions/master/entry/COPYING-ICONS + + +The Breeze Icon Theme in icons/ + + Copyright (C) 2014 Uri Herrera <uri_herrera@nitrux.in> and others + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library. If not, see <http://www.gnu.org/licenses/>. + +Clarification: + + The GNU Lesser General Public License or LGPL is written for + software libraries in the first place. We expressly want the LGPL to + be valid for this artwork library too. + + KDE Breeze theme icons is a special kind of software library, it is an + artwork library, it's elements can be used in a Graphical User Interface, or + GUI. + + Source code, for this library means: + - where they exist, SVG; + - otherwise, if applicable, the multi-layered formats xcf or psd, or + otherwise png. + + The LGPL in some sections obliges you to make the files carry + notices. With images this is in some cases impossible or hardly useful. + + With this library a notice is placed at a prominent place in the directory + containing the elements. You may follow this practice. + + The exception in section 5 of the GNU Lesser General Public License covers + the use of elements of this art library in a GUI. + + https://vdesign.kde.org/ + +----- + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + diff --git a/html/themes/breezy/icons/scalable/apps/fusiondirectory.png b/html/themes/breezy/icons/scalable/apps/fusiondirectory.png new file mode 100644 index 0000000000000000000000000000000000000000..6af1d1e544382cb8165d8fa3a9d470d4c427dc03 Binary files /dev/null and b/html/themes/breezy/icons/scalable/apps/fusiondirectory.png differ diff --git a/html/themes/breezy/images/border.png b/html/themes/breezy/images/border.png new file mode 100644 index 0000000000000000000000000000000000000000..a287c2bf91f2e4ecb4a6a4243c3186a96b281544 Binary files /dev/null and b/html/themes/breezy/images/border.png differ diff --git a/html/themes/breezy/index.theme b/html/themes/breezy/index.theme new file mode 100644 index 0000000000000000000000000000000000000000..a8adbcbea8e9cf20fc3447232bacba54e4fbaa41 --- /dev/null +++ b/html/themes/breezy/index.theme @@ -0,0 +1,189 @@ +[Icon Theme] +Name=Breezy +Comment=FusionDirectory breezy icon theme + +Directories=icons/16/actions,icons/22/actions,icons/32/actions,icons/48/actions,icons/scalable/actions,icons/16/apps,icons/22/apps,icons/32/apps,icons/48/apps,icons/scalable/apps,icons/16/status,icons/22/status,icons/32/status,icons/48/status,icons/scalable/status,icons/16/mimetypes,icons/22/mimetypes,icons/32/mimetypes,icons/48/mimetypes,icons/scalable/mimetypes,icons/16/places,icons/22/places,icons/32/places,icons/48/places,icons/scalable/places,icons/16/types,icons/22/types,icons/32/types,icons/48/types,icons/scalable/types,icons/16/categories,icons/22/categories,icons/32/categories,icons/48/categories,icons/scalable/categories,icons/16/devices,icons/22/devices,icons/32/devices,icons/48/devices,icons/scalable/devices + +[icons/16/actions] +Size=16 +Context=Actions + +[icons/22/actions] +Size=22 +Context=Actions + +[icons/32/actions] +Size=32 +Context=Actions + +[icons/48/actions] +Size=48 +Context=Actions + +[icons/scalable/actions] +MinSize=1 +Size=128 +MaxSize=256 +Context=Actions +Type=Scalable + +[icons/16/apps] +Size=16 +Context=Applications + +[icons/22/apps] +Size=22 +Context=Applications + +[icons/32/apps] +Size=32 +Context=Applications + +[icons/48/apps] +Size=48 +Context=Applications + +[icons/scalable/apps] +MinSize=1 +Size=128 +MaxSize=256 +Context=Applications +Type=Scalable + +[icons/16/status] +Size=16 +Context=Status + +[icons/22/status] +Size=22 +Context=Status + +[icons/32/status] +Size=32 +Context=Status + +[icons/48/status] +Size=48 +Context=Status + +[icons/scalable/status] +MinSize=1 +Size=128 +MaxSize=256 +Context=Status +Type=Scalable + +[icons/16/mimetypes] +Size=16 +Context=MimeTypes + +[icons/22/mimetypes] +Size=22 +Context=MimeTypes + +[icons/32/mimetypes] +Size=32 +Context=MimeTypes + +[icons/48/mimetypes] +Size=48 +Context=MimeTypes + +[icons/scalable/mimetypes] +MinSize=1 +Size=128 +MaxSize=256 +Context=MimeTypes +Type=Scalable + +[icons/16/places] +Size=16 +Context=Places + +[icons/22/places] +Size=22 +Context=Places + +[icons/32/places] +Size=32 +Context=Places + +[icons/48/places] +Size=48 +Context=Places + +[icons/scalable/places] +MinSize=1 +Size=128 +MaxSize=256 +Context=Places +Type=Scalable + +[icons/16/types] +Size=16 +Context=Types + +[icons/22/types] +Size=22 +Context=Types + +[icons/32/types] +Size=32 +Context=Types + +[icons/48/types] +Size=48 +Context=Types + +[icons/scalable/types] +MinSize=1 +Size=128 +MaxSize=256 +Context=Types +Type=Scalable + +[icons/16/categories] +Size=16 +Context=Categories + +[icons/22/categories] +Size=22 +Context=Categories + +[icons/32/categories] +Size=32 +Context=Categories + +[icons/48/categories] +Size=48 +Context=Categories + +[icons/scalable/categories] +MinSize=1 +Size=128 +MaxSize=256 +Context=Categories +Type=Scalable + +[icons/16/devices] +Size=16 +Context=Devices + +[icons/22/devices] +Size=22 +Context=Devices + +[icons/32/devices] +Size=32 +Context=Devices + +[icons/48/devices] +Size=48 +Context=Devices + +[icons/scalable/devices] +MinSize=1 +Size=128 +MaxSize=256 +Context=Devices +Type=Scalable diff --git a/html/themes/breezy/lists.css b/html/themes/breezy/lists.css new file mode 100644 index 0000000000000000000000000000000000000000..68efc68896fd62aa8326ecb29635a2b7d06341e8 --- /dev/null +++ b/html/themes/breezy/lists.css @@ -0,0 +1,326 @@ + +/******************************** + * L i s t s * + ********************************/ +table.listingTable { +border-top:1px solid #AAA; +border-bottom:1px solid #AAA; +border-left:1px solid #AAA; +border-spacing:0; +} + +table.listingTable thead tr { +position:relative; +height:auto; +margin:3px; +padding:1px; +white-space:nowrap; +} + +table.listingTable > thead > tr > th { +background:#F0F0F0; +font-weight:bold; +border-right:1px solid #AAA; +border-bottom:1px solid #AAA; +padding:3px; +height:22px; +} +html.rtl table.listingTable > thead > tr > th { +border-left:1px solid #AAA; +border-right:none; +} + +table.listingTable > tbody { +height:100%; +overflow-x:hidden; +overflow-y:auto; +} + +table.listingTable > tbody > tr { +height:auto; +white-space:nowrap; +} + +table.listingTable > tbody > tr:nth-child(odd) { + background-color:#FFF; +} + +table.listingTable > tbody > tr:nth-child(even) { + background-color:#F5F5F5; +} + +table.listingTable > tbody > tr.entry-locked:nth-child(odd) { + background-color:#FFC; +} + +table.listingTable > tbody > tr.entry-locked:nth-child(even) { + background-color:#F5F5CC; +} + +html.ltr table.listingTable > tbody > tr td:last-child { +padding-right:5px; +} +html.rtl table.listingTable > tbody > tr td:last-child { +padding-left:5px; +} + +table.listingTable > tbody > tr:hover { + background-color:#DDD; +} + +table.listingTable > tbody > tr.entry-locked:hover { + background-color:#DDA; +} + +table.listingTable > tbody > tr td { +color:#000; +margin:3px; +padding:2px; +border-right:1px solid #AAA; +word-wrap:break-word; +white-space:normal; +max-width:500px; +background:transparent; +height:22px; +} +html.rtl table.listingTable > tbody > tr td { +border-left:1px solid #AAA; +border-right:none; +} + + +/* List border */ + +div.nlistFooter { +background-color:#E5E5E5; +border-left:1px solid silver; +border-right:1px solid silver; +border-bottom:1px solid silver; +padding:0; +width:auto; +} + +/* Sortable Lists (only used in user main tab) */ +div.sortableListContainer { +border:1px solid #AAA; +overflow:auto; +margin-bottom:2px; +} + +.sortableListContainer th { +background-color:#D8D8D8; +padding:3px; +text-align:left; +border-left:1px solid #AAA; +} +html.rtl .sortableListContainer th { +text-align:right; +border-right:1px solid #AAA; +border-left:none; +} + +.sortableListContainer td { +padding:3px; +text-align:left; +border-left:1px solid #AAA; +} +html.rtl .sortableListContainer td { +text-align:right; +border-right:1px solid #AAA; +border-left:none; +} + +tr.sortableListItem { +background-color:#FFF; +cursor:move; +color:#000; +} + +tr.sortableListItemFill { +background-color:#FFF; +cursor:default; +} + +tr.sortableListItemOdd { +background-color:#F5F5F5; +cursor:move; +color:#000; +} + +tr.sortableListItem:hover,tr.sortableListItemOdd:hover { +background-color:#EEE; +} + +tr.sortableListItemDisabled { +cursor:default; +color:#CCC; +} + +table.sortableListTable { +border:0; +} + +tr.sortableListItemMarked { +background-color:#FFD; +} + +/* Tree List (used in baseSelector) */ +ul.treeList,ul.treeList ul { +list-style-type:none; +background:url(../../images/lists/vline.png) repeat-y; +margin:0; +padding:0; +} + +html.ltr ul.treeList ul { +margin-left:10px; +} +html.rtl ul.treeList ul { +margin-right:10px; +} + +ul.treeList a:hover { +background-color:#DDD; +} + +a.treeList { +padding:2px; +cursor:pointer; +} + +a.treeListSelected { +font-weight:bold; +color:#1010AF; +background-color:#DDD; +padding:2px; +cursor:pointer; +} + +a.treeList:hover,a.treeListSelected:hover { +background-color:#DDD; +padding:2px; +} + +ul.treeList a { +padding:2px; +cursor:pointer; +} + +ul.treeList li { +margin:0; +padding:0 12px; +line-height:20px; +background:url(../../images/lists/node.png) no-repeat; +} + +li.treeListSelected a { +font-weight:bold; +color:#1010AF; +padding:2px; +} + +ul.treeList li.last { +background:#fff url(../../images/lists/lastnode.png) no-repeat; +} + +ul.treeList li:last-child { +background:#fff url(../../images/lists/lastnode.png) no-repeat; +} + +div.treeList { +background-color:#FFF; +border:1px solid #AAA; +padding:5px; +position:absolute; +z-index:500; +overflow-y:auto; +float:left; +} +html.rtl div.treeList { +float:right; +} + +/* Max height for IE */ +* html div.treeList { +height: expression( this.scrollHeight > 500 ? "500px" : "auto" ); +} + +table.listing_container { +width:100%; +height:100%; +vertical-align:top; +text-align:left; +border:none; +border-spacing:2px; +} +html.rtl table.listing_container { +text-align:right; +} + +table.listing_container > tbody > tr > td.list { +height:100%; +vertical-align:top; +} + +table.listing_container > tbody > tr > td.filter { +max-width:300px; +vertical-align:top; +} + +table.listing_container > tbody > tr > td.filter .contentboxb { +min-width:230px; +} + +/* On small screens */ +@media (max-width: 640px) { + table.listingTable { + table-layout:auto; + } + table.listingTable > tbody > tr > td, table.listingTable > thead > tr > th { + width:auto !important; + min-width:0 !important; + } + html.ltr table.listingTable > tbody > tr td:last-child { + padding-right:1px; + } + html.rtl table.listingTable > tbody > tr td:last-child { + padding-left:1px; + } + table.listing_container { + border:none; + border-spacing:0px; + border-collapse:collapse; + } + table.listing_container > tbody > tr > td.list, table.listing_container > tbody > tr > td.filter { + width:100%; + min-width:0; + max-width:none; + height:auto; + display:block; + padding:0; + } + table.listing_container > tbody > tr > td.list > div, table.listing_container > tbody > tr > td.filter > div { + border:none; + } + table.listing_container > tbody > tr > td.list:after, table.listing_container > tbody > tr > td.filter:after { + content:" "; + display:block; + } + table.listing_container > tbody > tr > td.filter input[type=submit] { + border:1px solid #DDD; + width:100% !important; + padding:10px; + display:inline-block; + font-weight:bold; + } + html.ltr table.listing_container > tbody > tr > td.filter input[type=submit]:active { + position:relative; + top:1px; + left:1px; + } + html.rtl table.listing_container > tbody > tr > td.filter input[type=submit]:active { + position:relative; + top:1px; + right:1px; + } +} diff --git a/html/themes/breezy/login.css b/html/themes/breezy/login.css new file mode 100644 index 0000000000000000000000000000000000000000..bd4680f4c737656d59a7d86f3ebb113871262df8 --- /dev/null +++ b/html/themes/breezy/login.css @@ -0,0 +1,92 @@ +/* Login screen */ +p.gosaLoginWarning { +text-align:center; +color:red; +font-weight:bold; +font-size:12px; +} + +html, body { +min-height:100%; +} + +div#window_container { +text-align:center; +box-shadow:0 0 2px black; +width:100%; +bottom:0; +top:52px; +position:absolute; +} + +div#window_div { +min-width:50%; +margin-top:100px; +border:1px solid #AAAAAA; +background-color:white; +display:inline-block; +border-radius:10px; +box-shadow:0 0 3px black inset; +} + +div#window_titlebar { +text-align:center; +border-bottom:1px solid #AAAAAA; +padding:8px; +background-color:#DBE6C6; +border-radius:10px 10px 0 0; +} + +div#window_titlebar > p { +margin:0; +padding:0; +font-size:24px; +font-weight:bold; +} + +div#window_content > div { +padding:10px; +} + +div#window_footer { +padding:0; +} + +div#window_footer > div { +display:inline-block; +width:47%; +padding:1%; +} + +div#window_footer > div:nth-child(1) { +color:red; +font-weight:bold; +} +html.ltr div#window_footer > div:nth-child(1) { +text-align:left; +} +html.rtl div#window_footer > div:nth-child(1) { +text-align:right; +} + +/* On small screens */ +@media (max-width: 640px) { + div#window_div { + min-width:70%; + margin-top:10px; + } + div#window_footer > div { + display:block; + width:auto; + padding:5px; + text-align:center !important; + } + div#window_footer.plugbottom > div:nth-child(2) > input[type=submit] { + width:100% !important; + } + p.gosaLoginWarning { + margin-top:0px; + margin-bottom:0px; + } +} + diff --git a/html/themes/breezy/menu.css b/html/themes/breezy/menu.css new file mode 100644 index 0000000000000000000000000000000000000000..397e82747788f85e709082ae1dda29c142f9c670 --- /dev/null +++ b/html/themes/breezy/menu.css @@ -0,0 +1,206 @@ +#menucell { +border:none; +width:140px; +background-color:white; +vertical-align:top; +} + +/* Side menu */ +ul.menu, ul.menu ul { + margin:0; + padding:0; + list-style-type:none; +} +ul.menu li > a { +display:block; +} +ul.menu > li { +border:0; +margin-bottom:5px; +padding-bottom:3px; +border-radius:5px; +box-shadow:0px 0px 3px black inset; +} +ul.menu > li > a { +font-family:arial,helvetica,sans-serif; +font-size:12px; +font-weight:bold; +color:#00008F; +text-decoration:none; +background-color:#dbe6c6; +text-align:center; +vertical-align:middle; +margin-bottom:3px; +padding-bottom:5px; +padding-top:5px; +border-radius:5px 5px 0 0; +border:1px solid #AAA; +} + +ul.menu ul > li > a { +color:#00008F; +text-decoration:none; +font-weight:normal; +font-size:12px; +vertical-align:middle; +margin:2px 0px; +padding-top:2px; +padding-bottom:2px; +} +html.ltr ul.menu ul > li > a { +text-align:left; +padding-left:15px; +} +html.rtl ul.menu ul > li > a { +text-align:right; +padding-right:15px; +} + +.menuitem.menucurrent { +background-color:#E5F5D5; +box-shadow:0px 0px 2px black inset; +} +.menuitem:hover { +background-color:#F0F0F0; +box-shadow:0px 0px 2px black inset; +} + +.menuitem a:link, .menuitem a:visited { +text-decoration:none; +color:#00008f; +} + +.menuitem { +transition:box-shadow .5s ease, background .5s ease; +} +.menuitem a:hover { +text-decoration:none; +} + +/* Main menu */ +.iconmenu_section +{ +border-top:1px solid #AAAAAA; +clear:both; +} + +.iconmenu_section + br +{ +clear:both; +} + +.iconmenu_section:first-child +{ +border-top:none; +} + +.iconmenu .imgcontainer +{ +height:48px; +width:48px; +display:flex; +align-items:center; +justify-content:center; +} + +.iconmenu img +{ +border:none; +vertical-align:middle; +flex:none; +max-height:48px; +max-width:48px; +} + +h1.menuheader { +margin:0; +padding:10px; +display:inline-block; +border-bottom:1px solid #AAAAAA; +background-color:#DBE6C6; +} +html.ltr h1.menuheader { +border-right:1px solid #AAAAAA; +border-radius:0 0 5px 0; +float:left; +} +html.rtl h1.menuheader { +border-left:1px solid #AAAAAA; +border-radius:0 0 0 5px; +float:right; +} + +.iconmenu { +cursor:pointer; +display:flex; +align-items:center; +width:18%; +min-width:130px; +margin:.5%; +padding:.5%; +border-radius:5px; +transition:box-shadow .5s ease, background .5s ease; +} +html.ltr .iconmenu { +float:left; +text-align:left; +} +html.rtl .iconmenu { +float:right; +text-align:right; +} +.iconmenu:hover { +box-shadow:0px 0px 4px black; +} + +.iconmenu:nth-child(2) +{ +clear:left; +} +html.rtl .iconmenu:nth-child(2) { +clear:right; +} + +.iconmenu > a:link, .iconmenu > a:visited { +text-decoration:none; +color:#00008f; +} + +.iconmenu > a:hover { +text-decoration:none; +} + +div.iconmenu:hover { +background-color:#F0F0F0; +} + +/* On small screens */ +@media (max-width: 640px) { + .iconmenu { + text-align:center; + margin:2px; + padding:2px; + min-width:70px; + min-height:80px; + display:inline-block; + } + .iconmenu .imgcontainer + { + margin:auto; + display:block; + float:none; + } + h1.menuheader { + display:block; + padding:5px; + text-align:center; + } + html.ltr h1.menuheader { + border-right:none; + float:none; + } + html.rtl h1.menuheader { + border-left:none; + float:none; + } +} diff --git a/html/themes/breezy/password-style.css b/html/themes/breezy/password-style.css new file mode 100644 index 0000000000000000000000000000000000000000..cfa7b879dc75b6d6145b1c3686429aa559ed13dd --- /dev/null +++ b/html/themes/breezy/password-style.css @@ -0,0 +1,56 @@ +body { +margin:0; +background-color:#FFF; +color:#00008F; +font-family:arial,helvetica,sans-serif; +font-size:12px; +} + +h1 { +margin:0; +background-color:#507AAA; +border-bottom:1px solid #AAA; +padding-top:.2em; +padding-bottom:.2em; +} + +img.center { +text-align:center; +vertical-align:middle; +} + +h1.headline { +font-size:2em; +} + +div.success { +padding:1em; +} + +p.infotext { +padding:.5em; +} + +table { +border-spacing:.5em; +} + +div.change { +margin-right:.5em; +text-align:right; +} +html.rtl div.change { +text-align:left; +} + +div.ruler { +border-top:1px solid #AAA; +width:100%; +height:1px; +margin-top:.5em; +margin-bottom:.5em; +} + +table.iesucks { +width:60%; +} diff --git a/html/themes/breezy/plugin.css b/html/themes/breezy/plugin.css new file mode 100644 index 0000000000000000000000000000000000000000..5b627d2aaa35ba463fb4c0f070f86d5574450c63 --- /dev/null +++ b/html/themes/breezy/plugin.css @@ -0,0 +1,261 @@ +.plugin_window +{ +vertical-align:top; +text-align:justify; +background-color: white; +margin-top:0px; +margin-left:0; +margin-right:0; +width:auto; +border:1px solid #AAA; +padding:0; +} + +div.pluginfo { +border-bottom:1px solid #AAA; +width:100%; +padding-top:2px; +padding-bottom:2px; +margin-bottom:0; +text-align:right; +vertical-align:middle; +background-color:#dbe6c6; +font-family:arial,helvetica,sans-serif; +font-size:11px; +} +html.rtl div.pluginfo { +text-align:left; +} + +.plugbottom { +border-style:solid; +border-color:#a0a0a0; +width:100%; +border-top-width:1px; +border-bottom-width:0; +border-left-width:0; +border-right-width:0; +padding-top:10px; +padding-bottom:0; +text-align:right; +font-family:arial,helvetica,sans-serif; +clear:both; +} +p.plugbottom { +position:fixed; +bottom:0px; +right:10px; +margin:0; +box-shadow:0px 0px 2px black; +border-radius:5px 5px 0 0; +width:auto; +padding-left:10px; +padding-right:10px; +padding-bottom:5px; +padding-top:5px; +background:#BC9; +} +html.rtl .plugbottom { +text-align:left; +} + +/* Simple Plugin specific things */ + +.plugin_sections:after { +content: ""; +display: block; +clear: both; +} + +.plugin_section { +display:block; +float:left; +clear:left; +width:49%; +vertical-align:top; +border:1px solid #B0B0B0; +padding:0; +margin-top:0.5%; +margin-left:0.5%; +margin-bottom:0.5%; +margin-right:0; +position: relative; +} +html.rtl .plugin_section { +float:right; +clear:right; +margin-left:0; +margin-right:0.5%; +} + +html.ltr .plugin_section:nth-child(even) { +float:right; +clear:right; +margin-left:0; +margin-right:0.5%; +} +html.rtl .plugin_section:nth-child(even) { +float:left; +clear:left; +margin-left:0.5%; +margin-right:0; +} + +div.plugin_section { +padding-top:25px; +} + +.plugin_section > div { +padding:5px; +} + +fieldset.plugin_section > div { +padding-top:30px; +} + +fieldset.plugin_section legend { +float:left; +padding:0; +margin:0; +} +html.rtl fieldset.plugin_section legend { +float:right; +} + +fieldset.plugin_section legend span, .plugin_section > span.legend { +font-weight:bold; +background-color:#DBE6C6; +border:1px solid #B0B0B0; +width:100%; +padding-top:5px; +padding-bottom:5px; +text-align:center; +display:block; +} +html.ltr fieldset.plugin_section legend span, html.ltr .plugin_section > span.legend { +margin-left:-1px; +} +html.rtl fieldset.plugin_section legend span, html.rtl .plugin_section > span.legend { +margin-right:-1px; +} + +fieldset.plugin_section legend span { +position: absolute; +top:0; +margin-top:-1px; +} +html.ltr fieldset.plugin_section legend span { +left:0; +} +html.rtl fieldset.plugin_section legend span { +right:0; +} + +.plugin_section > span.legend { +margin-top:-26px; +} + +fieldset.plugin_section legend img, .plugin_section span.legend img { +vertical-align:middle; +} +html.ltr fieldset.plugin_section legend img, html.ltr .plugin_section span.legend img { +margin-right:3px; +} +html.rtl fieldset.plugin_section legend img, html.rtl .plugin_section span.legend img { +margin-left:3px; +} + + +fieldset.plugin_section select[multiple], fieldset.plugin_section textarea { +width:100%; +} + +.plugin_section > div > table { +min-width:80%; +} + +html.ltr .plugin_section.fullwidth, html.rtl .plugin_section.fullwidth { +float:none; +clear:both; +width:auto; +margin-top:0.5%; +margin-left:0.5%; +margin-bottom:0.5%; +margin-right:0.5%; +} + +html.ltr .plugin_section.alone, html.rtl .plugin_section.alone { +float:none; +clear:both; +} + +html.ltr .plugin_section.invisible, html.rtl .plugin_section.invisible { +display:none; +} + +fieldset.plugin_section.critical legend span, .plugin_section.critical > span.legend { +font-weight:bold; +background-color:#BCF; +} + +fieldset.plugin_section.critical legend span:after, .plugin_section.critical > span.legend:after { +content:" (editing this can break your LDAP)"; +color:#D00; +} + +.plugin_section.critical > div { +background-color:#DFEFFF; +} + +/* On small screens */ +@media (max-width: 640px) { + .plugin_window { + margin:0; + border:none; + width:100%; + } + .plugin_section > div > table { + width:100%; + } + html.ltr .plugin_section, html.ltr .plugin_section:nth-child(even), html.ltr .plugin_section.fullwidth, + html.rtl .plugin_section, html.rtl .plugin_section:nth-child(even), html.rtl .plugin_section.fullwidth + { + display:block; + float:none; + clear:both; + width:100%; + border-top: none; + margin:0; + } + .plugbottom { + text-align:center; + width:100%; + margin:0; + padding-top:5px; + padding-bottom:4px; + padding-left:1px; + padding-right:1px; + border:none; + } + p.plugbottom { + left:5px; + right:5px; + } + .plugbottom input[type=submit], .plugbottom input[type=button] { + border:1px solid #DDD; + width:30% !important; + padding:10px; + display:inline-block; + font-weight:bold; + } + .plugbottom input[type=submit]:active, .plugbottom input[type=button]:active { + position:relative; + top:1px; + } + html.ltr .plugbottom input[type=submit]:active, html.ltr .plugbottom input[type=button]:active { + left:1px; + } + html.rtl .plugbottom input[type=submit]:active, html.rtl .plugbottom input[type=button]:active { + right:1px; + } +} diff --git a/html/themes/breezy/printer.css b/html/themes/breezy/printer.css new file mode 100644 index 0000000000000000000000000000000000000000..3367145d2487082d8d11aad4ce6d575b0c753032 --- /dev/null +++ b/html/themes/breezy/printer.css @@ -0,0 +1,24 @@ +/* Disable header and menu block, for printers. */ +td#menucell { +display:none; +} + +div.plugtop { +display:none; +} + +p.plugbottom { +display:none; +} + +.framework { +width:100%; +} + +div.setup_header { +display:none; +} + +div.setup_menu { +display:none; +} diff --git a/html/themes/breezy/setup.css b/html/themes/breezy/setup.css new file mode 100644 index 0000000000000000000000000000000000000000..a8ca76f55b3e60986479120861ccd97a29f8b66c --- /dev/null +++ b/html/themes/breezy/setup.css @@ -0,0 +1,180 @@ +/********* + * Setup + *********/ +html.ltr body.setup div#header_left .plugtop { +margin-left:80px; +} +html.rtl body.setup div#header_left .plugtop { +margin-right:80px; +} +body.setup .plugin_window { +border-radius:5px; +} + +div.setup_menu { +background-color:#F8F8F8; +padding:4px 5px; +border-bottom:1px solid #B0B0B0; +} + +/* default.*/ +div.default { +padding:2px 10px; +vertical-align:middle; +} + +#menucell.setup_navigation { +width:200px; +} + +/* The box used for each setup step */ +#menucell.setup_navigation li.menuitem { +text-decoration:none; +padding-top:8px; +padding-bottom:8px; +margin-top:5px; +margin-bottom:5px; +} +#menucell.setup_navigation li.menuitem > a { +margin:0; +} + +/* An enabled setup step will use this style in navigation*/ +#menucell.setup_navigation li.menuitem.menucurrent a.navigation_title { +cursor:default; +} + +/* Disabled setup steps */ +#menucell.setup_navigation li.menuitem.disabled a.navigation_title { +cursor:default; +color:#AAA; +} + +/* Disabled setup steps */ +#menucell.setup_navigation li.menuitem a.navigation_title { +font-size:1.2em; +font-weight:bold; +text-decoration:none; +cursor:pointer; +padding-top:3px; +padding-bottom:3px; +} + +/* The style for the info of an active setup */ +#menucell.setup_navigation li.menuitem a.navigation_info { +font-size:1em; +color:#000; +margin:0; +cursor:default; +} +html.ltr #menucell.setup_navigation li.menuitem a.navigation_info { +padding:4px 4px 3px 15px; +} +html.rtl #menucell.setup_navigation li.menuitem a.navigation_info { +padding:4px 15px 3px 4px; +} + +.setup_language select#lang_selected { +width:100%; +} + +/* + Setup step 2 styles +*/ +/* used to hide display info div */ +div.solution_visible { +display:block; +width:100%; +text-align:left; +} +html.rtl div.solution_visible { +text-align:right; +} + +/* Container for name and status */ +div.step2_entry_container { +padding:3px; +width:99%; +cursor:default; +} + +/* Container for name and status, when status is failed */ +div.step2_entry_container_info { +padding:3px; +border:1px solid #AAA; +width:99%; +cursor:default; +} + +/* Text shown for each entry */ +div.step2_entry_name { +float:left; +padding-bottom:4px; +vertical-align:middle; +} +html.rtl div.step2_entry_name { +float:right; +} + +/* Status container */ +div.step2_entry_status { +float:none; +text-align:right; +padding-bottom:4px; +vertical-align:middle; +} +html.rtl div.step2_entry_status { +text-align:left; +} + +/* Status failed */ +div.step2_failed { +color:red; +padding-bottom:4px; +} + +/* Status failed but not necessary for setup */ +div.step2_warning { +color:orange; +padding-bottom:4px; +} + +/* Status successful */ +div.step2_successful { +color:green; +} + +/* Text used in info div. */ +div.step2_failed_text { +background-repeat:no-repeat; +} +html.ltr div.step2_failed_text { +padding-left:25px; +} +html.rtl div.step2_failed_text { +padding-right:25px; +} + +/* Text used in info div. On warnings */ +div.step2_warning_text { +background-repeat:no-repeat; +} +html.ltr div.step2_warning_text { +padding-left:25px; +} +html.rtl div.step2_warning_text { +padding-right:25px; +} + +/* On small screens */ +@media (max-width: 640px) { + body.setup a.plugtop img { + height:32px; + } + html.ltr body.setup div#header_left .plugtop { + margin-left:0px; + } + html.rtl body.setup div#header_left .plugtop { + margin-right:0px; + } +} diff --git a/html/themes/breezy/sieve.css b/html/themes/breezy/sieve.css new file mode 100644 index 0000000000000000000000000000000000000000..6f0ab4a85748b0dca91f8e682f22a3f3263de74c --- /dev/null +++ b/html/themes/breezy/sieve.css @@ -0,0 +1,374 @@ +/************************ + * Sieve + * The following styles are + * used to display the sieve + * management user interface + ************************/ +/* Editing dialog styles + */ +table.sieve_default_table { +width:100%; +margin:0; +border-spacing:0; +padding:0; +} + +/* Editing surface */ +table.editing_surface { +width:100%; +margin:0; +padding:0; +} + +/* Editing surface menu */ +td.editing_surface_menu { +background-color:#EEE; +border:1px solid #BBB; +padding:5px; +} + +/* Editing surface content */ +td.editing_surface_content { +background-color:#FFF; +margin:0; +padding:0; +} + +/* Error message will be displayed as follows */ +div.sieve_error_msgs { +background-color:#ff8d00; +color:#000; +padding:5px; +background-image:url(../../geticon.php?context=status&icon=dialog-warning&size=16); +background-repeat:no-repeat; +font-weight:bold; +} + +/* Source editing area */ +textarea.editing_source { +width:100%; +height:330px; +} + +/************* + * Object container + *************/ +/* The container itself */ +table.object_container_container { +width:100%; +border-spacing:0; +background-color:#F8F8F8; +border:solid 1px #AAA; +} + +/* Container cell top left */ +td.object_container_cell_top_left { +background-color:#EEE; +text-align:center; +} + +/* Container cell top right */ +td.object_container_cell_top_right { +background-color:#EEE; +text-align:left; +padding:2px; +border-bottom:solid 1px #AAA; +} +html.rtl td.object_container_cell_top_right { +text-align:right; +} + +/* Container cell bottom left */ +td.object_container_cell_bottom_left { +width:5px; +background-color:#EEE; +text-align:center; +} +html.ltr td.object_container_cell_bottom_left { +border-right:solid 1px #AAA; +} +html.rtl td.object_container_cell_bottom_left { +border-left:solid 1px #AAA; +} + +/************* + * Sieve comment + *************/ +/* Container */ +table.sieve_comment_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +textarea.sieve_comment_area { +width:100%; +height:80px; +} + +/************* + * Sieve require + *************/ +/* Container */ +table.sieve_require_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +input.sieve_require_input { +width:100%; +border-spacing:0; +} + +/************* + * Sieve fileinto + *************/ +/* Container */ +table.sieve_fileinto_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +input.sieve_fileinto_input { +width:300px; +} + +select.sieve_fileinto_input { +width:300px; +} + +/************* + * Sieve keep + *************/ +/* Container */ +table.sieve_keep_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_keep_input { +padding-left:20px; +} +html.rtl td.sieve_keep_input { +padding-right:20px; +} + +/************* + * Sieve discard + *************/ +/* Container */ +table.sieve_discard_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_discard_input { +padding-left:20px; +} +html.rtl td.sieve_discard_input { +padding-right:20px; +} + +/************* + * Sieve redirect + *************/ +/* Container */ +table.sieve_redirect_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_redirect_input { +padding-left:20px; +} +html.rtl td.sieve_redirect_input { +padding-right:20px; +} + +textarea.sieve_redirect_input { +width:100%; +height:30px; +} + +/************* + * Sieve reject + *************/ +/* Container */ +table.sieve_reject_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_reject_input { +padding-left:20px; +} +html.rtl td.sieve_reject_input { +padding-right:20px; +} + +textarea.sieve_reject_input { +width:100%; +height:55px; +} + +/************* + * Sieve end + *************/ +/* Container */ +table.sieve_stop_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_stop_input { +padding-left:20px; +} +html.rtl td.sieve_stop_input { +padding-right:20px; +} + +/************* + * Sieve vacation + *************/ +/* Container */ +table.sieve_vacation_container { +margin:0; +padding:0; +border-spacing:0; +width:100%; +background-color:#F8F8F8; +} + +/* Editing area */ +html.ltr td.sieve_vacation_input { +padding-left:20px; +} +html.rtl td.sieve_vacation_input { +padding-right:20px; +} + +/* Editing area */ +textarea.sieve_vacation_input { +width:100%; +height:55px; +} + +/************* + * Sieve allof + *************/ +table.sieve_allof_container { +width:100%; +border-spacing:0; +margin:0; +padding:0; +border:solid 1px #999; +} + +/* Container */ +td.sieve_allof_left { +text-align:center; +vertical-align:middle; +width:35px; +background-color:#CCC; +border:solid 0 #EEE; +} + +/* Container */ +td.sieve_allof_right { +background-color:#BDBDBD; +} + +/************* + * Sieve anyof + *************/ +table.sieve_anyof_container { +width:100%; +margin:0; +border-spacing:0; +padding:0; +border:solid 2px #CCC; +} + +/* Container */ +td.sieve_anyof_left { +text-align:center; +vertical-align:middle; +width:35px; +background-color:#CCC; +border:solid 0 #EEE; +} + +/* Container */ +td.sieve_anyof_right { +background-color:#BDBDBD; +border:solid 1px #AAA; +} + +/************* + * Sieve Test Cases + *************/ +table.sieve_test_container { +width:100%; +background-color:#F8F8F8; +margin:0; +border-spacing:0; +padding:0; +border:solid 1px #AAA; +} + +table.sieve_test_case { +width:100%; +margin:0; +border-spacing:0; +padding:0; +} + +html.ltr td.container_, html.ltr div.container_ { +padding-left:2px; +border-left:solid 2px #F8F8F8; +} +html.rtl td.container_, html.rtl div.container_ { +padding-right:2px; +border-right:solid 2px #F8F8F8; +} + +td.container_:hover,div.container_:hover { +display:block; +} +html.ltr td.container_:hover, html.ltr div.container_:hover { +border-left:solid 2px #000; +} +html.rtl td.container_:hover, html.rtl div.container_:hover { +border-right:solid 2px #000; +} diff --git a/html/themes/breezy/style.css b/html/themes/breezy/style.css new file mode 100644 index 0000000000000000000000000000000000000000..832edfe939a82ce4ce59bee390923e02aab018ff --- /dev/null +++ b/html/themes/breezy/style.css @@ -0,0 +1,760 @@ +body { +margin:0; +background-color:#FFF; +color:#00008F; +font-family:arial,helvetica,sans-serif; +font-size:12px; +} + +h1 { +font-size:14px; +color:#00378a; +} + +h2,h3,h4,h5,h6 { +font-size:13px; +color:#00378a; +} + +td,p,b,th { +font-size:12px; +} + +img { +border:none; +} + +a:link { +text-decoration:none; +color:#00008F; +} + +a:visited { +text-decoration:none; +color:#00008f; +} + +td.listfooter { +background:#E5E5E5; +border-top:1px solid silver; +padding:3px; +height:16px; +} + +td.scrollhead { +vertical-align:top; +padding:0; +} + +td.scrollbody { +vertical-align:top; +padding:0; +} + +div.scrollbody { +background-color:#FFF; +overflow:auto; +text-align:left; +} +html.rtl div.scrollbody { +text-align:right; +} + +/* -------------- DEPRECATED ----------------- */ +td.list1 { +background:transparent; +border-right:1px solid silver; +padding:3px; +height:22px; +} + +td.list1nohighlight { +background:#FFF; +border-right:1px solid silver; +padding:3px; +height:22px; +} + +td.list1nohighlightdisabled { +background-color:#DFDBD7; +border-right:1px solid silver; +padding:3px; +height:22px; +} + +td.list1#fill { +height:100%; +} + +td.list1#icon { +width:0; +text-align:center; +} + +td.list1#entry { +} + +td.list1#info { +width:200px; +} + +td.list1#property { +width:50px; +} + +td.list1#properties7 { +width:136px; +} + +td.list1#properties8 { +width:152px; +} + +td.list1#properties9 { +width:168px; +} + +td.list1#properties10 { +width:186px; +} + +td.list1#actions { +width:52px; +border-right:0; +text-align:right; +} +/* -------------------------------------------- */ + +/* Title bar */ +a.maintitlebar,div.maintitlebar { +font-family:arial,helvetica,sans-serif; +text-decoration:none; +/*color:#FFFFFF;*/ +font-size:12px; +text-align:center; +vertical-align:middle; +cursor:pointer; +display:inline-block; +padding:2px; +border-radius:8px; +transition:box-shadow .5s ease, background .5s ease; +} +html.ltr a.maintitlebar,html.ltr div.maintitlebar { +padding-right:5px; +} +html.rtl a.maintitlebar,html.rtl div.maintitlebar { +padding-left:5px; +} + +a.maintitlebar:hover { +text-decoration:none; +background-color:#d7e6b4; +cursor:pointer; +box-shadow:0px 0px 2px black; +} + +td.phonelist:hover { +background-color:#d2d2d2; +} + +td.phonelist { +border-right:1px solid #B0B0B0; +} + +div.copynotice { +border-style:solid; +border-color:#AAA; +width:100%; +border-top-width:1px; +border-bottom-width:0; +border-left-width:0; +border-right-width:0; +padding-top:3px; +padding-bottom:0; +text-align:right; +font-family:arial,helvetica,sans-serif; +font-size:10px; +} +html.rtl div.copynotice { +text-align:left; +} + +hr { +width:100%; +border:none; +background-color:#AAA; +height:1px; +} + +.must { +color:red; +font-family:arial,helvetica,sans-serif; +} + +img.center { +text-align:center; +vertical-align:middle; +} + +input.center { +text-align:left; +vertical-align:middle; +} +html.rtl input.center { +text-align:right; +} + +select.center { +text-align:left; +vertical-align:middle; +} +html.rtl select.center { +text-align:right; +} + +a.center { +text-align:left; +vertical-align:middle; +} +html.rtl a.center { +text-align:right; +} + +/********************** Template migration *********************/ + +form#mainform { +margin:0; +} + +table.framework { +height:auto; +width:100%; +border:0; +border-spacing:5px; +padding:0; +margin-top:0; +vertical-align:top; +box-shadow:0px 0px 2px black; +} +html.ltr table.framework { +margin-left:0; +} +html.rtl table.framework { +margin-right:0; +} + +table.framework td#maincell { +background-color:white; +width:auto; +vertical-align:top; +padding-bottom:35px; +} + +/* cellpadding="0" */ +table.framework > tbody > tr > td { +padding:0; +} + +table.maintab { +width:100%; +height:100%; +border:0; +border-spacing:0; +padding:0; +margin:0; +background-color:#507AAA; +vertical-align:top; +} + +div.contentboxh { +background-color:#F0F0F0; +border:1px solid #AAA; +border-bottom:none; +height:26px; +vertical-align:middle; +width:auto; +} + +div.contentboxh > p { +margin:2px; +font-family:arial,helvetica,sans-serif; +font-size:16px; +font-weight:bold; +vertical-align:middle; +} + +div.contentboxb { +border:1px solid #b0b0b0; +border-top-width:0; +vertical-align:middle; +width:auto; +background:white; +padding:5px; +} +.filter div.contentboxb { +padding:0; +} +div.contentboxb > div { +display:inline-block; +margin:1px; +} +.filter div.contentboxb > div { +width:100%; +background:#EEEEEE; +border-top:1px solid #B0B0B0; +text-align:right; +margin:0; +padding:3px; +box-sizing:border-box; +} +.filter div.contentboxb > label img { +vertical-align:middle; +padding:3px; +} +.filter div.contentboxb > hr { +margin-bottom:3px; +} +div.contentboxb > img, div.contentboxb > input { +display:inline-block; +margin:3px; +} + +p.contentboxb { +padding-bottom:0; +margin:0; +border:4px solid #f8f8f8; +vertical-align:middle; +} + +a.alphaselect:hover { +text-decoration:none; +background-color:#a0a0a0; +color:#FFF; +} + +table.check { +background-color:#e1e1f1; +color:#000; +border:1px solid #AAA; +width:95%; +} +html.ltr table.check { +margin-left:20px; +} +html.rtl table.check { +margin-right:20px; +} + +html.ltr td.check { +border-right:1px solid #AAA; +} +html.rtl td.check { +border-left:1px solid #AAA; +} + +option.select { +background-repeat:no-repeat; +background-position:0 top; +border:0; +padding-bottom:1px; +height:18px; +} +html.ltr option.select { +padding-left:20px; +} +html.rtl option.select { +padding-right:20px; +} + + +td.tbhead { +border-bottom:1px solid #B0B0B0; +} +html.ltr td.tbhead { +border-right:1px solid #B0B0B0; +} +html.rtl td.tbhead { +border-left:1px solid #B0B0B0; +} + +td.tbrhead { +border-bottom:1px solid #B0B0B0; +} + +.item { +text-align:left; +white-space:nowrap; +font-family:"bitstream vera sans", "luxi sans", verdana, geneva, arial, helvetica, sans-serif; +font-size:12px; +padding-top:2px; +} +html.rtl .item { +text-align:right; +} + +.item div { +position:relative; +display:block; +text-decoration:none; +} + +.item :hover { +color:#FFF; +background-color:#4b6983; +text-decoration:none; +} + +.separator { +background-color:red; +border-top:1px solid #c6c6bf; +border-bottom:1px solid #FFF; +margin:2px 5px; +/* top right bottom left */ +height:0; +font-size:1px; +line-height:0; +} + +div.autocomplete { +position:absolute; +background-color:#FFF; +border:1px solid #AAA; +margin:0; +padding:0; +z-index:600; +overflow:hidden; +word-wrap:break-word; +} + +div.autocomplete ul { +list-style-type:none; +margin:0; +padding:0; +} + +div.autocomplete ul li { +list-style-type:none; +display:block; +margin:0; +padding:2px; +cursor:pointer; +} +html.ltr div.autocomplete ul li { +padding-left:4px; +} +html.rtl div.autocomplete ul li { +padding-right:4px; +} + + +div.autocomplete li:hover { +background-color:#F0F0F0; +} + +div.autocomplete ul li.selected { +background-color:#F0F0F0; +} + +#pulldown { +background:#FFF; +height:23px; +border-top:1px #D0D0D0 solid; +border-bottom:1px gray solid; +} +html.ltr #pulldown { +border-left:1px #D0D0D0 solid; +border-right:1px gray solid; +} +html.rtl #pulldown { +border-right:1px #D0D0D0 solid; +border-left:1px gray solid; +} + +#pulldown ul { +display:block; +margin:0; +padding:0; +line-height:1em; +list-style:none; +z-index:90; +} + +#pulldown ul li { +margin:0 3px 0 0; +padding:0; +font-size:12px; +line-height:1em; +list-style-type:none; +} +html.rtl #pulldown ul li { +margin:0 0 0 3px; +} + +#pulldown ul li a { +float:left; +display:block; +width:auto; +font-weight:normal; +background:transparent; +text-decoration:none; +margin:0; +padding:5px; +} +html.rtl #pulldown ul li a { +float:right; +} + +#pulldown ul li a:hover { +text-decoration:none; +} + +#pulldown ul li.sep { +color:#AAA; +padding:.8em 0 .5em; +} + +/* Commented Backslash Hack hides rule from IE5-Mac \*/ +#pulldown ul li a { +float:none; +} + +/* End IE5-Mac hack */ +#pulldown ul ul { +position:absolute; +top:0; +left:0; +visibility:hidden; +border-top:1px #D0D0D0 solid; +border-left:1px #D0D0D0 solid; +border-bottom:1px gray solid; +border-right:1px gray solid; +background:#FFF; +} + +#pulldown ul ul li { +border-bottom:1px solid #fff; +float:none; +margin:0; +padding:0; +width:200px; +} + +#pulldown ul ul li a { +padding:5px 9px 5px 5px; +} + +#pulldown ul ul li a:hover { +font-weight:normal; +background-color:#418DD4; +background-image:none; +} + +span.informal { +color:#444; +font-style:italic; +} + +span.mark { +color:#B22; +} + +#debug_handling { +border-color:#ddd; +} +.error, .notice, .success, .info { +border:2px solid #ddd; +margin:.2em; +padding:.3em; +} +.error { +background:#fbe3e4; +color:#8a1f11; +border-color:#fbc2c4; +} +.error h1,.error h2,.error h3,.error h4,.error h5,.error h6 { +color:#8a3700; +} +.notice { +background:#fff6bf; +color:#514721; +border-color:#ffd324; +} +.notice h1,.notice h2,.notice h3,.notice h4,.notice h5,.notice h6 { +color:#412701; +} +.success { +background:#e6efc2; +color:#264409; +border-color:#c6d880; +} +.success h1,.success h2,.success h3,.success h4,.success h5,.success h6 { +color:#378a00; +} +.info { +background:#d5edf8; +color:#205791; +border-color:#92cae4; +} +.info h1,.info h2,.info h3,.info h4,.info h5,.info h6 { +color:#00378a; +} + +/* Header */ + +html.ltr div#header_left { +float:left; +} +html.rtl div#header_left { +float:right; +} + + +.plugtop { +border:none; +border-radius:10px; +box-shadow:0px 0px 4px black inset; +padding:10px; +margin:0; +text-align:center; +vertical-align:middle; +background-color:#dbe6c6; +font-family:arial,helvetica,sans-serif; +font-size:18px; +} +.plugtop img { +height:32px; +} +html.ltr .plugtop img { +margin-right:4px; +} +html.rtl .plugtop img { +margin-left:4px; +} +html.ltr div#header_left .plugtop { +margin-left:35px; +} +html.rtl div#header_left .plugtop { +margin-right:35px; +} + +div#header_left img { +vertical-align:middle; +} + +html.ltr div#header_left img#fd_logo { +padding-left:2px; +padding-right:25px; +} +html.rtl div#header_left img#fd_logo { +padding-left:25px; +padding-right:2px; +} + +html.ltr div#header_left .logout { +margin-left:35px; +} +html.rtl div#header_left .logout { +margin-right:35px; +} + +div#header_right { +padding-top:8px; +text-align:right; +height:38px; +color:black; +} +html.rtl div#header_right { +text-align:left; +} + +/* Header col */ +div.setup_header { +background-color:#bbcc99; +padding:4px 5px 2px; +color:#000; +} + +/* On small screens */ +@media (max-width: 640px) { + div.setup_header { + padding:2px; + height:36px; + } + a.maintitlebar { + width:36px; + height:36px; + overflow:hidden; + display:inline-block; + } + html.ltr a.maintitlebar { + float:left; + margin:0; + padding:0; + } + html.rtl a.maintitlebar { + float:right; + margin:0; + } + a.maintitlebar img { + padding:6px; + width:22px; + height:22px; + } + html.ltr div#header_left .logout { + margin-left:0; + float:right; + } + html.rtl div#header_left .logout { + margin-right:0; + float:left; + } + html.ltr div#header_left, html.rtl div#header_left { + height:40px; + width:100%; + float:none; + } + html.ltr div#header_right, html.rtl div#header_right { + padding-top:8px; + height:30px; + margin-top:-40px; + width:100%; + float:none; + } + div#header_right a { + background:#bbcc99; + } + .optional { + display:none !important; + } + div#header_left .plugtop { + display:inline-block; + hyphens:none; + overflow:hidden; + white-space: nowrap; + padding-top:2px; + padding-bottom:2px; + font-size:1em; + } + html.ltr div#header_left .plugtop { + margin:0; + padding-left:6px; + } + html.rtl div#header_left .plugtop { + margin:0; + padding-right:6px; + } + div.logout-label { + display:inline-block; + vertical-align:middle; + } + table.framework { + margin:0; + border:none; + width:100%; + border-spacing:0; + } + table.framework #maincell + { + padding-bottom:55px; + } +} diff --git a/html/themes/breezy/svg/16/actions/add.svg b/html/themes/breezy/svg/16/actions/add.svg new file mode 100644 index 0000000000000000000000000000000000000000..c385cc1126862f5b19003d18ff37de7db0cb104f --- /dev/null +++ b/html/themes/breezy/svg/16/actions/add.svg @@ -0,0 +1,90 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add.svg" + inkscape:export-filename="add.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="6.5235742" + inkscape:cy="7.952791" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + units="px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4136" + empspacing="4" /> + <sodipodi:guide + position="-4,14" + orientation="0,1" + id="guide4140" /> + <sodipodi:guide + position="-4,2" + orientation="0,1" + id="guide4142" /> + <sodipodi:guide + position="2,18" + orientation="1,0" + id="guide4144" /> + <sodipodi:guide + position="14,17" + orientation="1,0" + id="guide4146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#2ecc71;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 14,1038.3622 2,0 -12,12 -4,-10 1,0 3,5 z" + id="path4167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/document-edit.svg b/html/themes/breezy/svg/16/actions/document-edit.svg new file mode 100644 index 0000000000000000000000000000000000000000..91d7b77241057ec358287f5f225db28af77dcc33 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/document-edit.svg @@ -0,0 +1,132 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-edit.svg" + inkscape:export-filename="document-edit.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="2.6266474" + inkscape:cy="7.3990155" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 423.71429,542.18849 0,3.60225 3.60225,0 8.39775,-8.39774 -3.60225,-3.60226 -5.1107,5.11069 z m 1.08068,0.36022 1.19324,-1.19323 0,1.62101 1.03565,0 0.99062,0 0.0225,0.6529 -1.08068,1.08067 -1.44091,0 -0.72044,-0.72045 z m 2.20637,-2.20637 1.4409,-1.44091 1.62102,-1.62101 2.16135,2.16135 -3.17448,3.17449 0,-0.67542 -1.01313,0.0225 -1.03566,0 0,-1.03565 z" + id="rect4132" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccc" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/document-import.svg b/html/themes/breezy/svg/16/actions/document-import.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef8a2f6b2e897176b439f64b8954f292de4816cc --- /dev/null +++ b/html/themes/breezy/svg/16/actions/document-import.svg @@ -0,0 +1,465 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-import.svg" + inkscape:export-filename="document-import.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + viewBox="0 0 16 16"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="45.254834" + inkscape:cx="6.2171829" + inkscape:cy="6.3456936" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 434.71429,533.79074 v 9 1 h -2 -2.08594 l 0.67188,0.67188 0.94922,0.94921 -0.70704,0.70704 -0.94921,-0.94922 -1.87891,-1.87891 1.87891,-1.87891 0.94921,-0.94921 0.70704,0.70703 -0.94922,0.94922 -0.67188,0.67187 h 2.08594 1 v -8 h -8 v 10 h 3 v 1 h -4 v -12 z" + id="rect3015" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5" + width="0" + height="10.999983" + x="-446.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781" + y="559.42297" + x="-449.12207" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783" + sodipodi:role="line" + x="-449.12207" + y="559.42297" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8" + y="553.55963" + x="-448.38538" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-1" + sodipodi:role="line" + x="-448.38538" + y="553.55963" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4" + y="560.42297" + x="-455.12207" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-13" + sodipodi:role="line" + x="-455.12207" + y="560.42297" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7" + width="0" + height="10.999983" + x="-446.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0" + width="0" + height="10.999983" + x="-484.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5" + width="0" + height="10.999983" + x="-466.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-3" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-4" + width="0" + height="10.999983" + x="-446.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-7" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-1" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-1" + y="559.42297" + x="-449.12207" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-8" + sodipodi:role="line" + x="-449.12207" + y="559.42297" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-2" + y="553.55963" + x="-448.38538" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-1-6" + sodipodi:role="line" + x="-448.38538" + y="553.55963" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-7" + y="560.42297" + x="-455.12207" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-13-8" + sodipodi:role="line" + x="-455.12207" + y="560.42297" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-08" + width="0" + height="10.999983" + x="-464.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-8" + width="0" + height="10.999983" + x="-446.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-2" + width="0" + height="10.999983" + x="-484.55804" + y="546.66571" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-2" + width="0" + height="10.999983" + x="-466.51727" + y="544.61438" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-2" + width="0" + height="10.999983" + x="-468.79242" + y="548.64069" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-0" + width="0" + height="10.999983" + x="-450.75165" + y="546.58936" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-1" + width="0" + height="10.999983" + x="-468.79242" + y="548.64069" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-7" + width="0" + height="10.999983" + x="-468.79242" + y="548.64069" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-41" + y="561.39795" + x="-453.35645" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-9" + sodipodi:role="line" + x="-453.35645" + y="561.39795" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-7" + y="555.53461" + x="-452.61975" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-1-2" + sodipodi:role="line" + x="-452.61975" + y="555.53461" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-3" + y="562.39795" + x="-459.35645" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + transform="scale(-1,1)" + class="ColorScheme-Text"><tspan + id="tspan3783-13-6" + sodipodi:role="line" + x="-459.35645" + y="562.39795" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-9" + width="0" + height="10.999983" + x="-468.79242" + y="548.64069" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-9" + width="0" + height="10.999983" + x="-450.75165" + y="546.58936" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-5" + width="0" + height="10.999983" + x="-488.79242" + y="548.64069" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-3" + width="0" + height="10.999983" + x="-470.75165" + y="546.58936" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/document-new.svg b/html/themes/breezy/svg/16/actions/document-new.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee3e706bc862f1c46d8f4628e03d49a4d9371322 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/document-new.svg @@ -0,0 +1,138 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-new.svg" + inkscape:export-filename="document-new.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="0.26241118" + inkscape:cy="6.6759904" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + <sodipodi:guide + position="3,15" + orientation="1,0" + id="guide4145" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 3 2 L 3 14 L 9 14 L 10 14 L 13 11 L 13 10 L 13 2 L 3 2 z M 4 3 L 12 3 L 12 10 L 9 10 L 9 13 L 4 13 L 4 3 z " + transform="translate(421.71429,531.79074)" + id="rect4140" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/document-restore.svg b/html/themes/breezy/svg/16/actions/document-restore.svg new file mode 100644 index 0000000000000000000000000000000000000000..706c2911ebca44b290b6bca128dc8537eb354795 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/document-restore.svg @@ -0,0 +1,145 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-restore.svg" + inkscape:export-filename="document-restore.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="3.4231453" + inkscape:cy="6.3350943" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + <sodipodi:guide + position="3,15" + orientation="1,0" + id="guide4145" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 424.71429,533.79071 0,12 5,3e-5 1,0 3,-3 0,-1 0,-8 z m 1,1.00003 7,0 0,7 -3,0 0,3 -4,0 z" + id="rect4140" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" + class="ColorScheme-Text" /> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 436.71429,538.79074 0,4 -2,-2 z" + id="path4172" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/down.svg b/html/themes/breezy/svg/16/actions/down.svg new file mode 100644 index 0000000000000000000000000000000000000000..1909009ab766983dfb798b930edf1c720117c979 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/down.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="down.svg" + inkscape:export-filename="down.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="48.822612" + inkscape:cx="6.5490061" + inkscape:cy="6.7343267" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 429.71429,543.29074 -1.875,-1.95349 -4.125,-4.29767 0.125,-0.13024 0.375,-0.39069 0.21875,-0.22791 4.125,4.29768 1.15625,1.23721 1.15625,-1.23721 4.125,-4.29768 0.71875,0.74884 -4.125,4.29767 -1.875,1.95349 z" + id="rect4176" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/edit-copy.svg b/html/themes/breezy/svg/16/actions/edit-copy.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf809f5e06e5b1cdf06934aa63eccd266980bea2 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/edit-copy.svg @@ -0,0 +1,137 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="edit-copy.svg" + inkscape:export-filename="edit-copy.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="48.822612" + inkscape:cx="0.13495124" + inkscape:cy="6.9694125" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="matrix(0.78571429,0,0,0.75000188,-51.204073,143.62524)" + id="layer1-8" + inkscape:label="Capa 1"> + <path + inkscape:connector-curvature="0" + id="rect4147" + transform="translate(601.71428,517.21933)" + d="m 4,3 0,1 -3.1e-6,13.666663 1.2727272,0 1.2727273,0 1.2727273,0 0,0 0,1.33329 6.3636363,0 3.818187,-3.99995 L 18,14 l 0,-7 2e-6,-1.3333074 -1.272732,0 0,-2.6666999 L 15,3 5,3 z m 1.2727241,1.3333626 10.1818179,0 0,1.33333 -7.6363633,0 0,1.33333 0,9.3333104 -1.2727273,0 -1.2727273,0 z m 3.8181818,2.66666 7.6363641,0 0,6.6666504 -2.545455,0 -1.272727,0 0,1.33333 2e-6,2.66666 -3.8181821,0 z" + style="fill:currentColor;fill-opacity:1;stroke:none" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" + class="ColorScheme-Text" /> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/edit-cut.svg b/html/themes/breezy/svg/16/actions/edit-cut.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac9a081b3ddee9564565ad9cf617666098c79ddd --- /dev/null +++ b/html/themes/breezy/svg/16/actions/edit-cut.svg @@ -0,0 +1,133 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="edit-cut.svg" + inkscape:export-filename="edit-cut.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="45.254834" + inkscape:cx="0.32563586" + inkscape:cy="8.8085124" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,9" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="text-decoration:none;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 5,2 C 4.56699,2.75 4.34824,2.75001 4.78125,3.5 l 2.625,4.5 -1.5,2.21875 C 5.6347025,10.080881 5.3253907,10 5,10 c -1.1045695,0 -2,0.895439 -2,2 0,1.104561 0.8954305,2 2,2 1.1045695,0 2,-0.895439 2,-2 0,-0.404537 -0.1372503,-0.779029 -0.34375,-1.09375 -0.00494,-0.0075 0.00504,-0.02379 0,-0.03125 L 7.09375,10.25 C 7.8961731,10.22493 8.0078568,9.6573598 8.5,9.65625 c 0.010583,-2.39e-5 0.020299,-5.114e-4 0.03125,0 l 0.03125,0.0625 0.78125,1.15625 0,0.03125 C 9.1372503,11.220971 9,11.595464 9,12 c 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10456 -0.89543,-2 -2,-2 -0.325391,0 -0.634702,0.08088 -0.90625,0.21875 L 8.59375,8 c 0,0 2.634956,-4.508384 2.625,-4.5 C 11.65176,2.75001 11.433,2.75 11,2 L 8,7.125 z M 8,8 C 8.2761424,8 8.5,8.2238576 8.5,8.5 8.5,8.7537525 8.3074248,8.9676786 8.0625,9 L 7.9375,9 C 7.6925752,8.9676786 7.5,8.7537525 7.5,8.5 7.5,8.2238576 7.7238576,8 8,8 z m -3,3 c 0.5522847,0 1,0.447715 1,1 0,0.552285 -0.4477153,1 -1,1 -0.5522847,0 -1,-0.447715 -1,-1 0,-0.552285 0.4477153,-1 1,-1 z m 6,0 c 0.55228,0 1,0.44772 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.55228 0.44772,-1 1,-1 z" + transform="translate(421.71429,531.79074)" + id="HATE_THIS" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccsssscccsccccssssccccccssccssssssssssss" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/edit-delete.svg b/html/themes/breezy/svg/16/actions/edit-delete.svg new file mode 100644 index 0000000000000000000000000000000000000000..6ababc0e6df98ca35de862185adbad9c873b7e00 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/edit-delete.svg @@ -0,0 +1,146 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="edit-delete.svg" + inkscape:export-filename="edit-delete.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="-6.07813" + inkscape:cy="11.152803" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + id="g4156" + style="fill:#da4453;fill-opacity:1" + transform="translate(10.90625,5.8125)"> + <g + id="g4152" + style="fill:#da4453;fill-opacity:1"> + <g + id="layer1-3" + inkscape:label="Capa 1" + transform="translate(-10.90625,-5.8125)" + style="fill:#da4453;fill-opacity:1"> + <path + id="rect4455" + transform="translate(421.71429,531.79074)" + d="m 5,2 0,2 1,0 0,-1 4,0 0,1 1,0 0,-2 -1,0 -4,0 -1,0 z m -3,3 0,1 2,0 0,7 0,1 8,0 0,-1 0,-7 2,0 0,-1 -12,0 z m 3,1 6,0 0,7 -6,0 0,-7 z" + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/edit-paste.svg b/html/themes/breezy/svg/16/actions/edit-paste.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd18888d1f926ce6941b52f5c1a75c2ca63f7e85 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/edit-paste.svg @@ -0,0 +1,452 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="edit-paste.svg" + inkscape:export-filename="edit-paste.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="45.254834" + inkscape:cx="4.9255358" + inkscape:cy="6.6373789" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1407" + inkscape:window-height="1017" + inkscape:window-x="463" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2,7" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="17,2" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,13" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="0,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="translate(418.71429,-499.57146)" + id="layer1-1" + inkscape:label="Capa 1" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5" + width="0" + height="10.999983" + x="422.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781" + y="560.54797" + x="420.15027" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783" + sodipodi:role="line" + x="420.15027" + y="560.54797" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8" + y="554.68463" + x="420.88696" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1" + sodipodi:role="line" + x="420.88696" + y="554.68463" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4" + y="561.54797" + x="414.15027" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13" + sodipodi:role="line" + x="414.15027" + y="561.54797" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7" + width="0" + height="10.999983" + x="422.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0" + width="0" + height="10.999983" + x="384.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5" + width="0" + height="10.999983" + x="402.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-3" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-4" + width="0" + height="10.999983" + x="422.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-7" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-1" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-1" + y="560.54797" + x="420.15027" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-8" + sodipodi:role="line" + x="420.15027" + y="560.54797" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-2" + y="554.68463" + x="420.88696" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1-6" + sodipodi:role="line" + x="420.88696" + y="554.68463" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-7" + y="561.54797" + x="414.15027" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13-8" + sodipodi:role="line" + x="414.15027" + y="561.54797" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-08" + width="0" + height="10.999983" + x="404.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-8" + width="0" + height="10.999983" + x="422.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-2" + width="0" + height="10.999983" + x="384.71429" + y="547.79071" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-2" + width="0" + height="10.999983" + x="402.75507" + y="545.73938" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-2" + width="0" + height="10.999983" + x="400.47992" + y="549.76569" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-0" + width="0" + height="10.999983" + x="418.52069" + y="547.71436" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-1" + width="0" + height="10.999983" + x="400.47992" + y="549.76569" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-7" + width="0" + height="10.999983" + x="400.47992" + y="549.76569" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-41" + y="562.52295" + x="415.91589" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-9" + sodipodi:role="line" + x="415.91589" + y="562.52295" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-7" + y="556.65961" + x="416.65259" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1-2" + sodipodi:role="line" + x="416.65259" + y="556.65961" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-3" + y="563.52295" + x="409.91589" + style="font-size:9px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none;font-family:Sans" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13-6" + sodipodi:role="line" + x="409.91589" + y="563.52295" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-9" + width="0" + height="10.999983" + x="400.47992" + y="549.76569" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-9" + width="0" + height="10.999983" + x="418.52069" + y="547.71436" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-5" + width="0" + height="10.999983" + x="380.47992" + y="549.76569" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-3" + width="0" + height="10.999983" + x="398.52069" + y="547.71436" + class="ColorScheme-Text" /> + <path + style="display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;enable-background:accumulate" + d="M 5 2 L 5 3 L 3 3 L 3 14 L 7 14 L 8 14 L 12 14 L 13 14 L 13 13 L 13 9 L 13 3 L 11 3 L 11 2 L 5 2 z M 4 4 L 5 4 L 5 5 L 11 5 L 11 4 L 12 4 L 12 6 L 12 12 L 12 13 L 8 13 L 7 13 L 4 13 L 4 12 L 4 6 L 4 4 z " + transform="translate(421.71429,531.79074)" + id="rect7438" + class="ColorScheme-Text" /> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4182" + width="5" + height="1" + x="426.71429" + y="538.79071" + class="ColorScheme-Text" /> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4184" + width="3" + height="1" + x="426.71429" + y="541.79071" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/export.svg b/html/themes/breezy/svg/16/actions/export.svg new file mode 100644 index 0000000000000000000000000000000000000000..53fdc83c7fbcccf5abe9566699a0da83f1a14b1b --- /dev/null +++ b/html/themes/breezy/svg/16/actions/export.svg @@ -0,0 +1,432 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-export.svg" + inkscape:export-filename="document-export.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + viewBox="0 0 16 16"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="10.266773" + inkscape:cy="6.6833041" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="M 3 2 L 3 11 L 3 12 L 5 12 L 7.0859375 12 L 6.4140625 12.671875 L 5.4648438 13.621094 L 6.171875 14.328125 L 7.1210938 13.378906 L 9 11.5 L 7.1210938 9.6210938 L 6.171875 8.671875 L 5.4648438 9.3789062 L 6.4140625 10.328125 L 7.0859375 11 L 5 11 L 4 11 L 4 3 L 12 3 L 12 13 L 9 13 L 9 14 L 13 14 L 13 2 L 3 2 z " + id="rect3015" + transform="translate(421.71429,531.79074)" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5" + width="0" + height="10.999983" + x="412.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781" + y="559.42297" + x="410.30652" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783" + sodipodi:role="line" + x="410.30652" + y="559.42297" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8" + y="553.55963" + x="411.04321" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1" + sodipodi:role="line" + x="411.04321" + y="553.55963" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4" + y="560.42297" + x="404.30652" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13" + sodipodi:role="line" + x="404.30652" + y="560.42297" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7" + width="0" + height="10.999983" + x="412.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0" + width="0" + height="10.999983" + x="374.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5" + width="0" + height="10.999983" + x="392.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-3" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-4" + width="0" + height="10.999983" + x="412.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-7" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-1" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-1" + y="559.42297" + x="410.30652" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-8" + sodipodi:role="line" + x="410.30652" + y="559.42297" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-2" + y="553.55963" + x="411.04321" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1-6" + sodipodi:role="line" + x="411.04321" + y="553.55963" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-7" + y="560.42297" + x="404.30652" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13-8" + sodipodi:role="line" + x="404.30652" + y="560.42297" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-08" + width="0" + height="10.999983" + x="394.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-8" + width="0" + height="10.999983" + x="412.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-2" + width="0" + height="10.999983" + x="374.87054" + y="546.66571" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-2" + width="0" + height="10.999983" + x="392.91132" + y="544.61438" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-2" + width="0" + height="10.999983" + x="390.63617" + y="548.64069" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-0" + width="0" + height="10.999983" + x="408.67694" + y="546.58936" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-8-1" + width="0" + height="10.999983" + x="390.63617" + y="548.64069" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-59-7" + width="0" + height="10.999983" + x="390.63617" + y="548.64069" + class="ColorScheme-Text" /> + <text + sodipodi:linespacing="125%" + id="text3781-41" + y="561.39795" + x="406.07214" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-9" + sodipodi:role="line" + x="406.07214" + y="561.39795" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-8-7" + y="555.53461" + x="406.80884" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-1-2" + sodipodi:role="line" + x="406.80884" + y="555.53461" /></text> + <text + sodipodi:linespacing="125%" + id="text3781-4-3" + y="562.39795" + x="400.07214" + style="font-style:normal;font-weight:normal;font-size:9px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:currentColor;fill-opacity:1;stroke:none" + xml:space="preserve" + class="ColorScheme-Text"><tspan + id="tspan3783-13-6" + sodipodi:role="line" + x="400.07214" + y="562.39795" /></text> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-9" + width="0" + height="10.999983" + x="390.63617" + y="548.64069" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-9" + width="0" + height="10.999983" + x="408.67694" + y="546.58936" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-9-0-5" + width="0" + height="10.999983" + x="370.63617" + y="548.64069" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4035-5-7-5-3" + width="0" + height="10.999983" + x="388.67694" + y="546.58936" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/go-first.svg b/html/themes/breezy/svg/16/actions/go-first.svg new file mode 100644 index 0000000000000000000000000000000000000000..e189d889996fb561cfd964baa4be5987b671d42e --- /dev/null +++ b/html/themes/breezy/svg/16/actions/go-first.svg @@ -0,0 +1,143 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="go-first.svg" + inkscape:export-filename="go-first.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="-4.4214728" + inkscape:cy="6.6222305" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + id="g4140" + transform="matrix(-1,0,0,1,859.42859,0)"> + <path + inkscape:connector-curvature="0" + id="rect4176" + d="m 431.71429,539.79074 -1.95349,-1.875 -4.29767,-4.125 -0.13024,0.125 -0.39069,0.375 -0.22791,0.21875 4.29768,4.125 1.23721,1.15625 -1.23721,1.15625 -4.29768,4.125 0.74884,0.71875 4.29767,-4.125 1.95349,-1.875 z" + style="fill:currentColor;fill-opacity:1;stroke:none" + class="ColorScheme-Text" /> + <rect + y="533.79071" + x="433.71429" + height="12.00003" + width="1.0000041" + id="rect4139" + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + class="ColorScheme-Text" /> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/go-home.svg b/html/themes/breezy/svg/16/actions/go-home.svg new file mode 100644 index 0000000000000000000000000000000000000000..601e1afa7b634efae0374cdd0f08565ac488d50a --- /dev/null +++ b/html/themes/breezy/svg/16/actions/go-home.svg @@ -0,0 +1,147 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="go-home.svg" + inkscape:export-filename="go-home.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="39.774755" + inkscape:cx="8.6197833" + inkscape:cy="4.1598786" + inkscape:document-units="px" + inkscape:current-layer="layer1-6" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,9" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="matrix(0.75,0,0,0.74999813,421.46429,-241.22897)" + id="layer1-0" + inkscape:label="Capa 1"> + <g + transform="translate(6.2937501e-7,-2.041003e-4)" + id="layer1-6" + inkscape:label="Capa 1"> + <g + transform="matrix(1.3333333,0,0,1.3333367,0.33333277,-351.12404)" + id="layer1-9" + inkscape:label="Capa 1"> + <path + id="rect4077" + transform="translate(0,1036.3622)" + d="M 8,2 7.2929688,2.6992188 7.296875,2.703125 2,7.9980469 2,8 l 0,1 1.0078125,0 0,4 L 3,13 3,14 13,14 13,13 13,9 14,9 14,8 14,7.99805 12.857422,6.8554688 12.15625,7.5566406 12.599609,8 12,8 12,13 9,13 9,10 7,10 7,13 4,13 4,9 4,8 3.4003906,8 7.9980469,3.4042969 8,3.40625 8.0019531,3.4042969 9.4433594,4.84375 10.144531,4.1425781 8.703125,2.703125 8.7070312,2.6992188 8,2 z m 3,1 0,3 1.007812,0 0,-3 L 11,3 z" + style="fill:currentColor;fill-opacity:1;stroke:none" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/go-previous.svg b/html/themes/breezy/svg/16/actions/go-previous.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ece389db599b484ee63ce38f66255ca472d7295 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/go-previous.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="go-previous.svg" + inkscape:export-filename="go-previous.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="48.822612" + inkscape:cx="0.38383004" + inkscape:cy="6.7343267" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 426.71429,539.79074 1.95349,-1.875 4.29767,-4.125 0.13024,0.125 0.39069,0.375 0.22791,0.21875 -4.29768,4.125 -1.23721,1.15625 1.23721,1.15625 4.29768,4.125 -0.74884,0.71875 -4.29767,-4.125 -1.95349,-1.875 z" + id="rect4176" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/next.svg b/html/themes/breezy/svg/16/actions/next.svg new file mode 100644 index 0000000000000000000000000000000000000000..481da1d80e96bccc306b163c3d8d258230d2c5f5 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/next.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="next.svg" + inkscape:export-filename="next.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="48.822612" + inkscape:cx="3.4561769" + inkscape:cy="6.7343267" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 433.71429,539.79074 -1.95349,-1.875 -4.29767,-4.125 -0.13024,0.125 -0.39069,0.375 -0.22791,0.21875 4.29768,4.125 1.23721,1.15625 -1.23721,1.15625 -4.29768,4.125 0.74884,0.71875 4.29767,-4.125 1.95349,-1.875 z" + id="rect4176" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/process-stop.svg b/html/themes/breezy/svg/16/actions/process-stop.svg new file mode 100644 index 0000000000000000000000000000000000000000..36c99d6824b823ad4b7c00f6cf2f8bc2bcd0002c --- /dev/null +++ b/html/themes/breezy/svg/16/actions/process-stop.svg @@ -0,0 +1,139 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="process-stop.svg" + inkscape:export-filename="process-stop.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="-1.1905266" + inkscape:cy="2.6459356" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1482" + inkscape:window-height="984" + inkscape:window-x="388" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-smooth-nodes="false" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="7,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 8 2 A 6 5.9999852 0 0 0 4.5273438 3.1132812 L 5.2460938 3.8320312 A 5 5 0 0 1 8 3 A 5 5 0 0 1 13 8 A 5 5 0 0 1 12.167969 10.753906 L 12.884766 11.470703 A 6 5.9999852 0 0 0 14 8 A 6 5.9999852 0 0 0 8 2 z M 3.1152344 4.5292969 A 6 5.9999852 0 0 0 2 8 A 6 5.9999852 0 0 0 8 14 A 6 5.9999852 0 0 0 11.472656 12.886719 L 10.753906 12.167969 A 5 5 0 0 1 8 13 A 5 5 0 0 1 3 8 A 5 5 0 0 1 3.8320312 5.2460938 L 3.1152344 4.5292969 z " + transform="translate(421.71429,531.79074)" + id="path4473" /> + <rect + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4509" + width="6.000001" + height="1.9999901" + x="426.71429" + y="538.79071" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/remove.svg b/html/themes/breezy/svg/16/actions/remove.svg new file mode 100644 index 0000000000000000000000000000000000000000..9ae1854ed2cbb2e96063e834631379d02fdfefe4 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/remove.svg @@ -0,0 +1,130 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="list-remove.svg" + inkscape:export-filename="remove.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="-0.718755" + inkscape:cy="11.121553" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#da4453;fill-opacity:1;stroke:none" + d="M 8 2 C 4.6862928 2 2 4.6862997 2 8 C 2 11.3137 4.6862928 14 8 14 C 11.313707 14 14 11.3137 14 8 C 14 4.6862997 11.313707 2 8 2 z M 8 3 C 10.761424 3 13 5.2385763 13 8 C 13 9.199635 12.548037 10.263384 11.84375 11.125 L 4.875 4.15625 C 5.7366165 3.4519627 6.8003651 3 8 3 z M 4.15625 4.875 L 11.125 11.84375 C 10.263384 12.548037 9.199635 13 8 13 C 5.2385763 13 3 10.761424 3 8 C 3 6.8003651 3.4519627 5.7366165 4.15625 4.875 z " + transform="translate(421.71429,531.79074)" + id="rect4203" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/save.svg b/html/themes/breezy/svg/16/actions/save.svg new file mode 100644 index 0000000000000000000000000000000000000000..332d843894146faffc1e97c4bd71f8d9422cfa84 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/save.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="document-save.svg" + inkscape:export-filename="document-save.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="3.3622475" + inkscape:cy="2.8644929" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 2 2 L 2 14 L 3 14 L 4 14 L 10 14 L 11 14 L 12 14 L 14 14 L 14 4.28125 L 11.71875 2 L 11.6875 2 L 11 2 L 4 2 L 3 2 L 2 2 z M 3 3 L 4 3 L 5 3 L 5 6 L 5 7 L 11 7 L 11 6 L 11 3 L 11.28125 3 L 13 4.71875 L 13 5 L 13 13 L 12 13 L 12 9 L 11 9 L 5 9 L 3.96875 9 L 3.96875 13 L 3 13 L 3 3 z M 6 3 L 7.90625 3 L 7.90625 6 L 6 6 L 6 3 z M 5 10 L 6 10 L 10 10 L 11 10 L 11 13 L 10 13 L 6 13 L 5 13 L 5 10 z " + transform="translate(421.71429,531.79074)" + id="rect4126" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/snapshot.svg b/html/themes/breezy/svg/16/actions/snapshot.svg new file mode 100644 index 0000000000000000000000000000000000000000..04713f5ad9786278a29899f7d66c9df3e3d2dd0d --- /dev/null +++ b/html/themes/breezy/svg/16/actions/snapshot.svg @@ -0,0 +1,149 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="snapshot.svg" + inkscape:export-filename="snapshot.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="5.071263" + inkscape:cy="2.9224256" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="M 2 2 L 2 14 L 3 14 L 4 14 L 9 14 L 9 13 L 6 13 L 5 13 L 5 10 L 6 10 L 9 10 L 9 9 L 5 9 L 3.96875 9 L 3.96875 13 L 3 13 L 3 3 L 4 3 L 5 3 L 5 6 L 5 7 L 11 7 L 11 6 L 11 3 L 11.28125 3 L 13 4.71875 L 13 5 L 13 9 L 14 9 L 14 4.28125 L 11.71875 2 L 11.6875 2 L 11 2 L 4 2 L 3 2 L 2 2 z M 6 3 L 7.90625 3 L 7.90625 6 L 6 6 L 6 3 z " + transform="translate(421.71429,531.79074)" + id="rect4126" /> + <path + sodipodi:type="star" + style="color:#4d4d4d;opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="path4160" + sodipodi:sides="8" + sodipodi:cx="342" + sodipodi:cy="548.36218" + sodipodi:r1="5.3851647" + sodipodi:r2="2.6925824" + sodipodi:arg1="0.26179939" + sodipodi:arg2="0.65449847" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 347.20167,549.75597 -3.0655,0.24535 0.55641,3.02455 -2.34113,-1.99414 -1.74523,2.53212 -0.24536,-3.0655 -3.02455,0.55641 1.99414,-2.34112 -2.53212,-1.74524 3.0655,-0.24536 -0.55641,-3.02455 2.34113,1.99415 1.74523,-2.53213 0.24536,3.0655 3.02455,-0.55641 -1.99414,2.34113 z" + inkscape:transform-center-x="-0.22876659" + inkscape:transform-center-y="-0.39622742" + transform="matrix(0.44841981,-0.12015372,0.12015372,0.44841981,213.96696,338.48685)" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/submit.svg b/html/themes/breezy/svg/16/actions/submit.svg new file mode 100644 index 0000000000000000000000000000000000000000..293115ac65444baca4cf888437b2b2769d6c160f --- /dev/null +++ b/html/themes/breezy/svg/16/actions/submit.svg @@ -0,0 +1,134 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="submit.svg" + inkscape:export-filename="submit.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="45.254834" + inkscape:cx="3.5721765" + inkscape:cy="6.5963891" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1605" + inkscape:window-height="1012" + inkscape:window-x="265" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 7,2 0,1 0,4 -5,0 0,1 0,5 0,1 12,0 0,-1 0,-10 0,-1 z m 1,1 5,0 0,10 -10,0 0,-5 4,0 1,0 z m 3,1 0,6 -3,0 0,-1 -3,1.5 3,1.5 0,-1 3,0 1,0 0,-7 z" + transform="translate(421.71429,531.79074)" + id="rect4263" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/system-reinstall.svg b/html/themes/breezy/svg/16/actions/system-reinstall.svg new file mode 100644 index 0000000000000000000000000000000000000000..141159aaffd6c0749d885a86a51a263e27090799 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/system-reinstall.svg @@ -0,0 +1,141 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="system-reinstall.svg" + inkscape:export-filename="system-reinstall.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="1.9389803" + inkscape:cy="5.6852538" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 7 2 L 7 3.1015625 A 5 5 0 0 0 5.2460938 3.8320312 L 4.4648438 3.0507812 L 3.0507812 4.4648438 L 3.8320312 5.2460938 A 5 5 0 0 0 3.1054688 7 L 2 7 L 2 9 L 3.1015625 9 A 5 5 0 0 0 3.8320312 10.753906 L 3.0507812 11.535156 L 4.4648438 12.949219 L 5.2460938 12.167969 A 5 5 0 0 0 7 12.894531 L 7 14 L 8 14 L 8 12 A 4 4 0 0 1 5.1308594 10.787109 A 4 4 0 0 1 4 8 A 4 4 0 0 1 5.2128906 5.1308594 A 4 4 0 0 1 8 4 A 4 4 0 0 1 10.869141 5.2128906 A 4 4 0 0 1 12 8 L 14 8 L 14 7 L 12.898438 7 A 5 5 0 0 0 12.167969 5.2460938 L 12.949219 4.4648438 L 11.535156 3.0507812 L 10.753906 3.8320312 A 5 5 0 0 0 9 3.1054688 L 9 2 L 7 2 z " + transform="translate(421.71429,531.79074)" + id="path4146" /> + <path + style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 428.71429,537.79074 0,4 3,-2 z" + id="path4180" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#da4453;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="M 11 9 L 11 12.09375 L 9 10.09375 L 9 11.5 L 11.28125 13.8125 L 11.5 14 L 11.71875 13.8125 L 14 11.5 L 14 10.09375 L 12 12.09375 L 12 9 L 11 9 z " + transform="translate(421.71429,531.79074)" + id="rect3015" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/system-search.svg b/html/themes/breezy/svg/16/actions/system-search.svg new file mode 100644 index 0000000000000000000000000000000000000000..017826b711614b36164d4b3a0ac020ff377cc3a2 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/system-search.svg @@ -0,0 +1,152 @@ +<?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" + id="svg952" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="system-search.svg" + inkscape:export-filename="system-search.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs954"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="4.824787" + inkscape:cy="7.1852049" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" + inkscape:showpageshadow="false" + borderlayer="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide3284" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide3286" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide3288" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide3290" /> + <sodipodi:guide + position="9,7.0000174" + orientation="5,0" + id="guide3304" /> + <sodipodi:guide + position="9,2.0000174" + orientation="0,5" + id="guide3306" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-5,0" + id="guide3308" /> + <sodipodi:guide + position="14,7.0000174" + orientation="0,-5" + id="guide3310" /> + </sodipodi:namedview> + <metadata + id="metadata957"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 6.5 2 C 4.0070042 2 2 4.0070042 2 6.5 C 2 8.9929958 4.0070042 11 6.5 11 C 8.9929958 11 11 8.9929958 11 6.5 C 11 4.0070042 8.9929958 2 6.5 2 z M 6.5 3 C 8.438997 3 10 4.561003 10 6.5 C 10 8.438997 8.438997 10 6.5 10 C 4.561003 10 3 8.438997 3 6.5 C 3 4.561003 4.561003 3 6.5 3 z " + transform="translate(0,1036.3622)" + id="rect3294" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect3312" + width="1" + height="6.0710001" + x="-733.31873" + y="746.04675" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/system-shutdown.svg b/html/themes/breezy/svg/16/actions/system-shutdown.svg new file mode 100644 index 0000000000000000000000000000000000000000..3300239de46d667c3e7da75d4211ec2c405a0e66 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/system-shutdown.svg @@ -0,0 +1,140 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="system-shutdown.svg" + inkscape:export-filename="system-shutdown.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="11.699505" + inkscape:cy="3.1093974" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1482" + inkscape:window-height="984" + inkscape:window-x="203" + inkscape:window-y="29" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-smooth-nodes="false" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="7,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <rect + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4509" + width="6.000001" + height="1.9999901" + x="-539.79071" + y="428.71429" + transform="matrix(0,-1,1,0,0,0)" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 10 2.3496094 L 10 3.4199219 A 5 5 0 0 1 13 8 A 5 5 0 0 1 8 13 A 5 5 0 0 1 3 8 A 5 5 0 0 1 6 3.4238281 L 6 2.3515625 A 6 6 0 0 0 2 8 A 6 6 0 0 0 8 14 A 6 6 0 0 0 14 8 A 6 6 0 0 0 10 2.3496094 z " + transform="translate(421.71429,531.79074)" + id="path4160" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/system-update.svg b/html/themes/breezy/svg/16/actions/system-update.svg new file mode 100644 index 0000000000000000000000000000000000000000..6270583067d582f264fafab9d0c7431d26e420f1 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/system-update.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="system-update.svg" + inkscape:export-filename="system-update.png" + inkscape:export-xdpi="120" + inkscape:export-ydpi="120"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="5.3989683" + inkscape:cy="2.4294305" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#1d99f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.75;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 8 2 C 4.6862915 2 2 4.6862915 2 8 C 2 11.313708 4.6862915 14 8 14 C 11.313708 14 14 11.313708 14 8 C 14 4.6862915 11.313708 2 8 2 z M 8 3 C 10.761424 3 13 5.2385763 13 8 C 13 10.761424 10.761424 13 8 13 C 5.2385763 13 3 10.761424 3 8 C 3 5.2385763 5.2385763 3 8 3 z M 7 4 L 7 8 L 7 9 L 12 9 L 12 8 L 8 8 L 8 4 L 7 4 z " + transform="translate(421.71429,531.79074)" + id="path4876" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/tools-wizard.svg b/html/themes/breezy/svg/16/actions/tools-wizard.svg new file mode 100644 index 0000000000000000000000000000000000000000..385cf1fc8a4006bcd0d3815a42be8672f3a56642 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/tools-wizard.svg @@ -0,0 +1,137 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="tools-wizard.svg" + inkscape:export-filename="tools-wizard.png" + inkscape:export-xdpi="120" + inkscape:export-ydpi="120"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="-1.0692073" + inkscape:cy="4.4858748" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1407" + inkscape:window-height="1047" + inkscape:window-x="463" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2,15" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="17,2" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,13" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="0,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 11.125 2 L 7.625 5.5 L 7.125 6 L 5.125 8 L 3.625 9.5 L 3.125 10 L 2 11.125 L 4.875 14 L 6 12.875 L 6.5 12.375 L 10 8.875 L 10.5 8.375 L 14 4.875 L 11.125 2 z M 11.125 3.4375 L 12.5625 4.875 L 9.78125 7.65625 L 8.34375 6.21875 L 11.125 3.4375 z " + transform="translate(421.71429,531.79074)" + id="rect5936" + class="ColorScheme-Text" /> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 425.21429,533.79074 -0.53125,0.96875 -0.96875,0.53125 0.96875,0.53125 0.53125,0.96875 0.53125,-0.96875 0.96875,-0.53125 -0.96875,-0.53125 -0.53125,-0.96875 z" + id="rect4157-8-8" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/up.svg b/html/themes/breezy/svg/16/actions/up.svg new file mode 100644 index 0000000000000000000000000000000000000000..7d9ad966a21d4ae7f0507eff8abae5c29a42e10f --- /dev/null +++ b/html/themes/breezy/svg/16/actions/up.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="up.svg" + inkscape:export-filename="up.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="-0.46618596" + inkscape:cy="6.7343267" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 429.71429,535.79074 -1.875,1.95349 -4.125,4.29767 0.125,0.13024 0.375,0.39069 0.21875,0.22791 4.125,-4.29768 1.15625,-1.23721 1.15625,1.23721 4.125,4.29768 0.71875,-0.74884 -4.125,-4.29767 -1.875,-1.95349 z" + id="rect4176" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/view-refresh.svg b/html/themes/breezy/svg/16/actions/view-refresh.svg new file mode 100644 index 0000000000000000000000000000000000000000..950c198030c0cdec7cebb0ffa02aa18aafa4dc7d --- /dev/null +++ b/html/themes/breezy/svg/16/actions/view-refresh.svg @@ -0,0 +1,141 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="view-refresh.svg" + inkscape:export-filename="view-refresh.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="39.774755" + inkscape:cx="6.4483233" + inkscape:cy="4.5717413" + inkscape:document-units="px" + inkscape:current-layer="layer1-6" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,9" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="matrix(0.75,0,0,0.74999813,421.46429,-241.22897)" + id="layer1-0" + inkscape:label="Capa 1"> + <g + transform="translate(6.2937501e-7,-2.041003e-4)" + id="layer1-6" + inkscape:label="Capa 1"> + <path + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:6.66667509000000003;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + d="M 8 2 C 6.8911827 2 5.8599294 2.3193334 4.96875 2.84375 L 5.53125 3.40625 L 5.71875 3.59375 L 7.65625 5.53125 L 8.375 4.8125 L 6.75 3.1875 C 6.94534 3.1364099 7.1398623 3.0897842 7.34375 3.0625 C 7.3961563 3.0547113 7.4470287 3.0373165 7.5 3.03125 C 7.6680854 3.01418 7.827411 3 8 3 C 10.761424 3 13 5.238576 13 8 C 13 8.243024 12.97155 8.4855082 12.9375 8.71875 C 12.917545 8.8549993 12.905714 8.9925532 12.875 9.125 C 12.80805 9.4115815 12.708353 9.672624 12.59375 9.9375 C 12.580478 9.9681753 12.576374 10.000899 12.5625 10.03125 C 12.521539 10.122908 12.454245 10.194583 12.40625 10.28125 C 12.401797 10.289291 12.410582 10.304303 12.40625 10.3125 L 13.15625 11.03125 C 13.680667 10.140071 14 9.108818 14 8 C 14 4.686291 11.313707 2 8 2 z M 2.84375 4.96875 C 2.3193332 5.8599294 2 6.891182 2 8 C 2 11.313709 4.6862933 14 8 14 C 9.1088173 14 10.140071 13.680667 11.03125 13.15625 L 10.46875 12.59375 L 10.28125 12.40625 L 8.34375 10.5 L 7.65625 11.1875 L 9.25 12.8125 C 9.05466 12.86359 8.8601377 12.910216 8.65625 12.9375 C 8.6038437 12.945289 8.5529713 12.962684 8.5 12.96875 C 8.3319146 12.98582 8.172589 13 8 13 C 7.827411 13 7.6680854 12.98582 7.5 12.96875 C 7.3319147 12.95168 7.162744 12.939552 7 12.90625 C 4.7215846 12.440019 3 10.416246 3 8 C 3 7.7517374 3.0275593 7.5198138 3.0625 7.28125 C 3.0824555 7.1450007 3.0942865 7.0074468 3.125 6.875 C 3.1919502 6.5884185 3.2916465 6.327376 3.40625 6.0625 C 3.4192426 6.031782 3.4239145 5.9991506 3.4375 5.96875 C 3.4781185 5.8798895 3.5461122 5.8040145 3.59375 5.71875 L 3.59375 5.6875 L 2.84375 4.96875 z " + transform="matrix(1.3333333,0,0,1.3333367,0.3333327,1030.6957)" + id="path8579-9" + class="ColorScheme-Text" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/view-sort-ascending.svg b/html/themes/breezy/svg/16/actions/view-sort-ascending.svg new file mode 100644 index 0000000000000000000000000000000000000000..fa115af75e5b86577145d386c0509f2b5d7884e4 --- /dev/null +++ b/html/themes/breezy/svg/16/actions/view-sort-ascending.svg @@ -0,0 +1,130 @@ +<?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="7" + height="4" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="view-sort-ascending.svg" + inkscape:export-filename="view-sort-ascending.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.31535" + inkscape:cx="7.6038452" + inkscape:cy="5.0752594" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-543.79074)"> + <path + style="fill:#4d4d4d;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" + d="m 421.71429,543.79074 7,0 0,1 -3,3 -1,0 -3,-3 z" + id="path4172" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/actions/view-sort-descending.svg b/html/themes/breezy/svg/16/actions/view-sort-descending.svg new file mode 100644 index 0000000000000000000000000000000000000000..66f184e80f98b4a1995292d794bcbd99930e183c --- /dev/null +++ b/html/themes/breezy/svg/16/actions/view-sort-descending.svg @@ -0,0 +1,130 @@ +<?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="7" + height="4" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="view-sort-descending.svg" + inkscape:export-filename="view-sort-descending.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.31535" + inkscape:cx="-36.772625" + inkscape:cy="5.0752594" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-543.79074)"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 428.71429,547.79074 -7,0 0,-1 3,-3 1,0 3,3 z" + id="path4172" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/antivirus.svg b/html/themes/breezy/svg/16/apps/antivirus.svg new file mode 100644 index 0000000000000000000000000000000000000000..f811d4cf806daa02719ee867aaafa9d97c1a278c --- /dev/null +++ b/html/themes/breezy/svg/16/apps/antivirus.svg @@ -0,0 +1,130 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="antivirus.svg" + inkscape:export-filename="antivirus.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="-0.21704102" + inkscape:cy="5.2729466" + inkscape:document-units="px" + inkscape:current-layer="layer2" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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:groupmode="layer" + id="layer2" + inkscape:label="Calque 1"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8,2 3,5 c 0,5 2,8.00003 5,10 3,-1.99997 5,-5 5,-10 L 8,2 Z m 0,1 4.173828,2.6699219 C 12.173828,9.8430389 10.50387,12.346403 8,14.015625 5.4961298,12.346403 3.8261719,9.8430389 3.8261719,5.6699219 L 8,3 Z M 8,4 4.5839844,6.1855469 c 0,3.4154348 1.3667549,5.4639241 3.4160156,6.8300781 2.049261,-1.366154 3.416016,-3.4146433 3.416016,-6.8300781 L 8,4 Z" + id="path4171" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/apache.svg b/html/themes/breezy/svg/16/apps/apache.svg new file mode 100644 index 0000000000000000000000000000000000000000..842fe2e8e3f190ef3052356e467928d1bbcd5179 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/apache.svg @@ -0,0 +1,502 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="apache.svg" + inkscape:export-filename="apache.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + id="e" + y2="638.44" + gradientUnits="userSpaceOnUse" + x2="-6797.2002" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="638.44" + x1="-9035.5"> + <stop + style="stop-color:#282662" + offset="0" + id="stop41" /> + <stop + style="stop-color:#662E8D" + offset=".095484" + id="stop43" /> + <stop + style="stop-color:#9F2064" + offset=".7882" + id="stop45" /> + <stop + style="stop-color:#CD2032" + offset=".9487" + id="stop47" /> + </linearGradient> + <linearGradient + id="i" + y2="1395.6" + gradientUnits="userSpaceOnUse" + x2="-4570.1001" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="697.54999" + x1="-5167.1001"> + <stop + style="stop-color:#F69923" + offset="0" + id="stop7" /> + <stop + style="stop-color:#F79A23" + offset=".3123" + id="stop9" /> + <stop + style="stop-color:#E97826" + offset=".8383" + id="stop11" /> + </linearGradient> + <linearGradient + id="h" + y2="620.5" + gradientUnits="userSpaceOnUse" + x2="-5326.2002" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="620.5" + x1="-9585.2998"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop14" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop16" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop18" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop20" /> + </linearGradient> + <linearGradient + id="f" + y2="580.82001" + gradientUnits="userSpaceOnUse" + x2="-5087" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="580.82001" + x1="-9346.0996"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop32" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop34" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop36" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop38" /> + </linearGradient> + <linearGradient + id="d" + y2="1021.6" + gradientUnits="userSpaceOnUse" + x2="-5087" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="1021.6" + x1="-9346.0996"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop50" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop52" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop54" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop56" /> + </linearGradient> + <linearGradient + id="c" + y2="999.72998" + gradientUnits="userSpaceOnUse" + x2="-5351.2002" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="999.72998" + x1="-9610.2998"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop59" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop61" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop63" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop65" /> + </linearGradient> + <linearGradient + id="b" + y2="1152.7" + gradientUnits="userSpaceOnUse" + x2="-5087" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="1152.7" + x1="-9346.0996"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop68" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop70" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop72" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop74" /> + </linearGradient> + <linearGradient + id="a" + y2="1137.7" + gradientUnits="userSpaceOnUse" + x2="-5087" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="1137.7" + x1="-9346.0996"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop77" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop79" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop81" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop83" /> + </linearGradient> + <linearGradient + id="j" + y2="1134.7" + gradientUnits="userSpaceOnUse" + x2="-6012" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="1134.7" + x1="-6953.3999"> + <stop + style="stop-color:#9E2064" + offset=".3233" + id="stop86" /> + <stop + style="stop-color:#C92037" + offset=".6302" + id="stop88" /> + <stop + style="stop-color:#CD2335" + offset=".7514" + id="stop90" /> + <stop + style="stop-color:#E97826" + offset="1" + id="stop92" /> + </linearGradient> + <linearGradient + id="g" + y2="1047.7" + gradientUnits="userSpaceOnUse" + x2="-6533.2002" + gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" + y1="1047.7" + x1="-9071.2002"> + <stop + style="stop-color:#282662" + offset="0" + id="stop23" /> + <stop + style="stop-color:#662E8D" + offset=".095484" + id="stop25" /> + <stop + style="stop-color:#9F2064" + offset=".7882" + id="stop27" /> + <stop + style="stop-color:#CD2032" + offset=".9487" + id="stop29" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="-0.89468282" + inkscape:cy="11.199215" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)" + style="opacity:1"> + <g + style="enable-background:new" + transform="matrix(-0.01773253,0.01023788,-0.01023788,-0.01773253,437.80873,533.55033)" + id="g94"> + <path + inkscape:connector-curvature="0" + style="fill:url(#e)" + d="m 656.71,-7.0909 c 20.267,-9.5939 39.714,-20.144 58.137,-31.855 0.64586,-0.42398 1.3003,-0.79943 1.9461,-1.2234 -7.5146,19.097 -3.8382,52.585 -3.7537,52.44 11.85,-34.711 26.515,-65.255 48.744,-84.672 8.4826,7.5928 14.923,21.83 20.214,39.882 2.6186,-24.849 -1.858,-38.732 -4.0514,-43.799 10.917,12.948 30.734,20.176 52.045,26.46 -23.946,-14.536 -39.792,-28.878 -46.004,-42.955 68.312,-21.018 142.29,-46.157 219.96,-74.026 -6.0925,-4.5911 -12.639,-5.1694 -19.442,-3.1706 -14.023,5.1017 -106.22,38.312 -231.64,76.244 -3.5629,1.0778 -7.1567,2.1511 -10.768,3.2375 -1.0067,0.30738 -2.0264,0.59708 -3.0153,0.89135 -13.174,3.9515 -26.666,7.9189 -40.462,11.92 -3.1433,0.90384 -6.2865,1.8077 -9.4475,2.7247 -0.0663,0.02188 -0.13246,0.04334 -0.18106,0.052 l -34.514,68.935 c 0.7115,-0.33546 1.4939,-0.72358 2.2408,-1.0853 z" + id="path96" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#i)" + d="m 23.148,66.817 c 19.071,7.1961 39.608,9.0845 59.733,11.274 11.854,1.1234 23.738,1.9142 35.63,2.4926 8.1692,-17.104 16.338,-34.207 24.508,-51.311 -31.491,0.85648 -63.087,0.17618 -94.393,-3.5401 30.943,3.103 62.137,1.8494 93.129,0.17007 -22.37,-26.669 -46.909,-51.428 -71.93,-75.588 -23.519,11.839 -46.291,28.35 -58.634,52.244 -6.3001,14.546 -9.9508,31.534 -4.821,46.981 2.7562,7.894 9.065,14.16 16.773,17.277 z" + id="path98" /> + <path + inkscape:connector-curvature="0" + style="fill:none" + d="m 280.24,-67.689 c -0.15352,-0.13308 -0.28936,-0.27929 -0.4429,-0.41235 l 2.6202,2.831 c 0.23288,0.12909 0.43954,0.22281 0.65472,0.36504 -0.94684,-0.94406 -1.8983,-1.8573 -2.832,-2.7836 z" + id="path100" /> + <path + inkscape:connector-curvature="0" + style="fill:none" + d="m 368.72,-99.465 c 1.6889,1.4638 3.3155,3.0287 4.9198,4.6376 -1.6043,-1.6088 -3.2487,-3.1606 -4.9198,-4.6376 z" + id="path102" /> + <path + inkscape:connector-curvature="0" + style="fill:none" + d="m 640.89,-71.354 c -0.77256,0.21613 -1.5451,0.43223 -2.3045,0.66606 -15.919,4.505 -31.444,8.8006 -46.643,12.908 -17.052,4.6045 -33.627,8.9648 -49.773,13.089 -17.016,4.3579 -33.536,8.4584 -49.579,12.315 -16.829,4.0548 -33.127,7.826 -48.887,11.362 -12.825,2.8692 -25.296,5.586 -37.426,8.1328 -4.0333,0.85047 -8.0489,1.6878 -12.029,2.4989 -7.881,1.6182 -15.643,3.1754 -23.223,4.6806 -7.0114,1.385 -13.886,2.6958 -20.659,3.9587 -2.2547,0.43715 -4.4872,0.83034 -6.7242,1.2544 -0.3574,0.072954 -0.72796,0.12822 -1.0854,0.20118 l 2.2258,2.4101 -2.5583,5.1341 c 0.55154,-0.10716 1.0985,-0.18347 1.6632,-0.27291 10.236,-1.7727 20.516,-3.6333 30.84,-5.5819 5.9654,-1.1307 11.949,-2.2746 17.936,-3.4492 16.6,-3.2538 33.24,-6.675 49.89,-10.268 16.826,-3.614 33.632,-7.4045 50.376,-11.314 16.449,-3.8277 32.823,-7.7924 49.096,-11.819 16.242,-4.0316 32.358,-8.1608 48.306,-12.331 16.654,-4.3643 33.08,-8.7783 49.245,-13.247 3.6463,-1.0025 7.2925,-2.0049 10.926,-3.0251 13.032,-3.6261 25.843,-7.2535 38.464,-10.878 l 4.0558,-8.1098 -2.4975,-2.7025 c -0.37966,0.11693 -0.7594,0.23382 -1.1214,0.3376 -16.542,4.885 -32.709,9.5737 -48.514,14.048 z" + id="path104" /> + <path + inkscape:connector-curvature="0" + style="fill:none" + d="m 374.86,-93.622 c -0.012,-0.01769 -0.0309,-0.0044 -0.0441,-0.02219 0,0 0.012,0.01769 0.0441,0.02219 z" + id="path106" /> + <path + inkscape:connector-curvature="0" + style="fill:#be202e" + d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" + id="path108" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.35;fill:#be202e" + d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" + id="path110" /> + <path + inkscape:connector-curvature="0" + style="fill:#be202e" + d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" + id="path112" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.35;fill:#be202e" + d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" + id="path114" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#h)" + d="m 294.05,14.992 c -16.961,2.5069 -33.723,4.7285 -50.218,6.643 -17.122,1.9948 -33.955,3.6385 -50.416,4.8964 -0.9569,0.07847 -1.9446,0.15235 -2.9192,0.24395 -16.218,1.2152 -32.064,2.0446 -47.489,2.4796 l -24.508,51.311 c 3.1595,0.15406 6.3543,0.2819 9.6108,0.41887 12.251,0.46429 25.27,0.74328 38.902,0.81409 15.365,0.07595 31.56,-0.1344 48.36,-0.60148 15.522,-0.45209 31.601,-1.1524 48.051,-2.1282 14.003,-0.83512 28.316,-1.8448 42.838,-3.0914 0.5424,-0.0455 1.068,-0.07818 1.6104,-0.12365 13.32,-22.17 22.89,-45.722 34.335,-68.583 -16.183,2.7801 -32.241,5.3583 -48.157,7.7211 z" + id="path116" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#f)" + d="m 639.56,-61.012 c -16.179,4.4506 -32.604,8.8647 -49.245,13.247 -15.935,4.1875 -32.046,8.2859 -48.306,12.331 -16.26,4.0447 -32.63,7.9786 -49.096,11.819 -16.744,3.9098 -33.563,7.6825 -50.376,11.314 -16.632,3.5798 -33.29,7.0141 -49.89,10.268 -5.9877,1.1747 -11.971,2.3185 -17.936,3.4492 -10.325,1.9485 -20.605,3.8091 -30.84,5.5819 -0.55156,0.10715 -1.0985,0.18346 -1.6632,0.2729 l -34.33,68.583 c 1.0848,-0.091 2.1565,-0.19968 3.2413,-0.29065 15.39,-1.3696 31.015,-2.9407 46.779,-4.8063 15.922,-1.8736 31.965,-4.0286 48.062,-6.4433 13.582,-2.0319 27.162,-4.2534 40.724,-6.6821 2.7532,-0.50491 5.4578,-1.0013 8.1802,-1.5108 16.983,-3.1812 33.094,-6.6493 48.365,-10.29 17.296,-4.1271 33.51,-8.4938 48.609,-12.995 9.938,-2.9512 19.414,-5.9711 28.431,-8.9803 7.6399,-2.6465 15.232,-5.3947 22.71,-8.2228 17.654,-6.6419 34.84,-13.842 51.5,-21.64 11.64,-22.613 23.669,-45.588 34.514,-68.935 -12.622,3.624 -25.468,7.2775 -38.5,10.904 -3.6155,1.007 -7.2794,2.0226 -10.926,3.0251 z" + id="path118" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#d)" + d="m 343.66,-0.50096 c 2.2193,-0.41089 4.4564,-0.83491 6.7242,-1.2543 6.7596,-1.2806 13.634,-2.5914 20.659,-3.9587 7.5938,-1.4876 15.325,-3.0493 23.223,-4.6806 3.9802,-0.81109 7.965,-1.653 12.029,-2.4989 12.131,-2.5468 24.602,-5.2637 37.426,-8.1328 15.759,-3.5362 32.058,-7.3074 48.887,-11.362 16.043,-3.8564 32.564,-7.9569 49.579,-12.315 16.146,-4.1247 32.739,-8.4981 49.773,-13.089 15.198,-4.1078 30.724,-8.4034 46.643,-12.908 0.77254,-0.21613 1.5451,-0.43223 2.3045,-0.66606 15.804,-4.4748 31.971,-9.1635 48.483,-14.053 0.3797,-0.1169 0.7594,-0.23382 1.1214,-0.33761 l -19.143,-20.676 c 0.2395,0.5082 0.5278,1.0079 0.7674,1.5161 -23.296,-24.428 -69.92,-45.278 -111.88,-49.997 -19.338,-2.1783 -39.994,-1.8427 -62.413,0.92504 -16.69,2.0589 -34.353,5.4699 -53.191,10.219 -16.464,4.1405 -33.814,9.2679 -52.184,15.425 7.8381,3.7633 15.478,9.0727 22.931,15.646 1.2939,1.1531 2.614,2.3417 3.9119,3.5742 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -0.012,-0.0177 -0.0441,-0.0222 -0.0569,-0.04 -28.247,-17.932 -58.622,-19.938 -89.973,-14.526 9.3924,3.2694 23.242,9.6268 35.603,20.379 1.6889,1.4639 3.3155,3.0287 4.9198,4.6376 0.41208,0.40779 0.81102,0.79786 1.1923,1.2011 -0.012,-0.01769 -0.0309,-0.0045 -0.0441,-0.02217 0,0 -0.012,-0.01769 -0.0309,-0.0045 -10.105,-6.0061 -19.623,-10.334 -29.164,-13.137 -2.0374,-0.60186 -4.084,-1.1421 -6.1444,-1.5898 -3.1256,-0.70044 -6.2609,-1.229 -9.4323,-1.6212 -2.0262,-0.25361 -4.0614,-0.44555 -6.1236,-0.56271 -4.8248,-0.29107 -9.7616,-0.2522 -14.877,0.1383 -1.5609,0.1148 -3.1265,0.26044 -4.7274,0.43231 -2.2279,0.36236 -4.3941,0.73388 -6.5295,1.11 -9.6447,1.7187 -18.003,3.5811 -25.18,5.4456 -3.5886,0.93227 -6.8597,1.8486 -9.8489,2.7754 -1.1876,0.35928 -2.3445,0.72314 -3.4528,1.0785 -3.3117,1.0836 -6.2044,2.1035 -8.6957,3.0727 -3.7281,1.4472 -6.5694,2.7582 -8.5675,3.8006 1.3027,0.35098 2.6974,0.8259 4.1661,1.4378 10.15,4.2169 23.891,14.166 33.591,23.215 l -17.583,-18.98 17.583,18.98 c 0.15354,0.13308 0.28938,0.2793 0.44292,0.41237 0.95142,0.91323 1.8983,1.8573 2.8628,2.7882 -0.23288,-0.1291 -0.43954,-0.17283 -0.65472,-0.31504 l 60.164,64.89 c 0.33972,-0.059824 0.67944,-0.11965 1.05,-0.17492 z" + id="path120" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#c)" + d="m 141.76,25.871 c 14.308,-0.86871 30.359,-2.1245 48.242,-3.9432 0.92606,-0.08306 1.8876,-0.19234 2.8313,-0.2885 15.471,-1.594 32.288,-3.5552 50.488,-6.02 15.721,-2.1083 32.439,-4.5725 50.245,-7.4582 15.511,-2.5017 31.888,-5.3162 49.043,-8.4876 l -59.49,-64.569 c -24.736,-13.567 -40.821,-16.794 -59.841,-16.547 -5.1755,0.16099 -10.523,0.42238 -15.982,0.79335 -16.711,1.142 -34.469,3.2787 -51.604,6.1064 -16.54,2.7429 -32.435,6.1328 -46.23,9.9134 -8.7714,2.4155 -16.684,4.99 -23.332,7.642 -5.8619,2.3434 -11.266,4.7863 -16.287,7.3018 25.101,24.05 54.589,54.423 71.931,75.557 z" + id="path122" /> + <path + inkscape:connector-curvature="0" + style="fill:#be202e" + d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" + id="path124" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.35;fill:#be202e" + d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" + id="path126" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#b)" + d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" + id="path128" /> + <path + inkscape:connector-curvature="0" + style="fill:#be202e" + d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" + id="path130" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.35;fill:#be202e" + d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" + id="path132" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#a)" + d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" + id="path134" /> + <path + inkscape:connector-curvature="0" + style="fill:#be202e" + d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" + id="path136" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.35;fill:#be202e" + d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" + id="path138" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#j)" + d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" + id="path140" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#g)" + d="m 697.74,-87.882 c 12.856,-3.8255 25.903,-7.7645 39.192,-11.856 0.1987,-0.06501 0.3797,-0.1169 0.5784,-0.18193 1.8809,-0.57144 3.7485,-1.1606 5.6293,-1.732 8.9497,-2.7671 16.955,-5.3279 35.178,-11.129 -2.3417,-10.966 2.6186,-24.849 9.1692,-39.363 -11.075,9.2259 -18.387,22.082 -20.063,37.399 -28.142,-41.768 -64.174,-69.017 -107.07,-65.115 -3.8322,0.34468 -7.6833,0.92288 -11.624,1.7871 16.438,0.48738 28.367,7.3631 41.449,27.265 0.0441,0.0223 0.101,0.0623 0.1451,0.0846 -0.0441,-0.0223 -0.101,-0.0623 -0.1451,-0.0846 -33.43,-18.78 -55.964,-23.938 -85.227,-21.557 -6.9364,0.56118 -14.25,1.539 -22.182,2.866 43.476,5.8729 71.791,29.037 88.586,63.086 l 0.7758,1.4939 18.367,19.182 c 2.4192,-0.69629 4.8254,-1.4103 7.2492,-2.1374 z" + id="path144" /> + </g> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1" /> +</svg> diff --git a/html/themes/breezy/svg/16/apps/application-octet-stream.svg b/html/themes/breezy/svg/16/apps/application-octet-stream.svg new file mode 100644 index 0000000000000000000000000000000000000000..4789356225db5d51ae9769fcdef40bd76ea0e02c --- /dev/null +++ b/html/themes/breezy/svg/16/apps/application-octet-stream.svg @@ -0,0 +1,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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="application-octet-stream.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="21.8125" + inkscape:cx="8" + inkscape:cy="8" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1024" + inkscape:window-height="532" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#6c7a89;fill-opacity:1;stroke:none" + d="M 2,2 2,5 2,13.25 2,14 14,14 14,13.25 14,9.5 14,5 14,2 Z m 1,3 10,0 0,8 C 9.449069,12.963 6.549687,12.923 3,13 Z" + id="rect4138" + transform="translate(0,1036.3622)" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#6c7a89;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 8,1042.3622 c -0.5555545,0 -1.0742855,0.1705 -1.439737,0.4902 C 6.194823,1043.1722 6,1043.6261 6,1044.1122 l 1.142857,0 c 0,-0.2639 0.090858,-0.435 0.2254515,-0.5527 0.1345485,-0.1178 0.330103,-0.1973 0.6316915,-0.1973 0.3015885,0 0.497143,0.08 0.6316915,0.1973 0.13456,0.1177 0.2254515,0.2888 0.2254515,0.5527 0,0.2292 -0.051658,0.3267 -0.1205375,0.4131 -0.297874,0.2629 -0.6581255,0.4878 -0.9475425,0.7031 -0.3266745,0.2146 -0.646046,0.496 -0.646046,0.8838 l 0,0.25 1.1428575,0 0,-0.25 c 0.4061825,-0.3638 1.011417,-0.6811 1.3882285,-1.0146 C 9.873051,1044.848 10,1044.508 10,1044.1122 c 0,-0.4861 -0.194823,-0.94 -0.560263,-1.2598 C 9.0742855,1042.5327 8.5555545,1042.3622 8,1042.3622 Z m -0.856983,5 0,1 1.1428575,0 0,-1 z" + id="rect4169-4" + sodipodi:nodetypes="ssccssssccsccccsssccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/imap.svg b/html/themes/breezy/svg/16/apps/imap.svg new file mode 100644 index 0000000000000000000000000000000000000000..c8040eec6328693485032ff8bddb0448dd7baf8f --- /dev/null +++ b/html/themes/breezy/svg/16/apps/imap.svg @@ -0,0 +1,144 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="imap.svg" + inkscape:export-filename="imap.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="6.7059806" + inkscape:cy="6.9115317" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 1 2 L 1 14 L 11 14 L 11 13 L 2.65625 13 L 6.6425781 8.3496094 L 8 9.7070312 L 9.3574219 8.3496094 L 11 10.267578 L 11 8.7304688 L 10.066406 7.640625 L 11 6.7070312 L 11 5.2929688 L 8 8.2929688 L 2.7070312 3 L 11 3 L 11 2 L 1 2 z M 2 3.7070312 L 5.9335938 7.640625 L 2 12.230469 L 2 3.7070312 z " + transform="translate(421.71429,531.79074)" + id="rect4157" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#d35400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4165" + cx="435.71429" + cy="534.79071" + rx="2.0000045" + ry="1.9999704" /> + <path + style="fill:#d35400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 437.71429,537.79074 -4,0 0,8 4,0 z" + id="path4167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/internet-mail.svg b/html/themes/breezy/svg/16/apps/internet-mail.svg new file mode 100644 index 0000000000000000000000000000000000000000..24500b63f6d176c331a25d05556d2b67139e12cb --- /dev/null +++ b/html/themes/breezy/svg/16/apps/internet-mail.svg @@ -0,0 +1,132 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="internet-mail.svg" + inkscape:export-filename="internet-mail.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="3.4083283" + inkscape:cy="7.7717888" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="false" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 1 2 L 1 14 L 15 14 L 15 2 L 1 2 z M 2.7070312 3 L 13.292969 3 L 8 8.2929688 L 2.7070312 3 z M 2 3.7070312 L 5.9335938 7.640625 L 2 12.230469 L 2 3.7070312 z M 14 3.7070312 L 14 12.232422 L 10.066406 7.640625 L 14 3.7070312 z M 6.6425781 8.3496094 L 8 9.7070312 L 9.3574219 8.3496094 L 13.341797 13 L 2.65625 13 L 6.6425781 8.3496094 z " + transform="translate(421.71429,531.79074)" + id="rect4157" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/ldap.svg b/html/themes/breezy/svg/16/apps/ldap.svg new file mode 100644 index 0000000000000000000000000000000000000000..8b3dffc3df0123371cccadeba6f9f3441737a73f --- /dev/null +++ b/html/themes/breezy/svg/16/apps/ldap.svg @@ -0,0 +1,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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="ldap.svg" + inkscape:export-filename="ldap.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="21.8125" + inkscape:cx="5.9598854" + inkscape:cy="5.5702006" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1" + style="opacity:1"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 4 3 L 4 11 L 5 11 L 7 11 L 7 10 L 5 10 L 5 7 L 7 7 L 7 6 L 5 6 L 5 3 L 4 3 z " + id="rect4186" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f67400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4192" + width="3" + height="3" + x="8" + y="5" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f67400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4194" + width="3" + height="3" + x="8" + y="9" /> + </g> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="m 1,1037.3622 0,3 0,10.25 0,0.75 14,0 0,-0.75 0,-5.75 0,-4.5 0,-3 z m 1,3 12,0 0,10 c -3.550931,-0.037 -8.450313,-0.077 -12,0 z" + id="rect4138" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/office-calendar.svg b/html/themes/breezy/svg/16/apps/office-calendar.svg new file mode 100644 index 0000000000000000000000000000000000000000..eab318439c62253484dddd1ba76dbc647e2087aa --- /dev/null +++ b/html/themes/breezy/svg/16/apps/office-calendar.svg @@ -0,0 +1,144 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="office-calendar.svg" + inkscape:export-filename="office-calendar.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <clipPath + id="clipPath4160" + clipPathUnits="userSpaceOnUse"> + <rect + y="1023.3622" + x="7" + height="1" + width="1" + id="rect4162" + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + class="ColorScheme-Text" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="5.3563752" + inkscape:cy="6.8623777" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1722" + inkscape:window-height="1017" + inkscape:window-x="148" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 2 2 L 2 14 L 14 14 L 14 2 L 12 2 L 12 4 L 10 4 L 10 2 L 6 2 L 6 4 L 4 4 L 4 2 L 2 2 z M 3 5 L 13 5 L 13 13 L 3 13 L 3 5 z M 4 6 L 4 8 L 6 8 L 6 6 L 4 6 z M 7 6 L 7 8 L 9 8 L 9 6 L 7 6 z M 10 6 L 10 8 L 12 8 L 12 6 L 10 6 z M 4 9 L 4 11 L 6 11 L 6 9 L 4 9 z M 7 9 L 7 11 L 9 11 L 9 9 L 7 9 z M 10 9 L 10 11 L 12 11 L 12 9 L 10 9 z " + transform="translate(421.71429,531.79074)" + id="rect4449" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/os-linux.svg b/html/themes/breezy/svg/16/apps/os-linux.svg new file mode 100644 index 0000000000000000000000000000000000000000..75cb343fde10a6c4c0a27a9125632236bc5cfdd6 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/os-linux.svg @@ -0,0 +1,189 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="os-linux.svg" + inkscape:export-filename="os-linux.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="6.9500429" + inkscape:cy="11.199215" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)" + style="opacity:1" /> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1"> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#fdbc4b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4290" + cx="5" + cy="14.5" + rx="3" + ry="1.5" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#fdbc4b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4290-3" + cx="11" + cy="14.5" + rx="3" + ry="1.5" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#060607;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 8 1 A 5.9999976 6.9999852 0 0 0 2.109375 6.6914062 C 1.2246127 7.4470789 0 8.7198283 0 10 C 0 11.095841 1.1954752 10.684118 2.28125 10.09375 A 5.9999976 6.9999852 0 0 0 8 15 A 5.9999976 6.9999852 0 0 0 13.722656 10.097656 C 14.807193 10.686635 16 11.094259 16 10 C 16 8.7187229 14.773602 7.4448713 13.888672 6.6894531 A 5.9999976 6.9999852 0 0 0 8 1 z " + id="path4234" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4265" + cx="8" + cy="10.499985" + rx="4" + ry="4.4999852" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f7f7f7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4267-5" + cx="9.5" + cy="4" + rx="1.5" + ry="2" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f7f7f7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4267" + cx="6.5" + cy="4" + rx="1.5" + ry="2" /> + <ellipse + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#fdbc4b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4240" + cx="8" + cy="6" + rx="2" + ry="1" /> + <circle + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4286" + cx="6.5" + cy="4.5" + r="0.5" /> + <circle + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4288" + cx="9.5" + cy="4.5" + r="0.5" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/os-windows.svg b/html/themes/breezy/svg/16/apps/os-windows.svg new file mode 100644 index 0000000000000000000000000000000000000000..7785717059160afe24058dd28c7a0bdfe3378bd7 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/os-windows.svg @@ -0,0 +1,132 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="os-windows.svg" + inkscape:export-filename="os-windows.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="7.5690368" + inkscape:cy="2.0231385" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#0cb3ee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 435.71429,533.79074 -7,1.16602 0,3.83398 7,0 z m -8,1.33398 -4,0.66602 0,3 4,0 z m -4,4.66602 0,3 4,0.66602 0,-3.66602 z m 5,0 0,3.83398 7,1.16602 0,-5 z" + id="path4182" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/smtp.svg b/html/themes/breezy/svg/16/apps/smtp.svg new file mode 100644 index 0000000000000000000000000000000000000000..8d32b01d96e25d3080356c951e82f20919ce02d9 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/smtp.svg @@ -0,0 +1,188 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="smtp.svg" + inkscape:export-filename="smtp.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-3" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8.4455066" + inkscape:cx="6.1368174" + inkscape:cy="9.5814722" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:object-nodes="true" + inkscape:snap-nodes="true" + inkscape:snap-grids="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <g + transform="translate(-421.71429,504.57146)" + id="layer1-7" + inkscape:label="Capa 1"> + <path + style="color:#4d4d4d;fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 1 2 L 1 14 L 15 14 L 15 9 L 14 9 L 14 12.232422 L 10.066406 7.640625 L 11 6.7070312 L 11 6 L 10.292969 6 L 8 8.2929688 L 2.7070312 3 L 10.142578 3 L 10.857422 2 L 1 2 z M 2 3.7070312 L 5.9335938 7.640625 L 2 12.230469 L 2 3.7070312 z M 6.6425781 8.3496094 L 8 9.7070312 L 9.3574219 8.3496094 L 13.341797 13 L 2.65625 13 L 6.6425781 8.3496094 z " + transform="translate(421.71429,531.79074)" + id="rect4157" /> + </g> + <path + style="fill:#3498db;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 13,1036.3622 -3,5 6,0 -3,-5" + id="path4159" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3498db;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4161" + width="2" + height="6.0000172" + x="12" + y="-1044.3622" + transform="scale(1,-1)" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/spamassassin.svg b/html/themes/breezy/svg/16/apps/spamassassin.svg new file mode 100644 index 0000000000000000000000000000000000000000..0535111392ec089c71aff0d95c10ffd63eb3f459 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/spamassassin.svg @@ -0,0 +1,137 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="spamassassin.svg" + inkscape:export-filename="spamassassin.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.205653" + inkscape:cx="5.9714164" + inkscape:cy="7.5943275" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#58953a;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" + d="m 427.71429,533.79071 -4,8.00003 9,3.99997 3,-4.99997 -5,1 z" + id="path4170" + inkscape:connector-curvature="0" /> + <path + style="fill:#58953a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 428.71429,533.79071 2.71034,6.71037 4.28966,-0.71034 z" + id="path4172" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/apps/utilities-system-monitor.svg b/html/themes/breezy/svg/16/apps/utilities-system-monitor.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce8c6a732458286c8d691370743ff77e14102038 --- /dev/null +++ b/html/themes/breezy/svg/16/apps/utilities-system-monitor.svg @@ -0,0 +1,131 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="utilities-system-monitor.svg" + inkscape:export-filename="utilities-system-monitor.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="6.009582" + inkscape:cy="8.1404704" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 3 3 L 13 3 L 13 8 C 13 8 12 10 10 10 C 8 10 8 6 6 6 C 4 6 3 8 3 8 L 3 3 z " + transform="translate(421.71429,531.79074)" + id="rect4161" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/categories/acl.svg b/html/themes/breezy/svg/16/categories/acl.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f42978e9c0cea5323b0f365f8c791e196236a31 --- /dev/null +++ b/html/themes/breezy/svg/16/categories/acl.svg @@ -0,0 +1,260 @@ +<?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="16" + height="16" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="acl.svg" + inkscape:export-filename="acl.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-7" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + y2="1045.3622" + x2="15" + y1="1045.3622" + x1="3" + gradientUnits="userSpaceOnUse" + id="linearGradient4123" + xlink:href="#linearGradient4021-3" + inkscape:collect="always" + gradientTransform="translate(0,-1.9999941)" /> + <linearGradient + id="linearGradient4021-3"> + <stop + style="stop-color:#b3b3b3;stop-opacity:1;" + offset="0" + id="stop4023-0" /> + <stop + class="ColorScheme-Text" + style="stop-color:currentColor;stop-opacity:1;" + offset="1" + id="stop4025-2" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="15.729961" + inkscape:cy="6.0343596" + inkscape:document-units="px" + inkscape:current-layer="g5674" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1407" + inkscape:window-height="953" + inkscape:window-x="463" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2,15" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="17,2" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,13" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="7,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="translate(418.71429,-499.57146)" + id="layer1-1" + inkscape:label="Capa 1" /> + <g + id="g5674" + transform="matrix(-1,0,0,1,859.42858,0)"> + <rect + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect5740" + width="5" + height="1" + x="2" + y="2" + transform="matrix(-1,0,0,1,437.71429,531.79074)" + class="ColorScheme-Text" /> + <rect + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect5742" + width="5.0000043" + height="1.0000296" + x="-435.71429" + y="535.79071" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect5744" + width="4.0000043" + height="1.0000296" + x="-435.71429" + y="538.79071" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect5746" + width="3.0000045" + height="1.0000296" + x="-435.71429" + y="540.79071" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <rect + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect5748" + width="3.0000045" + height="1.0000296" + x="-435.71429" + y="543.79071" + transform="scale(-1,1)" + class="ColorScheme-Text" /> + <g + transform="matrix(-1,0,0,1,856.42858,2.000015)" + id="layer1-2" + inkscape:label="Capa 1"> + <g + inkscape:label="Capa 1" + id="layer1-0" + transform="matrix(0.75,0,0,0.74999813,421.46429,-241.22897)"> + <g + inkscape:label="Capa 1" + id="layer1-6" + transform="translate(6.2937501e-7,-2.041003e-4)"> + <path + class="ColorScheme-Text" + id="rect3044" + d="m 9.6666656,1033.3623 c -2.2091498,0 -3.9999998,1.7909 -3.9999998,4 l 0,2.6667 -1.3333331,0 0,6.6667 10.6666673,0 0,-6.6667 -1.333334,0 0,-2.6667 c 0,-2.2091 -1.79085,-4 -4.0000004,-4 z m 0,1.3333 c 1.4727594,0 2.6666674,1.194 2.6666674,2.6667 l 0,2.6667 -5.3333339,0 0,-2.6667 c 0,-1.4727 1.1939073,-2.6667 2.6666665,-2.6667 z m -3.9999996,6.6667 8,0 0,4 -8,0 z" + style="color:#4d4d4d;display:inline;overflow:visible;visibility:visible;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ssccccccssssccssccccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/categories/applications-internet.svg b/html/themes/breezy/svg/16/categories/applications-internet.svg new file mode 100644 index 0000000000000000000000000000000000000000..c4387a672c103a924c18c5a4866855fe4196d079 --- /dev/null +++ b/html/themes/breezy/svg/16/categories/applications-internet.svg @@ -0,0 +1,129 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="applications-internet.svg" + inkscape:export-filename="applications-internet.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="63.356768" + inkscape:cx="3.6095869" + inkscape:cy="7.6345366" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:nonzero" + d="M 8 2 C 4.6862915 2 2 4.6862868 2 8 C 2 11.313713 4.6862915 14 8 14 C 11.313708 14 14 11.313713 14 8 C 14 4.6862868 11.313708 2 8 2 z M 8 3 C 8.172589 3 8.3319146 3.01418 8.5 3.03125 C 8.5403398 3.0352163 8.5849592 3.0263276 8.625 3.03125 C 8.6776214 3.0379183 8.7291519 3.0542091 8.78125 3.0625 C 8.9249022 3.0850796 9.0482753 3.1217241 9.1875 3.15625 C 9.4440966 3.2195469 9.6982233 3.3050445 9.9375 3.40625 C 10.069426 3.4620498 10.186649 3.5272356 10.3125 3.59375 C 10.312425 3.60275 10.3133 3.614 10.3125 3.625 C 10.34148 3.638 10.35728 3.69175 10.40625 3.71875 C 10.42423 3.72875 10.42056 3.741 10.4375 3.75 C 10.46648 3.766 10.50599 3.7835 10.5 3.8125 C 10.492 3.8525 10.43425 3.844 10.40625 3.875 C 10.41005 3.933 10.35871 3.92975 10.34375 3.96875 C 10.35275 3.99375 10.40229 4.00125 10.40625 4.03125 C 10.40135 4.06325 10.33173 4.06075 10.34375 4.09375 C 10.39776 4.13575 10.449004 4.10375 10.5 4.09375 C 10.611991 4.07975 10.712253 4.08825 10.78125 4.03125 C 10.77225 3.97825 10.88099 3.9856 10.875 3.9375 C 10.90366 3.9583822 10.9403 3.9788168 10.96875 4 C 10.957987 4.01008 10.949578 4.02585 10.9375 4.03125 C 10.91649 4.04125 10.89401 4.0505 10.875 4.0625 C 10.847 4.0805 10.81328 4.104 10.78125 4.125 C 10.75826 4.141 10.711504 4.21875 10.6875 4.21875 C 10.65851 4.21875 10.61475 4.1815 10.59375 4.1875 C 10.56372 4.1975 10.56519 4.238 10.53125 4.25 C 10.46526 4.274 10.335495 4.2135 10.3125 4.3125 C 10.3405 4.3695 10.450005 4.343 10.5 4.375 C 10.53102 4.395 10.58575 4.466 10.59375 4.5 C 10.60175 4.528 10.60574 4.6575 10.59375 4.6875 C 10.56273 4.7675 10.466988 4.751 10.375 4.75 L 10.3125 4.75 C 10.157516 4.74 10.007499 4.67025 9.9375 4.78125 C 9.94245 4.86625 9.95653 4.926 9.9375 5 C 9.92353 5.054 9.840752 5.10965 9.84375 5.15625 C 9.84485 5.18025 9.900255 5.216 9.90625 5.25 C 9.9101 5.268 9.89818 5.2955 9.90625 5.3125 C 9.932265 5.3615 9.9852535 5.3025 10.03125 5.3125 C 10.07525 5.3225 10.125 5.3883 10.125 5.4375 C 10.125 5.4725 10.11575 5.5286 10.09375 5.5625 C 10.04975 5.6285 9.969247 5.62025 9.90625 5.65625 C 9.854275 5.68625 9.843502 5.7609 9.8125 5.8125 C 9.7795 5.8685 9.736983 5.88865 9.75 5.96875 C 9.70501 6.05775 9.655488 6.11325 9.5625 6.15625 C 9.535495 6.16825 9.493747 6.1695 9.46875 6.1875 C 9.44873 6.2015 9.434272 6.24925 9.40625 6.28125 C 9.37127 6.32025 9.331497 6.345 9.3125 6.375 C 9.298475 6.398 9.29621 6.43675 9.28125 6.46875 C 9.25925 6.51075 9.215494 6.5203 9.1875 6.5625 C 9.17452 6.5825 9.17022 6.63025 9.15625 6.65625 C 9.12424 6.71425 9.087749 6.7615 9.09375 6.8125 C 9.0987 6.8605 9.153252 6.86225 9.15625 6.90625 C 9.159 6.93025 9.12401 6.94175 9.125 6.96875 C 9.1261 7.00675 9.15328 7.0325 9.15625 7.0625 C 9.16324 7.1365 9.10772 7.16815 9.09375 7.21875 C 9.08676 7.24275 9.09975 7.26125 9.09375 7.28125 C 9.08176 7.31825 9.032251 7.36205 9.03125 7.40625 C 9.03015 7.43725 9.09078 7.456 9.09375 7.5 C 9.09595 7.529 9.056505 7.56575 9.0625 7.59375 C 9.0735 7.64775 9.1767575 7.708 9.21875 7.75 C 9.275747 7.807 9.350008 7.84625 9.375 7.90625 C 9.39601 7.95725 9.398533 8.05565 9.4375 8.09375 C 9.466485 8.12175 9.525507 8.12625 9.5625 8.15625 C 9.59748 8.18325 9.619253 8.18875 9.65625 8.21875 C 9.717245 8.26675 9.809252 8.382 9.90625 8.375 C 9.957235 8.365 10.005504 8.3225 10.0625 8.3125 C 10.1215 8.3025 10.190006 8.27625 10.25 8.28125 C 10.29598 8.29125 10.358253 8.3155 10.40625 8.3125 C 10.45624 8.3025 10.505509 8.30625 10.5625 8.28125 C 10.6615 8.23825 10.824766 8.1668 10.96875 8.1875 C 11.078739 8.2035 11.079255 8.326 11.15625 8.375 C 11.24424 8.385 11.305007 8.358 11.375 8.375 C 11.42802 8.388 11.495001 8.4584 11.5 8.5 C 11.505 8.543 11.44349 8.5978 11.4375 8.625 C 11.42353 8.683 11.44746 8.74425 11.4375 8.78125 C 11.4295 8.81025 11.40526 8.846 11.40625 8.875 C 11.40625 8.901 11.44173 8.9658 11.46875 9 C 11.50175 9.042 11.55375 9.0798 11.59375 9.125 C 11.66674 9.209 11.699004 9.29525 11.75 9.40625 C 11.76298 9.43425 11.73801 9.464 11.75 9.5 C 11.728 9.6679 11.672491 9.78285 11.5625 9.96875 C 11.51052 10.02875 11.436499 10.08135 11.4375 10.15625 C 11.4337 10.33625 11.53925 10.451 11.53125 10.625 C 11.51327 10.8589 11.54929 10.8751 11.53125 11 C 11.61025 11.04 11.55424 11.1669 11.53125 11.25 C 11.49726 11.349 11.4565 11.3715 11.4375 11.4375 C 11.490583 11.460643 11.566021 11.451092 11.625 11.4375 C 11.595204 11.468874 11.561843 11.500657 11.53125 11.53125 C 11.305044 11.757456 11.047252 11.976543 10.78125 12.15625 C 10.265207 12.504882 9.6912413 12.769698 9.0625 12.90625 C 8.718961 12.980861 8.3658887 13 8 13 C 7.8096669 13 7.6218651 12.989959 7.4375 12.96875 C 7.2906389 12.951989 7.1427139 12.935453 7 12.90625 C 6.7168255 12.848304 6.4510281 12.728616 6.1875 12.625 C 6.1781304 12.60785 6.1541244 12.582618 6.15625 12.5625 C 6.208225 12.5405 6.305756 12.6365 6.34375 12.5625 C 6.36278 12.5275 6.318725 12.44125 6.34375 12.40625 C 6.361735 12.38225 6.463007 12.382 6.5 12.375 C 6.55302 12.365 6.626253 12.35775 6.65625 12.34375 C 6.68925 12.32275 6.724751 12.2491 6.71875 12.1875 C 6.716 12.1585 6.679185 12.151 6.65625 12.125 C 6.637275 12.103 6.66923 12.0835 6.65625 12.0625 C 6.63227 12.0275 6.572499 12.01975 6.5625 11.96875 C 6.634495 11.95475 6.7397615 12.029 6.84375 12 C 6.892755 11.986 6.976999 11.88985 7 11.84375 C 7.00699 11.82975 6.99202 11.79925 7 11.78125 C 7.00902 11.76325 7.028225 11.72875 7.03125 11.71875 C 7.03823 11.69175 7.02525 11.7055 7.03125 11.6875 C 7.049235 11.6365 7.094997 11.5988 7.125 11.5625 C 7.14799 11.5345 7.197723 11.49775 7.21875 11.46875 C 7.24273 11.43775 7.23405 11.43425 7.25 11.40625 C 7.265015 11.31525 7.19675 11.23615 7.21875 11.15625 C 7.24273 11.06625 7.381762 11.00975 7.46875 10.96875 C 7.498725 10.95475 7.537502 10.9465 7.5625 10.9375 C 7.622494 10.9165 7.6940045 10.895 7.75 10.875 C 7.843995 10.841 7.860248 10.7734 7.90625 10.6875 C 7.92825 10.6475 7.964735 10.5918 7.96875 10.5625 C 7.9726 10.5365 7.9638 10.531 7.96875 10.5 C 7.9737 10.471 7.960775 10.44025 7.96875 10.40625 C 7.97975 10.36325 8 10.26665 8 10.21875 C 8 10.17875 7.96974 10.161 7.96875 10.125 C 7.96176 9.995 8.014512 10.0085 8.0625 9.9375 C 8.08648 9.9025 8.10806 9.8376 8.125 9.8125 C 8.205993 9.6925 8.353749 9.65075 8.34375 9.46875 C 8.3399 9.40875 8.293978 9.269 8.25 9.25 C 8.224975 9.239 8.1932485 9.23175 8.15625 9.21875 C 8.0382585 9.17475 7.9354855 9.04125 7.8125 9.03125 L 7.75 9.03125 C 7.701985 9.03125 7.6477435 9.007 7.59375 9 C 7.55976 8.99 7.4887485 9.01 7.46875 9 C 7.43773 8.985 7.43122 8.92325 7.40625 8.90625 C 7.38623 8.89225 7.343493 8.886 7.3125 8.875 C 7.263495 8.857 7.2444965 8.8165 7.1875 8.8125 C 7.169515 8.8125 7.144982 8.8225 7.125 8.8125 C 7.09398 8.8025 7.060246 8.79925 7.03125 8.78125 C 6.99528 8.75925 6.952498 8.74975 6.9375 8.71875 C 6.9705 8.61085 6.86575 8.59425 6.84375 8.53125 C 6.83374 8.50225 6.85376 8.43225 6.84375 8.40625 C 6.83077 8.36925 6.791002 8.3435 6.75 8.3125 C 6.678005 8.2565 6.634243 8.23165 6.53125 8.21875 C 6.48527 8.20875 6.4299945 8.22875 6.375 8.21875 C 6.317008 8.20875 6.2314945 8.175 6.1875 8.125 C 6.14548 8.076 6.130744 8.0231 6.09375 8 C 6.05877 7.978 6.0239965 7.9605 6 7.9375 C 5.989 7.9275 5.97876 7.92925 5.96875 7.90625 C 5.950765 7.86925 5.9155 7.8575 5.9375 7.8125 C 5.897515 7.7925 5.917993 7.85075 5.875 7.84375 C 5.836005 7.78875 5.8067385 7.734 5.71875 7.75 C 5.678765 7.76 5.640747 7.84275 5.59375 7.84375 C 5.554755 7.84375 5.519746 7.758 5.46875 7.75 C 5.429755 7.74 5.3707495 7.78625 5.34375 7.78125 C 5.30074 7.77125 5.288973 7.74475 5.25 7.71875 C 5.221015 7.69975 5.17225 7.65525 5.15625 7.65625 C 5.106255 7.65625 5.0689915 7.75515 5 7.71875 C 4.96601 7.67575 5.071268 7.665 5.03125 7.625 C 5.001275 7.596 4.992763 7.64225 4.96875 7.65625 C 4.940755 7.67425 4.905993 7.6765 4.875 7.6875 C 4.806002 7.7135 4.7414935 7.721 4.6875 7.75 C 4.637505 7.776 4.622747 7.79245 4.59375 7.84375 C 4.57076 7.88575 4.534997 7.96675 4.5 7.96875 C 4.45798 7.96875 4.4442495 7.92325 4.40625 7.90625 C 4.2912615 7.85625 4.2199905 7.9355 4.125 7.9375 C 4.037006 7.9375 3.9022515 7.80175 3.90625 7.71875 C 3.909 7.66775 3.931505 7.59425 3.9375 7.53125 C 3.94245 7.48125 3.999065 7.4206 4 7.375 C 4.0011 7.313 3.883746 7.28835 3.84375 7.28125 C 3.749755 7.26425 3.6382415 7.32325 3.53125 7.28125 C 3.51123 7.24725 3.55051 7.2215 3.5625 7.1875 C 3.56948 7.1695 3.55551 7.146 3.5625 7.125 C 3.57449 7.093 3.641257 7.06525 3.65625 7.03125 C 3.66725 7.00525 3.64525 6.9705 3.65625 6.9375 C 3.66923 6.9015 3.715725 6.86975 3.71875 6.84375 C 3.7226 6.80975 3.6832 6.772 3.65625 6.75 C 3.573255 6.76 3.5167485 6.75725 3.46875 6.78125 C 3.360763 6.83025 3.3902435 6.966 3.28125 7 C 3.244235 7.012 3.198248 7.02425 3.15625 7.03125 C 3.137935 7.04125 3.11427 7.02925 3.09375 7.03125 C 3.0956963 7.0211336 3.0917443 7.0100944 3.09375 7 C 3.0984123 6.9772158 3.1200289 6.9601701 3.125 6.9375 C 3.1962653 6.6125035 3.3063949 6.2979344 3.4375 6 L 3.46875 6 C 3.506755 6.01 3.529505 6.0595 3.5625 6.0625 C 3.654493 6.0725 3.674001 5.9777 3.75 5.9375 C 3.827996 5.9485 3.866506 5.9275 3.9375 5.9375 C 3.985515 5.9475 4.055756 5.996 4.09375 6 C 4.12576 6 4.126248 5.96475 4.15625 5.96875 C 4.186225 5.97875 4.245 6.0265 4.25 6.0625 C 4.25495 6.1075 4.205715 6.16915 4.21875 6.21875 C 4.265775 6.26675 4.3705045 6.2845 4.4375 6.3125 C 4.4815 6.2755 4.44448 6.20825 4.4375 6.15625 C 4.4364 6.13325 4.44025 6.0835 4.4375 6.0625 C 4.43255 6.0265 4.40625 5.99975 4.40625 5.96875 C 4.40625 5.82575 4.5290085 5.77465 4.625 5.71875 C 4.665975 5.69475 4.7140025 5.643 4.75 5.625 C 4.800985 5.6 4.8330025 5.61775 4.875 5.59375 C 4.950988 5.55075 5.0035015 5.4862 5.0625 5.4375 C 5.089505 5.3725 5.05975 5.28275 5.0625 5.21875 C 5.089505 5.20175 5.127282 5.21875 5.15625 5.21875 C 5.20223 5.20875 5.223996 5.151 5.25 5.125 C 5.265015 5.11 5.294482 5.10875 5.3125 5.09375 C 5.35848 5.05775 5.366237 5.016 5.40625 5 C 5.420275 4.99 5.446723 4.97575 5.46875 4.96875 C 5.49878 4.95875 5.545757 4.9555 5.59375 4.9375 C 5.62477 4.9265 5.706749 4.91925 5.71875 4.90625 C 5.733765 4.89125 5.7149 4.8355 5.71875 4.8125 C 5.74273 4.6996 5.899009 4.69435 6 4.65625 C 6.069993 4.63025 6.1407545 4.5485 6.21875 4.5625 C 6.203735 4.6165 6.143249 4.6224 6.15625 4.6875 C 6.173245 4.7785 6.280501 4.66925 6.3125 4.65625 C 6.373495 4.63025 6.4825025 4.5925 6.5625 4.5625 C 6.632493 4.5375 6.753489 4.5181 6.6875 4.4375 C 6.6325 4.4275 6.6104935 4.48 6.5625 4.5 C 6.5295 4.51 6.527978 4.47175 6.5 4.46875 C 6.472995 4.46875 6.464527 4.505 6.4375 4.5 C 6.410495 4.49 6.378998 4.43925 6.375 4.40625 C 6.364 4.32225 6.43476 4.3119 6.46875 4.25 C 6.44576 4.174 6.3452425 4.2175 6.28125 4.1875 C 6.28824 4.1425 6.322007 4.10375 6.375 4.09375 C 6.41801 4.08375 6.5365015 4.102 6.5625 4.125 C 6.577515 4.138 6.5395595 4.1665 6.5625 4.1875 C 6.588515 4.2105 6.622254 4.1975 6.65625 4.1875 C 6.66824 4.1305 6.583751 4.162 6.59375 4.125 C 6.661741 4.081 6.792005 4.10475 6.875 4.09375 C 6.923015 4.08375 6.988251 4.05425 7.03125 4.03125 C 7.071235 4.00825 7.0830015 3.962 7.125 4 C 7.13699 4.041 7.116685 4.07175 7.09375 4.09375 C 7.016756 4.16175 6.934994 4.2336 6.875 4.3125 C 6.912015 4.3485 6.969254 4.33675 7.03125 4.34375 C 7.05523 4.35375 7.099997 4.33875 7.125 4.34375 C 7.15503 4.35375 7.194748 4.33375 7.21875 4.34375 C 7.26077 4.35375 7.270507 4.4375 7.3125 4.4375 C 7.380496 4.4375 7.351523 4.3577 7.3125 4.3125 C 7.32449 4.2655 7.3608 4.2207 7.34375 4.1875 C 7.31273 4.1255 7.1935005 4.206 7.1875 4.125 C 7.18365 4.075 7.231993 4.06925 7.25 4.03125 C 7.24202 3.93525 7.322499 3.93075 7.3125 3.84375 C 7.30755 3.80775 7.275008 3.81525 7.25 3.78125 C 7.23702 3.76325 7.23371 3.7015 7.21875 3.6875 C 7.166775 3.6435 7.0685005 3.67795 7.0625 3.59375 C 7.05975 3.54375 7.06948 3.4911 7.0625 3.4375 C 7.05551 3.3865 7.012728 3.22875 6.96875 3.21875 C 6.912755 3.20675 6.8794955 3.31245 6.8125 3.34375 C 6.77653 3.36075 6.693243 3.381 6.65625 3.375 C 6.63227 3.365 6.596753 3.3595 6.59375 3.3125 C 6.58979 3.2701 6.6405966 3.2512172 6.65625 3.21875 C 6.6601634 3.2106332 6.654259 3.19872 6.65625 3.1875 C 6.7288164 3.1672517 6.8012164 3.1422715 6.875 3.125 C 6.9169167 3.1152798 6.9576866 3.1024086 7 3.09375 C 7.0298771 3.0875279 7.0636852 3.0994569 7.09375 3.09375 C 7.2273044 3.0689879 7.3629458 3.0451686 7.5 3.03125 C 7.6662387 3.0137812 7.8289018 3 8 3 z M 5.96875 3.46875 C 5.9369162 3.6513239 5.7660026 3.7240206 5.5625 3.71875 C 5.51652 3.76275 5.55622 3.84525 5.53125 3.90625 C 5.51024 3.95725 5.425991 4.004 5.375 4 C 5.337985 4 5.28125 3.94125 5.28125 3.90625 C 5.28125 3.86325 5.349521 3.8617 5.3125 3.8125 C 5.31415 3.8025 5.333355 3.79125 5.34375 3.78125 C 5.3639901 3.7685049 5.3858533 3.762493 5.40625 3.75 C 5.5874525 3.6384834 5.7732114 3.5568279 5.96875 3.46875 z M 10.15625 3.65625 C 10.13782 3.66625 10.14122 3.6775 10.125 3.6875 C 10.08699 3.7105 10.06026 3.739 10.03125 3.75 C 9.99028 3.765 9.943504 3.7755 9.9375 3.8125 C 9.93255 3.8435 9.969795 3.846 9.96875 3.875 C 9.953735 3.912 9.94553 3.92375 9.9375 3.96875 C 9.988485 4.05175 10.093258 3.9505 10.15625 3.9375 C 10.18425 3.9275 10.20375 3.93025 10.21875 3.90625 C 10.23574 3.87925 10.23706 3.8507 10.25 3.8125 C 10.26403 3.7705 10.31751 3.75575 10.3125 3.71875 C 10.3087 3.68175 10.218244 3.65125 10.15625 3.65625 z M 4.6875 4.28125 C 4.7349118 4.319347 4.8015588 4.40185 4.71875 4.4375 C 4.70874 4.4475 4.5864965 4.47275 4.5625 4.46875 C 4.55282 4.46875 4.5397337 4.44475 4.53125 4.4375 C 4.5829129 4.3871923 4.6337069 4.3293033 4.6875 4.28125 z M 4.875 4.46875 C 4.89898 4.46875 4.909483 4.52925 4.9375 4.53125 C 4.964505 4.53125 4.983973 4.496 5 4.5 C 5.04202 4.511 5.071268 4.5938 5.03125 4.625 C 4.99825 4.635 4.992713 4.58975 4.96875 4.59375 C 4.900754 4.60575 4.8634955 4.754 4.8125 4.75 C 4.764485 4.74 4.732228 4.62875 4.78125 4.59375 C 4.78235 4.56375 4.779215 4.56225 4.78125 4.53125 C 4.796265 4.51325 4.834982 4.46575 4.875 4.46875 z M 4.625 4.5 C 4.639025 4.5 4.651245 4.49 4.65625 4.5 C 4.64927 4.553 4.634708 4.56875 4.59375 4.59375 C 4.522756 4.63675 4.460501 4.68975 4.4375 4.78125 C 4.43051 4.80825 4.3464955 4.8817 4.3125 4.875 C 4.233504 4.858 4.357015 4.7104 4.375 4.6875 C 4.39502 4.6625 4.414526 4.654 4.4375 4.625 C 4.46049 4.597 4.478055 4.54725 4.5 4.53125 C 4.52398 4.51425 4.5830075 4.498 4.625 4.5 z M 11.40625 4.65625 C 11.48524 4.64625 11.526502 4.73365 11.5625 4.78125 C 11.59248 4.82025 11.669746 4.87905 11.71875 4.90625 C 11.74675 4.92125 11.7815 4.95475 11.8125 4.96875 C 11.87749 4.99775 11.996996 5.09225 12 5.15625 C 12.0011 5.18825 11.96374 5.22 11.96875 5.25 C 12.01776 5.26 12.0615 5.1742 12.0625 5.125 C 12.15441 5.2550064 12.233102 5.3926596 12.3125 5.53125 C 12.35 5.5967067 12.402944 5.6512957 12.4375 5.71875 C 12.39339 5.73175 12.38209 5.73825 12.375 5.78125 C 12.36499 5.83725 12.39649 5.9276 12.3125 5.9375 C 12.25953 5.9475 12.19799 5.892 12.125 5.875 C 12.09502 5.865 12.05525 5.885 12.03125 5.875 C 11.97625 5.857 11.9845 5.7833 11.9375 5.75 C 11.91049 5.731 11.824253 5.6925 11.78125 5.6875 C 11.75424 5.6875 11.74673 5.6975 11.71875 5.6875 C 11.68476 5.6775 11.621749 5.7015 11.59375 5.6875 C 11.56674 5.6705 11.50701 5.61675 11.5 5.59375 C 11.489 5.55675 11.59175 5.5313 11.59375 5.5 C 11.59595 5.476 11.5675 5.44325 11.5625 5.40625 C 11.5587 5.38425 11.5674 5.35875 11.5625 5.34375 C 11.5555 5.31775 11.50974 5.3135 11.46875 5.3125 C 11.43272 5.3125 11.40599 5.3125 11.375 5.3125 C 11.331 5.3125 11.242494 5.3085 11.1875 5.3125 C 11.1545 5.3125 11.12475 5.3095 11.09375 5.3125 C 11.00676 5.3225 10.942997 5.3025 10.875 5.3125 C 10.82599 5.3125 10.733496 5.354 10.6875 5.375 C 10.66451 5.386 10.65501 5.39125 10.625 5.40625 C 10.61103 5.41625 10.58054 5.4295 10.5625 5.4375 C 10.53451 5.4505 10.49575 5.492 10.46875 5.5 C 10.42976 5.51 10.38349 5.49 10.3125 5.5 C 10.26152 5.5 10.188501 5.46725 10.1875 5.40625 C 10.1864 5.31325 10.349511 5.36075 10.4375 5.34375 C 10.4705 5.33375 10.49123 5.30525 10.53125 5.28125 C 10.55028 5.27025 10.54451 5.262 10.5625 5.25 C 10.59247 5.229 10.65125 5.18025 10.65625 5.15625 C 10.66005 5.13425 10.65323 5.11075 10.65625 5.09375 C 10.66005 5.07275 10.69175 5.05925 10.71875 5.03125 C 10.76077 4.98925 10.791747 4.93345 10.84375 4.90625 C 10.87873 4.88825 10.9215 4.87275 10.9375 4.84375 C 10.9413 4.81175 10.9364 4.81125 10.9375 4.78125 C 10.9595 4.76125 10.98202 4.754 11 4.75 C 11.05401 4.738 11.093259 4.753 11.15625 4.75 C 11.18325 4.75 11.221 4.763 11.25 4.75 C 11.27398 4.734 11.2885 4.6995 11.3125 4.6875 C 11.33851 4.6735 11.37422 4.65825 11.40625 4.65625 z M 11.96875 5.25 L 11.84375 5.25 C 11.79975 5.25 11.744749 5.227 11.71875 5.25 C 11.75577 5.31 11.823255 5.32875 11.90625 5.34375 C 11.93623 5.32175 11.95478 5.2883 11.96875 5.25 z M 5.125 4.6875 L 5.21875 4.6875 C 5.243775 4.6875 5.271251 4.6775 5.28125 4.6875 C 5.265245 4.7535 5.114497 4.74275 5.0625 4.71875 C 5.06525 4.69375 5.092968 4.6915 5.125 4.6875 z M 4.90625 4.8125 C 4.8625672 4.8442816 4.8193312 4.8845833 4.75 4.90625 C 4.711995 4.91825 4.663252 4.917 4.65625 4.875 C 4.64822 4.823 4.715988 4.84875 4.75 4.84375 C 4.794 4.83375 4.855254 4.8145 4.90625 4.8125 z M 11.40625 4.8125 C 11.37325 4.8235 11.35724 4.89625 11.40625 4.90625 C 11.42924 4.89225 11.44355 4.8555 11.4375 4.8125 C 11.42452 4.7985 11.41621 4.8025 11.40625 4.8125 z M 11.34375 4.96875 C 11.34485 5.02475 11.35475 5.0764 11.34375 5.125 C 11.37576 5.187 11.452756 5.13575 11.46875 5.09375 C 11.48778 4.98975 11.45425 4.95575 11.40625 4.96875 C 11.39025 4.97875 11.36069 4.95575 11.34375 4.96875 z M 3.0625 7.3125 C 3.118864 7.3635 3.1512925 7.43535 3.21875 7.46875 C 3.243775 7.48175 3.280501 7.492 3.3125 7.5 C 3.338515 7.51 3.350013 7.492 3.375 7.5 C 3.42802 7.518 3.4892575 7.5435 3.53125 7.5625 C 3.595248 7.5905 3.66375 7.68675 3.71875 7.71875 C 3.7215 7.75075 3.70874 7.7885 3.71875 7.8125 C 3.744765 7.8475 3.7704965 7.88225 3.8125 7.90625 C 3.863485 7.93425 3.8895065 7.9778 3.9375 8 C 3.954495 8.01 3.973963 7.99 4 8 C 4.065994 8.02 4.099253 8.11055 4.15625 8.09375 C 4.193265 8.08275 4.181505 8.036 4.1875 8 C 4.212525 7.973 4.242222 7.9375 4.28125 7.9375 C 4.34324 7.9375 4.351999 8.03315 4.375 8.09375 C 4.38798 8.12775 4.428535 8.1515 4.4375 8.1875 C 4.452515 8.2495 4.45048 8.43175 4.4375 8.46875 C 4.421495 8.51475 4.3504995 8.5122 4.3125 8.5625 C 4.294515 8.5865 4.29522 8.63925 4.28125 8.65625 C 4.25727 8.68525 4.236773 8.69075 4.21875 8.71875 C 4.20874 8.73375 4.196465 8.76025 4.1875 8.78125 C 4.15747 8.84525 4.099986 8.89175 4.125 8.96875 C 4.13501 8.99975 4.1875 9.0255 4.1875 9.0625 C 4.1875 9.1065 4.100751 9.1393 4.09375 9.1875 C 4.0888 9.2225 4.114055 9.2658 4.125 9.3125 C 4.13298 9.3475 4.197751 9.38325 4.21875 9.40625 C 4.25373 9.44525 4.280501 9.513 4.3125 9.5625 C 4.375491 9.6595 4.406765 9.78 4.46875 9.875 C 4.50175 9.924 4.57175 9.9484 4.59375 10 C 4.60475 10.026 4.58374 10.06975 4.59375 10.09375 C 4.62972 10.17475 4.794007 10.2726 4.875 10.3125 C 4.913005 10.3315 4.965009 10.32375 5 10.34375 C 5.05302 10.37375 5.160506 10.4534 5.1875 10.5 C 5.21148 10.542 5.20676 10.65185 5.21875 10.71875 C 5.233765 10.80675 5.2149 10.87365 5.21875 10.96875 C 5.2215 11.02075 5.25 11.04215 5.25 11.09375 C 5.25 11.11175 5.2511 11.1685 5.25 11.1875 C 5.2489 11.2495 5.25495 11.312 5.25 11.375 C 5.24725 11.409 5.2478 11.43975 5.25 11.46875 C 5.25275 11.49975 5.27927 11.50325 5.28125 11.53125 C 5.28345 11.56025 5.246975 11.602 5.25 11.625 C 5.25699 11.688 5.300499 11.72315 5.3125 11.78125 C 5.32251 11.82725 5.349745 11.945 5.34375 12 C 5.3399 12.029 5.316515 12.06075 5.3125 12.09375 C 5.30975 12.11975 5.31635 12.13225 5.3125 12.15625 C 5.30975 12.17925 5.31844 12.19975 5.3125 12.21875 C 5.2806543 12.198271 5.2500951 12.177426 5.21875 12.15625 C 4.9527483 11.976543 4.6949555 11.757456 4.46875 11.53125 C 4.4381566 11.500657 4.4047959 11.468874 4.375 11.4375 C 4.1944191 11.247353 4.0241375 11.029182 3.875 10.8125 C 3.8614865 10.792866 3.8569888 10.769835 3.84375 10.75 C 3.6707036 10.490733 3.5290643 10.227866 3.40625 9.9375 C 3.3973945 9.9165633 3.3835772 9.8960813 3.375 9.875 C 3.2696226 9.6160011 3.1860736 9.3410185 3.125 9.0625 C 3.1134736 9.0099352 3.1036081 8.9594198 3.09375 8.90625 C 3.0689879 8.7726956 3.0451686 8.6370542 3.03125 8.5 C 3.01418 8.3319146 3 8.172589 3 8 C 3 7.7623582 3.030436 7.5413039 3.0625 7.3125 z M 5 7.84375 C 5.048015 7.82175 5.038995 7.89925 5 7.90625 C 4.962985 7.91625 4.96403 7.86175 5 7.84375 z " + transform="translate(0,1036.3622)" + id="path26" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/categories/settings.svg b/html/themes/breezy/svg/16/categories/settings.svg new file mode 100644 index 0000000000000000000000000000000000000000..1794e9a33e0020dfeb6bc73baf13df79740e92b4 --- /dev/null +++ b/html/themes/breezy/svg/16/categories/settings.svg @@ -0,0 +1,133 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="settings.svg" + inkscape:export-filename="settings.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + viewBox="0 0 16 16"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.2614" + inkscape:cx="11.267838" + inkscape:cy="7.5399959" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2,15" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="17,2" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,13" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="0,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + d="M 10.5 2 A 2.5 2.5 0 0 0 8.0507812 4 L 2 4 L 2 5 L 8.0546875 5 A 2.5 2.5 0 0 0 10.5 7 A 2.5 2.5 0 0 0 12.949219 5 L 14 5 L 14 4 L 12.945312 4 A 2.5 2.5 0 0 0 10.5 2 z M 5.5 9 A 2.5 2.5 0 0 0 3.0546875 11 L 2 11 L 2 12 L 3.0507812 12 A 2.5 2.5 0 0 0 5.5 14 A 2.5 2.5 0 0 0 7.9453125 12 L 14 12 L 14 11 L 7.9492188 11 A 2.5 2.5 0 0 0 5.5 9 z M 5.5 10 A 1.5 1.5 0 0 1 6.9121094 11 A 1.5 1.5 0 0 1 6.9550781 11.142578 A 1.5 1.5 0 0 1 6.984375 11.287109 A 1.5 1.5 0 0 1 6.984375 11.291016 A 1.5 1.5 0 0 1 6.9863281 11.306641 A 1.5 1.5 0 0 1 6.9980469 11.433594 A 1.5 1.5 0 0 1 6.9980469 11.439453 A 1.5 1.5 0 0 1 7 11.5 A 1.5 1.5 0 0 1 6.9921875 11.650391 A 1.5 1.5 0 0 1 6.9121094 12 A 1.5 1.5 0 0 1 5.5 13 A 1.5 1.5 0 0 1 4.0878906 12 A 1.5 1.5 0 0 1 4.0449219 11.857422 A 1.5 1.5 0 0 1 4.015625 11.712891 A 1.5 1.5 0 0 1 4.0136719 11.693359 A 1.5 1.5 0 0 1 4.0019531 11.566406 A 1.5 1.5 0 0 1 4 11.5 A 1.5 1.5 0 0 1 4.0078125 11.349609 A 1.5 1.5 0 0 1 4.0878906 11 A 1.5 1.5 0 0 1 5.5 10 z " + transform="translate(421.71429,531.79074)" + id="path14" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/computer.svg b/html/themes/breezy/svg/16/devices/computer.svg new file mode 100644 index 0000000000000000000000000000000000000000..056b9718ce4aa22b70c5a0b527f48f93273538e5 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/computer.svg @@ -0,0 +1,129 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="computer.svg" + inkscape:export-filename="computer.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="-10.717184" + inkscape:cy="16.192201" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke-linecap:round" + d="M 2 3 L 2 11 L 7 11 L 7 12 L 5 12 L 5 13 L 11 13 L 11 12 L 9 12 L 9 11 L 14 11 L 14 3 L 2 3 z M 3 4 L 13 4 L 13 10 L 3 10 L 3 4 z " + transform="translate(0,1036.3622)" + id="rect4230" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/media-cdrom.svg b/html/themes/breezy/svg/16/devices/media-cdrom.svg new file mode 100644 index 0000000000000000000000000000000000000000..a806c376d059ff2e66fd3f7d4fd2ed68d77b9a3e --- /dev/null +++ b/html/themes/breezy/svg/16/devices/media-cdrom.svg @@ -0,0 +1,115 @@ +<?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" + id="svg3529" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="media-cdrom.svg" + inkscape:export-filename="media-cdrom.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata10"> + <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> + <defs + id="defs8"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1878" + inkscape:window-height="1051" + id="namedview6" + showgrid="true" + inkscape:zoom="41.7193" + inkscape:cx="5.5555913" + inkscape:cy="6.9885037" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="layer1"> + <inkscape:grid + type="xygrid" + id="grid2987" /> + </sodipodi:namedview> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-456.14285,-657.36218)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 8 6 C 6.8954305 6 6 6.8954305 6 8 C 6 9.1045695 6.8954305 10 8 10 C 9.1045695 10 10 9.1045695 10 8 C 10 6.8954305 9.1045695 6 8 6 z M 8 7 C 8.5522847 7 9 7.4477153 9 8 C 9 8.5522847 8.5522847 9 8 9 C 7.4477153 9 7 8.5522847 7 8 C 7 7.4477153 7.4477153 7 8 7 z " + transform="translate(456.14285,657.36218)" + id="path3866" + class="ColorScheme-Text" /> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 464.14285,659.36218 c -3.31371,0 -6,2.68629 -6,6 0,3.31371 2.68629,6 6,6 3.31371,0 6,-2.68629 6,-6 0,-3.31371 -2.68629,-6 -6,-6 z m 0,1 c 2.76142,0 5,2.23858 5,5 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 z" + id="path3871" + inkscape:connector-curvature="0" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/network-device.svg b/html/themes/breezy/svg/16/devices/network-device.svg new file mode 100644 index 0000000000000000000000000000000000000000..b85060180db5975dcc39f7118939613df6317dcb --- /dev/null +++ b/html/themes/breezy/svg/16/devices/network-device.svg @@ -0,0 +1,129 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="network-device.svg" + inkscape:export-filename="network-device.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.839192" + inkscape:cx="-6.0991546" + inkscape:cy="5.5590204" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 8 2 C 4.676 2 2 4.676 2 8 C 2 11.324 4.676 14 8 14 C 11.324 14 14 11.324 14 8 C 14 4.676 11.324 2 8 2 z M 8 3 C 10.9916 3 13 5.0084 13 8 C 13 10.9916 10.9916 13 8 13 C 5.0084 13 3 10.9916 3 8 C 3 5.0084 5.0084 3 8 3 z M 9.5 5 A 1 1 0 0 0 8.5 6 A 1 1 0 0 0 9.5 7 A 1 1 0 0 0 10.5 6 A 1 1 0 0 0 9.5 5 z M 7.5 6.5 A 0.5 0.5 0 0 0 7 7 A 0.5 0.5 0 0 0 7.5 7.5 A 0.5 0.5 0 0 0 8 7 A 0.5 0.5 0 0 0 7.5 6.5 z M 5.5 7 A 1 1 0 0 0 4.5 8 A 1 1 0 0 0 5.5 9 A 1 1 0 0 0 6.5 8 A 1 1 0 0 0 5.5 7 z M 7.5 8.5 A 0.5 0.5 0 0 0 7 9 A 0.5 0.5 0 0 0 7.5 9.5 A 0.5 0.5 0 0 0 8 9 A 0.5 0.5 0 0 0 7.5 8.5 z M 9.5 9 A 1 1 0 0 0 8.5 10 A 1 1 0 0 0 9.5 11 A 1 1 0 0 0 10.5 10 A 1 1 0 0 0 9.5 9 z " + transform="translate(0,1036.3622)" + id="rect4175" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/phone.svg b/html/themes/breezy/svg/16/devices/phone.svg new file mode 100644 index 0000000000000000000000000000000000000000..cab73acbb8cc58917e15d28e579a75ae6a33ac10 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/phone.svg @@ -0,0 +1,127 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="phone.svg" + inkscape:export-filename="phone.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="44.8" + inkscape:cx="7.6474354" + inkscape:cy="8.4729942" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" + d="M 4 2 L 4 14 L 12 14 L 12 2 L 4 2 z M 7 3 L 9 3 L 9 4 L 7 4 L 7 3 z M 5 5 L 11 5 L 11 12 L 5 12 L 5 5 z " + transform="translate(0,1036.3622)" + id="path4141" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/printer.svg b/html/themes/breezy/svg/16/devices/printer.svg new file mode 100644 index 0000000000000000000000000000000000000000..a10be1d662b827621295c6f8b822043e3ee4e432 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/printer.svg @@ -0,0 +1,709 @@ +<?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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="printer.svg" + inkscape:export-filename="printer.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + id="linearGradient4271"> + <stop + style="stop-color:#2a2c2f;stop-opacity:1" + offset="0" + id="stop4273" /> + <stop + style="stop-color:#424649;stop-opacity:1" + offset="1" + id="stop4275" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4328"> + <stop + style="stop-color:#bec900;stop-opacity:1" + offset="0" + id="stop4330" /> + <stop + id="stop4332" + offset="0.31249884" + style="stop-color:#9ec80a;stop-opacity:1" /> + <stop + style="stop-color:#71b93d;stop-opacity:1" + offset="0.56249928" + id="stop4334" /> + <stop + id="stop4336" + offset="0.74999958" + style="stop-color:#35a48f;stop-opacity:1" /> + <stop + style="stop-color:#018fca;stop-opacity:1" + offset="1" + id="stop4338" /> + </linearGradient> + <linearGradient + id="linearGradient4316" + inkscape:collect="always"> + <stop + id="stop4318" + offset="0" + style="stop-color:#c1cc00;stop-opacity:1" /> + <stop + style="stop-color:#dfcd00;stop-opacity:1" + offset="0.31249884" + id="stop4320" /> + <stop + id="stop4322" + offset="0.56249928" + style="stop-color:#f0cc00;stop-opacity:1" /> + <stop + style="stop-color:#fd8c08;stop-opacity:1" + offset="0.74999958" + id="stop4324" /> + <stop + id="stop4326" + offset="1" + style="stop-color:#f25c13;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4300"> + <stop + style="stop-color:#e51561;stop-opacity:1" + offset="0" + id="stop4302" /> + <stop + id="stop4304" + offset="0.31249884" + style="stop-color:#e4156c;stop-opacity:1" /> + <stop + style="stop-color:#e71e2c;stop-opacity:1" + offset="0.56249928" + id="stop4306" /> + <stop + id="stop4308" + offset="0.74999958" + style="stop-color:#e8301e;stop-opacity:1" /> + <stop + style="stop-color:#e6320e;stop-opacity:1" + offset="1" + id="stop4310" /> + </linearGradient> + <linearGradient + id="linearGradient4288" + inkscape:collect="always"> + <stop + id="stop4290" + offset="0" + style="stop-color:#e81877;stop-opacity:1" /> + <stop + style="stop-color:#dd1d8c;stop-opacity:1" + offset="0.31249884" + id="stop4294" /> + <stop + id="stop4296" + offset="0.56249928" + style="stop-color:#6d57b1;stop-opacity:1" /> + <stop + style="stop-color:#2a78c1;stop-opacity:1" + offset="0.74999958" + id="stop4298" /> + <stop + id="stop4292" + offset="1" + style="stop-color:#018dcb;stop-opacity:1" /> + </linearGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4528"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4530" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4271" + id="linearGradient4532" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.79999996,0,0,0.79999996,-302.85712,-395.03837)" + x1="409.57144" + y1="543.79797" + x2="409.57144" + y2="503.798" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4534"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4536" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4544"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4546-71" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4271" + id="linearGradient4548" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.79999995,0,0,0.79999995,81.714312,104.75963)" + x1="409.57144" + y1="543.79797" + x2="409.57144" + y2="503.798" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4550"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4552" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4562"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4564" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4568"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4570" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4578"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4580" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4584"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4586" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + id="linearGradient4303-3"> + <stop + style="stop-color:#989a9b;stop-opacity:1" + offset="0" + id="stop4305-3" /> + <stop + style="stop-color:#f6f6f7;stop-opacity:1" + offset="1" + id="stop4307-8" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="8" + x2="24.000011" + y1="23.999973" + x1="8" + id="linearGradient4415" + xlink:href="#linearGradient4288" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1,0,0,-1,384.57143,547.798)" + y2="8" + x2="24.000011" + y1="24.000027" + x1="8" + gradientUnits="userSpaceOnUse" + id="linearGradient4417" + xlink:href="#linearGradient4300" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1,0,0,1,432.57143,499.798)" + y2="8" + x2="24.000011" + y1="23.999973" + x1="8" + gradientUnits="userSpaceOnUse" + id="linearGradient4419" + xlink:href="#linearGradient4328" + inkscape:collect="always" /> + <linearGradient + y2="8" + x2="24.000011" + y1="24" + x1="8" + gradientTransform="matrix(-1,0,0,-1,432.57143,547.798)" + gradientUnits="userSpaceOnUse" + id="linearGradient4421" + xlink:href="#linearGradient4316" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(0.34999981,0,0,0.34999981,265.57152,-707.12715)" + y2="503.798" + x2="409.57144" + y1="543.79797" + x1="409.57144" + gradientUnits="userSpaceOnUse" + id="linearGradient4423" + xlink:href="#linearGradient4271" + inkscape:collect="always" /> + <clipPath + id="clipPath4528-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4530-7" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4534-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4536-8" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4544-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4546-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4550-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4552-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4562-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4564-8" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4568-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4570-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4578-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4580-7" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4584-9" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4586-2" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <linearGradient + gradientTransform="matrix(2,0,0,2,-408.57143,-523.798)" + gradientUnits="userSpaceOnUse" + y2="522.79797" + x2="408.57144" + y1="524.79797" + x1="408.57144" + id="linearGradient4472" + xlink:href="#linearGradient4303-3" + inkscape:collect="always" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4528-8"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4530-0" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4534-10"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4536-6" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4544-3"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4546-559" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4550-0"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4552-3" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4562-5"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4564-1" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4568-6"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4570-4" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4578-88"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4580-3" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4584-0"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4586-5" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + id="clipPath4528-1-9" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4530-7-1" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4534-1-5" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4536-8-9" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4544-1-6" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4546-1-4" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4550-4-0" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4552-1-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4562-8-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4564-8-0" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4568-4-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4570-1-6" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4578-8-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4580-7-9" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4584-9-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4586-2-6" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.839192" + inkscape:cx="3.3728818" + inkscape:cy="8.4729942" + inkscape:document-units="px" + inkscape:current-layer="layer2" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 4,3 0,3 -2,0 0,7 2,0 0,1 8,0 0,-1 2,0 0,-7 -2,0 0,-3 -8,0 z m 1,1 6,0 0,3 -6,0 0,-3 z m 0,8 6,0 0,1 -6,0 0,-1 z" + id="rect4537" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/server.svg b/html/themes/breezy/svg/16/devices/server.svg new file mode 100644 index 0000000000000000000000000000000000000000..9ab2b54fda95505a7f3b35e8b84819ac95822807 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/server.svg @@ -0,0 +1,133 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="server.svg" + inkscape:export-filename="server.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.9375" + inkscape:cx="-1.3766761" + inkscape:cy="4.4163311" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 9,3 -7,3 0,3 5,4 7,-3 0,-3 z m 0,1.4355469 4,3.4359673 0,1.257392 L 7,11.564453 7,10 3.0585938,6.8476562 Z" + transform="translate(421.71429,531.79074)" + id="path4170" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/telephone.svg b/html/themes/breezy/svg/16/devices/telephone.svg new file mode 100644 index 0000000000000000000000000000000000000000..73f8e7299cfca4e4f062f86a456ea342ca1b7979 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/telephone.svg @@ -0,0 +1,141 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="telephone.svg" + inkscape:export-filename="telephone.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="8.796989" + inkscape:cy="6.3747799" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,8" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)" + style="opacity:0.423" /> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 4,3 -2,2 1,3 5,5 3,1 2,-2 L 10.5,9.5 9,11 5,7 6.5,5.5 Z" + id="path4325" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 8,2 0,1 a 5,5 0 0 1 5,5 l 1,0 A 6,5.9999914 0 0 0 8,2 Z" + id="path4347" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 8 4.0332031 L 8 5.0410156 A 3.5 3.5 0 0 1 10.960938 8 L 11.96875 8 A 4.5 4.5 0 0 0 8 4.0332031 z " + id="path4358" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/devices/terminal.svg b/html/themes/breezy/svg/16/devices/terminal.svg new file mode 100644 index 0000000000000000000000000000000000000000..b78921913e51de2ecf3ee8e3c23cd65c49998de1 --- /dev/null +++ b/html/themes/breezy/svg/16/devices/terminal.svg @@ -0,0 +1,713 @@ +<?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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="terminal.svg" + inkscape:export-filename="terminal.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + id="linearGradient4271"> + <stop + style="stop-color:#2a2c2f;stop-opacity:1" + offset="0" + id="stop4273" /> + <stop + style="stop-color:#424649;stop-opacity:1" + offset="1" + id="stop4275" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4328"> + <stop + style="stop-color:#bec900;stop-opacity:1" + offset="0" + id="stop4330" /> + <stop + id="stop4332" + offset="0.31249884" + style="stop-color:#9ec80a;stop-opacity:1" /> + <stop + style="stop-color:#71b93d;stop-opacity:1" + offset="0.56249928" + id="stop4334" /> + <stop + id="stop4336" + offset="0.74999958" + style="stop-color:#35a48f;stop-opacity:1" /> + <stop + style="stop-color:#018fca;stop-opacity:1" + offset="1" + id="stop4338" /> + </linearGradient> + <linearGradient + id="linearGradient4316" + inkscape:collect="always"> + <stop + id="stop4318" + offset="0" + style="stop-color:#c1cc00;stop-opacity:1" /> + <stop + style="stop-color:#dfcd00;stop-opacity:1" + offset="0.31249884" + id="stop4320" /> + <stop + id="stop4322" + offset="0.56249928" + style="stop-color:#f0cc00;stop-opacity:1" /> + <stop + style="stop-color:#fd8c08;stop-opacity:1" + offset="0.74999958" + id="stop4324" /> + <stop + id="stop4326" + offset="1" + style="stop-color:#f25c13;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4300"> + <stop + style="stop-color:#e51561;stop-opacity:1" + offset="0" + id="stop4302" /> + <stop + id="stop4304" + offset="0.31249884" + style="stop-color:#e4156c;stop-opacity:1" /> + <stop + style="stop-color:#e71e2c;stop-opacity:1" + offset="0.56249928" + id="stop4306" /> + <stop + id="stop4308" + offset="0.74999958" + style="stop-color:#e8301e;stop-opacity:1" /> + <stop + style="stop-color:#e6320e;stop-opacity:1" + offset="1" + id="stop4310" /> + </linearGradient> + <linearGradient + id="linearGradient4288" + inkscape:collect="always"> + <stop + id="stop4290" + offset="0" + style="stop-color:#e81877;stop-opacity:1" /> + <stop + style="stop-color:#dd1d8c;stop-opacity:1" + offset="0.31249884" + id="stop4294" /> + <stop + id="stop4296" + offset="0.56249928" + style="stop-color:#6d57b1;stop-opacity:1" /> + <stop + style="stop-color:#2a78c1;stop-opacity:1" + offset="0.74999958" + id="stop4298" /> + <stop + id="stop4292" + offset="1" + style="stop-color:#018dcb;stop-opacity:1" /> + </linearGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4528"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4530" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4271" + id="linearGradient4532" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.79999996,0,0,0.79999996,-302.85712,-395.03837)" + x1="409.57144" + y1="543.79797" + x2="409.57144" + y2="503.798" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4534"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4536" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4544"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4546-71" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4271" + id="linearGradient4548" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.79999995,0,0,0.79999995,81.714312,104.75963)" + x1="409.57144" + y1="543.79797" + x2="409.57144" + y2="503.798" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4550"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4552" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4562"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4564" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4568"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4570" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4578"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4580" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4584"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4586" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <linearGradient + inkscape:collect="always" + id="linearGradient4303-3"> + <stop + style="stop-color:#989a9b;stop-opacity:1" + offset="0" + id="stop4305-3" /> + <stop + style="stop-color:#f6f6f7;stop-opacity:1" + offset="1" + id="stop4307-8" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="8" + x2="24.000011" + y1="23.999973" + x1="8" + id="linearGradient4415" + xlink:href="#linearGradient4288" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1,0,0,-1,384.57143,547.798)" + y2="8" + x2="24.000011" + y1="24.000027" + x1="8" + gradientUnits="userSpaceOnUse" + id="linearGradient4417" + xlink:href="#linearGradient4300" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1,0,0,1,432.57143,499.798)" + y2="8" + x2="24.000011" + y1="23.999973" + x1="8" + gradientUnits="userSpaceOnUse" + id="linearGradient4419" + xlink:href="#linearGradient4328" + inkscape:collect="always" /> + <linearGradient + y2="8" + x2="24.000011" + y1="24" + x1="8" + gradientTransform="matrix(-1,0,0,-1,432.57143,547.798)" + gradientUnits="userSpaceOnUse" + id="linearGradient4421" + xlink:href="#linearGradient4316" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(0.34999981,0,0,0.34999981,265.57152,-707.12715)" + y2="503.798" + x2="409.57144" + y1="543.79797" + x1="409.57144" + gradientUnits="userSpaceOnUse" + id="linearGradient4423" + xlink:href="#linearGradient4271" + inkscape:collect="always" /> + <clipPath + id="clipPath4528-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4530-7" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4534-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4536-8" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4544-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4546-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4550-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4552-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4562-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4564-8" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4568-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4570-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4578-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4580-7" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4584-9" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4586-2" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <linearGradient + gradientTransform="matrix(2,0,0,2,-408.57143,-523.798)" + gradientUnits="userSpaceOnUse" + y2="522.79797" + x2="408.57144" + y1="524.79797" + x1="408.57144" + id="linearGradient4472" + xlink:href="#linearGradient4303-3" + inkscape:collect="always" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4528-8"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4530-0" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4534-10"> + <rect + ry="15.999986" + y="8.0000038" + x="8.0000114" + height="31.999971" + width="31.999989" + id="rect4536-6" + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4544-3"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4546-559" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4550-0"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4552-3" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4562-5"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4564-1" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4568-6"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4570-4" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4578-88"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4580-3" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4584-0"> + <rect + ry="15.999986" + y="507.798" + x="392.57144" + height="31.999971" + width="31.999989" + id="rect4586-5" + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + </clipPath> + <clipPath + id="clipPath4528-1-9" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4530-7-1" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4534-1-5" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4532);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4536-8-9" + width="31.999989" + height="31.999971" + x="8.0000114" + y="8.0000038" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4544-1-6" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4546-1-4" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4550-4-0" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4552-1-1" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4562-8-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4564-8-0" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4568-4-4" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4570-1-6" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4578-8-8" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4580-7-9" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + <clipPath + id="clipPath4584-9-1" + clipPathUnits="userSpaceOnUse"> + <rect + style="opacity:1;fill:url(#linearGradient4548);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4586-2-6" + width="31.999989" + height="31.999971" + x="392.57144" + y="507.798" + ry="15.999986" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="8.1079718" + inkscape:cy="6.9893327" + inkscape:document-units="px" + inkscape:current-layer="layer2" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Calque 1" + style="opacity:1"> + <path + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none" + d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 7 5 L 9 7 L 10 8 L 9 9 L 7 11 L 6 10 L 8 8 L 6 6 L 7 5 z " + id="rect4146" /> + </g> + <g + inkscape:groupmode="layer" + id="layer1" + inkscape:label="Calque 2" /> +</svg> diff --git a/html/themes/breezy/svg/16/mimetypes/application-certificate.svg b/html/themes/breezy/svg/16/mimetypes/application-certificate.svg new file mode 100644 index 0000000000000000000000000000000000000000..1169e108ff15d74ac61baef76fb96c74c4fe3264 --- /dev/null +++ b/html/themes/breezy/svg/16/mimetypes/application-certificate.svg @@ -0,0 +1,153 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="application-certificate.svg" + inkscape:export-filename="application-certificate.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="3.9620079" + inkscape:cy="15.540093" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,9" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 10,8.576172 C 9.3696398,8.8536891 8.6887421,8.9979809 8,9 7.3115329,8.9992123 6.6306466,8.8562527 6,8.580078 L 6,14 l 2,-1 2,1 z" + transform="translate(421.71429,531.79074)" + id="path4156" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <circle + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4189" + cx="429.71429" + cy="537.79071" + r="4" /> + <path + sodipodi:type="star" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#fdbc4b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4199" + sodipodi:sides="8" + sodipodi:cx="429.71429" + sodipodi:cy="537.79074" + sodipodi:r1="5" + sodipodi:r2="2.5" + sodipodi:arg1="1.5707963" + sodipodi:arg2="1.9634954" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 429.71429,542.79071 -0.9567,-2.6903 -2.57883,1.22583 1.22584,-2.57882 -2.69031,-0.95671 2.69031,-0.95671 -1.22584,-2.57882 2.57883,1.22583 0.9567,-2.6903 0.95671,2.6903 2.57883,-1.22583 -1.22584,2.57882 2.6903,0.95671 -2.6903,0.95671 1.22584,2.57882 -2.57883,-1.22583 z" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/mimetypes/application-pdf.svg b/html/themes/breezy/svg/16/mimetypes/application-pdf.svg new file mode 100644 index 0000000000000000000000000000000000000000..af529aef86a4d9dfc0d67af586cc73ebf4be35c7 --- /dev/null +++ b/html/themes/breezy/svg/16/mimetypes/application-pdf.svg @@ -0,0 +1,91 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="application-pdf.svg" + inkscape:export-filename="application-pdf.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.4" + inkscape:cx="-11.008045" + inkscape:cy="12.959453" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#cf000f;fill-opacity:1" + inkscape:connector-curvature="0" + d="m 3.8563926,1038.3619 c -0.1620039,0.01 -0.3360071,0 -0.5270111,0.132 -1.7040376,0.7323 -0.5610818,2.7413 1.610965,4.2706 0.013004,-0.2881 0.1330718,-0.9155 0.1300718,-1.1916 -1.8530404,-1.2688 -2.9370637,-2.504 -1.7560385,-2.9937 1.2450273,-0.5162 1.6314446,0.8931 1.6534449,2.9385 0.1160024,0.12 0.9195931,0.6531 1.0415955,0.7372 -0.045,-1.8654 -1.0380041,-3.7694 -1.9920247,-3.8774 -0.051,-0.01 -0.1070024,-0.01 -0.1610035,-0.01 m 1.734762,3.2454 -0.3877326,-0.1508 -0.3214651,0.2163 -0.064748,0.6807 0.4060512,0.311 0.1685119,0.2258 c 1.2500277,0.8283 2.314987,1.4663 3.7160175,1.9933 l 0.8737343,0.1296 0.5750122,0 c 0.530011,-0.3121 0.214005,-0.4322 2.140047,-0.6722 l -2.170047,0.168 c -1.6740366,-0.6482 -3.3823488,-1.5791 -4.9363834,-2.5947 m 3.8199596,2.7152 c 0.2510051,0 2.2094468,-0.1697 2.9884638,-0.2417 0.771017,-0.1201 1.718038,-0.1561 1.539034,0.7442 0.204004,-0.4801 -0.260838,-1.2952 -0.921853,-1.4392 -1.022022,-0.2281 -2.643825,0.3974 -3.2268376,0.5895 m 0.9396206,0.2495 c -0.304006,0.1201 -0.9985295,0.2069 -1.3265364,0.3149 0.4650108,0.2401 2.7997104,1.1011 3.7637314,0.921 0.154003,0 0.804875,-0.4676 0.820876,-0.8038 -0.05,0.6122 -2.904063,0.1561 -3.258071,-0.4441 m 0.635014,0.011 c -0.250006,-0.12 -1.420656,-0.1141 -1.6796618,-0.2101 -1.4666569,0.5124 -3.4394495,1.7154 -4.8514807,2.5268 l -0.4090085,0.1201 c -0.078868,0.5604 -0.4246069,0.7534 -0.740016,1.1163 l 0.4780107,0.4802 0.3740078,-0.6122 c 1.6530354,-0.9963 4.9211068,-2.606 6.8271485,-3.3791 m -6.8271485,3.3791 c -0.2020041,0.12 -0.3950083,0.2401 -0.5780127,0.3601 -0.424009,1.2016 -0.9180196,2.0106 -1.3900303,1.9758 0.7290164,0.3481 2.2992398,-1.3673 2.828251,-2.9806 m -2.828251,2.9806 c -1.1120236,-0.6602 1.2418265,-1.8633 1.7688375,-2.2126 0.1190029,-0.3361 -0.2063133,-0.893 -0.1003117,-1.2892 -1.6600363,1.0324 -2.6415472,2.5259 -2.0845351,3.2341 0.1340029,0.1681 0.276006,0.2521 0.4170093,0.2641 m 1.615552,-2.5151 c 0.077302,-0.3094 1.1027298,-1.0131 1.2877338,-1.1212 0.2480895,-1.9505 0.259907,-2.1431 0.4706356,-3.6594 -0.1260022,-0.12 -0.9015505,-0.7238 -1.0215527,-0.8078 -0.1489201,1.6205 -0.4289977,3.8165 -0.8250059,5.2833" + id="path26" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/mimetypes/application-x-executable.svg b/html/themes/breezy/svg/16/mimetypes/application-x-executable.svg new file mode 100644 index 0000000000000000000000000000000000000000..3bdfacc230536a6f125c05ee64d26289d0ddba68 --- /dev/null +++ b/html/themes/breezy/svg/16/mimetypes/application-x-executable.svg @@ -0,0 +1,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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="application-x-executable.svg" + inkscape:export-filename="application-x-executable.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="-6.0281044" + inkscape:cy="8.766444" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="M 2 2 L 2 5 L 2 13.25 L 2 14 L 14 14 L 14 13.25 L 14 9.5 L 14 5 L 14 2 L 2 2 z M 3 5 L 13 5 L 13 13 C 9.449069 12.963 6.549687 12.923 3 13 L 3 5 z M 6 7 L 6 11 L 10 9 L 6 7 z " + transform="translate(0,1036.3622)" + id="rect4138" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/mimetypes/package-x-generic.svg b/html/themes/breezy/svg/16/mimetypes/package-x-generic.svg new file mode 100644 index 0000000000000000000000000000000000000000..3f702f0e7c31cbe95dc32913172eef0b23d90e17 --- /dev/null +++ b/html/themes/breezy/svg/16/mimetypes/package-x-generic.svg @@ -0,0 +1,92 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="package-x-generic.svg" + inkscape:export-filename="package-x-generic.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.362252" + inkscape:cx="-3.5165999" + inkscape:cy="9.9987334" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + showguides="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + inkscape:connector-curvature="0" + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="m 2,1038.3622 0,12 12,0 0,-12 z m 1,1 4,0 0,1 1,0 0,-1 5,0 0,10 -10,0 z m 5,1 0,1 1,0 0,-1 z m 0,1 -1,0 0,1 1,0 z m 0,1 0,1 1,0 0,-1 z m 0,1 -1,0 0,1 1,0 z m 0,1 0,1 1,0 0,-1 z m 0,1 -1,0 0,1 0,1 2,0 0,-1 0,0 -1,0 z" + id="rect4173" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/mimetypes/text-csv.svg b/html/themes/breezy/svg/16/mimetypes/text-csv.svg new file mode 100644 index 0000000000000000000000000000000000000000..7c6fe6f3457df137cc65bc32341da9ccd322b846 --- /dev/null +++ b/html/themes/breezy/svg/16/mimetypes/text-csv.svg @@ -0,0 +1,92 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="text-csv.svg" + inkscape:export-filename="text-csv.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.625" + inkscape:cx="3.1624424" + inkscape:cy="7.504375" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="m 2,2 0,1 0,10 0,1 1,0 6,0 0,-1 -3,0 0,-3 3,0 0,-1 -3,0 0,-3 4,0 0,2 1,0 0,-2 2,0 0,2 1,0 L 14,2 3,2 Z M 3,3 13,3 13,5 3,5 Z M 3,6 5,6 5,9 3,9 Z m 8.5,3 C 10.668995,9 10,9.6379875 10,10.429688 c 0,0.7634 0.62316,1.376321 1.412109,1.419921 0.05749,0.2617 0.08693,0.528122 0.08789,0.794922 C 11.4978,13.107631 11.411159,13.5666 11.242188,14 12.342191,13.2657 12.998014,12.067109 13,10.787109 l 0,-0.357421 C 13,9.6378875 12.330999,9 11.5,9 Z m -8.5,1 2,0 0,3 -2,0 z" + transform="translate(0,1036.3622)" + id="rect4031" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccssccccssccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/places/folder.svg b/html/themes/breezy/svg/16/places/folder.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8693497c72a8dc5a4efa666e1dff676dc9c51c2 --- /dev/null +++ b/html/themes/breezy/svg/16/places/folder.svg @@ -0,0 +1,127 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="folder.svg" + inkscape:export-filename="folder.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="44.8" + inkscape:cx="3.3528337" + inkscape:cy="10.873751" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 2 2 L 2 3 L 2 6 L 2 7 L 2 13 L 2 14 L 14 14 L 14 13 L 14 6 L 14 5 L 14 4 L 9.0078125 4 L 7.0078125 2 L 7 2.0078125 L 7 2 L 3 2 L 2 2 z M 3 3 L 6.5917969 3 L 7.59375 4 L 7 4 L 7 4.0078125 L 6.9921875 4 L 4.9921875 6 L 3 6 L 3 3 z M 3 7 L 13 7 L 13 13 L 3 13 L 3 7 z " + transform="translate(0,1036.3622)" + id="rect4079" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/dialog-error.svg b/html/themes/breezy/svg/16/status/dialog-error.svg new file mode 100644 index 0000000000000000000000000000000000000000..f7f7b2f963512f4d6df7d7ec671bb2dec26a5684 --- /dev/null +++ b/html/themes/breezy/svg/16/status/dialog-error.svg @@ -0,0 +1,88 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="dialog-error.svg" + inkscape:export-filename="dialog-error.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32.526912" + inkscape:cx="7.0374185" + inkscape:cy="3.7087658" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + showguides="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0"> + <inkscape:grid + type="xygrid" + id="grid4062" + originx="-7" + originy="-7.0000174" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-7,-1029.3622)"> + <rect + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none" + id="rect4153" + width="16" + height="16" + x="7" + y="1029.3622" + ry="2.0000696" /> + <path + style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 11,1031.3622 -2,2 4,4 -4,4 2,2 4,-4 4,4 2,-2 -4,-4 4,-4 -2,-2 -4,4 -4,-4 z" + id="path4141" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/dialog-information.svg b/html/themes/breezy/svg/16/status/dialog-information.svg new file mode 100644 index 0000000000000000000000000000000000000000..5088a73b9d0a68b6fe9daa060786c441c5fa912d --- /dev/null +++ b/html/themes/breezy/svg/16/status/dialog-information.svg @@ -0,0 +1,132 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-information.svg" + inkscape:export-filename="dialog-information.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="3.217289" + inkscape:cy="6.8143845" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="M 2 2 L 2 12 L 5 15 L 5 12 L 14 12 L 14 2 L 2 2 z M 3 3 L 13 3 L 13 11 L 3 11 L 3 3 z M 7 4 L 7 5 L 9 5 L 9 4 L 7 4 z M 7 6 L 7 10 L 9 10 L 9 6 L 7 6 z " + transform="translate(421.71429,531.79074)" + id="rect4163" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/dialog-password.svg b/html/themes/breezy/svg/16/status/dialog-password.svg new file mode 100644 index 0000000000000000000000000000000000000000..183b7b5560c09c612003a280639b573be870e124 --- /dev/null +++ b/html/themes/breezy/svg/16/status/dialog-password.svg @@ -0,0 +1,194 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="dialog-password.svg" + inkscape:export-filename="dialog-password.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.4" + inkscape:cx="-7.6839681" + inkscape:cy="11.678768" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 5,1038.3622 a 3,3.0000086 0 0 1 3,3 3,3.0000086 0 0 1 -3,3 3,3.0000086 0 0 1 -3,-3 3,3.0000086 0 0 1 3,-3 z m 0,1 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z" + id="path4197" + inkscape:connector-curvature="0" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4202" + width="1" + height="6.9999828" + x="-6" + y="1043.3622" + transform="scale(-1,1)" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4218" + width="2" + height="1" + x="4" + y="1048.3622" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4220" + width="2" + height="1" + x="4" + y="1046.3622" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4222" + width="2" + height="2" + x="4" + y="1043.3622" /> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 4.8786618,1040.377 a 3.0000086,3 0 0 1 4.2426405,0 3.0000086,3 0 0 1 0,4.2426 3.0000086,3 0 0 1 -4.2426405,0 3.0000086,3 0 0 1 0,-4.2426 z m 0.7071068,0.7071 a 2,2 0 0 0 0,2.8284 2,2 0 0 0 2.8284267,0 2,2 0 0 0 0,-2.8284 2,2 0 0 0 -2.8284267,0 z" + id="path4197-5" + inkscape:connector-curvature="0" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4202-6" + width="1" + height="6.9999828" + x="731.20795" + y="744.10724" + transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,0,0)" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4218-9" + width="2" + height="1" + x="-733.20795" + y="749.10724" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4220-1" + width="2" + height="1" + x="-733.20795" + y="747.10724" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4222-2" + width="2" + height="2" + x="-733.20795" + y="744.10724" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/dialog-warning.svg b/html/themes/breezy/svg/16/status/dialog-warning.svg new file mode 100644 index 0000000000000000000000000000000000000000..466a5e2645719a65837ab70babcf407fec31b51d --- /dev/null +++ b/html/themes/breezy/svg/16/status/dialog-warning.svg @@ -0,0 +1,607 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + 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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="dialog-warning.svg" + inkscape:export-filename="dialog-warning.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + id="current-color-scheme" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + id="linearGradient5606" + osb:paint="solid"> + <stop + id="stop5608" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + </linearGradient> + <style + id="current-color-scheme-2" + type="text/css"> + .ColorScheme-Text { + color:#31363b; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-6" + type="text/css"> + .ColorScheme-Text { + color:#31363b; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="0.9334977" + inkscape:cy="6.2937763" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + showguides="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:object-nodes="true" + inkscape:snap-global="false"> + <inkscape:grid + type="xygrid" + id="grid4062" + originx="-7" + originy="-7.0000174" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-7,-1029.3622)"> + <g + transform="matrix(1.9999998,0,0,1.9999998,-20.898435,-1053.4908)" + id="layer1-3" + inkscape:label="Capa 1" + style="fill:#f47750;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + style="fill:#f47750;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 4,0 C 3.7964835,2.5315917e-4 3.644678,0.09649124 3.5371094,0.3125 c 0,0 -3.45985962,6.8880966 -3.45702803,6.9160162 C 0.04342075,7.3055022 -1.2456632e-5,7.403681 0,7.5 0,7.7761424 0.22385763,8 0.5,8 l 7,0 C 7.7761424,8 8,7.7761424 8,7.5 8.0002021,7.3873383 7.9818808,7.3677538 7.8925781,7.1894531 l -3.4375,-6.89843748 C 4.346001,0.09774139 4.1955491,-3.3128801e-4 4,0 Z" + transform="translate(13.949219,1041.4266)" + id="path4248" + sodipodi:nodetypes="ccccsscccc" /> + <rect + y="1016.4872" + x="-57.55727" + height="14.668059" + width="0" + id="rect4035-90" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1039.0577" + x="-50.596699" + height="14.668059" + width="0" + id="rect4035-8-0" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1037.9971" + x="-48.783405" + height="14.668059" + width="0" + id="rect4035-0-6" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1012.7059" + x="-74.713524" + height="14.668059" + width="0" + id="rect4035-06-5" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1035.2765" + x="-67.752953" + height="14.668059" + width="0" + id="rect4035-8-7-2" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1034.2158" + x="-65.939659" + height="14.668059" + width="0" + id="rect4035-0-42-3" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1012.7059" + x="-74.713524" + height="14.668059" + width="0" + id="rect4035-3-91" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1035.2765" + x="-67.752953" + height="14.668059" + width="0" + id="rect4035-8-9-4" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1034.2158" + x="-65.939659" + height="14.668059" + width="0" + id="rect4035-0-4-6" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1012.7059" + x="-74.713524" + height="14.668059" + width="0" + id="rect4035-2-3" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1035.2765" + x="-67.752953" + height="14.668059" + width="0" + id="rect4035-8-99-4" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1034.2158" + x="-65.939659" + height="14.668059" + width="0" + id="rect4035-0-43-1" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1012.7059" + x="-74.713524" + height="14.668059" + width="0" + id="rect4035-3-9-4" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1035.2765" + x="-67.752953" + height="14.668059" + width="0" + id="rect4035-8-9-9-7" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1034.2158" + x="-65.939659" + height="14.668059" + width="0" + id="rect4035-0-4-4-2" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1033.9954" + x="-4.443409" + height="10.999983" + width="0" + id="rect4035-5-5" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1036.5144" + x="-8.9954109" + height="10.999983" + width="0" + id="rect4035-7-7" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1024.0958" + x="-13.503193" + height="10.999983" + width="0" + id="rect4035-9-2" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1036.3333" + x="-12.659168" + height="10.999983" + width="0" + id="rect4035-96-0" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1038.8524" + x="-17.21117" + height="10.999983" + width="0" + id="rect4035-7-0-98" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1026.4338" + x="-21.718952" + height="10.999983" + width="0" + id="rect4035-9-6-92" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1033.9954" + x="-4.443409" + height="10.999983" + width="0" + id="rect4035-1-6" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1036.5144" + x="-8.9954109" + height="10.999983" + width="0" + id="rect4035-7-2-6" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1024.0958" + x="-13.503193" + height="10.999983" + width="0" + id="rect4035-9-0-6" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1036.3333" + x="-12.659168" + height="10.999983" + width="0" + id="rect4035-96-9-0" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1038.8524" + x="-17.21117" + height="10.999983" + width="0" + id="rect4035-7-0-9-1" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + <rect + y="1026.4338" + x="-21.718952" + height="10.999983" + width="0" + id="rect4035-9-6-9-2" + style="fill:#f47750;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035" + width="0" + height="14.668059" + x="-77.557266" + y="1011.4872" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-8" + width="0" + height="14.668059" + x="-70.596695" + y="1034.0577" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-0" + width="0" + height="14.668059" + x="-68.783401" + y="1032.9971" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-06" + width="0" + height="14.668059" + x="-94.713524" + y="1007.7059" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-8-7" + width="0" + height="14.668059" + x="-87.752953" + y="1030.2765" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-0-42" + width="0" + height="14.668059" + x="-85.939659" + y="1029.2158" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-3" + width="0" + height="14.668059" + x="-94.713524" + y="1007.7059" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-8-9" + width="0" + height="14.668059" + x="-87.752953" + y="1030.2765" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-0-4" + width="0" + height="14.668059" + x="-85.939659" + y="1029.2158" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-2" + width="0" + height="14.668059" + x="-94.713524" + y="1007.7059" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-8-99" + width="0" + height="14.668059" + x="-87.752953" + y="1030.2765" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-0-43" + width="0" + height="14.668059" + x="-85.939659" + y="1029.2158" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-3-9" + width="0" + height="14.668059" + x="-94.713524" + y="1007.7059" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-8-9-9" + width="0" + height="14.668059" + x="-87.752953" + y="1030.2765" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-0-4-4" + width="0" + height="14.668059" + x="-85.939659" + y="1029.2158" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-5" + width="0" + height="10.999983" + x="-24.443409" + y="1028.9954" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-7" + width="0" + height="10.999983" + x="-28.995411" + y="1031.5144" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-9" + width="0" + height="10.999983" + x="-33.503193" + y="1019.0958" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-96" + width="0" + height="10.999983" + x="-32.659168" + y="1031.3333" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-7-0" + width="0" + height="10.999983" + x="-37.21117" + y="1033.8524" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-9-6" + width="0" + height="10.999983" + x="-41.718952" + y="1021.4338" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-1" + width="0" + height="10.999983" + x="-24.443409" + y="1028.9954" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-7-2" + width="0" + height="10.999983" + x="-28.995411" + y="1031.5144" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-9-0" + width="0" + height="10.999983" + x="-33.503193" + y="1019.0958" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-96-9" + width="0" + height="10.999983" + x="-32.659168" + y="1031.3333" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-7-0-9" + width="0" + height="10.999983" + x="-37.21117" + y="1033.8524" /> + <rect + style="fill:#f2f2f2;fill-opacity:1;stroke:none" + id="rect4035-9-6-9" + width="0" + height="10.999983" + x="-41.718952" + y="1021.4338" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-linecap:round" + id="rect4241" + width="2.0000176" + height="5.9999995" + x="13.999999" + y="-1039.3622" + ry="2.0859376e-05" + transform="scale(1,-1)" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-linecap:round" + id="rect4243" + width="2.0000176" + height="1.9999998" + x="13.999999" + y="-1043.3622" + ry="3.4765595e-05" + transform="scale(1,-1)" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/locked.svg b/html/themes/breezy/svg/16/status/locked.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e2687a557f3d920d255c72c37e8e0d591936c3 --- /dev/null +++ b/html/themes/breezy/svg/16/status/locked.svg @@ -0,0 +1,130 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="locked.svg" + inkscape:export-filename="locked.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="-8.4565827" + inkscape:cy="4.7308117" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + inkscape:connector-curvature="0" + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 8,1038.3622 c -1.662,0 -3,1.338 -3,3 l 0,3 -2,0 0,0.75 0,5.25 c 3.4472235,0 7.033564,0 10,0 l 0,-6 c -0.833333,0 -1.166667,0 -2,0 l 0,-3 c 0,-1.662 -1.338,-3 -3,-3 z m 0,1 c 1.2465,0 2,0.5458 2,2 l 0,3 -4,0 0,-3 c 0,-1.4542 0.753506,-2 2,-2 z m -4,6 8,0 0,4 -8,0 z" + id="rect4136" + sodipodi:nodetypes="sscccccccssssccssccccc" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/task-complete.svg b/html/themes/breezy/svg/16/status/task-complete.svg new file mode 100644 index 0000000000000000000000000000000000000000..1fe4c1e2d4f3d91163f723082a2e393d673f0c19 --- /dev/null +++ b/html/themes/breezy/svg/16/status/task-complete.svg @@ -0,0 +1,90 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="task-complete.svg" + inkscape:export-filename="task-complete.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="0.4784426" + inkscape:cy="7.952791" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + units="px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid4136" + empspacing="4" /> + <sodipodi:guide + position="-4,14" + orientation="0,1" + id="guide4140" /> + <sodipodi:guide + position="-4,2" + orientation="0,1" + id="guide4142" /> + <sodipodi:guide + position="2,18" + orientation="1,0" + id="guide4144" /> + <sodipodi:guide + position="14,17" + orientation="1,0" + id="guide4146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#2ecc71;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 14,1038.3622 2,0 -12,12 -4,-10 1,0 3,5 z" + id="path4167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/task-failure.svg b/html/themes/breezy/svg/16/status/task-failure.svg new file mode 100644 index 0000000000000000000000000000000000000000..a901022512baa884421fb4bd1126ddece80e1a8e --- /dev/null +++ b/html/themes/breezy/svg/16/status/task-failure.svg @@ -0,0 +1,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="16" + height="16" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="task-failure.svg" + inkscape:export-filename="task-failure.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8.131728" + inkscape:cx="-30.725831" + inkscape:cy="3.7087658" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + showguides="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0"> + <inkscape:grid + type="xygrid" + id="grid4062" + originx="-7" + originy="-7.0000174" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-7,-1029.3622)"> + <path + style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 9,1029.3622 -2,2 6,6 -6,6 2,2 6,-6 6,6 2,-2 -6,-6 6,-6 -2,-2 -6,6 z" + id="path4141" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/task-running.svg b/html/themes/breezy/svg/16/status/task-running.svg new file mode 100644 index 0000000000000000000000000000000000000000..160dc0006134dc0fe9ad21cfcb7b11096adbf47e --- /dev/null +++ b/html/themes/breezy/svg/16/status/task-running.svg @@ -0,0 +1,135 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="task-running.svg" + inkscape:export-filename="task-running.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.4" + inkscape:cx="-0.13208371" + inkscape:cy="6.2432528" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1d99f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 8,2 C 4.6862915,2 2,4.6862915 2,8 c 0,3.313708 2.6862915,6 6,6 3.313708,0 6,-2.686292 6,-6 C 14,4.6862915 11.313708,2 8,2 Z" + transform="translate(0,1036.3622)" + id="path4159" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sssss" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 4,1042.3622 1,0 2,4 3,-4 2,0 -5,6 z" + id="path4162" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/task-stopped.svg b/html/themes/breezy/svg/16/status/task-stopped.svg new file mode 100644 index 0000000000000000000000000000000000000000..81f12b600537679737b67738e9a2abe022e82caf --- /dev/null +++ b/html/themes/breezy/svg/16/status/task-stopped.svg @@ -0,0 +1,135 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="task-stopped.svg" + inkscape:export-filename="task-stopped.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.839192" + inkscape:cx="2.8287152" + inkscape:cy="4.6361099" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4062" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4066" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4068" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4070" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4072" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 8 2 A 6 6 0 0 0 2 8 A 6 6 0 0 0 8 14 A 6 6 0 0 0 14 8 A 6 6 0 0 0 8 2 z M 8 3 A 5 5 0 0 1 13 8 A 5 5 0 0 1 8 13 A 5 5 0 0 1 3 8 A 5 5 0 0 1 8 3 z " + transform="translate(0,1036.3622)" + id="path4159" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4164" + width="4" + height="4" + x="6" + y="1042.3622" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/status/unlocked.svg b/html/themes/breezy/svg/16/status/unlocked.svg new file mode 100644 index 0000000000000000000000000000000000000000..e7eb6f05dad9401354233bacc230982d20e96620 --- /dev/null +++ b/html/themes/breezy/svg/16/status/unlocked.svg @@ -0,0 +1,164 @@ +<?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="16" + height="16" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="unlocked.svg" + inkscape:export-filename="unlocked.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + gradientTransform="translate(0,-1.9999941)" + inkscape:collect="always" + xlink:href="#linearGradient4021-3" + id="linearGradient4123" + gradientUnits="userSpaceOnUse" + x1="3" + y1="1045.3622" + x2="15" + y2="1045.3622" /> + <linearGradient + id="linearGradient4021-3"> + <stop + id="stop4023-0" + offset="0" + style="stop-color:#b3b3b3;stop-opacity:1;" /> + <stop + id="stop4025-2" + offset="1" + style="stop-color:currentColor;stop-opacity:1;" + class="ColorScheme-Text" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="45.254834" + inkscape:cx="6.9572899" + inkscape:cy="8.1576065" + inkscape:document-units="px" + inkscape:current-layer="layer1-6" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14,9" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <g + transform="matrix(0.75,0,0,0.74999813,421.46429,-241.22897)" + id="layer1-0" + inkscape:label="Capa 1"> + <g + transform="translate(6.2937501e-7,-2.041003e-4)" + id="layer1-6" + inkscape:label="Capa 1"> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 8 2 C 6.3431375 2 5 3.3431371 5 5 L 5 6 L 6 6 L 6 5 C 6 3.8954305 6.8954305 3 8 3 C 9.1045695 3 10 3.8954305 10 5 L 10 8 L 7 8 L 6 8 L 5 8 L 3 8 L 3 14 L 13 14 L 13 8 L 11 8 L 11 5 C 11 3.3431371 9.6568625 2 8 2 z M 4 9 L 12 9 L 12 13 L 4 13 L 4 9 z " + transform="matrix(1.3333333,0,0,1.3333367,0.3333327,1030.6957)" + id="rect3044" + class="ColorScheme-Text" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/action.svg b/html/themes/breezy/svg/16/types/action.svg new file mode 100644 index 0000000000000000000000000000000000000000..8bceb9ba84fbdd4e7ad479be5bccd798bd1cb9ca --- /dev/null +++ b/html/themes/breezy/svg/16/types/action.svg @@ -0,0 +1,130 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="action.svg" + inkscape:export-filename="action.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="9.3814812" + inkscape:cy="7.4093604" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 7 2 L 7 4.1328125 A 4 4 0 0 0 5.9726562 4.5585938 L 4.4648438 3.0507812 L 3.0507812 4.4648438 L 4.5585938 5.9726562 A 4 4 0 0 0 4.1308594 7 L 2 7 L 2 9 L 4.1328125 9 A 4 4 0 0 0 4.5585938 10.027344 L 3.0507812 11.535156 L 4.4648438 12.949219 L 5.9726562 11.441406 A 4 4 0 0 0 7 11.869141 L 7 14 L 9 14 L 9 11.867188 A 4 4 0 0 0 10.027344 11.441406 L 11.535156 12.949219 L 12.949219 11.535156 L 11.441406 10.027344 A 4 4 0 0 0 11.869141 9 L 14 9 L 14 7 L 11.867188 7 A 4 4 0 0 0 11.441406 5.9726562 L 12.949219 4.4648438 L 11.535156 3.0507812 L 10.027344 4.5585938 A 4 4 0 0 0 9 4.1308594 L 9 2 L 7 2 z M 8 5 A 3 3 0 0 1 10.152344 5.9101562 A 3 3 0 0 1 11 8 A 3 3 0 0 1 10.089844 10.152344 A 3 3 0 0 1 8 11 A 3 3 0 0 1 5.8476562 10.089844 A 3 3 0 0 1 5 8 A 3 3 0 0 1 5.9101562 5.8476562 A 3 3 0 0 1 8 5 z " + transform="translate(421.71429,531.79074)" + id="path4143" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/application.svg b/html/themes/breezy/svg/16/types/application.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a2fd67a23e4452ec23e28b4336ab89c6c261f97 --- /dev/null +++ b/html/themes/breezy/svg/16/types/application.svg @@ -0,0 +1,91 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="application.svg" + inkscape:export-filename="application.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="21.8125" + inkscape:cx="-9.5587393" + inkscape:cy="8" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <path + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + d="M 2,2 2,5 2,13.25 2,14 14,14 14,13.25 14,9.5 14,5 14,2 Z m 1,3 10,0 0,8 C 9.449069,12.963 6.549687,12.923 3,13 Z" + id="rect4138" + transform="translate(0,1036.3622)" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/contact.svg b/html/themes/breezy/svg/16/types/contact.svg new file mode 100644 index 0000000000000000000000000000000000000000..a14948002945c2eebdc215ee384df9ab0e4362a8 --- /dev/null +++ b/html/themes/breezy/svg/16/types/contact.svg @@ -0,0 +1,173 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="contact.svg" + inkscape:export-filename="contact.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <clipPath + id="clipPath4160" + clipPathUnits="userSpaceOnUse"> + <rect + y="1023.3622" + x="7" + height="1" + width="1" + id="rect4162" + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + class="ColorScheme-Text" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="4.4751722" + inkscape:cy="8.0853698" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1578" + inkscape:window-height="963" + inkscape:window-x="292" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.5 4 A 2.5 2.5 0 0 0 3 6.5 A 2.5 2.5 0 0 0 5.5 9 A 2.5 2.5 0 0 0 8 6.5 A 2.5 2.5 0 0 0 5.5 4 z M 5.5 5 A 1.5 1.5 0 0 1 7 6.5 A 1.5 1.5 0 0 1 5.5 8 A 1.5 1.5 0 0 1 4 6.5 A 1.5 1.5 0 0 1 5.5 5 z " + transform="translate(421.71429,531.79074)" + id="path4221" /> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.5 10 A 3.4999979 4 0 0 0 2 14 L 3 14 L 8 14 L 9 14 A 3.4999979 4 0 0 0 5.5 10 z M 5.5 11 A 2.5 3 0 0 1 7.8535156 13 L 3.1464844 13 A 2.5 3 0 0 1 5.5 11 z " + transform="translate(421.71429,531.79074)" + id="path4276" + class="ColorScheme-Text" /> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4349" + width="5.0000043" + height="1.00003" + x="430.71429" + y="533.79071" + class="ColorScheme-Text" /> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4351" + width="5.0000043" + height="0.99997044" + x="430.71429" + y="536.79071" + class="ColorScheme-Text" /> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4353" + width="5.0000043" + height="1" + x="430.71429" + y="539.79071" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/country.svg b/html/themes/breezy/svg/16/types/country.svg new file mode 100644 index 0000000000000000000000000000000000000000..cfbde53793cd34e72daae466bf888a91deb11831 --- /dev/null +++ b/html/themes/breezy/svg/16/types/country.svg @@ -0,0 +1,142 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="country.svg" + inkscape:export-filename="country.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="-2.1792413" + inkscape:cy="8.6425719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-smooth-nodes="false" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="7,14" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <rect + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="rect4149" + width="0.99999559" + height="11.99997" + x="423.71429" + y="533.79071" + ry="2.9550782e-05" + class="ColorScheme-Text" /> + <path + style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 424.71429,533.79074 5,1 0,1 6,2 -2,1 2,1 -6,1 0,-1 -5,1 z" + id="path4151" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/dc.svg b/html/themes/breezy/svg/16/types/dc.svg new file mode 100644 index 0000000000000000000000000000000000000000..04833b288ff67d07a71af8564216c78597b06b74 --- /dev/null +++ b/html/themes/breezy/svg/16/types/dc.svg @@ -0,0 +1,151 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dc.svg" + inkscape:export-filename="dc.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.411306" + inkscape:cx="2.1958374" + inkscape:cy="-4.0607346" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 4 2 L 4 11 L 12 11 L 12 2 L 4 2 z M 5 3 L 11 3 L 11 10 L 5 10 L 5 3 z " + transform="translate(421.71429,531.79074)" + id="rect4170" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4172" + width="10" + height="2.0000148" + x="424.71429" + y="543.79071" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4178" + width="1" + height="3" + x="429.21429" + y="541.79071" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4187" + width="2" + height="1" + x="427.71429" + y="535.79071" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/domain.svg b/html/themes/breezy/svg/16/types/domain.svg new file mode 100644 index 0000000000000000000000000000000000000000..54e98b1b09e38484fceefb8f9393551049157c42 --- /dev/null +++ b/html/themes/breezy/svg/16/types/domain.svg @@ -0,0 +1,97 @@ +<?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" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 16 16" + sodipodi:docname="domain.svg" + inkscape:export-filename="domain.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.678384" + inkscape:cx="1.9711407" + inkscape:cy="4.770719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + units="px" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4101" /> + <sodipodi:guide + position="2,14.000017" + orientation="12,0" + id="guide4071" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,12" + id="guide4073" /> + <sodipodi:guide + position="14,2.0000174" + orientation="-12,0" + id="guide4075" /> + <sodipodi:guide + position="14,14.000017" + orientation="0,-12" + id="guide4077" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1036.3622)"> + <rect + style="fill:#6c7a89;fill-opacity:1;stroke:none" + id="rect4035" + width="0" + height="10.999983" + x="-17" + y="1039.3622" /> + <path + inkscape:connector-curvature="0" + style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero" + d="m 8,1038.3622 c -3.3137085,0 -6,2.6863 -6,6 0,3.3137 2.6862915,6 6,6 3.313708,0 6,-2.6863 6,-6 0,-3.3137 -2.686292,-6 -6,-6 z m 0,1 c 0.172589,0 0.3319146,0.014 0.5,0.031 0.04034,0 0.084959,0 0.125,0 0.052621,0.01 0.1041519,0.023 0.15625,0.031 0.1436522,0.023 0.2670253,0.059 0.40625,0.094 0.2565966,0.063 0.5107233,0.1487 0.75,0.25 0.131926,0.056 0.249149,0.1209 0.375,0.1875 -7.5e-5,0.01 8e-4,0.02 0,0.031 0.02898,0.013 0.04478,0.067 0.09375,0.094 0.01798,0.01 0.01431,0.022 0.03125,0.031 0.02898,0.016 0.06849,0.034 0.0625,0.062 -0.008,0.04 -0.06575,0.032 -0.09375,0.062 0.0038,0.058 -0.04754,0.055 -0.0625,0.094 0.009,0.025 0.05854,0.033 0.0625,0.062 -0.0049,0.032 -0.07452,0.03 -0.0625,0.062 0.05401,0.042 0.105254,0.01 0.15625,0 0.111991,-0.014 0.212253,-0.01 0.28125,-0.062 -0.009,-0.053 0.09974,-0.046 0.09375,-0.094 0.02866,0.021 0.0653,0.041 0.09375,0.062 -0.01076,0.01 -0.01917,0.026 -0.03125,0.031 -0.02101,0.01 -0.04349,0.019 -0.0625,0.031 -0.028,0.018 -0.06172,0.042 -0.09375,0.062 -0.02299,0.016 -0.06975,0.094 -0.09375,0.094 -0.02899,0 -0.07275,-0.037 -0.09375,-0.031 -0.03003,0.01 -0.02856,0.051 -0.0625,0.062 -0.06599,0.024 -0.195755,-0.036 -0.21875,0.062 0.028,0.057 0.137505,0.031 0.1875,0.062 0.03102,0.02 0.08575,0.091 0.09375,0.125 0.008,0.028 0.01199,0.1575 0,0.1875 -0.03102,0.08 -0.126762,0.063 -0.21875,0.062 l -0.0625,0 c -0.154984,-0.01 -0.305001,-0.08 -0.375,0.031 0.00495,0.085 0.01903,0.1447 0,0.2187 -0.01397,0.054 -0.096748,0.1097 -0.09375,0.1563 0.0011,0.024 0.056505,0.06 0.0625,0.094 0.00385,0.018 -0.00807,0.045 0,0.062 0.026015,0.049 0.079004,-0.01 0.125,0 0.044,0.01 0.09375,0.076 0.09375,0.125 0,0.035 -0.0092,0.091 -0.03125,0.125 -0.044,0.066 -0.124503,0.058 -0.1875,0.094 -0.051975,0.03 -0.062748,0.1046 -0.09375,0.1562 -0.033,0.056 -0.075517,0.076 -0.0625,0.1563 -0.04499,0.089 -0.094512,0.1445 -0.1875,0.1875 -0.027005,0.012 -0.068753,0.013 -0.09375,0.031 -0.02002,0.014 -0.034478,0.062 -0.0625,0.094 -0.03498,0.039 -0.074753,0.064 -0.09375,0.094 -0.014025,0.023 -0.01629,0.062 -0.03125,0.094 -0.022,0.042 -0.065756,0.052 -0.09375,0.094 -0.01298,0.02 -0.01728,0.068 -0.03125,0.094 -0.03201,0.058 -0.068501,0.1052 -0.0625,0.1562 0.00495,0.048 0.059502,0.05 0.0625,0.094 0.00275,0.024 -0.03224,0.036 -0.03125,0.062 0.0011,0.038 0.02828,0.064 0.03125,0.094 0.00699,0.074 -0.04853,0.1057 -0.0625,0.1563 -0.00699,0.024 0.006,0.043 0,0.062 -0.01199,0.037 -0.061499,0.081 -0.0625,0.125 -0.0011,0.031 0.05953,0.05 0.0625,0.094 0.0022,0.029 -0.037245,0.066 -0.03125,0.094 0.011,0.054 0.1142575,0.1142 0.15625,0.1562 0.056997,0.057 0.131258,0.096 0.15625,0.1563 0.02101,0.051 0.023533,0.1494 0.0625,0.1875 0.028985,0.028 0.088007,0.033 0.125,0.062 0.03498,0.027 0.056753,0.033 0.09375,0.062 0.060995,0.048 0.153002,0.1632 0.25,0.1562 0.050985,-0.01 0.099254,-0.053 0.15625,-0.062 0.059,-0.01 0.127506,-0.036 0.1875,-0.031 0.04598,0.01 0.108253,0.034 0.15625,0.031 0.04999,-0.01 0.09926,-0.01 0.15625,-0.031 0.099,-0.043 0.262266,-0.1145 0.40625,-0.094 0.109989,0.016 0.110505,0.1385 0.1875,0.1875 0.08799,0.01 0.148757,-0.017 0.21875,0 0.05302,0.013 0.120001,0.083 0.125,0.125 0.005,0.043 -0.05651,0.098 -0.0625,0.125 -0.01397,0.058 0.01,0.1193 0,0.1563 -0.008,0.029 -0.03224,0.065 -0.03125,0.094 0,0.026 0.03548,0.091 0.0625,0.125 0.033,0.042 0.085,0.08 0.125,0.125 0.07299,0.084 0.105254,0.1703 0.15625,0.2813 0.01298,0.028 -0.01199,0.058 0,0.094 -0.022,0.1679 -0.07751,0.2829 -0.1875,0.4688 -0.05198,0.06 -0.126001,0.1126 -0.125,0.1875 -0.0038,0.18 0.10175,0.2947 0.09375,0.4687 -0.01798,0.2339 0.01804,0.2501 0,0.375 0.079,0.04 0.02299,0.1669 0,0.25 -0.03399,0.099 -0.07475,0.1215 -0.09375,0.1875 0.05308,0.023 0.128521,0.014 0.1875,0 -0.0298,0.031 -0.06316,0.063 -0.09375,0.094 -0.226206,0.2262 -0.483998,0.4452 -0.75,0.625 -0.516043,0.3486 -1.0900087,0.6134 -1.71875,0.75 -0.343539,0.075 -0.6966113,0.094 -1.0625,0.094 -0.1903331,0 -0.3781349,-0.01 -0.5625,-0.031 -0.1468611,-0.017 -0.2947861,-0.033 -0.4375,-0.062 -0.2831745,-0.058 -0.5489719,-0.1777 -0.8125,-0.2813 -0.00937,-0.017 -0.033376,-0.042 -0.03125,-0.062 0.051975,-0.022 0.149506,0.074 0.1875,0 0.01903,-0.035 -0.025025,-0.1212 0,-0.1562 0.017985,-0.024 0.119257,-0.024 0.15625,-0.031 0.05302,-0.01 0.126253,-0.017 0.15625,-0.031 0.033,-0.021 0.068501,-0.095 0.0625,-0.1563 -0.00275,-0.029 -0.039565,-0.036 -0.0625,-0.062 -0.018975,-0.022 0.01298,-0.042 0,-0.062 -0.02398,-0.035 -0.083751,-0.043 -0.09375,-0.094 0.071995,-0.014 0.1772615,0.06 0.28125,0.031 0.049005,-0.014 0.133249,-0.1101 0.15625,-0.1562 0.00699,-0.014 -0.00798,-0.044 0,-0.062 0.00902,-0.018 0.028225,-0.053 0.03125,-0.062 0.00698,-0.027 -0.006,-0.013 0,-0.031 0.017985,-0.051 0.063747,-0.089 0.09375,-0.125 0.02299,-0.028 0.072723,-0.065 0.09375,-0.094 0.02398,-0.031 0.0153,-0.034 0.03125,-0.062 0.015015,-0.091 -0.05325,-0.1701 -0.03125,-0.25 0.02398,-0.09 0.163012,-0.1465 0.25,-0.1875 0.029975,-0.014 0.068752,-0.022 0.09375,-0.031 0.059994,-0.021 0.1315045,-0.043 0.1875,-0.062 0.093995,-0.034 0.110248,-0.1016 0.15625,-0.1875 0.022,-0.04 0.058485,-0.096 0.0625,-0.125 0.00385,-0.026 -0.00495,-0.032 0,-0.062 0.00495,-0.029 -0.00798,-0.06 0,-0.094 0.011,-0.043 0.03125,-0.1396 0.03125,-0.1875 0,-0.04 -0.03026,-0.058 -0.03125,-0.094 -0.00699,-0.13 0.045762,-0.1165 0.09375,-0.1875 0.02398,-0.035 0.04556,-0.1 0.0625,-0.125 0.080993,-0.12 0.228749,-0.1617 0.21875,-0.3437 -0.00385,-0.06 -0.049772,-0.1998 -0.09375,-0.2188 -0.025025,-0.011 -0.056751,-0.018 -0.09375,-0.031 -0.1179915,-0.044 -0.2207645,-0.1775 -0.34375,-0.1875 l -0.0625,0 c -0.048015,0 -0.1022565,-0.024 -0.15625,-0.031 -0.03399,-0.01 -0.1050015,0.01 -0.125,0 -0.03102,-0.015 -0.03753,-0.077 -0.0625,-0.094 -0.02002,-0.014 -0.062757,-0.02 -0.09375,-0.031 -0.049005,-0.018 -0.068003,-0.059 -0.125,-0.062 -0.017985,0 -0.042518,0.01 -0.0625,0 -0.03102,-0.01 -0.064754,-0.013 -0.09375,-0.031 -0.03597,-0.022 -0.078752,-0.031 -0.09375,-0.062 0.033,-0.1079 -0.07175,-0.1245 -0.09375,-0.1875 -0.01001,-0.029 0.01001,-0.099 0,-0.125 -0.01298,-0.037 -0.052748,-0.063 -0.09375,-0.094 -0.071995,-0.056 -0.115757,-0.081 -0.21875,-0.094 -0.04598,-0.01 -0.1012555,0.01 -0.15625,0 -0.057992,-0.01 -0.1435055,-0.044 -0.1875,-0.094 -0.04202,-0.049 -0.056756,-0.1019 -0.09375,-0.125 -0.03498,-0.022 -0.069754,-0.04 -0.09375,-0.062 -0.011,-0.01 -0.02124,-0.01 -0.03125,-0.031 -0.017985,-0.037 -0.05325,-0.049 -0.03125,-0.094 -0.039985,-0.02 -0.019507,0.038 -0.0625,0.031 -0.038995,-0.055 -0.068262,-0.1098 -0.15625,-0.094 -0.039985,0.01 -0.078003,0.093 -0.125,0.094 -0.038995,0 -0.074004,-0.086 -0.125,-0.094 -0.038995,-0.01 -0.098,0.036 -0.125,0.031 -0.04301,-0.01 -0.054777,-0.036 -0.09375,-0.062 -0.028985,-0.019 -0.07775,-0.063 -0.09375,-0.062 -0.049995,0 -0.087258,0.099 -0.15625,0.062 -0.03399,-0.043 0.071268,-0.054 0.03125,-0.094 -0.029975,-0.029 -0.038487,0.017 -0.0625,0.031 -0.027995,0.018 -0.062757,0.02 -0.09375,0.031 -0.068998,0.026 -0.1335065,0.034 -0.1875,0.062 -0.049995,0.026 -0.064753,0.043 -0.09375,0.094 -0.02299,0.042 -0.058753,0.123 -0.09375,0.125 -0.04202,0 -0.05575,-0.045 -0.09375,-0.062 -0.1149885,-0.05 -0.1862595,0.029 -0.28125,0.031 -0.087994,0 -0.2227485,-0.1357 -0.21875,-0.2187 0.00275,-0.051 0.025255,-0.1245 0.03125,-0.1875 0.00495,-0.05 0.061565,-0.1107 0.0625,-0.1563 0.0011,-0.062 -0.116254,-0.087 -0.15625,-0.094 -0.093995,-0.017 -0.2055085,0.042 -0.3125,0 -0.02002,-0.034 0.01926,-0.06 0.03125,-0.094 0.00698,-0.018 -0.00699,-0.042 0,-0.062 0.01199,-0.032 0.078757,-0.06 0.09375,-0.094 0.011,-0.026 -0.011,-0.061 0,-0.094 0.01298,-0.036 0.059475,-0.068 0.0625,-0.094 0.00385,-0.034 -0.03555,-0.072 -0.0625,-0.094 -0.082995,0.01 -0.1395015,0.01 -0.1875,0.031 -0.107987,0.049 -0.078507,0.1847 -0.1875,0.2187 -0.037015,0.012 -0.083002,0.024 -0.125,0.031 -0.018315,0.01 -0.04198,0 -0.0625,0 0.00195,-0.01 -0.00201,-0.021 0,-0.031 0.00466,-0.023 0.026279,-0.04 0.03125,-0.062 0.071265,-0.325 0.1813949,-0.6396 0.3125,-0.9375 l 0.03125,0 c 0.038005,0.01 0.060755,0.06 0.09375,0.062 0.091993,0.01 0.111501,-0.085 0.1875,-0.125 0.077996,0.011 0.116506,-0.01 0.1875,0 0.048015,0.01 0.118256,0.058 0.15625,0.062 0.03201,0 0.032498,-0.035 0.0625,-0.031 0.029975,0.01 0.08875,0.058 0.09375,0.094 0.00495,0.045 -0.044285,0.1067 -0.03125,0.1563 0.047025,0.048 0.1517545,0.066 0.21875,0.094 0.044,-0.037 0.00698,-0.1042 0,-0.1562 -0.0011,-0.023 0.00275,-0.073 0,-0.094 -0.00495,-0.036 -0.03125,-0.063 -0.03125,-0.094 0,-0.143 0.1227585,-0.1941 0.21875,-0.25 0.040975,-0.024 0.089002,-0.076 0.125,-0.094 0.050985,-0.025 0.083003,-0.01 0.125,-0.031 0.075988,-0.043 0.1285015,-0.1076 0.1875,-0.1563 0.027005,-0.065 -0.00275,-0.1547 0,-0.2187 0.027005,-0.017 0.064782,0 0.09375,0 0.04598,-0.01 0.067746,-0.068 0.09375,-0.094 0.015015,-0.015 0.044482,-0.016 0.0625,-0.031 0.04598,-0.036 0.053737,-0.078 0.09375,-0.094 0.014025,-0.01 0.040473,-0.024 0.0625,-0.031 0.03003,-0.01 0.077007,-0.013 0.125,-0.031 0.03102,-0.011 0.112999,-0.018 0.125,-0.031 0.015015,-0.015 -0.00385,-0.071 0,-0.094 0.02398,-0.1129 0.180259,-0.1181 0.28125,-0.1562 0.069993,-0.026 0.1407545,-0.1078 0.21875,-0.094 -0.015015,0.054 -0.075501,0.06 -0.0625,0.125 0.016995,0.091 0.124251,-0.018 0.15625,-0.031 0.060995,-0.026 0.1700025,-0.064 0.25,-0.094 0.069993,-0.025 0.190989,-0.044 0.125,-0.125 -0.055,-0.01 -0.077007,0.043 -0.125,0.062 -0.033,0.01 -0.034522,-0.028 -0.0625,-0.031 -0.027005,0 -0.035473,0.036 -0.0625,0.031 -0.027005,-0.01 -0.058502,-0.061 -0.0625,-0.094 -0.011,-0.084 0.05976,-0.094 0.09375,-0.1563 -0.02299,-0.076 -0.1235075,-0.033 -0.1875,-0.062 0.00699,-0.045 0.040757,-0.084 0.09375,-0.094 0.04301,-0.01 0.1615015,0.01 0.1875,0.031 0.015015,0.013 -0.02294,0.042 0,0.062 0.026015,0.023 0.059754,0.01 0.09375,0 0.01199,-0.057 -0.072499,-0.025 -0.0625,-0.062 0.067991,-0.044 0.198255,-0.02 0.28125,-0.031 0.048015,-0.01 0.113251,-0.039 0.15625,-0.062 0.039985,-0.023 0.051751,-0.069 0.09375,-0.031 0.01199,0.041 -0.00831,0.072 -0.03125,0.094 -0.076994,0.068 -0.158756,0.1398 -0.21875,0.2187 0.037015,0.036 0.094254,0.024 0.15625,0.031 0.02398,0.01 0.068747,0 0.09375,0 0.03003,0.01 0.069748,-0.01 0.09375,0 0.04202,0.01 0.051757,0.094 0.09375,0.094 0.067996,0 0.039023,-0.08 0,-0.125 0.01199,-0.047 0.0483,-0.092 0.03125,-0.125 -0.03102,-0.062 -0.1502495,0.018 -0.15625,-0.062 -0.00385,-0.05 0.044493,-0.056 0.0625,-0.094 -0.00798,-0.096 0.072499,-0.1005 0.0625,-0.1875 -0.00495,-0.036 -0.037492,-0.028 -0.0625,-0.062 -0.01298,-0.018 -0.01629,-0.08 -0.03125,-0.094 -0.051975,-0.044 -0.1502495,-0.01 -0.15625,-0.094 -0.00275,-0.05 0.00698,-0.1027 0,-0.1563 -0.00699,-0.051 -0.049772,-0.2087 -0.09375,-0.2187 -0.055995,-0.012 -0.089255,0.094 -0.15625,0.125 -0.03597,0.017 -0.119257,0.037 -0.15625,0.031 -0.02398,-0.01 -0.059497,-0.015 -0.0625,-0.062 -0.00396,-0.042 0.046847,-0.061 0.0625,-0.094 0.00391,-0.01 -0.00199,-0.02 0,-0.031 0.072566,-0.02 0.1449664,-0.045 0.21875,-0.062 0.041917,-0.01 0.082687,-0.023 0.125,-0.031 0.029877,-0.01 0.063685,0.01 0.09375,0 0.1335544,-0.025 0.2691958,-0.049 0.40625,-0.062 0.1662387,-0.017 0.3289018,-0.031 0.5,-0.031 z m -2.03125,0.4688 c -0.031834,0.1825 -0.2027474,0.2552 -0.40625,0.25 -0.04598,0.044 -0.00628,0.1265 -0.03125,0.1875 -0.02101,0.051 -0.105259,0.098 -0.15625,0.094 -0.037015,0 -0.09375,-0.059 -0.09375,-0.094 0,-0.043 0.068271,-0.045 0.03125,-0.094 0.00165,-0.01 0.020855,-0.021 0.03125,-0.031 0.02024,-0.013 0.042103,-0.019 0.0625,-0.031 0.1812025,-0.1115 0.3669614,-0.1932 0.5625,-0.2812 z m 4.1875,0.1875 c -0.01843,0.01 -0.01503,0.021 -0.03125,0.031 -0.03801,0.023 -0.06474,0.052 -0.09375,0.062 -0.04097,0.015 -0.087746,0.025 -0.09375,0.062 -0.00495,0.031 0.032295,0.034 0.03125,0.062 -0.015015,0.037 -0.02322,0.049 -0.03125,0.094 0.050985,0.083 0.155758,-0.018 0.21875,-0.031 0.028,-0.01 0.0475,-0.01 0.0625,-0.031 0.01699,-0.027 0.01831,-0.056 0.03125,-0.094 0.01403,-0.042 0.06751,-0.057 0.0625,-0.094 -0.0038,-0.037 -0.09426,-0.067 -0.15625,-0.062 z m -5.46875,0.625 c 0.047412,0.038 0.1140588,0.1206 0.03125,0.1562 -0.01001,0.01 -0.1322535,0.035 -0.15625,0.031 -0.00968,0 -0.022766,-0.024 -0.03125,-0.031 0.051663,-0.05 0.1024569,-0.1082 0.15625,-0.1562 z m 0.1875,0.1875 c 0.02398,0 0.034483,0.061 0.0625,0.062 0.027005,0 0.046473,-0.035 0.0625,-0.031 0.04202,0.011 0.071268,0.094 0.03125,0.125 -0.033,0.01 -0.038537,-0.035 -0.0625,-0.031 -0.067996,0.012 -0.1052545,0.1602 -0.15625,0.1562 -0.048015,-0.01 -0.080272,-0.1212 -0.03125,-0.1562 0.0011,-0.03 -0.00204,-0.031 0,-0.062 0.015015,-0.018 0.053732,-0.065 0.09375,-0.062 z m -0.25,0.031 c 0.014025,0 0.026245,-0.01 0.03125,0 -0.00698,0.053 -0.021542,0.069 -0.0625,0.094 -0.070994,0.043 -0.133249,0.096 -0.15625,0.1875 -0.00699,0.027 -0.091004,0.1004 -0.125,0.094 -0.078996,-0.017 0.044515,-0.1646 0.0625,-0.1875 0.02002,-0.025 0.039526,-0.034 0.0625,-0.062 0.02299,-0.028 0.040555,-0.078 0.0625,-0.094 0.02398,-0.017 0.083007,-0.033 0.125,-0.031 z m 6.78125,0.1563 c 0.07899,-0.01 0.120252,0.077 0.15625,0.125 0.02998,0.039 0.107246,0.098 0.15625,0.125 0.028,0.015 0.06275,0.049 0.09375,0.062 0.06499,0.029 0.184496,0.1235 0.1875,0.1875 0.0011,0.032 -0.03626,0.064 -0.03125,0.094 0.04901,0.01 0.09275,-0.076 0.09375,-0.125 0.09191,0.13 0.170602,0.2677 0.25,0.4063 0.0375,0.065 0.09044,0.12 0.125,0.1875 -0.04411,0.013 -0.05541,0.02 -0.0625,0.062 -0.01001,0.056 0.02149,0.1463 -0.0625,0.1562 -0.05297,0.01 -0.11451,-0.045 -0.1875,-0.062 -0.02998,-0.01 -0.06975,0.01 -0.09375,0 -0.055,-0.018 -0.04675,-0.092 -0.09375,-0.125 -0.02701,-0.019 -0.113247,-0.058 -0.15625,-0.062 -0.02701,0 -0.03452,0.01 -0.0625,0 -0.03399,-0.01 -0.097,0.014 -0.125,0 -0.02701,-0.017 -0.08674,-0.071 -0.09375,-0.094 -0.011,-0.037 0.09175,-0.062 0.09375,-0.094 0.0022,-0.024 -0.02625,-0.057 -0.03125,-0.094 -0.0038,-0.022 0.0049,-0.047 0,-0.062 -0.007,-0.026 -0.05276,-0.03 -0.09375,-0.031 -0.03603,0 -0.06276,0 -0.09375,0 -0.044,0 -0.132506,0 -0.1875,0 -0.033,0 -0.06275,0 -0.09375,0 -0.08699,0.01 -0.150753,-0.01 -0.21875,0 -0.04901,0 -0.141504,0.042 -0.1875,0.062 -0.02299,0.011 -0.03249,0.016 -0.0625,0.031 -0.01397,0.01 -0.04446,0.023 -0.0625,0.031 -0.02799,0.013 -0.06675,0.054 -0.09375,0.062 -0.03899,0.01 -0.08526,-0.01 -0.15625,0 -0.05098,0 -0.123999,-0.033 -0.125,-0.094 -0.0011,-0.093 0.162011,-0.045 0.25,-0.062 0.033,-0.01 0.05373,-0.038 0.09375,-0.062 0.01903,-0.011 0.01326,-0.019 0.03125,-0.031 0.02997,-0.021 0.08875,-0.07 0.09375,-0.094 0.0038,-0.022 -0.003,-0.045 0,-0.062 0.0038,-0.021 0.0355,-0.034 0.0625,-0.062 0.04202,-0.042 0.073,-0.098 0.125,-0.125 0.03498,-0.018 0.07775,-0.034 0.09375,-0.062 0.0038,-0.032 -0.0011,-0.032 0,-0.062 0.022,-0.02 0.04452,-0.027 0.0625,-0.031 0.05401,-0.012 0.09326,0 0.15625,0 0.027,0 0.06475,0.013 0.09375,0 0.02398,-0.016 0.0385,-0.051 0.0625,-0.062 0.02601,-0.014 0.06172,-0.029 0.09375,-0.031 z m 0.5625,0.5937 -0.125,0 c -0.044,0 -0.099,-0.023 -0.125,0 0.03702,0.06 0.104505,0.079 0.1875,0.094 0.02998,-0.022 0.04853,-0.055 0.0625,-0.094 z m -6.84375,-0.5625 0.09375,0 c 0.025025,0 0.052501,-0.01 0.0625,0 -0.016005,0.066 -0.166753,0.055 -0.21875,0.031 0.00275,-0.025 0.030468,-0.027 0.0625,-0.031 z m -0.21875,0.125 c -0.043683,0.032 -0.086919,0.072 -0.15625,0.094 -0.038005,0.012 -0.086748,0.011 -0.09375,-0.031 -0.00803,-0.052 0.059738,-0.026 0.09375,-0.031 0.044,-0.01 0.105254,-0.029 0.15625,-0.031 z m 6.5,0 c -0.033,0.011 -0.04901,0.084 0,0.094 0.02299,-0.014 0.0373,-0.051 0.03125,-0.094 -0.01298,-0.014 -0.02129,-0.01 -0.03125,0 z m -0.0625,0.1563 c 0.0011,0.056 0.011,0.1076 0,0.1562 0.03201,0.062 0.109006,0.011 0.125,-0.031 0.01903,-0.104 -0.0145,-0.138 -0.0625,-0.125 -0.016,0.01 -0.04556,-0.013 -0.0625,0 z m -8.28125,2.3437 c 0.056364,0.051 0.088793,0.1229 0.15625,0.1563 0.025025,0.013 0.061751,0.023 0.09375,0.031 0.026015,0.01 0.037513,-0.01 0.0625,0 0.05302,0.018 0.1142575,0.043 0.15625,0.062 0.063998,0.028 0.1325,0.1243 0.1875,0.1563 0.00275,0.032 -0.01001,0.07 0,0.094 0.026015,0.035 0.051747,0.07 0.09375,0.094 0.050985,0.028 0.077006,0.072 0.125,0.094 0.016995,0.01 0.036463,-0.01 0.0625,0 0.065994,0.02 0.099253,0.1106 0.15625,0.094 0.037015,-0.011 0.025255,-0.058 0.03125,-0.094 0.025025,-0.027 0.054722,-0.062 0.09375,-0.062 0.06199,0 0.070749,0.096 0.09375,0.1563 0.01298,0.034 0.053535,0.058 0.0625,0.094 0.015015,0.062 0.01298,0.2443 0,0.2813 -0.016005,0.046 -0.087001,0.043 -0.125,0.094 -0.017985,0.024 -0.01728,0.077 -0.03125,0.094 -0.02398,0.029 -0.044477,0.035 -0.0625,0.062 -0.01001,0.015 -0.022285,0.042 -0.03125,0.062 -0.03003,0.064 -0.087514,0.1105 -0.0625,0.1875 0.01001,0.031 0.0625,0.057 0.0625,0.094 0,0.044 -0.086749,0.077 -0.09375,0.125 -0.00495,0.035 0.020305,0.078 0.03125,0.125 0.00798,0.035 0.072751,0.071 0.09375,0.094 0.03498,0.039 0.061751,0.1067 0.09375,0.1562 0.062991,0.097 0.094265,0.2175 0.15625,0.3125 0.033,0.049 0.103,0.073 0.125,0.125 0.011,0.026 -0.01001,0.07 0,0.094 0.03597,0.081 0.200257,0.1788 0.28125,0.2187 0.038005,0.019 0.090009,0.011 0.125,0.031 0.05302,0.03 0.160506,0.1096 0.1875,0.1562 0.02398,0.042 0.01926,0.1519 0.03125,0.2188 0.015015,0.088 -0.00385,0.1549 0,0.25 0.00275,0.052 0.03125,0.073 0.03125,0.125 0,0.018 0.0011,0.075 0,0.094 -0.0011,0.062 0.00495,0.1245 0,0.1875 -0.00275,0.034 -0.0022,0.065 0,0.094 0.00275,0.031 0.02927,0.035 0.03125,0.062 0.0022,0.029 -0.034275,0.071 -0.03125,0.094 0.00699,0.063 0.050499,0.098 0.0625,0.1563 0.01001,0.046 0.037245,0.1637 0.03125,0.2187 -0.00385,0.029 -0.027235,0.061 -0.03125,0.094 -0.00275,0.026 0.00385,0.039 0,0.062 -0.00275,0.023 0.00594,0.043 0,0.062 -0.031846,-0.02 -0.062405,-0.041 -0.09375,-0.062 -0.2660017,-0.1798 -0.5237945,-0.3988 -0.75,-0.625 -0.030593,-0.031 -0.063954,-0.062 -0.09375,-0.094 -0.1805809,-0.1901 -0.3508625,-0.4083 -0.5,-0.625 -0.013513,-0.02 -0.018011,-0.043 -0.03125,-0.062 -0.1730464,-0.2593 -0.3146857,-0.5221 -0.4375,-0.8125 -0.00886,-0.021 -0.022673,-0.041 -0.03125,-0.062 -0.1053774,-0.259 -0.1889264,-0.534 -0.25,-0.8125 -0.011526,-0.053 -0.021392,-0.1031 -0.03125,-0.1562 -0.024762,-0.1336 -0.048581,-0.2692 -0.0625,-0.4063 C 3.01418,1044.6941 3,1044.5348 3,1044.3622 c 0,-0.2376 0.030436,-0.4587 0.0625,-0.6875 z M 5,1044.206 c 0.048015,-0.022 0.038995,0.056 0,0.062 -0.037015,0.01 -0.03597,-0.044 0,-0.062 z" + id="path26" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/locality.svg b/html/themes/breezy/svg/16/types/locality.svg new file mode 100644 index 0000000000000000000000000000000000000000..02b78bcba586cefa5ad0df1bdeab99a55c1d0912 --- /dev/null +++ b/html/themes/breezy/svg/16/types/locality.svg @@ -0,0 +1,132 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="locality.svg" + inkscape:export-filename="locality.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32.438524" + inkscape:cx="4.7665805" + inkscape:cy="9.429955" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" + d="M 8 2.0019531 L 2 8 L 2 8.0019531 L 2 9.4160156 L 2 13 L 2 14 L 14 14 L 14 13 L 14 9.4160156 L 14 8.0019531 L 14 8 L 13.998047 8 L 13 7 L 13 5 L 13 4 L 10 4 L 8 2.0019531 z M 8 3.4160156 L 13 8.4160156 L 13 13 L 9 13 L 9 10 L 7 10 L 7 13 L 3 13 L 3 8.4160156 L 8 3.4160156 z " + transform="translate(421.71429,531.79074)" + id="rect4139" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/organization.svg b/html/themes/breezy/svg/16/types/organization.svg new file mode 100644 index 0000000000000000000000000000000000000000..c10b7932e1a8e18e5d26add43b09805831bd0f60 --- /dev/null +++ b/html/themes/breezy/svg/16/types/organization.svg @@ -0,0 +1,133 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="organization.svg" + inkscape:export-filename="organization.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.9375" + inkscape:cx="6.9720977" + inkscape:cy="4.4163311" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 9,3 -7,3 0,3 5,4 7,-3 0,-3 z m 0,1.4355469 4,3.4359673 0,1.257392 L 7,11.564453 7,10 3.0585938,6.8476562 Z" + transform="translate(421.71429,531.79074)" + id="path4170" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/resource-group.svg b/html/themes/breezy/svg/16/types/resource-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..332de5470352971e990f8f8b5642600aca254775 --- /dev/null +++ b/html/themes/breezy/svg/16/types/resource-group.svg @@ -0,0 +1,147 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="resource-group.svg" + inkscape:export-filename="resource-group.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="17.192308" + inkscape:cx="-2.6386979" + inkscape:cy="8.5000296" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4170" + width="5.9999905" + height="5.9999905" + x="423.71429" + y="538.79071" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2ecc71;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4172" + width="6.0000043" + height="6.0000043" + x="429.71429" + y="539.79071" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1d99f3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4174" + width="6.0000296" + height="6.0000296" + x="426.71429" + y="533.79071" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/role.svg b/html/themes/breezy/svg/16/types/role.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e23123218771bc95dd0d692399995f80204da25 --- /dev/null +++ b/html/themes/breezy/svg/16/types/role.svg @@ -0,0 +1,141 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="role.svg" + inkscape:export-filename="role.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="24.313595" + inkscape:cx="-0.41039301" + inkscape:cy="8.5822881" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="fill:#da4453;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" + d="m 423.71429,533.79074 0,9 3,0 0,-6 3,0 0,-3 z" + id="path4174" + inkscape:connector-curvature="0" /> + <path + style="fill:#2ecc71;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" + d="m 423.71429,542.79074 3,0 0,-3 3,0 0,3 3,0 0,2.99997 -9,0 z" + id="path4176" + inkscape:connector-curvature="0" /> + <path + style="fill:#1d99f3;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" + d="m 426.71429,536.79074 9,0 0,3 -3,0 0,3 -3,0 0,-3 -3,0 z" + id="path4178" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/user-group.svg b/html/themes/breezy/svg/16/types/user-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..3993383d676283e632b56ca29c3c9d69c42cf1a0 --- /dev/null +++ b/html/themes/breezy/svg/16/types/user-group.svg @@ -0,0 +1,148 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="user-group.svg" + inkscape:export-filename="user-group.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="34.5228" + inkscape:cx="6.2251455" + inkscape:cy="8.5316114" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1578" + inkscape:window-height="963" + inkscape:window-x="292" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.5 4 A 2.5 2.5 0 0 0 3 6.5 A 2.5 2.5 0 0 0 5.5 9 A 2.5 2.5 0 0 0 8 6.5 A 2.5 2.5 0 0 0 5.5 4 z M 5.5 5 A 1.5 1.5 0 0 1 7 6.5 A 1.5 1.5 0 0 1 5.5 8 A 1.5 1.5 0 0 1 4 6.5 A 1.5 1.5 0 0 1 5.5 5 z " + transform="translate(421.71429,531.79074)" + id="path4221" /> + <path + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 11.5 2 A 2.5 2.5 0 0 0 9 4.5 A 2.5 2.5 0 0 0 11.5 7 A 2.5 2.5 0 0 0 14 4.5 A 2.5 2.5 0 0 0 11.5 2 z M 11.5 3 A 1.5 1.5 0 0 1 13 4.5 A 1.5 1.5 0 0 1 11.5 6 A 1.5 1.5 0 0 1 10 4.5 A 1.5 1.5 0 0 1 11.5 3 z " + transform="translate(421.71429,531.79074)" + id="path4221-8" /> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.5 10 A 3.4999979 4 0 0 0 2 14 L 3 14 L 8 14 L 9 14 A 3.4999979 4 0 0 0 5.5 10 z M 5.5 11 A 2.5 3 0 0 1 7.8535156 13 L 3.1464844 13 A 2.5 3 0 0 1 5.5 11 z " + transform="translate(421.71429,531.79074)" + id="path4276" + class="ColorScheme-Text" /> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 11.646484 8 A 3.4999979 4 0 0 0 8.4921875 10.273438 A 4.5 5 0 0 1 9.6171875 12 L 14.146484 12 L 15.146484 12 A 3.4999979 4 0 0 0 11.646484 8 z M 11.646484 9 A 2.5 3 0 0 1 14 11 L 9.2929688 11 A 2.5 3 0 0 1 11.646484 9 z " + transform="translate(421.71429,531.79074)" + id="path4276-1" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/16/types/user.svg b/html/themes/breezy/svg/16/types/user.svg new file mode 100644 index 0000000000000000000000000000000000000000..91de6cc53d6e0604e2c57c9d170c00bc4e548871 --- /dev/null +++ b/html/themes/breezy/svg/16/types/user.svg @@ -0,0 +1,156 @@ +<?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" + id="svg3049" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="user.svg" + inkscape:export-filename="user.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + viewBox="0 0 16 16"> + <defs + id="defs3051"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <clipPath + id="clipPath4160" + clipPathUnits="userSpaceOnUse"> + <rect + y="1023.3622" + x="7" + height="1" + width="1" + id="rect4162" + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + class="ColorScheme-Text" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4160-5"> + <rect + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + id="rect4162-7" + width="1" + height="1" + x="7" + y="1023.3622" + class="ColorScheme-Text" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="48.822612" + inkscape:cx="-2.6850472" + inkscape:cy="8.946937" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4085" /> + <sodipodi:guide + position="2.0000044,14.00003" + orientation="12,0" + id="guide4075" /> + <sodipodi:guide + position="2.0000044,2.0000296" + orientation="0,12" + id="guide4077" /> + <sodipodi:guide + position="14.000004,2.0000296" + orientation="-12,0" + id="guide4079" /> + <sodipodi:guide + position="14.000004,14.00003" + orientation="0,-12" + id="guide4081" /> + </sodipodi:namedview> + <metadata + id="metadata3054"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-421.71429,-531.79074)"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none;stroke-opacity:1" + d="m 429.71429,533.79074 a 3,3 0 0 0 -3,3 3,3 0 0 0 3,3 3,3 0 0 0 3,-3 3,3 0 0 0 -3,-3 z m 0,1 a 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 z m 0,6 a 5,4.5 0 0 0 -5,4.5 5,4.5 0 0 0 0.0332,0.5 h 0.9668 0.0449 7.91016 0.0449 0.96289 a 5,4.5 0 0 0 0.0371,-0.5 5,4.5 0 0 0 -5,-4.5 z m 0,1 a 4,3.5 0 0 1 3.95508,3 h -7.91016 a 4,3.5 0 0 1 3.95508,-3 z" + id="path16" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/22/actions/application-exit.svg b/html/themes/breezy/svg/22/actions/application-exit.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b2c64787a01f4edfbf1d7c1f7a919ff1d2c51e0 --- /dev/null +++ b/html/themes/breezy/svg/22/actions/application-exit.svg @@ -0,0 +1,145 @@ +<?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="22" + height="22" + id="svg3109" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="application-exit.svg" + inkscape:export-filename="application-exit.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3111"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32.137491" + inkscape:cx="-1.8956898" + inkscape:cy="9.2001395" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false"> + <inkscape:grid + type="xygrid" + id="grid4108" + originx="-1.0000233px" + originy="-1.0000029px" /> + <sodipodi:guide + position="2,20" + orientation="18,0" + id="guide4114" /> + <sodipodi:guide + position="2,2" + orientation="0,18" + id="guide4116" /> + <sodipodi:guide + position="20,2" + orientation="-18,0" + id="guide4118" /> + <sodipodi:guide + position="20,20" + orientation="0,-18" + id="guide4120" /> + <sodipodi:guide + position="3,19" + orientation="16,0" + id="guide4122" /> + <sodipodi:guide + position="3,3" + orientation="0,16" + id="guide4124" /> + <sodipodi:guide + position="19,3" + orientation="-16,0" + id="guide4126" /> + <sodipodi:guide + position="19,19" + orientation="0,-16" + id="guide4128" /> + </sodipodi:namedview> + <metadata + id="metadata3114"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-534.14288,-579.07648)"> + <path + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none" + d="M 3 3 L 3 7 L 3 19 L 4 19 L 18 19 L 19 19 L 19 18 L 19 6 L 19 3 L 4 3 L 3 3 z M 4 7 L 18 7 L 18 18 L 4 18 L 4 7 z M 8 11 L 8 13 L 14 13 L 14 11 L 8 11 z " + transform="translate(534.14288,579.07648)" + id="rect4141" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/22/actions/go-home.svg b/html/themes/breezy/svg/22/actions/go-home.svg new file mode 100644 index 0000000000000000000000000000000000000000..a09b7368a0764fd88ddd3c5e11e5bec0152ec201 --- /dev/null +++ b/html/themes/breezy/svg/22/actions/go-home.svg @@ -0,0 +1,173 @@ +<?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="22" + height="22" + id="svg4105" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="go-home.svg" + inkscape:export-filename="go-home.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4107"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="7.410648" + inkscape:cy="7.9971863" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="true" + inkscape:showpageshadow="false"> + <inkscape:grid + type="xygrid" + id="grid4113" /> + <sodipodi:guide + position="2,20.000017" + orientation="18,0" + id="guide4119" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,17.999969" + id="guide4121" /> + <sodipodi:guide + position="19.999969,2.0000174" + orientation="-18,0" + id="guide4123" /> + <sodipodi:guide + position="19.999969,20.000017" + orientation="0,-17.999969" + id="guide4125" /> + <sodipodi:guide + position="3,19.000017" + orientation="16,0" + id="guide4127" /> + <sodipodi:guide + position="3,3.0000174" + orientation="0,15.999969" + id="guide4129" /> + <sodipodi:guide + position="18.999969,3.0000174" + orientation="-16,0" + id="guide4131" /> + <sodipodi:guide + position="18.999969,19.000017" + orientation="0,-15.999969" + id="guide4133" /> + <sodipodi:guide + position="3,19.000017" + orientation="9,0" + id="guide4182" /> + <sodipodi:guide + position="3,10.000017" + orientation="0,16" + id="guide4184" /> + <sodipodi:guide + position="19,10.000017" + orientation="-9,0" + id="guide4186" /> + <sodipodi:guide + position="19,19.000017" + orientation="0,-16" + id="guide4188" /> + <sodipodi:guide + position="11,17.5861" + orientation="-0.7063,-0.707399" + id="guide4258" /> + <sodipodi:guide + position="10.292601,18.2924" + orientation="-0.7076,0.707399" + id="guide4260" /> + <sodipodi:guide + position="11,19" + orientation="0.7076,0.707552" + id="guide4262" /> + <sodipodi:guide + position="11.707552,18.2924" + orientation="0.7063,-0.707552" + id="guide4264" /> + </sodipodi:namedview> + <metadata + id="metadata4110"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1030.3622)"> + <path + style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" + d="M 11 3 L 10.292969 3.7070312 L 3 11 L 3.7070312 11.707031 L 4 11.414062 L 4 19 L 5 19 L 10 19 L 13 19 L 18 19 L 18 18 L 18 11.414062 L 18.292969 11.707031 L 19 11 L 16 8 L 16 5 L 13 5 L 11.707031 3.7070312 L 11 3 z M 11 4.4140625 L 17 10.414062 L 17 18 L 13 18 L 13 13 L 10 13 L 9 13 L 9 18 L 5 18 L 5 10.414062 L 11 4.4140625 z " + transform="translate(0,1030.3622)" + id="rect4164" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/22/status/dialog-error.svg b/html/themes/breezy/svg/22/status/dialog-error.svg new file mode 100644 index 0000000000000000000000000000000000000000..724e7559717c19f9d07048cc330eb00d85a17f58 --- /dev/null +++ b/html/themes/breezy/svg/22/status/dialog-error.svg @@ -0,0 +1,159 @@ +<?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="22" + height="22" + id="svg3869" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-error.svg" + inkscape:export-filename="dialog-error.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3871"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.159091" + inkscape:cx="11" + inkscape:cy="6.720236" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4132" /> + <sodipodi:guide + position="2,20.000017" + orientation="18,0" + id="guide4138" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,18" + id="guide4140" /> + <sodipodi:guide + position="20,2.0000174" + orientation="-18,0" + id="guide4142" /> + <sodipodi:guide + position="20,20.000017" + orientation="0,-18" + id="guide4144" /> + <sodipodi:guide + position="3,19.000017" + orientation="16,0" + id="guide4146" /> + <sodipodi:guide + position="3,3.0000174" + orientation="0,16" + id="guide4148" /> + <sodipodi:guide + position="19,3.0000174" + orientation="-16,0" + id="guide4150" /> + <sodipodi:guide + position="19,19.000017" + orientation="0,-16" + id="guide4152" /> + </sodipodi:namedview> + <metadata + id="metadata3874"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-326,-534.3622)"> + <g + transform="matrix(2,0,0,2,315,-1537.3622)" + id="layer1-6" + inkscape:label="Capa 1"> + <rect + ry="1.0000348" + y="1037.3622" + x="7" + height="8" + width="8" + id="rect4153" + style="opacity:1;fill:#da4453;fill-opacity:1;stroke:none" /> + <path + transform="translate(7,1037.3622)" + id="path4141" + d="M 2,1 1,2 3,4 1,6 2,7 4,5 6,7 7,6 5,4 7,2 6,1 4,3 2,1 Z" + style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/22/status/dialog-information.svg b/html/themes/breezy/svg/22/status/dialog-information.svg new file mode 100644 index 0000000000000000000000000000000000000000..e67e6cc728bd9877aeffa05c5137adc9a9b64ff9 --- /dev/null +++ b/html/themes/breezy/svg/22/status/dialog-information.svg @@ -0,0 +1,164 @@ +<?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="22" + height="22" + id="svg3869" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-information.svg" + inkscape:export-filename="dialog-information.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3871"> + <style + type="text/css" + id="current-color-scheme"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="31.999999" + inkscape:cx="-0.42399229" + inkscape:cy="12.023537" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + inkscape:snap-bbox="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4132" /> + <sodipodi:guide + position="2,20.000017" + orientation="18,0" + id="guide4138" /> + <sodipodi:guide + position="2,2.0000174" + orientation="0,18" + id="guide4140" /> + <sodipodi:guide + position="20,2.0000174" + orientation="-18,0" + id="guide4142" /> + <sodipodi:guide + position="20,20.000017" + orientation="0,-18" + id="guide4144" /> + <sodipodi:guide + position="3,19.000017" + orientation="16,0" + id="guide4146" /> + <sodipodi:guide + position="3,3.0000174" + orientation="0,16" + id="guide4148" /> + <sodipodi:guide + position="19,3.0000174" + orientation="-16,0" + id="guide4150" /> + <sodipodi:guide + position="19,19.000017" + orientation="0,-16" + id="guide4152" /> + </sodipodi:namedview> + <metadata + id="metadata3874"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-326,-534.3622)"> + <path + style="fill:currentColor;fill-opacity:1;stroke:none" + d="m 329,537.36218 0,12.00002 3.00002,4 -2e-5,-3 2e-5,-1 12.99998,0 0,-12 z m 1,1.00002 14,0 2e-5,10 -14,0 z" + id="path4147-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4143" + width="2" + height="6" + x="336" + y="541.36218" + ry="0" + class="ColorScheme-Text" /> + <rect + style="fill:currentColor;fill-opacity:1;stroke:none" + id="rect4145" + width="2" + height="1" + x="336" + y="539.36218" + class="ColorScheme-Text" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/32/status/dialog-error.svg b/html/themes/breezy/svg/32/status/dialog-error.svg new file mode 100644 index 0000000000000000000000000000000000000000..6351aecbd4b37a38a605accaac1df2fdc1efbb20 --- /dev/null +++ b/html/themes/breezy/svg/32/status/dialog-error.svg @@ -0,0 +1,213 @@ +<?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="32" + height="32" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-error.svg" + viewBox="0 0 32 32" + inkscape:export-filename="dialog-error.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4344" + id="linearGradient4179" + x1="768.85718" + y1="201.93361" + x2="768.85718" + y2="177.93361" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,0.5,16.142844,433.3312)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4344"> + <stop + style="stop-color:#ed868d;stop-opacity:1" + offset="0" + id="stop4346" /> + <stop + style="stop-color:#fbe6e8;stop-opacity:1" + offset="1" + id="stop4348" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4400" + id="linearGradient4394" + x1="19.999998" + y1="19.999998" + x2="43.999996" + y2="44" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,0.5,384.57143,512.298)" /> + <linearGradient + id="linearGradient4400" + inkscape:collect="always"> + <stop + id="stop4402" + offset="0" + style="stop-color:#020303;stop-opacity:1" /> + <stop + id="stop4404" + offset="1" + style="stop-color:#424649;stop-opacity:0" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(-0.70270265,0,0,0.70270265,418.49035,513.87909)" + inkscape:collect="always" + xlink:href="#linearGradient4435" + id="linearGradient4416" + x1="26.21154" + y1="43.999989" + x2="26.21154" + y2="6.9999886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4435" + inkscape:collect="always"> + <stop + id="stop4437" + offset="0" + style="stop-color:#c61423;stop-opacity:1" /> + <stop + id="stop4439" + offset="1" + style="stop-color:#dc2b41;stop-opacity:1" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="15.999999" + inkscape:cx="14.74278" + inkscape:cy="15.978296" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:object-nodes="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,32.000026" + orientation="32,0" + id="guide4272" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,31.999969" + id="guide4274" /> + <sodipodi:guide + position="31.999981,2.6367188e-05" + orientation="-32,0" + id="guide4276" /> + <sodipodi:guide + position="2.0000117,29" + orientation="0,-31.999969" + id="guide4278" /> + <sodipodi:guide + position="2.0000117,30.000026" + orientation="28,0" + id="guide4280" /> + <sodipodi:guide + position="31,3" + orientation="0,28" + id="guide4282" /> + <sodipodi:guide + position="30.000012,2.0000264" + orientation="-28,0" + id="guide4284" /> + <sodipodi:guide + position="31,29" + orientation="0,-28" + id="guide4286" /> + <sodipodi:guide + position="9.0000117,23.000026" + orientation="14,0" + id="guide4288" /> + <sodipodi:guide + position="9.0000117,9.0000264" + orientation="0,14" + id="guide4290" /> + <sodipodi:guide + position="23.000012,9.0000264" + orientation="-14,0" + id="guide4292" /> + <sodipodi:guide + position="23.000012,23.000026" + orientation="0,-14" + id="guide4294" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-515.798)"> + <path + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4416);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 413.57143,518.798 0,18.97297 -12.64864,0 -7.35136,7.02703 0,-7.02703 -6,0 0,-18.97297 z" + id="path4445" + sodipodi:nodetypes="cccccccc" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.2;fill:url(#linearGradient4394);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 406.57143,523.00503 -11.23438,11.30859 4.52149,4.52149 1.06446,-1.06445 8.5,0 a 13,13 0 0 0 4.04003,-7.87403 l -6.8916,-6.8916 z" + id="path4389" /> + <path + style="fill:url(#linearGradient4179);fill-opacity:1;stroke:none" + d="m 405.51081,521.94441 1.41421,1.41421 -4.93938,4.93938 4.93938,4.93938 -1.41421,1.41421 -4.93938,-4.93938 -4.93938,4.93938 -1.41421,-1.41421 4.93938,-4.93938 -4.93938,-4.93938 1.41421,-1.41421 4.93938,4.93938 z" + id="rect4168" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:#aa111e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 387.57143,537.27066 0,0.5 6,0 0,-0.5 z m 13.35157,0 -7.35157,7.02734 0,0.5 7.35157,-7.02734 12.64843,0 0,-0.5 z" + id="path4256" + sodipodi:nodetypes="cccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/32/status/dialog-information.svg b/html/themes/breezy/svg/32/status/dialog-information.svg new file mode 100644 index 0000000000000000000000000000000000000000..3bc59f0cd1b84902f475962064f3e9919fbf83bf --- /dev/null +++ b/html/themes/breezy/svg/32/status/dialog-information.svg @@ -0,0 +1,220 @@ +<?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="32" + height="32" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-information.svg" + viewBox="0 0 32 32" + inkscape:export-filename="dialog-information.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + gradientTransform="matrix(-0.70270265,0,0,0.70270265,418.49035,513.87909)" + inkscape:collect="always" + xlink:href="#linearGradient4143" + id="linearGradient4416" + x1="26.21154" + y1="43.999989" + x2="26.21154" + y2="6.9999886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4143"> + <stop + style="stop-color:#197cf1;stop-opacity:1" + offset="0" + id="stop4145" /> + <stop + style="stop-color:#20bcfa;stop-opacity:1" + offset="1" + id="stop4147" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4290"> + <stop + style="stop-color:#7cbaf8;stop-opacity:1" + offset="0" + id="stop4292" /> + <stop + style="stop-color:#f4fcff;stop-opacity:1" + offset="1" + id="stop4294" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(2,0,0,2,735.85719,152.93361)" + inkscape:collect="always" + xlink:href="#linearGradient4290" + id="linearGradient4144" + x1="16" + y1="29.999973" + x2="16" + y2="2" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4227" + inkscape:collect="always"> + <stop + id="stop4229" + offset="0" + style="stop-color:#292c2f;stop-opacity:1" /> + <stop + id="stop4231" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(2,0,0,2,-0.99999,-5)" + inkscape:collect="always" + xlink:href="#linearGradient4227" + id="linearGradient4191" + x1="9.0000114" + y1="9" + x2="23.000042" + y2="23" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627416" + inkscape:cx="14.527808" + inkscape:cy="15.233875" + inkscape:document-units="px" + inkscape:current-layer="layer1-7" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:object-nodes="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,32.000026" + orientation="32,0" + id="guide4272" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,31.999969" + id="guide4274" /> + <sodipodi:guide + position="31.999981,2.6367188e-05" + orientation="-32,0" + id="guide4276" /> + <sodipodi:guide + position="2.0000117,29" + orientation="0,-31.999969" + id="guide4278" /> + <sodipodi:guide + position="2.0000117,30.000026" + orientation="28,0" + id="guide4280" /> + <sodipodi:guide + position="31,3" + orientation="0,28" + id="guide4282" /> + <sodipodi:guide + position="30.000012,2.0000264" + orientation="-28,0" + id="guide4284" /> + <sodipodi:guide + position="31,29" + orientation="0,-28" + id="guide4286" /> + <sodipodi:guide + position="9.0000117,23.000026" + orientation="14,0" + id="guide4288" /> + <sodipodi:guide + position="9.0000117,9.0000264" + orientation="0,14" + id="guide4290" /> + <sodipodi:guide + position="23.000012,9.0000264" + orientation="-14,0" + id="guide4292" /> + <sodipodi:guide + position="23.000012,23.000026" + orientation="0,-14" + id="guide4294" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-515.798)"> + <path + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4416);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 413.57143,518.798 0,18.97297 -12.64864,0 -7.35136,7.02703 0,-7.02703 -6,0 0,-18.97297 z" + id="path4445" + sodipodi:nodetypes="cccccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:#0c69cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 387.57143,537.27066 0,0.5 6,0 0,-0.5 z m 13.35157,0 -7.35157,7.02734 0,0.5 7.35157,-7.02734 12.64843,0 0,-0.5 z" + id="path4256" + sodipodi:nodetypes="cccccccccccc" /> + <g + transform="matrix(0.5,0,0,0.5,16.14284,436.83119)" + id="layer1-7" + inkscape:label="Layer 1"> + <path + id="path4184" + transform="translate(736.85718,157.93361)" + d="m 34,12.00001 -6,4 5,4.99999 -5,15.00001 7.945312,7.945302 22.054688,0 0,-7.945302 z" + style="opacity:0.2;fill:url(#linearGradient4191);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="rect4133" + d="m 764.85718,169.93362 0,4 6,0 0,-4 z m 0,8 0,16 6,0 0,-16 z" + style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:none" /> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/32/status/dialog-warning.svg b/html/themes/breezy/svg/32/status/dialog-warning.svg new file mode 100644 index 0000000000000000000000000000000000000000..51686bfc9374f74de08bc240e59e08c5a8a73af3 --- /dev/null +++ b/html/themes/breezy/svg/32/status/dialog-warning.svg @@ -0,0 +1,240 @@ +<?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="32" + height="32" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-warning.svg" + viewBox="0 0 32 32" + inkscape:export-filename="dialog-warning.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + gradientTransform="matrix(-0.70270265,0,0,0.70270265,418.49035,513.87909)" + inkscape:collect="always" + xlink:href="#linearGradient4143-6" + id="linearGradient4416" + x1="26.21154" + y1="43.999989" + x2="26.21154" + y2="6.9999886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4227" + inkscape:collect="always"> + <stop + id="stop4229" + offset="0" + style="stop-color:#292c2f;stop-opacity:1" /> + <stop + id="stop4231" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4155" + inkscape:collect="always"> + <stop + id="stop4157" + offset="0" + style="stop-color:#fcd994;stop-opacity:1" /> + <stop + id="stop4159" + offset="1" + style="stop-color:#fff6e1;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4143-6"> + <stop + style="stop-color:#faae2a;stop-opacity:1" + offset="0" + id="stop4145-8" /> + <stop + style="stop-color:#ffc35a;stop-opacity:1" + offset="1" + id="stop4147-0" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="41" + x2="45.000004" + y1="-14.000004" + x1="-10" + id="linearGradient4191-7" + xlink:href="#linearGradient4227" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4155" + id="linearGradient4240" + x1="808.85718" + y1="151.93361" + x2="808.85718" + y2="205.93361" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-40,0)" /> + <linearGradient + gradientTransform="matrix(2,0,0,-2,736.85718,210.93361)" + inkscape:collect="always" + xlink:href="#linearGradient4155" + id="linearGradient4144-6-7" + x1="16" + y1="29.999973" + x2="16" + y2="2" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="7.9999997" + inkscape:cx="6.372853" + inkscape:cy="13.951436" + inkscape:document-units="px" + inkscape:current-layer="layer1-6" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:object-nodes="true" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,32.000026" + orientation="32,0" + id="guide4272" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,31.999969" + id="guide4274" /> + <sodipodi:guide + position="31.999981,2.6367188e-05" + orientation="-32,0" + id="guide4276" /> + <sodipodi:guide + position="18,27" + orientation="0,-31.999969" + id="guide4278" /> + <sodipodi:guide + position="2.0000117,30.000026" + orientation="28,0" + id="guide4280" /> + <sodipodi:guide + position="31,3" + orientation="0,28" + id="guide4282" /> + <sodipodi:guide + position="30.000012,2.0000264" + orientation="-28,0" + id="guide4284" /> + <sodipodi:guide + position="31,29" + orientation="0,-28" + id="guide4286" /> + <sodipodi:guide + position="9.0000117,23.000026" + orientation="14,0" + id="guide4288" /> + <sodipodi:guide + position="9.0000117,9.0000264" + orientation="0,14" + id="guide4290" /> + <sodipodi:guide + position="23.000012,9.0000264" + orientation="-14,0" + id="guide4292" /> + <sodipodi:guide + position="23.000012,23.000026" + orientation="0,-14" + id="guide4294" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-515.798)"> + <path + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4416);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 413.57143,518.798 0,18.97297 -12.64864,0 -7.35136,7.02703 0,-7.02703 -6,0 0,-18.97297 z" + id="path4445" + sodipodi:nodetypes="cccccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:#e59305;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 387.57143,537.27066 0,0.5 6,0 0,-0.5 z m 13.35157,0 -7.35157,7.02734 0,0.5 7.35157,-7.02734 12.64843,0 0,-0.5 z" + id="path4256" + sodipodi:nodetypes="cccccccccccc" /> + <g + transform="matrix(0.5,0,0,0.5,16.14284,436.83119)" + id="layer1-7" + inkscape:label="Layer 1"> + <g + transform="translate(0,10e-6)" + id="layer1-6" + inkscape:label="Layer 1"> + <path + id="path4186" + transform="translate(736.85718,157.93361)" + d="m 32,8 0,2 16,26 0,2 -34,2 11.248699,11.116116 7.454426,-7.170804 25.296875,0 L 58,34 Z" + style="opacity:0.2;fill:url(#linearGradient4191-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + style="fill:url(#linearGradient4240);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 768.85718,165.93361 -18,32 36,0 z m 0,4 14,26 -28,0 z" + id="path4214" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="cccccccccc" + inkscape:connector-curvature="0" + id="rect4133-1-3" + d="m 766.85718,177.93361 0,10 4,0 0,-10 z m 0,12 0,4 4,0 0,-4 z" + style="opacity:1;fill:url(#linearGradient4144-6-7);fill-opacity:1;stroke:none" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/32/status/object-locked.svg b/html/themes/breezy/svg/32/status/object-locked.svg new file mode 100644 index 0000000000000000000000000000000000000000..075c0a5297fecc30f28668a943062640214f3691 --- /dev/null +++ b/html/themes/breezy/svg/32/status/object-locked.svg @@ -0,0 +1,165 @@ +<?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="32" + height="32" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + viewBox="0 0 32 32" + sodipodi:docname="object-locked.svg" + inkscape:export-filename="object-locked.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4162"> + <stop + style="stop-color:#c0370c;stop-opacity:0.373" + offset="0" + id="stop4164" /> + <stop + style="stop-color:#c0370c;stop-opacity:0;" + offset="1" + id="stop4166" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4144"> + <stop + style="stop-color:#fbd0c3;stop-opacity:1" + offset="0" + id="stop4146" /> + <stop + style="stop-color:#fef4f2;stop-opacity:1" + offset="1" + id="stop4148" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4136"> + <stop + style="stop-color:#f47750;stop-opacity:1;" + offset="0" + id="stop4138" /> + <stop + style="stop-color:#f69070;stop-opacity:1" + offset="1" + id="stop4140" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4136" + id="linearGradient4142" + x1="30" + y1="1042.3622" + x2="30" + y2="1016.3622" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4144" + id="linearGradient4150" + x1="25" + y1="1038.3622" + x2="25" + y2="1020.3622" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4162" + id="linearGradient4168" + x1="17" + y1="1024.3622" + x2="34" + y2="1041.3622" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-7,-1013.3622)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="16.39198" + inkscape:cy="3.1701492" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:showpageshadow="false" + borderlayer="true" + units="px" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + showguides="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0"> + <inkscape:grid + type="xygrid" + id="grid4062" + originx="-7" + originy="-7.0000174" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-7,-1013.3622)"> + <rect + ry="3.250113" + y="1016.3622" + x="10" + height="26" + width="26" + id="rect4153" + style="opacity:1;fill:url(#linearGradient4142);fill-opacity:1;stroke:none" /> + <path + style="opacity:1;fill:url(#linearGradient4168);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 19.625 8.25 L 12 11 L 12 21 L 7 25 L 11 29 L 25.75 29 C 27.550563 29 29 27.550563 29 25.75 L 29 20 L 29 17.625 L 19.625 8.25 z " + transform="translate(7,1013.3622)" + id="path4152" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:url(#linearGradient4150);fill-opacity:1;stroke-linecap:round" + d="m 20,1026.3622 c 0,-1.6569 1.343145,-3 3,-3 1.656855,0 3,1.3431 3,3 l 0,3 -6,0 z m -2.993376,3 -3.006624,0 0,9 18,0 0,-9 -3,0 0,-3 c 2.9e-5,-3.3138 -2.686272,-6 -6,-6 -3.313729,0 -6.000028,2.6862 -6,6 z" + id="path4467" + sodipodi:nodetypes="csscccccccccsscc" /> + <path + style="opacity:1;fill:#d64b20;fill-opacity:1;stroke:none" + d="M 3 25.125 L 3 25.75 C 3 27.5505 4.449437 29 6.25 29 L 25.75 29 C 27.550563 29 29 27.5505 29 25.75 L 29 25.125 C 29 26.925563 27.550563 28.375 25.75 28.375 L 6.25 28.375 C 4.4494374 28.375 3 26.925563 3 25.125 z " + transform="translate(7,1013.3622)" + id="rect4153-2" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/actions/view-task.svg b/html/themes/breezy/svg/48/actions/view-task.svg new file mode 100644 index 0000000000000000000000000000000000000000..9f196e2e48c537f9d1fe13dfc6f3dcac7823b066 --- /dev/null +++ b/html/themes/breezy/svg/48/actions/view-task.svg @@ -0,0 +1,361 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="view-task.svg" + inkscape:export-filename="view-task.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4205"> + <stop + style="stop-color:#29b966;stop-opacity:1" + offset="0" + id="stop4207" /> + <stop + style="stop-color:#2ecc71;stop-opacity:1" + offset="1" + id="stop4209" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4303"> + <stop + style="stop-color:#977a5c;stop-opacity:1" + offset="0" + id="stop4305" /> + <stop + style="stop-color:#9d8062;stop-opacity:1" + offset="1" + id="stop4307" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4273"> + <stop + style="stop-color:#f2f2f2;stop-opacity:1" + offset="0" + id="stop4275" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop4277" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#bd8d48;stop-opacity:1" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#e8b971;stop-opacity:1" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="linearGradient4158" + x1="409.57144" + y1="543.79797" + x2="409.57144" + y2="503.798" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1250015,0,0,0.9250002,-51.071966,40.784727)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4273" + id="linearGradient4279" + x1="408.57144" + y1="541.79797" + x2="408.57144" + y2="505.798" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.91666686,0,45.149736)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4303" + id="linearGradient4309" + x1="409.57144" + y1="542.79797" + x2="409.57144" + y2="504.798" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.92105349,0,42.851946)" /> + <linearGradient + id="linearGradient4410" + inkscape:collect="always"> + <stop + id="stop4412" + offset="0" + style="stop-color:#383e51;stop-opacity:1" /> + <stop + id="stop4414" + offset="1" + style="stop-color:#655c6f;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4410" + id="linearGradient4187" + x1="391.57144" + y1="504.798" + x2="418.57144" + y2="531.79797" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4410" + id="linearGradient4201" + x1="0.80000001" + y1="1036.3623" + x2="14.399896" + y2="1049.9622" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.25,0,0,1.25,402.57143,-775.65475)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4205" + id="linearGradient4211" + x1="410.57144" + y1="537.79797" + x2="410.57144" + y2="521.79797" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="14.02165" + inkscape:cy="13.300835" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <rect + style="opacity:1;fill:url(#linearGradient4158);fill-opacity:1;stroke:none" + id="rect4139" + width="35.999992" + height="37.000015" + x="390.57144" + y="506.79816" + ry="0" /> + <rect + style="opacity:0.5;fill:url(#linearGradient4309);fill-opacity:1;stroke:none" + id="rect4250" + width="34" + height="35" + x="391.57144" + y="507.798" /> + <rect + style="opacity:1;fill:url(#linearGradient4279);fill-opacity:1;stroke:none" + id="rect4242" + width="32" + height="32.999985" + x="392.57144" + y="508.798" /> + <path + style="opacity:1;fill:#afc0c6;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 20 4 L 18 6 L 11 6 L 11 10 L 37 10 L 37 6 L 30 6 L 28 4 L 20 4 z M 24 5 C 24.554 5 25 5.446 25 6 C 25 6.554 24.554 7 24 7 C 23.446 7 23 6.554 23 6 C 23 5.446 23.446 5 24 5 z " + transform="translate(384.57143,499.798)" + id="rect4231" /> + <rect + style="opacity:1;fill:#96aab5;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4249" + width="26" + height="1" + x="395.57144" + y="508.798" /> + <rect + style="opacity:1;fill:#d1dbdf;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4254" + width="17.999989" + height="1.0000263" + x="395.57144" + y="512.79797" /> + <rect + y="516.79797" + x="395.57144" + height="1.0000263" + width="7.9999886" + id="rect4256" + style="opacity:1;fill:#d1dbdf;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#d1dbdf;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4258" + width="17.999989" + height="1.0000263" + x="395.57144" + y="520.79797" /> + <rect + y="524.79797" + x="395.57144" + height="1.0000263" + width="3.9999883" + id="rect4260" + style="opacity:1;fill:#d1dbdf;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#d1dbdf;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4262" + width="6.0667295" + height="0.99997365" + x="396.58792" + y="536.79822" /> + <rect + style="opacity:1;fill:#aa7f41;fill-opacity:1;stroke:none" + id="rect4171" + width="35.999992" + height="0.9999736" + x="390.57144" + y="542.79797" /> + <path + style="fill:url(#linearGradient4187);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.2" + d="m 421.57143,509.798 5,5 0,28.99997 -7,0 7,3e-5 0,-4 0,1 -31,-31 z" + id="path4179" + inkscape:connector-curvature="0" /> + <rect + style="opacity:1;fill:#2d2110;fill-opacity:0.31372549;stroke:none" + id="rect4244" + width="32.000031" + height="1.9999737" + x="392.57141" + y="539.79773" /> + <rect + y="540.79773" + x="392.57141" + height="0.99997365" + width="32.000031" + id="rect4301" + style="opacity:1;fill:#2d2110;fill-opacity:0.31372549;stroke:none" /> + <path + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" + id="path4193" + d="m 422.57143,521.798 2,2 0,18 -13,0 -4,-4 -4,-13 6,6 z" + style="opacity:0.2;fill:url(#linearGradient4201);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient4211);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 419.57143,521.798 3,0 -15,16 -5,-13 1.25,0 3.75,6 z" + id="path4167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/devices/computer.svg b/html/themes/breezy/svg/48/devices/computer.svg new file mode 100644 index 0000000000000000000000000000000000000000..178ea36212d2d1e274bc1d38aa3d32f9be976d97 --- /dev/null +++ b/html/themes/breezy/svg/48/devices/computer.svg @@ -0,0 +1,391 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="computer.svg" + inkscape:export-filename="computer.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + id="linearGradient4159" + inkscape:collect="always"> + <stop + id="stop4161" + offset="0" + style="stop-color:#2a2c2f;stop-opacity:1" /> + <stop + id="stop4163" + offset="1" + style="stop-color:#424649;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4159" + id="linearGradient4250" + x1="409.57144" + y1="536.79797" + x2="409.57144" + y2="503.798" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4159" + id="linearGradient4272" + x1="408.57144" + y1="547.79797" + x2="408.57144" + y2="536.79797" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-384.57143,-499.798)" /> + <linearGradient + id="linearGradient4228" + inkscape:collect="always"> + <stop + id="stop4230" + offset="0" + style="stop-color:#32a9e9;stop-opacity:1" /> + <stop + id="stop4232" + offset="1" + style="stop-color:#b4e0f7;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.66666667,0,0,0.66666667,128.19048,182.59933)" + gradientUnits="userSpaceOnUse" + y2="503.798" + x2="409.57144" + y1="536.79797" + x1="409.57144" + id="linearGradient4250-3" + xlink:href="#linearGradient4159" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(0.66666667,0,0,0.66666667,128.19048,182.59933)" + gradientUnits="userSpaceOnUse" + y2="536.79797" + x2="408.57144" + y1="547.79797" + x1="408.57144" + id="linearGradient4272-5" + xlink:href="#linearGradient4159" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="539.79797" + x2="401.57144" + y1="519.79797" + x1="401.57144" + id="linearGradient4234" + xlink:href="#linearGradient4228" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4228" + id="linearGradient4299" + x1="409.57144" + y1="506.798" + x2="409.57144" + y2="535.79797" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.490485" + inkscape:cx="25.309693" + inkscape:cy="17.655704" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="-2.5000018e-07,1" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <path + style="opacity:1;fill:url(#linearGradient4272);fill-opacity:1.0;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + d="m 18,37 0,7 0,2 0,2 12,0 0,-2 0,-2 0,-7 z" + id="rect4254" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" + transform="translate(384.57143,499.798)" /> + <rect + style="opacity:1;fill:url(#linearGradient4250);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4173" + width="48" + height="35.999996" + x="384.57144" + y="503.798" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4291" + width="42.000042" + height="28.999973" + x="387.57144" + y="506.798" /> + <rect + style="opacity:1;fill:#2a2c2f;fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" + id="rect4295" + width="23.999989" + height="3" + x="396.57144" + y="544.79797" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:0.78431373;stroke:none" + id="rect4267" + width="41.999989" + height="4.0000262" + x="387.57144" + y="531.79797" /> + <circle + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" + id="path4166" + cx="426.57144" + cy="533.79791" + r="1" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" + d="m 389.57143,532.79794 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,-1 -1,0 z" + id="rect4183" /> + <rect + style="fill:#ffffff;fill-opacity:0.78431373;stroke:none" + id="rect3432" + width="18.999958" + height="16.14996" + x="388.57147" + y="507.798" /> + <path + style="opacity:1;fill:#3580ca;fill-opacity:1;stroke:none" + d="m 389.57143,508.798 0,4 4,0 0,-3 -1,0 -1,-1 z" + id="rect4160" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="opacity:1;fill:#ff9955;fill-opacity:1;stroke:none" + d="m 396.57143,508.798 0,5 4,0 0,-3 -2,-2 z" + id="rect4235" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 398.57144,508.79797 2,2 -2,0 z" + id="path4237" + inkscape:connector-curvature="0" /> + <path + style="fill:#7aabdc;fill-opacity:1;stroke:none" + d="m 389.57144,509.798 4.99999,0 0,4 -4.99999,0 z" + id="rect4272" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path4275" + d="m 402.57143,508.798 0,5 4,0 0,-3 -2,-2 z" + style="opacity:1;fill:#71c837;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path4277" + d="m 404.57144,508.79797 2,2 -2,0 z" + style="fill:#447821;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(53.10064,27.096979)" + id="layer1-2" + inkscape:label="Capa 1"> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="rect4254-0" + d="m 396.57143,540.46467 0,4.66666 0,1.33334 0,1.33333 8,0 0,-1.33333 0,-1.33334 0,-4.66666 z" + style="opacity:1;fill:url(#linearGradient4272-5);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + <rect + y="517.79797" + x="384.57144" + height="24.999973" + width="32" + id="rect4173-2" + style="opacity:1;fill:url(#linearGradient4250-3);fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + <rect + y="519.79797" + x="386.57144" + height="20" + width="28" + id="rect4226" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <rect + y="545.79797" + x="392.57144" + height="2" + width="15.999989" + id="rect4295-3" + style="opacity:1;fill:#2a2c2f;fill-opacity:1;stroke:none;stroke-width:2.79999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55026455" /> + <rect + y="536.79797" + x="386.57144" + height="2.9999735" + width="28.000011" + id="rect4267-7" + style="opacity:1;fill:#ffffff;fill-opacity:0.78431373;stroke:none" /> + <circle + r="0.66666669" + cy="538.4646" + cx="413.2381" + id="path4166-5" + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" /> + <path + id="rect4183-9" + d="m 387.2381,537.79796 0,0.66667 0.66667,0 0,-0.66667 -0.66667,0 z m 0.66667,0.66667 0,0.66666 0.66666,0 0,-0.66666 -0.66666,0 z" + style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <rect + y="520.79797" + x="387.57144" + height="11.000027" + width="11.999989" + id="rect3432-2" + style="fill:#ffffff;fill-opacity:0.78431373;stroke:none" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="rect4160-2" + d="m 388.55748,521.40637 0,2.66667 2.66666,0 0,-2 -0.66666,0 -0.66667,-0.66667 z" + style="opacity:1;fill:#3580ca;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="rect4235-8" + d="m 392.65846,521.40637 0,3.33333 2.66667,0 0,-2 -1.33333,-1.33333 z" + style="opacity:1;fill:#ff9955;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + id="path4237-9" + d="m 393.9918,521.40635 1.33334,1.33333 -1.33334,0 z" + style="fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="rect4272-7" + d="m 388.55748,522.07304 3.33333,0 0,2.66666 -3.33333,0 z" + style="fill:#7aabdc;fill-opacity:1;stroke:none" /> + <path + style="opacity:1;fill:#71c837;fill-opacity:1;stroke:none" + d="m 396.22332,521.44989 0,3.33333 2.66667,0 0,-2 -1.33333,-1.33333 z" + id="path4275-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:#447821;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 397.55666,521.44987 1.33334,1.33333 -1.33334,0 z" + id="path4277-6" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/mimetypes/application-certificate.svg b/html/themes/breezy/svg/48/mimetypes/application-certificate.svg new file mode 100644 index 0000000000000000000000000000000000000000..510f07d06816084d4b78836134471d7d6377839f --- /dev/null +++ b/html/themes/breezy/svg/48/mimetypes/application-certificate.svg @@ -0,0 +1,480 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="application-certificate.svg" + inkscape:export-filename="application-certificate.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + id="linearGradient4263" + inkscape:collect="always"> + <stop + id="stop4265" + offset="0" + style="stop-color:#e26b77;stop-opacity:1" /> + <stop + id="stop4267" + offset="1" + style="stop-color:#c42737;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4206"> + <stop + style="stop-color:#da4453;stop-opacity:1;" + offset="0" + id="stop4208" /> + <stop + style="stop-color:#c42737;stop-opacity:1" + offset="1" + id="stop4210" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4198"> + <stop + style="stop-color:#fdbc4b;stop-opacity:1;" + offset="0" + id="stop4200" /> + <stop + style="stop-color:#fee2b1;stop-opacity:1" + offset="1" + id="stop4202" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4227"> + <stop + style="stop-color:#292c2f;stop-opacity:1" + offset="0" + id="stop4229" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4231" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-6.1600027e-6,0)" + gradientUnits="userSpaceOnUse" + y2="517.79797" + x2="400.57144" + y1="545.79797" + x1="400.57144" + id="linearGradient4238" + xlink:href="#linearGradient4303" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4303"> + <stop + style="stop-color:#c6cdd1;stop-opacity:1" + offset="0" + id="stop4305" /> + <stop + style="stop-color:#e0e5e7;stop-opacity:1" + offset="1" + id="stop4307" /> + </linearGradient> + <style + id="current-color-scheme" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-3" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-36" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-367" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4198" + id="linearGradient4204" + x1="426.21429" + y1="542.79071" + x2="426.21429" + y2="532.79071" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4000006,0,0,1.4000006,-201.02882,-221.80937)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4206" + id="linearGradient4212" + x1="7.0000029" + y1="8.4999847" + x2="7.0000029" + y2="13.999985" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4000006,0,0,1.4000006,389.37144,522.69799)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4263" + id="linearGradient4220" + x1="428.21429" + y1="533.79071" + x2="428.21429" + y2="541.79071" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.7609383,0,0,1.7609383,-356.1289,-415.91831)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4227" + id="linearGradient4232" + x1="425.21429" + y1="534.29071" + x2="435.71429" + y2="544.79071" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4000006,0,0,1.4000006,-201.02883,-221.80935)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4263" + id="linearGradient4208" + x1="396.37146" + y1="524.09796" + x2="396.37146" + y2="538.09796" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="22.402429" + inkscape:cy="21.07616" + inkscape:document-units="px" + inkscape:current-layer="layer1-9" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)" + style="display:inline"> + <g + transform="matrix(1.4285708,0,0,1.4285708,-163.67324,-235.91308)" + id="layer1-7" + inkscape:label="Capa 1"> + <g + transform="translate(-2.5589574e-6,2.2518306e-5)" + id="layer1-9" + inkscape:label="Capa 1"> + <rect + rx="13.999994" + ry="13.999994" + y="517.79797" + x="386.57144" + height="28" + width="27.999989" + id="rect4175" + style="opacity:1;fill:url(#linearGradient4238);fill-opacity:1;stroke:none" /> + <circle + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4208);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.70000029;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4200" + cx="400.57144" + cy="531.09796" + r="7.0000033" /> + <path + style="opacity:0.2;fill:url(#linearGradient4232);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 400.57144,524.09796 0,7.00001 -7,0 2.8,2.8 -0.7,2.1 2.1,2.1 0,4.2 3.4836,3.4836 c 6.36771,-0.30367 11.58411,-4.82701 12.95411,-10.84591 l -8.7377,-8.7377 -1.4,1.40001 -3.50001,-3.50001 z" + id="path4224" + inkscape:connector-curvature="0" /> + <circle + cx="400.57144" + cy="531.09796" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4220);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4189" + ry="6.9999971" + rx="7.0437527" /> + <path + style="fill:url(#linearGradient4212);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 403.37145,531.90463 c -0.88251,0.38853 -1.83577,0.59054 -2.80001,0.59336 -0.96385,-10e-4 -1.91709,-0.20124 -2.8,-0.58789 l 0,10.3879 2.8,-1.4 2.80001,1.4 z" + id="path4156" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:type="star" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4204);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="path4199" + sodipodi:sides="8" + sodipodi:cx="400.57144" + sodipodi:cy="531.09796" + sodipodi:r1="7.0000029" + sodipodi:r2="3.5000014" + sodipodi:arg1="1.5707963" + sodipodi:arg2="1.9634954" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 400.57144,538.09796 -1.33939,-3.76642 -3.61036,1.71617 1.71617,-3.61036 -3.76642,-1.33939 3.76642,-1.33939 -1.71617,-3.61036 3.61036,1.71617 1.33939,-3.76642 1.33939,3.76642 3.61036,-1.71617 -1.71617,3.61036 3.76642,1.33939 -3.76642,1.33939 1.71617,3.61036 -3.61036,-1.71617 z" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/places/folder.svg b/html/themes/breezy/svg/48/places/folder.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4b3480bd5bf92fa8d2e7d75a074ce1ecbd5daf7 --- /dev/null +++ b/html/themes/breezy/svg/48/places/folder.svg @@ -0,0 +1,250 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="folder.svg" + inkscape:export-filename="folder.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4249"> + <stop + style="stop-color:#147eb8;stop-opacity:1" + offset="0" + id="stop4251" /> + <stop + style="stop-color:#147eb8;stop-opacity:0" + offset="1" + id="stop4253" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="8" + x2="16" + y1="29" + x1="16" + id="linearGradient4342" + xlink:href="#linearGradient4172-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4172-5" + inkscape:collect="always"> + <stop + id="stop4174-6" + offset="0" + style="stop-color:#3daee9;stop-opacity:1" /> + <stop + id="stop4176-6" + offset="1" + style="stop-color:#6cc1ef;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4249" + id="linearGradient4255" + x1="404.57153" + y1="521.79797" + x2="422.5715" + y2="539.79797" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="31.999999" + inkscape:cx="21.634705" + inkscape:cy="16.946363" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <g + id="layer1-4-3" + inkscape:label="Capa 1" + transform="matrix(1.3333328,0,0,1.3999995,-125.5236,-220.71893)"> + <path + inkscape:connector-curvature="0" + id="path4308" + d="m 386.32143,518.94085 0,6.85715 0,1 28.50001,0 0,-5.71429 -14.25001,0 -2.25,-2.14286 z" + style="fill:#147eb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path4306" + d="m 397.57144,523.94085 -2.25001,1.42857 -9,0 0,0.71429 7.5,0 2.25,0 z" + style="fill:#000000;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + transform="translate(384.57143,515.798)" + id="rect4294" + d="m 13.000011,8.1428514 -2.25001,2.1428576 -9.000004,0 -0.7499686,0 L 1,28.857145 l 11,0 1,0 18,0 1.1e-5,-20.7142936 z" + style="opacity:1;fill:url(#linearGradient4342);fill-opacity:1;stroke:none" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path4304" + d="m 397.57144,523.94085 -2.25001,2.14286 -9.74997,0 -3e-5,0.71429 11,0 z" + style="fill:#ffffff;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path4310" + d="m 398.32143,518.94085 1.5,2.85714 15.00001,0 0,-0.71428 -14.25001,0 z" + style="fill:#ffffff;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <rect + y="543.94086" + x="385.57147" + height="0.71429282" + width="29.999983" + id="rect4292" + style="opacity:1;fill:#000000;fill-opacity:0.23529412;stroke:none" /> + </g> + <path + style="opacity:0.302;fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 412.57144,520.798 15.99999,15.99999 0,4.00001 -17,0 -8,-8 0,-4 -2,-2 7,-7 3,3 z" + id="path4247" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + style="opacity:1;fill:#1272a5;fill-opacity:1;stroke:none;stroke-opacity:1" + d="m 408.57142,518.798 -6.99999,7.00001 0,0.99999 2,0 0,5 0,1 10,0 0,-1 0,-5 2,0 0,-0.99999 -3.00001,-3.00001 2e-5,-3 -2.00001,0 0,1 z m 0,1.97969 5.00001,5.02032 -1.00001,0 0,0.99999 0,5 -2.99999,0 0,-4 -2,0 0,4 -3,0 0,-5 0,-0.99999 -1,0 5,-5.00001 z" + id="rect4347" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/places/network-server.svg b/html/themes/breezy/svg/48/places/network-server.svg new file mode 100644 index 0000000000000000000000000000000000000000..e760e3821e13704a44ab86b27fa413e34259f926 --- /dev/null +++ b/html/themes/breezy/svg/48/places/network-server.svg @@ -0,0 +1,258 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="network-server.svg" + inkscape:export-filename="network-server.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4249"> + <stop + style="stop-color:#147eb8;stop-opacity:1" + offset="0" + id="stop4251" /> + <stop + style="stop-color:#147eb8;stop-opacity:0" + offset="1" + id="stop4253" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="8" + x2="16" + y1="29" + x1="16" + id="linearGradient4342" + xlink:href="#linearGradient4172-5" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4172-5" + inkscape:collect="always"> + <stop + id="stop4174-6" + offset="0" + style="stop-color:#3daee9;stop-opacity:1" /> + <stop + id="stop4176-6" + offset="1" + style="stop-color:#6cc1ef;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4249" + id="linearGradient4255" + x1="409.57144" + y1="526.79791" + x2="422.5715" + y2="539.79797" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4172-5" + id="linearGradient4201" + x1="16" + y1="29" + x2="16" + y2="8" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="26.433709" + inkscape:cy="19.686402" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <g + id="layer1-4-3" + inkscape:label="Capa 1" + transform="matrix(1.3333328,0,0,1.3999995,-125.5236,-220.71893)"> + <path + inkscape:connector-curvature="0" + id="path4308" + d="m 386.32143,518.94085 0,6.85715 0,1 28.50001,0 0,-5.71429 -14.25001,0 -2.25,-2.14286 z" + style="fill:#147eb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccc" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path4306" + d="m 397.57144,523.94085 -2.25001,1.42857 -9,0 0,0.71429 7.5,0 2.25,0 z" + style="fill:#000000;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + transform="translate(384.57143,515.798)" + id="rect4294" + d="m 13.000011,8.1428514 -2.25001,2.1428576 -9.000004,0 -0.7499686,0 L 1,28.857145 l 11,0 1,0 18,0 1.1e-5,-20.7142936 z" + style="opacity:1;fill:url(#linearGradient4342);fill-opacity:1;stroke:none" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path4304" + d="m 397.57144,523.94085 -2.25001,2.14286 -9.74997,0 -3e-5,0.71429 11,0 z" + style="fill:#ffffff;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + id="path4310" + d="m 398.32143,518.94085 1.5,2.85714 15.00001,0 0,-0.71428 -14.25001,0 z" + style="fill:#ffffff;fill-opacity:0.23529412;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccc" /> + <rect + y="543.94086" + x="385.57147" + height="0.71429282" + width="29.999983" + id="rect4292" + style="opacity:1;fill:#000000;fill-opacity:0.23529412;stroke:none" /> + </g> + <path + style="opacity:0.228;fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 416.57144,520.173 11.99999,11.99999 0,8.62501 -22.375,0 -4.875,-4.875 -3.375,-7.125 1.125,-5.75 5.125,-5.125 7.375,-0.5 z" + id="path4247" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccc" /> + <path + style="fill:#1272a5;fill-opacity:1;fill-rule:nonzero" + d="M 24 17 A 11 11 0 0 0 13 28 A 11 11 0 0 0 24 39 A 11 11 0 0 0 35 28 A 11 11 0 0 0 24 17 z M 24 18 C 24.34518 18 24.66382 18.0285 25 18.0625 C 25.0806 18.0705 25.17 18.0525 25.25 18.0625 C 25.3552 18.0765 25.4583 18.1086 25.5625 18.125 C 25.8498 18.1702 26.09656 18.2435 26.375 18.3125 C 26.8882 18.4391 27.39644 18.61008 27.875 18.8125 C 28.13886 18.9241 28.3733 19.05448 28.625 19.1875 C 28.62486 19.2055 28.627 19.2282 28.625 19.25 C 28.683 19.276 28.7147 19.3835 28.8125 19.4375 C 28.8485 19.4575 28.8412 19.482 28.875 19.5 C 28.933 19.532 29.012 19.567 29 19.625 C 28.984 19.705 28.8683 19.688 28.8125 19.75 C 28.8205 19.866 28.7175 19.8597 28.6875 19.9375 C 28.7055 19.9875 28.8045 20.0025 28.8125 20.0625 C 28.8025 20.1265 28.6635 20.1215 28.6875 20.1875 C 28.7955 20.2715 28.898 20.2075 29 20.1875 C 29.22398 20.1595 29.4245 20.1775 29.5625 20.0625 C 29.5445 19.9565 29.762 19.971 29.75 19.875 C 29.8074 19.9168 29.8807 19.9576 29.9375 20 C 29.9159 20.0202 29.899 20.0517 29.875 20.0625 C 29.833 20.0825 29.788 20.101 29.75 20.125 C 29.694 20.161 29.6265 20.208 29.5625 20.25 C 29.5165 20.282 29.423 20.4375 29.375 20.4375 C 29.317 20.4375 29.2293 20.363 29.1875 20.375 C 29.1275 20.395 29.1303 20.476 29.0625 20.5 C 28.9305 20.548 28.67098 20.427 28.625 20.625 C 28.681 20.739 28.9 20.686 29 20.75 C 29.062 20.79 29.1715 20.932 29.1875 21 C 29.2035 21.056 29.2115 21.315 29.1875 21.375 C 29.1255 21.535 28.93398 21.502 28.75 21.5 L 28.625 21.5 C 28.31504 21.48 28.015 21.3407 27.875 21.5625 C 27.885 21.7325 27.913 21.852 27.875 22 C 27.847 22.108 27.6813 22.2193 27.6875 22.3125 C 27.6895 22.3605 27.8005 22.430247 27.8125 22.498047 C 27.8205 22.534047 27.7965 22.589047 27.8125 22.623047 C 27.8645 22.721047 27.9705 22.603047 28.0625 22.623047 C 28.1505 22.643047 28.25 22.774647 28.25 22.873047 C 28.25 22.943047 28.2319 23.055247 28.1875 23.123047 C 28.0995 23.255047 27.9385 23.238547 27.8125 23.310547 C 27.7085 23.370547 27.687 23.519847 27.625 23.623047 C 27.559 23.735047 27.474 23.775247 27.5 23.935547 C 27.41 24.113547 27.311 24.224547 27.125 24.310547 C 27.071 24.334547 26.9873 24.337047 26.9375 24.373047 C 26.8975 24.401047 26.8685 24.496547 26.8125 24.560547 C 26.7425 24.638547 26.663 24.688247 26.625 24.748047 C 26.597 24.794047 26.5923 24.871547 26.5625 24.935547 C 26.5185 25.019547 26.4308 25.038847 26.375 25.123047 C 26.349 25.163047 26.3403 25.258747 26.3125 25.310547 C 26.2485 25.426547 26.1755 25.521047 26.1875 25.623047 C 26.1975 25.719047 26.3065 25.722747 26.3125 25.810547 C 26.3185 25.858547 26.248 25.881547 26.25 25.935547 C 26.252 26.011547 26.3067 26.063247 26.3125 26.123047 C 26.3265 26.271047 26.2155 26.334347 26.1875 26.435547 C 26.1735 26.483547 26.1995 26.520547 26.1875 26.560547 C 26.1635 26.634547 26.0645 26.722147 26.0625 26.810547 C 26.0605 26.872547 26.1815 26.910247 26.1875 26.998047 C 26.1915 27.056047 26.113 27.129547 26.125 27.185547 C 26.147 27.293547 26.35352 27.414047 26.4375 27.498047 C 26.5515 27.612047 26.70002 27.690647 26.75 27.810547 C 26.792 27.912547 26.797 28.109347 26.875 28.185547 C 26.933 28.241547 27.051 28.250547 27.125 28.310547 C 27.195 28.364547 27.2385 28.375547 27.3125 28.435547 C 27.4345 28.531547 27.6185 28.762047 27.8125 28.748047 C 27.9145 28.728047 28.0109 28.643047 28.125 28.623047 C 28.243 28.603047 28.38002 28.550547 28.5 28.560547 C 28.592 28.580547 28.7165 28.629247 28.8125 28.623047 C 28.9125 28.603047 29.0111 28.610947 29.125 28.560547 C 29.323 28.474547 29.64954 28.331547 29.9375 28.373047 C 30.15748 28.405047 30.1585 28.650047 30.3125 28.748047 C 30.4885 28.768047 30.61002 28.714047 30.75 28.748047 C 30.856 28.774047 30.99 28.914847 31 28.998047 C 31.01 29.084047 30.887 29.193647 30.875 29.248047 C 30.847 29.364047 30.895 29.486547 30.875 29.560547 C 30.859 29.618547 30.8105 29.690247 30.8125 29.748047 C 30.8125 29.800047 30.8835 29.929647 30.9375 29.998047 C 31.0035 30.082047 31.1075 30.157647 31.1875 30.248047 C 31.3335 30.416047 31.398 30.588547 31.5 30.810547 C 31.526 30.866547 31.476 30.926047 31.5 30.998047 C 31.456 31.333847 31.345 31.563747 31.125 31.935547 C 31.021 32.055547 30.873 32.160747 30.875 32.310547 C 30.867 32.670547 31.0786 32.900047 31.0625 33.248047 C 31.0265 33.715847 31.0985 33.748247 31.0625 33.998047 C 31.2205 34.078047 31.1085 34.331847 31.0625 34.498047 C 30.9945 34.696047 30.913 34.741047 30.875 34.873047 C 30.9812 34.919247 31.13204 34.900247 31.25 34.873047 C 31.1904 34.935847 31.1235 34.999547 31.0625 35.060547 C 30.61008 35.512967 30.0945 35.951127 29.5625 36.310547 C 28.53042 37.007807 27.38248 37.537447 26.125 37.810547 C 25.43792 37.959747 24.73178 37.998047 24 37.998047 C 23.61934 37.998047 23.24374 37.977947 22.875 37.935547 C 22.58128 37.901947 22.28542 37.868947 22 37.810547 C 21.43366 37.694547 20.90206 37.455287 20.375 37.248047 C 20.357 37.213647 20.310053 37.163247 20.314453 37.123047 C 20.418453 37.079047 20.613473 37.271047 20.689453 37.123047 C 20.727453 37.053047 20.639453 36.880547 20.689453 36.810547 C 20.725453 36.762547 20.927973 36.761847 21.001953 36.748047 C 21.107953 36.728047 21.254453 36.713547 21.314453 36.685547 C 21.380453 36.643547 21.451453 36.496147 21.439453 36.373047 C 21.433453 36.315047 21.360253 36.300047 21.314453 36.248047 C 21.276453 36.204047 21.340453 36.165047 21.314453 36.123047 C 21.266453 36.053047 21.146753 36.037547 21.126953 35.935547 C 21.270953 35.907547 21.481473 36.056047 21.689453 35.998047 C 21.787453 35.970047 21.955953 35.777747 22.001953 35.685547 C 22.015953 35.657547 21.985953 35.596547 22.001953 35.560547 C 22.019953 35.524547 22.058453 35.455547 22.064453 35.435547 C 22.078453 35.381547 22.052453 35.409047 22.064453 35.373047 C 22.100453 35.271047 22.19 35.195647 22.25 35.123047 C 22.296 35.067047 22.3955 34.993347 22.4375 34.935547 C 22.4855 34.873547 22.4682 34.866547 22.5 34.810547 C 22.53 34.628547 22.3933 34.470347 22.4375 34.310547 C 22.4855 34.130547 22.76352 34.017547 22.9375 33.935547 C 22.9975 33.907547 23.075 33.891047 23.125 33.873047 C 23.245 33.831047 23.388 33.788047 23.5 33.748047 C 23.688 33.680047 23.7205 33.544847 23.8125 33.373047 C 23.8565 33.293047 23.9295 33.181647 23.9375 33.123047 C 23.9455 33.071047 23.9275 33.060047 23.9375 32.998047 C 23.9475 32.940047 23.9215 32.878347 23.9375 32.810547 C 23.9595 32.724547 24 32.531347 24 32.435547 C 24 32.355547 23.9393 32.319847 23.9375 32.248047 C 23.9235 31.988047 24.0292 32.015047 24.125 31.873047 C 24.173 31.803047 24.2162 31.673247 24.25 31.623047 C 24.412 31.383047 24.7075 31.299547 24.6875 30.935547 C 24.6795 30.815547 24.5878 30.536047 24.5 30.498047 C 24.45 30.476047 24.3863 30.461547 24.3125 30.435547 C 24.07652 30.347547 23.87098 30.080547 23.625 30.060547 L 23.5 30.060547 C 23.404 30.060547 23.29548 30.011847 23.1875 29.998047 C 23.1195 29.978047 22.9775 30.018047 22.9375 29.998047 C 22.8755 29.968047 22.8625 29.844547 22.8125 29.810547 C 22.7725 29.782547 22.6868 29.769847 22.625 29.748047 C 22.527 29.712047 22.489 29.631047 22.375 29.623047 C 22.339 29.623047 22.29 29.643047 22.25 29.623047 C 22.188 29.603047 22.122253 29.596547 22.064453 29.560547 C 21.992453 29.516547 21.906753 29.497547 21.876953 29.435547 C 21.942953 29.219747 21.733253 29.186547 21.689453 29.060547 C 21.669453 29.002547 21.709453 28.862547 21.689453 28.810547 C 21.663453 28.736547 21.583753 28.6868 21.501953 28.625 C 21.357953 28.513 21.270433 28.4631 21.064453 28.4375 C 20.972453 28.4175 20.861933 28.4575 20.751953 28.4375 C 20.635953 28.4175 20.464933 28.3498 20.376953 28.25 C 20.292953 28.152 20.263253 28.0462 20.189453 28 C 20.119453 27.956 20.049953 27.921 20.001953 27.875 C 19.979953 27.855 19.959453 27.8589 19.939453 27.8125 C 19.903453 27.7385 19.832753 27.7148 19.876953 27.625 C 19.796953 27.585 19.837953 27.7015 19.751953 27.6875 C 19.673953 27.5775 19.615353 27.4679 19.439453 27.5 C 19.359453 27.52 19.283453 27.6857 19.189453 27.6875 C 19.111453 27.6875 19.041453 27.516 18.939453 27.5 C 18.861453 27.48 18.743453 27.5725 18.689453 27.5625 C 18.603453 27.5425 18.579753 27.4895 18.501953 27.4375 C 18.443953 27.3995 18.346253 27.3105 18.314453 27.3125 C 18.214453 27.3125 18.139853 27.5103 18.001953 27.4375 C 17.933953 27.3515 18.144653 27.3298 18.064453 27.25 C 18.004453 27.192 17.987453 27.2845 17.939453 27.3125 C 17.883453 27.3485 17.813753 27.3532 17.751953 27.375 C 17.613953 27.427 17.484933 27.442 17.376953 27.5 C 17.276953 27.552 17.247253 27.5851 17.189453 27.6875 C 17.143453 27.7715 17.071753 27.9335 17.001953 27.9375 C 16.917953 27.9375 16.890253 27.8465 16.814453 27.8125 C 16.584473 27.7125 16.441933 27.8712 16.251953 27.875 C 16.075953 27.875 15.806453 27.6035 15.814453 27.4375 C 15.820453 27.3355 15.865153 27.1885 15.876953 27.0625 C 15.886953 26.9625 16.000153 26.8412 16.001953 26.75 C 16.003953 26.626 15.769453 26.5767 15.689453 26.5625 C 15.501453 26.5285 15.278433 26.6465 15.064453 26.5625 C 15.024453 26.4945 15.103153 26.4428 15.126953 26.375 C 15.140953 26.339 15.112953 26.292 15.126953 26.25 C 15.150953 26.186 15.284653 26.1303 15.314453 26.0625 C 15.336453 26.0105 15.292453 25.941 15.314453 25.875 C 15.340453 25.803 15.433453 25.7393 15.439453 25.6875 C 15.447453 25.6195 15.368253 25.544 15.314453 25.5 C 15.148453 25.52 15.035453 25.5141 14.939453 25.5625 C 14.723473 25.6605 14.782453 25.932 14.564453 26 C 14.490453 26.024 14.398453 26.0487 14.314453 26.0625 C 14.277853 26.0825 14.230453 26.0585 14.189453 26.0625 C 14.193453 26.0423 14.185453 26.02 14.189453 26 C 14.199453 25.9544 14.242153 25.9204 14.251953 25.875 C 14.394553 25.225 14.614733 24.59586 14.876953 24 L 14.939453 24 C 15.015453 24.02 15.060953 24.119 15.126953 24.125 C 15.310953 24.145 15.349953 23.9554 15.501953 23.875 C 15.657953 23.897 15.734973 23.855 15.876953 23.875 C 15.972953 23.895 16.113473 23.992 16.189453 24 C 16.253453 24 16.254453 23.9293 16.314453 23.9375 C 16.374453 23.9575 16.492153 24.053 16.501953 24.125 C 16.511953 24.215 16.413253 24.3383 16.439453 24.4375 C 16.533453 24.5335 16.742953 24.569 16.876953 24.625 C 16.964953 24.551 16.890953 24.4165 16.876953 24.3125 C 16.874953 24.2665 16.882953 24.1668 16.876953 24.125 C 16.866953 24.053 16.814453 23.9993 16.814453 23.9375 C 16.814453 23.6515 17.059973 23.5493 17.251953 23.4375 C 17.333953 23.3895 17.429953 23.286 17.501953 23.25 C 17.603953 23.2 17.667953 23.2359 17.751953 23.1875 C 17.903953 23.1015 18.008953 22.9724 18.126953 22.875 C 18.180953 22.745 18.120953 22.5655 18.126953 22.4375 C 18.180953 22.4035 18.256653 22.4375 18.314453 22.4375 C 18.406453 22.4175 18.449953 22.3018 18.501953 22.25 C 18.531953 22.22 18.590953 22.2173 18.626953 22.1875 C 18.718953 22.1155 18.734453 22.0318 18.814453 22 C 18.842453 21.98 18.895453 21.9513 18.939453 21.9375 C 18.999453 21.9175 19.093453 21.911 19.189453 21.875 C 19.251453 21.853 19.415453 21.8385 19.439453 21.8125 C 19.469453 21.7825 19.431453 21.671 19.439453 21.625 C 19.487453 21.3992 19.799973 21.3887 20.001953 21.3125 C 20.141953 21.2605 20.283453 21.0969 20.439453 21.125 C 20.409453 21.233 20.288453 21.2448 20.314453 21.375 C 20.348453 21.557 20.562953 21.3385 20.626953 21.3125 C 20.748953 21.2605 20.966953 21.1848 21.126953 21.125 C 21.266953 21.075 21.508933 21.0362 21.376953 20.875 C 21.266953 20.855 21.222953 20.96 21.126953 21 C 21.060953 21.02 21.057953 20.945453 21.001953 20.939453 C 20.947953 20.939453 20.930953 21.01 20.876953 21 C 20.822953 20.98 20.759953 20.880453 20.751953 20.814453 C 20.729953 20.646453 20.871653 20.625853 20.939453 20.501953 C 20.893453 20.349953 20.692433 20.436953 20.564453 20.376953 C 20.578453 20.286953 20.646153 20.209253 20.751953 20.189453 C 20.837953 20.169453 21.074953 20.205553 21.126953 20.251953 C 21.156953 20.277953 21.081153 20.334953 21.126953 20.376953 C 21.178953 20.422953 21.246453 20.396953 21.314453 20.376953 C 21.338453 20.262953 21.169453 20.325953 21.189453 20.251953 C 21.325453 20.163953 21.585973 20.211253 21.751953 20.189453 C 21.847953 20.169453 21.978453 20.110453 22.064453 20.064453 C 22.144453 20.018453 22.167953 19.925753 22.251953 20.001953 C 22.275953 20.083953 22.235853 20.145453 22.189453 20.189453 C 22.035453 20.325453 21.871933 20.469153 21.751953 20.626953 C 21.825953 20.698953 21.940353 20.675653 22.064453 20.689453 C 22.112453 20.709453 22.201953 20.679453 22.251953 20.689453 C 22.311953 20.709453 22.3895 20.669453 22.4375 20.689453 C 22.5215 20.709453 22.5412 20.875 22.625 20.875 C 22.761 20.875 22.703 20.7154 22.625 20.625 C 22.649 20.531 22.7217 20.4414 22.6875 20.375 C 22.6255 20.251 22.387 20.412 22.375 20.25 C 22.367 20.15 22.464 20.140453 22.5 20.064453 C 22.484 19.872453 22.645 19.863453 22.625 19.689453 C 22.615 19.617453 22.55 19.632453 22.5 19.564453 C 22.474 19.528453 22.4673 19.404953 22.4375 19.376953 C 22.3335 19.288953 22.137 19.356853 22.125 19.189453 C 22.119 19.089453 22.139 18.984153 22.125 18.876953 C 22.111 18.774953 22.0253 18.459453 21.9375 18.439453 C 21.8255 18.415453 21.7591 18.626853 21.625 18.689453 C 21.553 18.723453 21.38648 18.763953 21.3125 18.751953 C 21.2645 18.731953 21.1935 18.720953 21.1875 18.626953 C 21.1795 18.542153 21.2813 18.504253 21.3125 18.439453 C 21.3205 18.423453 21.3085 18.399353 21.3125 18.376953 C 21.4577 18.336353 21.60244 18.286553 21.75 18.251953 C 21.8338 18.231953 21.9154 18.206653 22 18.189453 C 22.0598 18.177453 22.1275 18.201453 22.1875 18.189453 C 22.4546 18.139853 22.7259 18.092253 23 18.064453 C 23.33248 18.029453 23.6578 18.001953 24 18.001953 L 24 18 z M 19.9375 18.9375 C 19.8739 19.30264 19.532 19.44804 19.125 19.4375 C 19.033 19.5255 19.1129 19.6905 19.0625 19.8125 C 19.0205 19.9145 18.85198 20.0082 18.75 20 C 18.676 20 18.5625 19.8823 18.5625 19.8125 C 18.5625 19.7265 18.6992 19.7234 18.625 19.625 C 18.629 19.605 18.6667 19.5823 18.6875 19.5625 C 18.7279 19.5371 18.7717 19.5248 18.8125 19.5 C 19.1749 19.27696 19.54642 19.11366 19.9375 18.9375 z M 28.3125 19.3125 C 28.2757 19.3325 28.2824 19.3552 28.25 19.375 C 28.174 19.421 28.1205 19.478 28.0625 19.5 C 27.9805 19.53 27.8868 19.551 27.875 19.625 C 27.865 19.687 27.9397 19.692 27.9375 19.75 C 27.9075 19.824 27.891 19.8477 27.875 19.9375 C 27.977 20.1035 28.18652 19.901 28.3125 19.875 C 28.3685 19.855 28.4075 19.8609 28.4375 19.8125 C 28.4715 19.7585 28.4742 19.7012 28.5 19.625 C 28.528 19.541 28.635 19.5115 28.625 19.4375 C 28.617 19.3635 28.4364 19.3025 28.3125 19.3125 z M 17.375 20.5625 C 17.4698 20.6387 17.60322 20.8037 17.4375 20.875 C 17.4175 20.895 17.173 20.9457 17.125 20.9375 C 17.105 20.9375 17.0793 20.8894 17.0625 20.875 C 17.1659 20.7744 17.26742 20.6586 17.375 20.5625 z M 17.75 20.9375 C 17.798 20.9375 17.819 21.0585 17.875 21.0625 C 17.929 21.0625 17.968 20.9918 18 21 C 18.084 21.022 18.1427 21.1876 18.0625 21.25 C 17.9965 21.27 17.9855 21.1793 17.9375 21.1875 C 17.8015 21.2115 17.727 21.508 17.625 21.5 C 17.529 21.48 17.4643 21.2575 17.5625 21.1875 C 17.5645 21.1275 17.5585 21.1245 17.5625 21.0625 C 17.5925 21.0265 17.67 20.9315 17.75 20.9375 z M 17.25 21 C 17.278 21 17.3027 20.98 17.3125 21 C 17.2985 21.106 17.2695 21.1377 17.1875 21.1875 C 17.0455 21.2735 16.921 21.3795 16.875 21.5625 C 16.861 21.6165 16.693 21.7635 16.625 21.75 C 16.467 21.716 16.714 21.4208 16.75 21.375 C 16.79 21.325 16.829 21.308 16.875 21.25 C 16.921 21.194 16.956 21.0943 17 21.0625 C 17.048 21.0285 17.166 20.996 17.25 21 z M 30.8125 21.3125 C 30.9705 21.2925 31.053 21.4673 31.125 21.5625 C 31.185 21.6405 31.3395 21.7581 31.4375 21.8125 C 31.4935 21.8425 31.563 21.9095 31.625 21.9375 C 31.755 21.9955 31.994 22.1845 32 22.3125 C 32.002 22.3765 31.9273 22.4402 31.9375 22.5 C 32.0355 22.52 32.123 22.3484 32.125 22.25 C 32.3088 22.51002 32.4662 22.78532 32.625 23.0625 C 32.7 23.1935 32.8058 23.3026 32.875 23.4375 C 32.7868 23.4635 32.7642 23.4765 32.75 23.5625 C 32.73 23.6745 32.793 23.8552 32.625 23.875 C 32.519 23.895 32.39598 23.784 32.25 23.75 C 32.19 23.73 32.1105 23.77 32.0625 23.75 C 31.9525 23.714 31.9688 23.5666 31.875 23.5 C 31.821 23.462 31.6485 23.385 31.5625 23.375 C 31.5085 23.375 31.4935 23.395 31.4375 23.375 C 31.3695 23.355 31.2435 23.403 31.1875 23.375 C 31.1335 23.341 31.014 23.2335 31 23.1875 C 30.978 23.1135 31.1835 23.0624 31.1875 23 C 31.1915 22.952 31.1348 22.8865 31.125 22.8125 C 31.117 22.7685 31.135 22.7175 31.125 22.6875 C 31.111 22.6355 31.0193 22.6268 30.9375 22.625 L 30.75 22.625 C 30.662 22.625 30.48498 22.617 30.375 22.625 C 30.309 22.625 30.2495 22.619 30.1875 22.625 C 30.0135 22.645 29.886 22.605 29.75 22.625 C 29.652 22.625 29.467 22.708 29.375 22.75 C 29.329 22.772 29.31 22.7827 29.25 22.8125 C 29.222 22.8325 29.161 22.859 29.125 22.875 C 29.069 22.901 28.9913 22.984 28.9375 23 C 28.8595 23.02 28.7669 22.98 28.625 23 C 28.523 23 28.377 22.9345 28.375 22.8125 C 28.373 22.6265 28.69902 22.7215 28.875 22.6875 C 28.941 22.6675 28.9825 22.6105 29.0625 22.5625 C 29.1005 22.5405 29.0892 22.5238 29.125 22.5 C 29.185 22.458 29.3027 22.3605 29.3125 22.3125 C 29.3205 22.2685 29.3065 22.2215 29.3125 22.1875 C 29.3205 22.1455 29.3835 22.1185 29.4375 22.0625 C 29.5215 21.9785 29.5835 21.8669 29.6875 21.8125 C 29.7575 21.7765 29.843 21.7455 29.875 21.6875 C 29.883 21.6235 29.873 21.6225 29.875 21.5625 C 29.919 21.5225 29.964 21.508 30 21.5 C 30.108 21.476 30.1866 21.506 30.3125 21.5 C 30.3665 21.5 30.4422 21.526 30.5 21.5 C 30.548 21.468 30.577 21.399 30.625 21.375 C 30.677 21.347 30.7485 21.3163 30.8125 21.3125 z M 31.9375 22.5 L 31.6875 22.5 C 31.5995 22.5 31.4895 22.454 31.4375 22.5 C 31.5115 22.62 31.64652 22.6577 31.8125 22.6875 C 31.8725 22.6435 31.9095 22.5766 31.9375 22.5 z M 18.25 21.375 L 18.4375 21.375 C 18.4875 21.375 18.5425 21.355 18.5625 21.375 C 18.5305 21.507 18.229 21.4857 18.125 21.4375 C 18.131 21.3875 18.186 21.383 18.25 21.375 z M 17.8125 21.625 C 17.7251 21.6886 17.6387 21.7693 17.5 21.8125 C 17.424 21.8365 17.3265 21.834 17.3125 21.75 C 17.2965 21.646 17.432 21.6973 17.5 21.6875 C 17.588 21.6675 17.7105 21.6288 17.8125 21.625 z M 30.8125 21.625 C 30.7465 21.647 30.7145 21.7927 30.8125 21.8125 C 30.8585 21.7845 30.8872 21.711 30.875 21.625 C 30.849 21.597 30.8323 21.605 30.8125 21.625 z M 30.6875 21.9375 C 30.6895 22.0495 30.7095 22.1528 30.6875 22.25 C 30.7515 22.374 30.90552 22.2715 30.9375 22.1875 C 30.9755 21.9795 30.9085 21.9115 30.8125 21.9375 C 30.7805 21.9575 30.7213 21.9115 30.6875 21.9375 z M 14.125 26.625 C 14.2378 26.727 14.3026 26.8707 14.4375 26.9375 C 14.4875 26.9635 14.561 26.984 14.625 27 C 14.677 27.02 14.7 26.984 14.75 27 C 14.856 27.036 14.97852 27.087 15.0625 27.125 C 15.1905 27.181 15.3275 27.3735 15.4375 27.4375 C 15.4435 27.5015 15.4175 27.577 15.4375 27.625 C 15.4895 27.695 15.541 27.7645 15.625 27.8125 C 15.727 27.8685 15.779 27.9558 15.875 28 C 15.909 28.02 15.948 27.98 16 28 C 16.132 28.04 16.1984 28.2212 16.3125 28.1875 C 16.3865 28.1655 16.3632 28.0718 16.375 28 C 16.425 27.946 16.4845 27.875 16.5625 27.875 C 16.6865 27.875 16.704 28.0662 16.75 28.1875 C 16.776 28.2555 16.857 28.303 16.875 28.375 C 16.905 28.499 16.901 28.8635 16.875 28.9375 C 16.843 29.0295 16.701 29.0246 16.625 29.125 C 16.589 29.173 16.5903 29.2785 16.5625 29.3125 C 16.5145 29.3705 16.4735 29.3815 16.4375 29.4375 C 16.4175 29.4675 16.3928 29.5205 16.375 29.5625 C 16.315 29.6905 16.2 29.7835 16.25 29.9375 C 16.27 29.9995 16.375 30.051 16.375 30.125 C 16.375 30.213 16.2015 30.2786 16.1875 30.375 C 16.1775 30.445 16.2282 30.5316 16.25 30.625 C 16.266 30.695 16.3955 30.764547 16.4375 30.810547 C 16.5075 30.888547 16.561 31.024047 16.625 31.123047 C 16.751 31.317047 16.8136 31.558047 16.9375 31.748047 C 17.0035 31.846047 17.1435 31.894847 17.1875 31.998047 C 17.2095 32.050047 17.1675 32.137547 17.1875 32.185547 C 17.2595 32.347547 17.58802 32.543247 17.75 32.623047 C 17.826 32.661047 17.93 32.645747 18 32.685547 C 18.106 32.745547 18.32102 32.904847 18.375 32.998047 C 18.423 33.082047 18.4137 33.301747 18.4375 33.435547 C 18.4675 33.611547 18.4295 33.745347 18.4375 33.935547 C 18.4435 34.039547 18.5 34.082347 18.5 34.185547 C 18.5 34.221547 18.502 34.335047 18.5 34.373047 C 18.498 34.497047 18.51 34.622047 18.5 34.748047 C 18.494 34.816047 18.496 34.877747 18.5 34.935547 C 18.506 34.997547 18.5587 35.004547 18.5625 35.060547 C 18.5665 35.118547 18.4938 35.202047 18.5 35.248047 C 18.514 35.374047 18.601 35.444447 18.625 35.560547 C 18.645 35.652547 18.6995 35.888047 18.6875 35.998047 C 18.6795 36.056047 18.633 36.119547 18.625 36.185547 C 18.619 36.237547 18.633 36.262547 18.625 36.310547 C 18.619 36.356547 18.637 36.397547 18.625 36.435547 C 18.5612 36.394547 18.5001 36.352947 18.4375 36.310547 C 17.9055 35.951127 17.38992 35.512967 16.9375 35.060547 C 16.8763 34.999347 16.8094 34.935647 16.75 34.873047 C 16.38884 34.492747 16.04828 34.056407 15.75 33.623047 C 15.723 33.583847 15.7139 33.537647 15.6875 33.498047 C 15.3414 32.979507 15.05812 32.453787 14.8125 31.873047 C 14.7945 31.831247 14.767 31.790247 14.75 31.748047 C 14.53924 31.230047 14.37214 30.680087 14.25 30.123047 C 14.227 30.017847 14.2071 29.916887 14.1875 29.810547 C 14.1379 29.543447 14.0903 29.272147 14.0625 28.998047 C 14.0283 28.661867 14 28.343227 14 27.998047 C 14 27.523437 14.0609 27.081911 14.125 26.625 z M 18.050781 27.685547 C 18.082562 27.711234 18.0585 27.802 18 27.8125 C 17.926 27.8325 17.928 27.7235 18 27.6875 C 18.024 27.6765 18.040188 27.676984 18.050781 27.685547 z " + transform="translate(384.57143,499.798)" + id="path26" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/status/dialog-password.svg b/html/themes/breezy/svg/48/status/dialog-password.svg new file mode 100644 index 0000000000000000000000000000000000000000..be628854eba20a11f5067b1b8562615af027dc4a --- /dev/null +++ b/html/themes/breezy/svg/48/status/dialog-password.svg @@ -0,0 +1,392 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="dialog-password.svg" + inkscape:export-filename="dialog-password.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4288"> + <stop + style="stop-color:#4d4d4d;stop-opacity:1;" + offset="0" + id="stop4290" /> + <stop + style="stop-color:#6c6c6c;stop-opacity:1" + offset="1" + id="stop4292" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4227"> + <stop + style="stop-color:#292c2f;stop-opacity:1" + offset="0" + id="stop4229" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4231" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-5.8399973e-6,0)" + gradientUnits="userSpaceOnUse" + y2="517.79797" + x2="400.57144" + y1="545.79797" + x1="400.57144" + id="linearGradient4238" + xlink:href="#linearGradient4303" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4303"> + <stop + style="stop-color:#c6cdd1;stop-opacity:1" + offset="0" + id="stop4305" /> + <stop + style="stop-color:#e0e5e7;stop-opacity:1" + offset="1" + id="stop4307" /> + </linearGradient> + <style + id="current-color-scheme" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-3" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <style + id="current-color-scheme-36" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4288" + id="linearGradient4294" + x1="22" + y1="14.000036" + x2="22" + y2="34.000034" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7000003,0,0,0.7000003,383.77144,514.99793)" /> + <linearGradient + gradientTransform="matrix(0.49497496,-0.49497496,0.49497496,0.49497496,382.46236,529.27343)" + inkscape:collect="always" + xlink:href="#linearGradient4288" + id="linearGradient4294-0" + x1="26.349369" + y1="18.721779" + x2="12.207232" + y2="32.863914" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4227" + id="linearGradient4328" + x1="394.27148" + y1="526.89795" + x2="408.27145" + y2="540.89795" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="3.9999998" + inkscape:cx="27.019912" + inkscape:cy="18.333388" + inkscape:document-units="px" + inkscape:current-layer="layer1-9" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)" + style="display:inline"> + <g + transform="matrix(1.4285708,0,0,1.4285708,-163.67324,-235.91308)" + id="layer1-7" + inkscape:label="Capa 1"> + <g + transform="translate(-2.5589574e-6,2.2518306e-5)" + id="layer1-9" + inkscape:label="Capa 1"> + <rect + rx="13.999994" + ry="13.999994" + y="517.79797" + x="386.57144" + height="28" + width="27.999989" + id="rect4175" + style="opacity:1;fill:url(#linearGradient4238);fill-opacity:1;stroke:none" /> + <path + style="opacity:0.2;fill:url(#linearGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.70000029px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 395.67145,537.39797 8.4,8.4 9.8,-10e-6 0.9625,-7.96249 -11.2,-11.2 -4.4625,-0.4375 -2.8,-0.70001 -2.1,2.10001 -1e-5,2.8 2.10001,2.1 -0.7,0.7 1.4,1.4 -0.7,0.7 1.4,1.4 z" + id="path4320" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccc" /> + <g + id="g4218" + transform="matrix(1.1666705,0,0,1.1666705,391.19672,-686.62858)"> + <path + inkscape:connector-curvature="0" + id="path4197" + d="m 5.0354717,1038.3622 a 3,3.0000086 0 0 1 3,3 3,3.0000086 0 0 1 -3,3 3,3.0000086 0 0 1 -3,-3 3,3.0000086 0 0 1 3,-3 z m 0,1 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <rect + y="1043.3622" + x="3.8354666" + height="2" + width="2.3999932" + id="rect4222" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + </g> + <path + inkscape:connector-curvature="0" + id="path4197-56" + d="m 397.07145,524.79793 a 3.5000114,3.5000215 0 0 0 -3.50001,3.50001 3.5000114,3.5000215 0 0 0 2.10001,3.20605 l 0,1.69395 1.4,0 0,0.7 -0.7,0 0,1.4 0.7,0 0,0.7 -1.4,0 0,1.4 1.4,0 0,1.4 1.4,0 0,-7.29668 a 3.5000114,3.5000215 0 0 0 2.1,-3.20332 3.5000114,3.5000215 0 0 0 -3.5,-3.50001 z m 0,1.16622 a 2.333341,2.333341 0 0 1 2.33379,2.33379 2.333341,2.333341 0 0 1 -2.33379,2.33379 2.333341,2.333341 0 0 1 -2.33379,-2.33379 2.333341,2.333341 0 0 1 2.33379,-2.33379 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4294);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + id="path4197-56-6" + d="m 398.79655,526.79857 a 3.5000215,3.5000115 0 0 0 10e-6,4.94972 3.5000215,3.5000115 0 0 0 3.752,0.78214 l 1.19776,1.19782 0.98995,-0.99004 0.49497,0.49502 -0.49497,0.49502 0.98995,0.98992 0.49498,-0.49502 0.49497,0.49502 -0.98995,0.98992 0.98996,0.98992 0.98995,-0.98992 0.98995,0.98992 0.98995,-0.98992 -5.15955,-5.15949 a 3.5000215,3.5000115 0 0 0 -0.78017,-3.75003 3.5000215,3.5000115 0 0 0 -4.94976,0 z m 0.82463,0.82461 a 2.333341,2.333341 0 0 1 3.30049,0 2.333341,2.333341 0 0 1 10e-6,3.30051 2.333341,2.333341 0 0 1 -3.30049,0 2.333341,2.333341 0 0 1 -1e-5,-3.30051 z" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4294-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/types/resource-group.svg b/html/themes/breezy/svg/48/types/resource-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..112dce22fe826050fd98e7301fc44dd5601b4019 --- /dev/null +++ b/html/themes/breezy/svg/48/types/resource-group.svg @@ -0,0 +1,344 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="resource-group.svg" + inkscape:export-filename="resource-group.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4400"> + <stop + style="stop-color:#28b062;stop-opacity:1" + offset="0" + id="stop4402" /> + <stop + style="stop-color:#2ecc71;stop-opacity:1" + offset="1" + id="stop4404" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4392"> + <stop + style="stop-color:#0c85dd;stop-opacity:1" + offset="0" + id="stop4394" /> + <stop + style="stop-color:#1d99f3;stop-opacity:1" + offset="1" + id="stop4396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4384"> + <stop + style="stop-color:#ce2939;stop-opacity:1" + offset="0" + id="stop4386" /> + <stop + style="stop-color:#da4453;stop-opacity:1" + offset="1" + id="stop4388" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4227"> + <stop + style="stop-color:#292c2f;stop-opacity:1" + offset="0" + id="stop4229" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4231" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-5.8399973e-6,0)" + gradientUnits="userSpaceOnUse" + y2="517.79797" + x2="400.57144" + y1="545.79797" + x1="400.57144" + id="linearGradient4238" + xlink:href="#linearGradient4303" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4303"> + <stop + style="stop-color:#c6cdd1;stop-opacity:1" + offset="0" + id="stop4305" /> + <stop + style="stop-color:#e0e5e7;stop-opacity:1" + offset="1" + id="stop4307" /> + </linearGradient> + <style + id="current-color-scheme" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4227" + id="linearGradient4277" + x1="423.11432" + y1="531.99072" + x2="436.91431" + y2="545.79071" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6666661,0,0,1.6666661,-692.19027,-875.65089)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4384" + id="linearGradient4390" + x1="397.07144" + y1="535.29797" + x2="397.07144" + y2="529.69794" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4392" + id="linearGradient4398" + x1="402.67145" + y1="531.79797" + x2="402.67145" + y2="526.19794" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4400" + id="linearGradient4406" + x1="404.77145" + y1="538.79797" + x2="404.77145" + y2="533.198" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="17.006879" + inkscape:cy="11.748455" + inkscape:document-units="px" + inkscape:current-layer="layer1-9" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)" + style="display:inline"> + <g + transform="matrix(1.4285708,0,0,1.4285708,-163.67324,-235.91308)" + id="layer1-7" + inkscape:label="Capa 1"> + <g + transform="translate(-2.5589574e-6,2.2518306e-5)" + id="layer1-9" + inkscape:label="Capa 1"> + <rect + rx="13.999994" + ry="13.999994" + y="517.79797" + x="386.57144" + height="28" + width="27.999989" + id="rect4175" + style="opacity:1;fill:url(#linearGradient4238);fill-opacity:1;stroke:none" /> + <path + style="opacity:0.2;fill:url(#linearGradient4277);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 32 16 L 24 23 L 22 21 L 14 21 L 14 29 L 27.681641 43.658203 C 35.803315 42.157848 42.169866 35.786695 43.662109 27.662109 L 32 16 z " + transform="matrix(0.70000031,0,0,0.70000031,383.77144,514.99796)" + id="path4269" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4390);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4170" + width="5.6000028" + height="5.6000028" + x="393.57144" + y="529.698" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4406);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4172" + width="5.6000028" + height="5.6000028" + x="400.57144" + y="533.198" /> + <rect + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + id="rect4174" + width="5.6000028" + height="5.6000028" + x="400.57144" + y="526.198" /> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/types/role.svg b/html/themes/breezy/svg/48/types/role.svg new file mode 100644 index 0000000000000000000000000000000000000000..4acb18f3aeed4ba02be98656c41832292b1dc15c --- /dev/null +++ b/html/themes/breezy/svg/48/types/role.svg @@ -0,0 +1,386 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="role.svg" + inkscape:export-filename="role.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + inkscape:collect="always" + id="linearGradient4400"> + <stop + style="stop-color:#28b062;stop-opacity:1" + offset="0" + id="stop4402" /> + <stop + style="stop-color:#2ecc71;stop-opacity:1" + offset="1" + id="stop4404" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4392"> + <stop + style="stop-color:#0c85dd;stop-opacity:1" + offset="0" + id="stop4394" /> + <stop + style="stop-color:#1d99f3;stop-opacity:1" + offset="1" + id="stop4396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4384"> + <stop + style="stop-color:#ce2939;stop-opacity:1" + offset="0" + id="stop4386" /> + <stop + style="stop-color:#da4453;stop-opacity:1" + offset="1" + id="stop4388" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4227"> + <stop + style="stop-color:#292c2f;stop-opacity:1" + offset="0" + id="stop4229" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4231" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-5.8399973e-6,0)" + gradientUnits="userSpaceOnUse" + y2="517.79797" + x2="400.57144" + y1="545.79797" + x1="400.57144" + id="linearGradient4238" + xlink:href="#linearGradient4303" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4303"> + <stop + style="stop-color:#c6cdd1;stop-opacity:1" + offset="0" + id="stop4305" /> + <stop + style="stop-color:#e0e5e7;stop-opacity:1" + offset="1" + id="stop4307" /> + </linearGradient> + <style + id="current-color-scheme" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4227" + id="linearGradient4277" + x1="423.11432" + y1="531.99072" + x2="438.11432" + y2="546.99072" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6666661,0,0,1.6666661,-692.19027,-875.65089)" /> + <style + id="current-color-scheme-3" + type="text/css"> + .ColorScheme-Text { + color:#4d4d4d; + } + .ColorScheme-Background { + color:#eff0f1; + } + .ColorScheme-Highlight { + color:#3daee9; + } + .ColorScheme-ViewText { + color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + } + .ColorScheme-ButtonFocus{ + color:#3daee9; + } + </style> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4384" + id="linearGradient4226" + x1="423.58093" + y1="541.4574" + x2="423.58093" + y2="533.05737" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1111111,0,0,1.1111111,-45.597867,-58.495249)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4392" + id="linearGradient4234" + x1="432.24762" + y1="542.19073" + x2="432.24762" + y2="537.39069" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1111111,0,0,1.1111111,-46.560831,-59.310061)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4400" + id="linearGradient4242" + x1="428.51428" + y1="546.52405" + x2="428.51428" + y2="541.72406" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1111111,0,0,1.1111111,-46.412683,-60.124879)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="1.9999999" + inkscape:cx="30.713448" + inkscape:cy="20.940844" + inkscape:document-units="px" + inkscape:current-layer="layer1-9" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)" + style="display:inline"> + <g + transform="matrix(1.4285708,0,0,1.4285708,-163.67324,-235.91308)" + id="layer1-7" + inkscape:label="Capa 1"> + <g + transform="translate(-2.5589574e-6,2.2518306e-5)" + id="layer1-9" + inkscape:label="Capa 1"> + <rect + rx="13.999994" + ry="13.999994" + y="517.79797" + x="386.57144" + height="28" + width="27.999989" + id="rect4175" + style="opacity:1;fill:url(#linearGradient4238);fill-opacity:1;stroke:none" /> + <path + style="opacity:0.2;fill:url(#linearGradient4277);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.6000002px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 25 15 L 17 16 L 16 29 L 18 31 L 17 35 L 25.353516 43.949219 C 34.36579 43.351499 41.70217 36.838963 43.544922 28.236328 C 43.580126 28.050934 43.628804 27.843441 43.662109 27.662109 L 37 21 L 33 23 L 25 15 z " + transform="matrix(0.70000031,0,0,0.70000031,383.77144,514.99796)" + id="path4269" /> + <g + transform="matrix(1.0500005,0,0,1.0500005,-50.628772,-34.982564)" + id="layer1-75" + inkscape:label="Capa 1"> + <path + inkscape:connector-curvature="0" + id="path4174" + d="m 424.38096,533.79072 0,9.33336 2.66667,0 0,-6.66667 3.33334,0 0,-2.66669 z" + style="fill:url(#linearGradient4226);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path4176" + d="m 425.04763,544.45741 3.33333,0 0,-2.66668 2.66667,0 0,2.66668 3.33333,0 0,2.66665 -9.33333,0 z" + style="fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path4178" + d="m 429.04762,537.79073 9.33334,0 0,2.66669 -3.33333,0 0,2.66664 -2.66667,0 0,-2.66664 -3.33334,0 z" + style="fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccc" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/types/user-group.svg b/html/themes/breezy/svg/48/types/user-group.svg new file mode 100644 index 0000000000000000000000000000000000000000..e347ea3206ecc5fb0fd5cc2c9b77439525f13d5a --- /dev/null +++ b/html/themes/breezy/svg/48/types/user-group.svg @@ -0,0 +1,244 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="user-group.svg" + inkscape:export-filename="user-group.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + id="linearGradient4143" + inkscape:collect="always"> + <stop + id="stop4145" + offset="0" + style="stop-color:#197cf1;stop-opacity:1" /> + <stop + id="stop4147" + offset="1" + style="stop-color:#20bcfa;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4143" + id="linearGradient3028" + gradientUnits="userSpaceOnUse" + x1="400.57144" + y1="545.79797" + x2="400.57144" + y2="517.79797" + gradientTransform="translate(-9.9503906e-6,3.0367187e-5)" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="22.999973" + x2="22.999985" + y1="9" + x1="9.0000114" + id="linearGradient4309" + xlink:href="#linearGradient4227" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4227"> + <stop + style="stop-color:#292c2f;stop-opacity:1" + offset="0" + id="stop4229" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4231" /> + </linearGradient> + <linearGradient + gradientTransform="translate(384.57143,499.798)" + inkscape:collect="always" + xlink:href="#linearGradient4290" + id="linearGradient5037" + x1="23" + y1="34" + x2="23" + y2="13" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4290"> + <stop + style="stop-color:#7cbaf8;stop-opacity:1" + offset="0" + id="stop4292" /> + <stop + style="stop-color:#f4fcff;stop-opacity:1" + offset="1" + id="stop4294" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="5.656854" + inkscape:cx="-7.5650826" + inkscape:cy="17.93564" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true" + inkscape:snap-global="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <g + transform="matrix(1.4285708,0,0,1.4285708,-163.67324,-235.91308)" + id="layer1-7" + inkscape:label="Capa 1"> + <rect + ry="14.000006" + y="517.79797" + x="386.57144" + height="28.000027" + width="28.000011" + id="rect4130-0" + style="fill:url(#linearGradient3028);fill-opacity:1;stroke:none" /> + <path + id="path4297" + transform="translate(384.57143,515.798)" + d="M 18.30625,8.9937495 17,11 l 0.400016,2.199989 1.256234,0.975011 1.0875,0.34375 C 19.91875,15.175 18.125,15.125 18.125,15.125 L 15,12 l -1.74375,-0.6125 -1.78125,0.35 -1.39375,1.91875 0.35,1.9125 L 11.7375,16.7875 13,17 13,17.7375 11,18 l -1.6562503,1 -1,1.78125 -0.7437381,2.218743 7.0000034,6.999985 C 14.948686,30.025755 15.644521,30.000001 16,30 23.700019,29.999978 29.300021,23.699993 30.000021,17.399991 L 22.300018,9.6999872 20.112517,8.6062367 Z" + style="opacity:0.2;fill:url(#linearGradient4309);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccscccc" /> + </g> + <path + inkscape:connector-curvature="0" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient5037);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 414.07143,512.798 a 4.5,4.5 0 0 0 -4.5,4.5 4.5,4.5 0 0 0 4.5,4.5 4.5,4.5 0 0 0 4.5,-4.5 4.5,4.5 0 0 0 -4.5,-4.5 z m 0,9 a 7.5,7.5 0 0 0 -5.9375,2.92578 9.5,9.5 0 0 1 0.8125,0.43555 9.5,9.5 0 0 1 0.0801,0.0488 c 1.4516,0.88921 2.63491,2.14807 3.42969,3.64648 a 9.5,9.5 0 0 1 0.29297,0.60938 c 0.0495,0.11184 0.10513,0.21994 0.15039,0.33398 l 1.05859,0 6.58789,0 1.00781,0 0.0176,0 -0.0176,-0.0176 a 7.5,7.5 0 0 0 0.0176,-0.48242 7.5,7.5 0 0 0 -7.5,-7.5 z m 0,-8 a 3.5,3.5 0 0 1 3.5,3.5 3.5,3.5 0 0 1 -3.5,3.5 3.5,3.5 0 0 1 -3.5,-3.5 3.5,3.5 0 0 1 3.5,-3.5 z m -10,3 a 4.5,4.5 0 0 0 -4.5,4.5 4.5,4.5 0 0 0 4.5,4.5 4.5,4.5 0 0 0 4.5,-4.5 4.5,4.5 0 0 0 -4.5,-4.5 z m 0,9 a 7.5,7.5 0 0 0 -7.5,7.5 7.5,7.5 0 0 0 0.0234,0.47656 l -0.0234,0.0234 0.0254,0 0.99609,0 12.95313,0 1.00781,0 0.0176,0 -0.0176,-0.0176 a 7.5,7.5 0 0 0 0.0176,-0.48242 7.5,7.5 0 0 0 -7.5,-7.5 z m 0,-8 a 3.5,3.5 0 0 1 3.5,3.5 3.5,3.5 0 0 1 -3.5,3.5 3.5,3.5 0 0 1 -3.5,-3.5 3.5,3.5 0 0 1 3.5,-3.5 z m 10,5 a 6.5,6.5 0 0 1 6.47852,6 l -7.00196,0 c -0.84886,-1.82094 -2.13501,-3.25138 -3.86523,-4.27734 a 6.5,6.5 0 0 1 4.38867,-1.72266 z m -10,4 a 6.5,6.5 0 0 1 6.47852,6 l -12.95313,0 a 6.5,6.5 0 0 1 6.47461,-6 z" + id="path4359" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/48/types/user.svg b/html/themes/breezy/svg/48/types/user.svg new file mode 100644 index 0000000000000000000000000000000000000000..c72d451be3437ce74488e6666bfc9d353189ab24 --- /dev/null +++ b/html/themes/breezy/svg/48/types/user.svg @@ -0,0 +1,242 @@ +<?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="48" + height="48" + id="svg5453" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="user.svg" + inkscape:export-filename="user.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs5455"> + <linearGradient + id="linearGradient4143" + inkscape:collect="always"> + <stop + id="stop4145" + offset="0" + style="stop-color:#197cf1;stop-opacity:1" /> + <stop + id="stop4147" + offset="1" + style="stop-color:#20bcfa;stop-opacity:1" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="517.79797" + x2="400.57144" + y1="545.79797" + x1="400.57144" + id="linearGradient4149" + xlink:href="#linearGradient4143" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4290"> + <stop + style="stop-color:#7cbaf8;stop-opacity:1" + offset="0" + id="stop4292" /> + <stop + style="stop-color:#f4fcff;stop-opacity:1" + offset="1" + id="stop4294" /> + </linearGradient> + <linearGradient + id="linearGradient4410" + inkscape:collect="always"> + <stop + id="stop4412" + offset="0" + style="stop-color:#383e51;stop-opacity:1" /> + <stop + id="stop4414" + offset="1" + style="stop-color:#655c6f;stop-opacity:0" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-384.57143,-515.798)" + gradientUnits="userSpaceOnUse" + y2="538.79797" + x2="407.57144" + y1="524.79797" + x1="393.57144" + id="linearGradient4490" + xlink:href="#linearGradient4410" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4290" + id="linearGradient4279" + x1="23" + y1="34" + x2="23" + y2="14" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="1.9808597" + inkscape:cy="17.40531" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1878" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" + borderlayer="true" + showguides="true" + inkscape:object-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid4063" /> + <sodipodi:guide + position="1.1650391e-05,47.999996" + orientation="4,0" + id="guide4146" /> + <sodipodi:guide + position="1.1650391e-05,43.999996" + orientation="0,48" + id="guide4148" /> + <sodipodi:guide + position="48.000012,43.999996" + orientation="-4,0" + id="guide4150" /> + <sodipodi:guide + position="48.000012,47.999996" + orientation="0,-48" + id="guide4152" /> + <sodipodi:guide + position="1.1650391e-05,4.0000264" + orientation="4,0" + id="guide4154" /> + <sodipodi:guide + position="1.1650391e-05,2.6367188e-05" + orientation="0,48" + id="guide4156" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-4,0" + id="guide4158" /> + <sodipodi:guide + position="48.000012,4.0000264" + orientation="0,-48" + id="guide4160" /> + <sodipodi:guide + position="48.000012,48.000026" + orientation="0,-4" + id="guide4162" /> + <sodipodi:guide + position="44.000012,48.000026" + orientation="48,0" + id="guide4164" /> + <sodipodi:guide + position="44.000012,2.6367188e-05" + orientation="0,4" + id="guide4166" /> + <sodipodi:guide + position="48.000012,2.6367188e-05" + orientation="-48,0" + id="guide4168" /> + <sodipodi:guide + position="4.0000422,48.000026" + orientation="0,-4" + id="guide4170" /> + <sodipodi:guide + position="4.2167969e-05,48.000026" + orientation="48,0" + id="guide4172" /> + <sodipodi:guide + position="4.2167969e-05,2.6367188e-05" + orientation="0,4" + id="guide4174" /> + <sodipodi:guide + position="4.0000422,2.6367188e-05" + orientation="-48,0" + id="guide4176" /> + <sodipodi:guide + position="20.000012,43.999996" + orientation="39.999969,0" + id="guide4153" /> + <sodipodi:guide + position="20.000012,4.0000264" + orientation="0,8" + id="guide4155" /> + <sodipodi:guide + position="28.000012,4.0000264" + orientation="-39.999969,0" + id="guide4157" /> + <sodipodi:guide + position="28.000012,43.999996" + orientation="0,-8" + id="guide4159" /> + </sodipodi:namedview> + <metadata + id="metadata5458"> + <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="Capa 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-384.57143,-499.798)"> + <g + transform="matrix(1.4285708,0,0,1.4285701,-163.67328,-235.91271)" + id="layer1-4" + inkscape:label="Capa 1"> + <rect + ry="14.000006" + y="517.79797" + x="386.57144" + height="28.000027" + width="28.000011" + id="rect4130" + style="opacity:1;fill:url(#linearGradient4149);fill-opacity:1;stroke:none" /> + <path + id="path4415" + transform="translate(384.57143,515.798)" + d="m 16,9 c 0.217921,0 0.429167,0.022432 0.634766,0.0625 0.0013,2.294e-4 0.0026,-2.307e-4 0.0039,0 0.205076,0.037632 0.401092,0.098413 0.591797,0.1699219 L 17,9 Z M 15.95625,9.2999993 C 13.758701,9.7436419 13.26241,10.509142 13.200042,12.499988 12.595196,17.336479 17.827158,14.199576 16,16 l -2.099958,0.699992 C 10.958947,18.264792 9.5011727,19.280842 9,23 l 7,7 14,0 0,-10 -1,1 -9,-9 -0.732422,-0.730469 c 0.07151,0.190705 0.13229,0.386721 0.169922,0.591797 2.44e-4,0.0012 -2.42e-4,0.0027 0,0.0039 0.03764,0.206403 0.0625,0.41719 0.0625,0.634772 -1.864661,1.706005 -1.295767,1.604598 -0.43125,0.02187 0,-1.385014 -1.727486,-3.2218757 -3.1125,-3.2218757 z" + style="opacity:0.2;fill:url(#linearGradient4490);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccc" /> + </g> + <path + style="color:#4d4d4d;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4279);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 24 14 A 5 5 0 0 0 19 19 A 5 5 0 0 0 24 24 A 5 5 0 0 0 29 19 A 5 5 0 0 0 24 14 z M 24 24 A 10 10 0 0 0 14 34 L 15 34 L 30 34 L 30 33 L 15.060547 33 A 9 9 0 0 1 24 25 A 9 9 0 0 1 30 27.304688 L 30 26.011719 A 10 10 0 0 0 24 24 z M 24 15 A 4.0000062 4 0 0 1 28 19 A 4.0000062 4 0 0 1 24 23 A 4.0000062 4 0 0 1 20 19 A 4.0000062 4 0 0 1 24 15 z M 33 24 A 1 1 0 0 0 32 25 A 1 1 0 0 0 33 26 A 1 1 0 0 0 34 25 A 1 1 0 0 0 33 24 z M 32 28 L 32 34 L 34 34 L 34 28 L 32 28 z " + transform="translate(384.57143,499.798)" + id="path4243" /> + </g> +</svg> diff --git a/html/themes/breezy/svg/AUTHORS b/html/themes/breezy/svg/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..4edd0306fa7094ed1295ff42f86fb7864c3645c4 --- /dev/null +++ b/html/themes/breezy/svg/AUTHORS @@ -0,0 +1,216 @@ +Icon update for FusionDirectory by Timothée Giet, 2016. +All new icons are either copies, modified versions or creations largely inspired from the Breeze icon set. +See a copy of the license below, or at the original source location: +https://projects.kde.org/projects/kde/workspace/breeze/repository/revisions/master/entry/COPYING-ICONS + + +The Breeze Icon Theme in icons/ + + Copyright (C) 2014 Uri Herrera <uri_herrera@nitrux.in> and others + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library. If not, see <http://www.gnu.org/licenses/>. + +Clarification: + + The GNU Lesser General Public License or LGPL is written for + software libraries in the first place. We expressly want the LGPL to + be valid for this artwork library too. + + KDE Breeze theme icons is a special kind of software library, it is an + artwork library, it's elements can be used in a Graphical User Interface, or + GUI. + + Source code, for this library means: + - where they exist, SVG; + - otherwise, if applicable, the multi-layered formats xcf or psd, or + otherwise png. + + The LGPL in some sections obliges you to make the files carry + notices. With images this is in some cases impossible or hardly useful. + + With this library a notice is placed at a prominent place in the directory + containing the elements. You may follow this practice. + + The exception in section 5 of the GNU Lesser General Public License covers + the use of elements of this art library in a GUI. + + https://vdesign.kde.org/ + +----- + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + diff --git a/html/themes/breezy/tabs.css b/html/themes/breezy/tabs.css new file mode 100644 index 0000000000000000000000000000000000000000..b47121c079410853c202b122a27114f6977cb65c --- /dev/null +++ b/html/themes/breezy/tabs.css @@ -0,0 +1,105 @@ +table.tabs_header { +width:100%; +border:none; +border-spacing:0px; +font-family:arial,helvetica,sans-serif; +text-decoration:none; +color:#00008F; +font-size:13px; +font-weight:bold; +} + +/* tabs header */ +table.tabs_header > tbody > tr > td { +padding:0; +vertical-align:bottom; +white-space:nowrap; +width:1px; +} +table.tabs_header > tbody > tr > td:last-child { +width:auto; +} + +table.tabs_header > tbody > tr > td > div > a { +display:inline-block; +border-radius:5px 5px 0 0; +text-align:center; +background-color:#D0D0D0; +border:1px solid #999; +margin-top:5px; +padding-top:1px; +padding-left:8px; +padding-right:8px; +padding-bottom:5px; +transition:margin .4s ease, padding .4s ease; +} +table.tabs_header > tbody > tr > td > div > a:hover { +margin-top:0; +padding-top:2px; +padding-bottom:7px; +} + +table.tabs_header > tbody > tr > td > div.tab_active > a { +background-color:#f8f8f8; +border-bottom:0; +margin-top:2px; +padding-top:2px; +padding-bottom:8px; +} + +table.tabs_header > tbody > tr > td > div.tab_inactive > a { +color:grey; +font-weight:normal; +} + +table.tabs_header > tbody > tr > td > div.tab_disabled > a { +color:grey; +} +table.tabs_header > tbody > tr > td > div.tab_disabled > a:hover { +margin-top:5px; +padding-top:1px; +padding-bottom:5px; +} + +table.tabs_header > tbody > tr > td > div.tab_notify > a { +background-image:url(../../geticon.php?context=status&icon=dialog-information&size=16); +background-repeat:no-repeat; +background-position:1px 1px; +} +html.ltr table.tabs_header > tbody > tr > td > div.tab_notify > a { +padding-left:18px; +} +html.rtl table.tabs_header > tbody > tr > td > div.tab_notify > a { +padding-right:18px; +} + +html.ltr table.tabs_header > tbody > tr > td > div.tab_left > a { +border-right-width:0; +} +html.rtl table.tabs_header > tbody > tr > td > div.tab_left > a { +border-left-width:0; +} + +html.ltr table.tabs_header > tbody > tr > td > div.tab_right > a { +border-left-width:0; +} +html.rtl table.tabs_header > tbody > tr > td > div.tab_right > a { +border-right-width:0; +} + +table.tabs_header > tbody > tr > td > div.tab_border { +border-bottom:1px solid #999; +} + +/* tabs content */ +div.tab_content { +padding:4px; +width:auto; +background-color:#F8F8F8; +border-style:solid; +border-color:#AAA; +border-top-width:0px; +border-bottom-width:1px; +border-left-width:1px; +border-right-width:1px; +} diff --git a/html/themes/breezy/theme.css b/html/themes/breezy/theme.css new file mode 100644 index 0000000000000000000000000000000000000000..f13d3036be69013b9810e2a052d9dc94fb679b86 --- /dev/null +++ b/html/themes/breezy/theme.css @@ -0,0 +1 @@ +/* Themes can override this file to add some CSS */