diff options
67 files changed, 1418 insertions, 88 deletions
diff --git a/KF5KirigamiMacros.cmake b/KF5KirigamiMacros.cmake deleted file mode 100644 index 175db954..00000000 --- a/KF5KirigamiMacros.cmake +++ /dev/null | |||
@@ -1,85 +0,0 @@ | |||
1 | |||
2 | include(CMakeParseArguments) | ||
3 | include(ExternalProject) | ||
4 | find_package(Git) | ||
5 | |||
6 | |||
7 | function(kirigami_package_breeze_icons) | ||
8 | set(_multiValueArgs ICONS) | ||
9 | cmake_parse_arguments(ARG "" "" "${_multiValueArgs}" ${ARGN} ) | ||
10 | |||
11 | if(NOT ARG_ICONS) | ||
12 | message(FATAL_ERROR "No ICONS argument given to kirigami_package_breeze_icons") | ||
13 | endif() | ||
14 | |||
15 | #include icons used by Kirigami components themselves | ||
16 | set(ARG_ICONS ${ARG_ICONS} go-next go-previous handle-left handle-right) | ||
17 | |||
18 | function(_find_breeze_icon icon varName) | ||
19 | #HACKY | ||
20 | SET(path "") | ||
21 | file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/48/${icon}.svg ) | ||
22 | |||
23 | #seach in other sizes as well | ||
24 | if (NOT EXISTS ${path}) | ||
25 | file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/32/${icon}.svg ) | ||
26 | if (NOT EXISTS ${path}) | ||
27 | file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/24/${icon}.svg ) | ||
28 | if (NOT EXISTS ${path}) | ||
29 | file(GLOB_RECURSE path ${_BREEZEICONS_DIR}/icons/*/22/${icon}.svg ) | ||
30 | endif() | ||
31 | endif() | ||
32 | endif() | ||
33 | if (NOT EXISTS ${path}) | ||
34 | return() | ||
35 | endif() | ||
36 | |||
37 | get_filename_component(path "${path}" REALPATH) | ||
38 | |||
39 | SET(${varName} ${path} PARENT_SCOPE) | ||
40 | endfunction() | ||
41 | |||
42 | if (BREEZEICONS_DIR AND NOT EXISTS ${BREEZEICONS_DIR}) | ||
43 | message(FATAL_ERROR "BREEZEICONS_DIR variable does not point to existing dir: \"${BREEZEICONS_DIR}\"") | ||
44 | endif() | ||
45 | |||
46 | set(_BREEZEICONS_DIR "${BREEZEICONS_DIR}") | ||
47 | |||
48 | #FIXME: this is a terrible hack | ||
49 | if(NOT _BREEZEICONS_DIR) | ||
50 | set(_BREEZEICONS_DIR "${CMAKE_BINARY_DIR}/breeze-icons/src/breeze-icons") | ||
51 | |||
52 | # replacement for ExternalProject_Add not yet working | ||
53 | # first time config? | ||
54 | if (NOT EXISTS ${_BREEZEICONS_DIR}) | ||
55 | execute_process(COMMAND ${GIT_EXECUTABLE} clone --depth 1 git://anongit.kde.org/breeze-icons.git ${_BREEZEICONS_DIR}) | ||
56 | endif() | ||
57 | |||
58 | # external projects are only pulled at make time, not configure time | ||
59 | # so this is too late to work with the _find_breeze_icon() method | ||
60 | # _find_breeze_icon() would need to be turned into a target/command | ||
61 | if (FALSE) | ||
62 | ExternalProject_Add( | ||
63 | breeze-icons | ||
64 | PREFIX breeze-icons | ||
65 | GIT_REPOSITORY git://anongit.kde.org/breeze-icons.git | ||
66 | CONFIGURE_COMMAND "" | ||
67 | BUILD_COMMAND "" | ||
68 | INSTALL_COMMAND "" | ||
69 | LOG_DOWNLOAD ON | ||
70 | ) | ||
71 | endif() | ||
72 | endif() | ||
73 | |||
74 | message (STATUS "Found external breeze icons:") | ||
75 | foreach(_iconName ${ARG_ICONS}) | ||
76 | set(_iconPath "") | ||
77 | _find_breeze_icon(${_iconName} _iconPath) | ||
78 | message (STATUS ${_iconPath}) | ||
79 | if (EXISTS ${_iconPath}) | ||
80 | install(FILES ${_iconPath} DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/kirigami/icons/ RENAME ${_iconName}.svg) | ||
81 | endif() | ||
82 | |||
83 | endforeach() | ||
84 | endfunction() | ||
85 | |||
diff --git a/applications/mail/main.cpp b/applications/mail/main.cpp index f28c72d3..b02c62d2 100644 --- a/applications/mail/main.cpp +++ b/applications/mail/main.cpp | |||
@@ -59,6 +59,7 @@ int main(int argc, char *argv[]) | |||
59 | QtWebEngine::initialize(); | 59 | QtWebEngine::initialize(); |
60 | WebUrlRequestInterceptor *wuri = new WebUrlRequestInterceptor(); | 60 | WebUrlRequestInterceptor *wuri = new WebUrlRequestInterceptor(); |
61 | QQuickWebEngineProfile::defaultProfile()->setRequestInterceptor(wuri); | 61 | QQuickWebEngineProfile::defaultProfile()->setRequestInterceptor(wuri); |
62 | QIcon::setThemeName("kube"); | ||
62 | 63 | ||
63 | auto package = KPackage::PackageLoader::self()->loadPackage("KPackage/GenericQML", "org.kube.components.mail"); | 64 | auto package = KPackage::PackageLoader::self()->loadPackage("KPackage/GenericQML", "org.kube.components.mail"); |
64 | Q_ASSERT(package.isValid()); | 65 | Q_ASSERT(package.isValid()); |
diff --git a/components/CMakeLists.txt b/components/CMakeLists.txt index 4db24fc8..79a2f0c0 100644 --- a/components/CMakeLists.txt +++ b/components/CMakeLists.txt | |||
@@ -36,6 +36,3 @@ install_component(mail) | |||
36 | install_component(accounts) | 36 | install_component(accounts) |
37 | install_component(mailviewer) | 37 | install_component(mailviewer) |
38 | install_component(theme) | 38 | install_component(theme) |
39 | |||
40 | include(${CMAKE_SOURCE_DIR}/KF5KirigamiMacros.cmake) | ||
41 | kirigami_package_breeze_icons(ICONS applications-graphics view-list-icons folder-sync view-list-details configure document-edit dialog-cancel document-decrypt mail-reply-sender bookmarks folder) | ||
diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index 72c1e219..45a9718d 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt | |||
@@ -2,7 +2,92 @@ find_package(ECM 0.0.8 REQUIRED NO_MODULE) | |||
2 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH}) | 2 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH}) |
3 | 3 | ||
4 | include(ECMInstallIcons) | 4 | include(ECMInstallIcons) |
5 | include(KDEInstallDirs) | ||
5 | 6 | ||
7 | function(copy_breeze_icons) | ||
8 | set(_multiValueArgs ICONS) | ||
9 | cmake_parse_arguments(ARG "" "" "${_multiValueArgs}" ${ARGN} ) | ||
10 | set(_BREEZEICONS_DIR ${CMAKE_CURRENT_BINARY_DIR}/breeze) | ||
11 | |||
12 | function(_copy_breeze_icon icon) | ||
13 | SET(paths "") | ||
14 | #breeze only ships svgs anyways | ||
15 | #change icons to * to also get icons-dark | ||
16 | file(GLOB_RECURSE paths ${_BREEZEICONS_DIR}/icons/*/*/${icon}.svg ) | ||
17 | |||
18 | #We cannot copy symlinks unless the target is there, so copy non-symlinks first | ||
19 | foreach(path ${paths}) | ||
20 | file(RELATIVE_PATH _rel_path ${_BREEZEICONS_DIR} ${path}) | ||
21 | set(_target_path ${CMAKE_CURRENT_SOURCE_DIR}/breeze/${_rel_path}) | ||
22 | get_filename_component(_target_dir ${_target_path} DIRECTORY) | ||
23 | if (NOT EXISTS ${_target_path} AND NOT IS_SYMLINK ${path}) | ||
24 | message("Copying icon ${path} to ${_target_dir}") | ||
25 | file(COPY ${path} DESTINATION ${_target_dir}) | ||
26 | endif() | ||
27 | endforeach() | ||
28 | #Now copy symlinks | ||
29 | foreach(path ${paths}) | ||
30 | file(RELATIVE_PATH _rel_path ${_BREEZEICONS_DIR} ${path}) | ||
31 | set(_target_path ${CMAKE_CURRENT_SOURCE_DIR}/breeze/${_rel_path}) | ||
32 | get_filename_component(_target_dir ${_target_path} DIRECTORY) | ||
33 | if (NOT EXISTS ${_target_path} AND IS_SYMLINK ${path}) | ||
34 | message("Copying icon symlink ${path} to ${_target_dir}") | ||
35 | file(COPY ${path} DESTINATION ${_target_dir}) | ||
36 | endif() | ||
37 | endforeach() | ||
38 | |||
39 | endfunction() | ||
40 | |||
41 | #Fetch the icons | ||
42 | if (NOT EXISTS ${_BREEZEICONS_DIR}) | ||
43 | message("Cloning into ${_BREEZEICONS_DIR}") | ||
44 | execute_process(COMMAND ${GIT_EXECUTABLE} clone --depth 1 git://anongit.kde.org/breeze-icons.git ${_BREEZEICONS_DIR}) | ||
45 | endif() | ||
46 | |||
47 | #Copy the icons we want | ||
48 | foreach(_iconName ${ARG_ICONS}) | ||
49 | message (STATUS ${_iconName}) | ||
50 | _copy_breeze_icon(${_iconName}) | ||
51 | endforeach() | ||
52 | #Copy the license file | ||
53 | file(COPY ${_BREEZEICONS_DIR}/COPYING-ICONS DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/breeze/) | ||
54 | endfunction() | ||
55 | |||
56 | |||
57 | |||
58 | # Run this function if you want to updated the icons | ||
59 | # Warning: some icon names are symlinks and you'll thus need to copy the actual icon as well. If copying fails with some weird errors that's typically the problem | ||
60 | if (FALSE) | ||
61 | #file(REMOVE_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/breeze/) | ||
62 | copy_breeze_icons(ICONS | ||
63 | application-menu | ||
64 | dialog-cancel | ||
65 | dialog-ok | ||
66 | document-decrypt | ||
67 | document-edit | ||
68 | document-encrypt | ||
69 | edit-delete | ||
70 | edit-find | ||
71 | edit-undo | ||
72 | error | ||
73 | folder | ||
74 | im-user | ||
75 | mail-mark-important | ||
76 | mail-mark-unread-new | ||
77 | mail-reply-sender | ||
78 | network-disconnect | ||
79 | view-refresh | ||
80 | ) | ||
81 | endif() | ||
82 | |||
83 | |||
84 | #Install kube icons | ||
6 | ecm_install_icons(ICONS sc-apps-kube_icon.svg 256-apps-kube_icon.png DESTINATION share/icons) | 85 | ecm_install_icons(ICONS sc-apps-kube_icon.svg 256-apps-kube_icon.png DESTINATION share/icons) |
7 | ecm_install_icons(ICONS sc-apps-kube_symbol.svg DESTINATION share/icons) | 86 | ecm_install_icons(ICONS sc-apps-kube_symbol.svg DESTINATION share/icons) |
8 | ecm_install_icons(ICONS sc-apps-kube_logo.svg DESTINATION share/icons) | 87 | ecm_install_icons(ICONS sc-apps-kube_logo.svg DESTINATION share/icons) |
88 | |||
89 | install(DIRECTORY | ||
90 | breeze/icons/places | ||
91 | breeze/icons/actions | ||
92 | DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/kube) | ||
93 | install(FILES breeze/icons/index.theme DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/kube) | ||
diff --git a/icons/breeze/COPYING-ICONS b/icons/breeze/COPYING-ICONS new file mode 100644 index 00000000..63d73657 --- /dev/null +++ b/icons/breeze/COPYING-ICONS | |||
@@ -0,0 +1,209 @@ | |||
1 | The Breeze Icon Theme in icons/ | ||
2 | |||
3 | Copyright (C) 2014 Uri Herrera <uri_herrera@nitrux.in> and others | ||
4 | |||
5 | This library is free software; you can redistribute it and/or | ||
6 | modify it under the terms of the GNU Lesser General Public | ||
7 | License as published by the Free Software Foundation; either | ||
8 | version 3 of the License, or (at your option) any later version. | ||
9 | |||
10 | This library is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
13 | Lesser General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU Lesser General Public | ||
16 | License along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
17 | |||
18 | Clarification: | ||
19 | |||
20 | The GNU Lesser General Public License or LGPL is written for | ||
21 | software libraries in the first place. We expressly want the LGPL to | ||
22 | be valid for this artwork library too. | ||
23 | |||
24 | KDE Breeze theme icons is a special kind of software library, it is an | ||
25 | artwork library, it's elements can be used in a Graphical User Interface, or | ||
26 | GUI. | ||
27 | |||
28 | Source code, for this library means: | ||
29 | - where they exist, SVG; | ||
30 | - otherwise, if applicable, the multi-layered formats xcf or psd, or | ||
31 | otherwise png. | ||
32 | |||
33 | The LGPL in some sections obliges you to make the files carry | ||
34 | notices. With images this is in some cases impossible or hardly useful. | ||
35 | |||
36 | With this library a notice is placed at a prominent place in the directory | ||
37 | containing the elements. You may follow this practice. | ||
38 | |||
39 | The exception in section 5 of the GNU Lesser General Public License covers | ||
40 | the use of elements of this art library in a GUI. | ||
41 | |||
42 | https://vdesign.kde.org/ | ||
43 | |||
44 | ----- | ||
45 | GNU LESSER GENERAL PUBLIC LICENSE | ||
46 | Version 3, 29 June 2007 | ||
47 | |||
48 | Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> | ||
49 | Everyone is permitted to copy and distribute verbatim copies | ||
50 | of this license document, but changing it is not allowed. | ||
51 | |||
52 | |||
53 | This version of the GNU Lesser General Public License incorporates | ||
54 | the terms and conditions of version 3 of the GNU General Public | ||
55 | License, supplemented by the additional permissions listed below. | ||
56 | |||
57 | 0. Additional Definitions. | ||
58 | |||
59 | As used herein, "this License" refers to version 3 of the GNU Lesser | ||
60 | General Public License, and the "GNU GPL" refers to version 3 of the GNU | ||
61 | General Public License. | ||
62 | |||
63 | "The Library" refers to a covered work governed by this License, | ||
64 | other than an Application or a Combined Work as defined below. | ||
65 | |||
66 | An "Application" is any work that makes use of an interface provided | ||
67 | by the Library, but which is not otherwise based on the Library. | ||
68 | Defining a subclass of a class defined by the Library is deemed a mode | ||
69 | of using an interface provided by the Library. | ||
70 | |||
71 | A "Combined Work" is a work produced by combining or linking an | ||
72 | Application with the Library. The particular version of the Library | ||
73 | with which the Combined Work was made is also called the "Linked | ||
74 | Version". | ||
75 | |||
76 | The "Minimal Corresponding Source" for a Combined Work means the | ||
77 | Corresponding Source for the Combined Work, excluding any source code | ||
78 | for portions of the Combined Work that, considered in isolation, are | ||
79 | based on the Application, and not on the Linked Version. | ||
80 | |||
81 | The "Corresponding Application Code" for a Combined Work means the | ||
82 | object code and/or source code for the Application, including any data | ||
83 | and utility programs needed for reproducing the Combined Work from the | ||
84 | Application, but excluding the System Libraries of the Combined Work. | ||
85 | |||
86 | 1. Exception to Section 3 of the GNU GPL. | ||
87 | |||
88 | You may convey a covered work under sections 3 and 4 of this License | ||
89 | without being bound by section 3 of the GNU GPL. | ||
90 | |||
91 | 2. Conveying Modified Versions. | ||
92 | |||
93 | If you modify a copy of the Library, and, in your modifications, a | ||
94 | facility refers to a function or data to be supplied by an Application | ||
95 | that uses the facility (other than as an argument passed when the | ||
96 | facility is invoked), then you may convey a copy of the modified | ||
97 | version: | ||
98 | |||
99 | a) under this License, provided that you make a good faith effort to | ||
100 | ensure that, in the event an Application does not supply the | ||
101 | function or data, the facility still operates, and performs | ||
102 | whatever part of its purpose remains meaningful, or | ||
103 | |||
104 | b) under the GNU GPL, with none of the additional permissions of | ||
105 | this License applicable to that copy. | ||
106 | |||
107 | 3. Object Code Incorporating Material from Library Header Files. | ||
108 | |||
109 | The object code form of an Application may incorporate material from | ||
110 | a header file that is part of the Library. You may convey such object | ||
111 | code under terms of your choice, provided that, if the incorporated | ||
112 | material is not limited to numerical parameters, data structure | ||
113 | layouts and accessors, or small macros, inline functions and templates | ||
114 | (ten or fewer lines in length), you do both of the following: | ||
115 | |||
116 | a) Give prominent notice with each copy of the object code that the | ||
117 | Library is used in it and that the Library and its use are | ||
118 | covered by this License. | ||
119 | |||
120 | b) Accompany the object code with a copy of the GNU GPL and this license | ||
121 | document. | ||
122 | |||
123 | 4. Combined Works. | ||
124 | |||
125 | You may convey a Combined Work under terms of your choice that, | ||
126 | taken together, effectively do not restrict modification of the | ||
127 | portions of the Library contained in the Combined Work and reverse | ||
128 | engineering for debugging such modifications, if you also do each of | ||
129 | the following: | ||
130 | |||
131 | a) Give prominent notice with each copy of the Combined Work that | ||
132 | the Library is used in it and that the Library and its use are | ||
133 | covered by this License. | ||
134 | |||
135 | b) Accompany the Combined Work with a copy of the GNU GPL and this license | ||
136 | document. | ||
137 | |||
138 | c) For a Combined Work that displays copyright notices during | ||
139 | execution, include the copyright notice for the Library among | ||
140 | these notices, as well as a reference directing the user to the | ||
141 | copies of the GNU GPL and this license document. | ||
142 | |||
143 | d) Do one of the following: | ||
144 | |||
145 | 0) Convey the Minimal Corresponding Source under the terms of this | ||
146 | License, and the Corresponding Application Code in a form | ||
147 | suitable for, and under terms that permit, the user to | ||
148 | recombine or relink the Application with a modified version of | ||
149 | the Linked Version to produce a modified Combined Work, in the | ||
150 | manner specified by section 6 of the GNU GPL for conveying | ||
151 | Corresponding Source. | ||
152 | |||
153 | 1) Use a suitable shared library mechanism for linking with the | ||
154 | Library. A suitable mechanism is one that (a) uses at run time | ||
155 | a copy of the Library already present on the user's computer | ||
156 | system, and (b) will operate properly with a modified version | ||
157 | of the Library that is interface-compatible with the Linked | ||
158 | Version. | ||
159 | |||
160 | e) Provide Installation Information, but only if you would otherwise | ||
161 | be required to provide such information under section 6 of the | ||
162 | GNU GPL, and only to the extent that such information is | ||
163 | necessary to install and execute a modified version of the | ||
164 | Combined Work produced by recombining or relinking the | ||
165 | Application with a modified version of the Linked Version. (If | ||
166 | you use option 4d0, the Installation Information must accompany | ||
167 | the Minimal Corresponding Source and Corresponding Application | ||
168 | Code. If you use option 4d1, you must provide the Installation | ||
169 | Information in the manner specified by section 6 of the GNU GPL | ||
170 | for conveying Corresponding Source.) | ||
171 | |||
172 | 5. Combined Libraries. | ||
173 | |||
174 | You may place library facilities that are a work based on the | ||
175 | Library side by side in a single library together with other library | ||
176 | facilities that are not Applications and are not covered by this | ||
177 | License, and convey such a combined library under terms of your | ||
178 | choice, if you do both of the following: | ||
179 | |||
180 | a) Accompany the combined library with a copy of the same work based | ||
181 | on the Library, uncombined with any other library facilities, | ||
182 | conveyed under the terms of this License. | ||
183 | |||
184 | b) Give prominent notice with the combined library that part of it | ||
185 | is a work based on the Library, and explaining where to find the | ||
186 | accompanying uncombined form of the same work. | ||
187 | |||
188 | 6. Revised Versions of the GNU Lesser General Public License. | ||
189 | |||
190 | The Free Software Foundation may publish revised and/or new versions | ||
191 | of the GNU Lesser General Public License from time to time. Such new | ||
192 | versions will be similar in spirit to the present version, but may | ||
193 | differ in detail to address new problems or concerns. | ||
194 | |||
195 | Each version is given a distinguishing version number. If the | ||
196 | Library as you received it specifies that a certain numbered version | ||
197 | of the GNU Lesser General Public License "or any later version" | ||
198 | applies to it, you have the option of following the terms and | ||
199 | conditions either of that published version or of any later version | ||
200 | published by the Free Software Foundation. If the Library as you | ||
201 | received it does not specify a version number of the GNU Lesser | ||
202 | General Public License, you may choose any version of the GNU Lesser | ||
203 | General Public License ever published by the Free Software Foundation. | ||
204 | |||
205 | If the Library as you received it specifies that a proxy can decide | ||
206 | whether future versions of the GNU Lesser General Public License shall | ||
207 | apply, that proxy's public statement of acceptance of any version is | ||
208 | permanent authorization for you to choose that version for the | ||
209 | Library. | ||
diff --git a/icons/breeze/icons/actions/16/application-menu.svg b/icons/breeze/icons/actions/16/application-menu.svg new file mode 100644 index 00000000..67dd4d95 --- /dev/null +++ b/icons/breeze/icons/actions/16/application-menu.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 2 3 L 2 5 L 14 5 L 14 3 L 2 3 z M 2 7 L 2 9 L 14 9 L 14 7 L 2 7 z M 2 11 L 2 13 L 14 13 L 14 11 L 2 11 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/dialog-cancel.svg b/icons/breeze/icons/actions/16/dialog-cancel.svg new file mode 100644 index 00000000..e87e635c --- /dev/null +++ b/icons/breeze/icons/actions/16/dialog-cancel.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | 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 " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/dialog-ok.svg b/icons/breeze/icons/actions/16/dialog-ok.svg new file mode 120000 index 00000000..6774aa85 --- /dev/null +++ b/icons/breeze/icons/actions/16/dialog-ok.svg | |||
@@ -0,0 +1 @@ | |||
dialog-ok-apply.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/16/document-decrypt.svg b/icons/breeze/icons/actions/16/document-decrypt.svg new file mode 100644 index 00000000..3e20ba4f --- /dev/null +++ b/icons/breeze/icons/actions/16/document-decrypt.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | 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 " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/document-edit.svg b/icons/breeze/icons/actions/16/document-edit.svg new file mode 100644 index 00000000..a7ba2cc8 --- /dev/null +++ b/icons/breeze/icons/actions/16/document-edit.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 10.398438 2 L 5.2871094 7.1113281 L 2 10.398438 L 2 14 L 5.6015625 14 L 14 5.6015625 L 10.398438 2 z M 8.3496094 5.4902344 L 10.509766 7.6503906 L 7.3359375 10.826172 L 7.3359375 10.150391 L 6.3222656 10.171875 L 5.2871094 10.171875 L 5.2871094 9.1367188 L 5.2871094 8.5507812 L 6.7285156 7.1113281 L 8.3496094 5.4902344 z M 4.2734375 9.5644531 L 4.2734375 11.185547 L 5.3085938 11.185547 L 6.3007812 11.185547 L 6.3222656 11.837891 L 5.2421875 12.919922 L 3.8007812 12.919922 L 3.0800781 12.199219 L 3.0800781 10.757812 L 4.2734375 9.5644531 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/document-encrypt.svg b/icons/breeze/icons/actions/16/document-encrypt.svg new file mode 120000 index 00000000..0c903222 --- /dev/null +++ b/icons/breeze/icons/actions/16/document-encrypt.svg | |||
@@ -0,0 +1 @@ | |||
document-encrypted.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/16/edit-delete.svg b/icons/breeze/icons/actions/16/edit-delete.svg new file mode 100644 index 00000000..9dfb2e07 --- /dev/null +++ b/icons/breeze/icons/actions/16/edit-delete.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-NegativeText { | ||
5 | color:#da4453; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | class="ColorScheme-NegativeText" | ||
12 | d="m5 2v2h1v-1h4v1h1v-2h-5zm-3 3v1h2v8h8v-8h2v-1zm3 1h6v7h-6z" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/edit-find.svg b/icons/breeze/icons/actions/16/edit-find.svg new file mode 100644 index 00000000..736d8359 --- /dev/null +++ b/icons/breeze/icons/actions/16/edit-find.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 6.5 2 C 4.007 2 2 4.01 2 6.5 C 2 8.993 4.01 11 6.5 11 C 7.5636432 11 8.5263409 10.618801 9.2949219 10.005859 L 13.292969 14.003906 L 14 13.296875 L 10.001953 9.2988281 C 10.617604 8.529048 11 7.565338 11 6.5 C 11 4.007 8.99 2 6.5 2 z M 6.5 3 C 8.439 3 10 4.561 10 6.5 C 10 8.439 8.439 10 6.5 10 C 4.561 10 3 8.439 3 6.5 C 3 4.561 4.561 3 6.5 3 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/edit-undo.svg b/icons/breeze/icons/actions/16/edit-undo.svg new file mode 100644 index 00000000..87f0ffca --- /dev/null +++ b/icons/breeze/icons/actions/16/edit-undo.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 6.5 2 L 3.21875 5.28125 L 3 5.5 L 3.21875 5.71875 L 6.5 9 L 7.21875 8.28125 L 4.90625 6 L 6 6 L 7.1875 6 L 8 6 L 8.5 6 C 10.432998 6 12 7.5669984 12 9.5 C 12 11.433002 10.432998 13 8.5 13 L 8 13 L 7 13 L 7 14 L 8 14 L 8.5 14 C 10.985283 14 13 11.985252 13 9.5 C 13 7.0147479 10.985283 5 8.5 5 L 8 5 L 7.1875 5 L 6 5 L 4.90625 5 L 7.21875 2.71875 L 6.5 2 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/error.svg b/icons/breeze/icons/actions/16/error.svg new file mode 120000 index 00000000..4afa75af --- /dev/null +++ b/icons/breeze/icons/actions/16/error.svg | |||
@@ -0,0 +1 @@ | |||
dialog-cancel.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/16/im-user.svg b/icons/breeze/icons/actions/16/im-user.svg new file mode 100644 index 00000000..c3930096 --- /dev/null +++ b/icons/breeze/icons/actions/16/im-user.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="m429.71429 533.79074a3 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 -3m0 1a2 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 -2m0 6a5 4.5 0 0 0 -5 4.5 5 4.5 0 0 0 .0332 .5h9.93a5 4.5 0 0 0 .0371 -.5 5 4.5 0 0 0 -5 -4.5m.00005 1a4 3.5 0 0 1 3.95508 3h-7.91a4 3.5 0 0 1 3.95508 -3" | ||
11 | transform="translate(-421.71-531.79)" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/mail-mark-important.svg b/icons/breeze/icons/actions/16/mail-mark-important.svg new file mode 100644 index 00000000..1a61dfdf --- /dev/null +++ b/icons/breeze/icons/actions/16/mail-mark-important.svg | |||
@@ -0,0 +1,20 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | class="ColorScheme-Text" | ||
15 | d="M 1 2 L 1 14 L 10 14 L 10 13 L 2.65625 13 L 6.6425781 8.3496094 L 7.9980469 9.7070312 C 7.9850469 9.6830314 13.998047 3.7070312 13.998047 3.7070312 L 13.998047 8 L 14.998047 8 L 14.998047 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 " /> | ||
16 | <path | ||
17 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
18 | class="ColorScheme-NegativeText" | ||
19 | d="M 12 8 L 12 12 L 13 12 L 13 8 L 12 8 z M 12 13 L 12 14 L 13 14 L 13 13 L 12 13 z " /> | ||
20 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/mail-mark-unread-new.svg b/icons/breeze/icons/actions/16/mail-mark-unread-new.svg new file mode 100644 index 00000000..f5afe676 --- /dev/null +++ b/icons/breeze/icons/actions/16/mail-mark-unread-new.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 1 2 L 1 14 L 9 14 L 9 13 L 2.65625 13 L 6.6425781 8.3496094 L 8 9.7070312 C 7.986852 9.6833613 14 3.7070312 14 3.7070312 L 14 8 L 15 8 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 12 8 L 11.425781 9.6132812 L 9.8789062 8.8789062 L 10.613281 10.425781 L 9 11 L 10.613281 11.574219 L 9.8789062 13.121094 L 11.425781 12.386719 L 12 14 L 12.574219 12.386719 L 14.121094 13.121094 L 13.386719 11.574219 L 15 11 L 13.386719 10.425781 L 14.121094 8.8789062 L 12.574219 9.6132812 L 12 8 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/mail-reply-sender.svg b/icons/breeze/icons/actions/16/mail-reply-sender.svg new file mode 100644 index 00000000..c1b6f839 --- /dev/null +++ b/icons/breeze/icons/actions/16/mail-reply-sender.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="m 7,4 0,0 0,3 7,0 0,2 -7,0 0,3 0,0 -5,-4 z" | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/network-disconnect.svg b/icons/breeze/icons/actions/16/network-disconnect.svg new file mode 100644 index 00000000..33bf9538 --- /dev/null +++ b/icons/breeze/icons/actions/16/network-disconnect.svg | |||
@@ -0,0 +1,21 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
13 | d="M 13.300781 2 L 10.650391 4.6503906 L 9.5859375 3.5859375 L 6.5859375 6.5859375 L 9.4140625 9.4140625 L 12.414062 6.4140625 L 11.349609 5.3496094 L 14 2.6992188 L 13.300781 2 z M 5.5859375 7.5859375 L 3.5859375 9.5859375 L 4.6503906 10.650391 L 2 13.300781 L 2.6992188 14 L 5.3496094 11.349609 L 6.4140625 12.414062 L 8.4140625 10.414062 L 5.5859375 7.5859375 z " | ||
14 | class="ColorScheme-Text" | ||
15 | /> | ||
16 | <path | ||
17 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
18 | d="M 9,9.83 10.667,11.497 9,13.164 9.833,13.997 11.5,12.33 13.167,13.997 14,13.164 12.333,11.497 14,9.83 13.167,8.997 11.5,10.664 9.833,8.997 Z" | ||
19 | class="ColorScheme-NegativeText" | ||
20 | /> | ||
21 | </svg> | ||
diff --git a/icons/breeze/icons/actions/16/view-refresh.svg b/icons/breeze/icons/actions/16/view-refresh.svg new file mode 100644 index 00000000..b0ab47ad --- /dev/null +++ b/icons/breeze/icons/actions/16/view-refresh.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | 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.2385759 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.6862909 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.6862934 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.7215847 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 " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/application-menu.svg b/icons/breeze/icons/actions/22/application-menu.svg new file mode 100644 index 00000000..2e198e6e --- /dev/null +++ b/icons/breeze/icons/actions/22/application-menu.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m3 5v2h16v-2h-16m0 5v2h16v-2h-16m0 5v2h16v-2h-16" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/dialog-cancel.svg b/icons/breeze/icons/actions/22/dialog-cancel.svg new file mode 100644 index 00000000..c3b696c0 --- /dev/null +++ b/icons/breeze/icons/actions/22/dialog-cancel.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | transform="translate(-1-1)" d="m12 4c-2.027598 0-3.87132.756694-5.28125 2-.126239.11132-.25603.22478-.375.34375l-.34375.375c-1.243306 1.40993-2 3.253652-2 5.28125 0 4.41828 3.58172 8 8 8 2.027598 0 3.87132-.756694 5.28125-2l.375-.34375c.11897-.11897.23243-.248761.34375-.375 1.243306-1.40993 2-3.253652 2-5.28125 0-4.41828-3.58172-8-8-8m0 1c3.86599 0 7 3.13401 7 7 0 1.75366-.653215 3.334268-1.71875 4.5625l-9.84375-9.84375c1.228231-1.065535 2.80884-1.71875 4.5625-1.71875m-5.28125 2.4375l9.84375 9.84375c-1.228232 1.065535-2.80884 1.71875-4.5625 1.71875-3.86599 0-7-3.13401-7-7 0-1.75366.653215-3.334269 1.71875-4.5625" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/dialog-ok.svg b/icons/breeze/icons/actions/22/dialog-ok.svg new file mode 120000 index 00000000..6774aa85 --- /dev/null +++ b/icons/breeze/icons/actions/22/dialog-ok.svg | |||
@@ -0,0 +1 @@ | |||
dialog-ok-apply.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/22/document-decrypt.svg b/icons/breeze/icons/actions/22/document-decrypt.svg new file mode 100644 index 00000000..f1f4be5b --- /dev/null +++ b/icons/breeze/icons/actions/22/document-decrypt.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m11 3c-2.216 0-4 1.784-4 4v1h1v-.5c0-1.939 1.338-3.5 3-3.5 1.662 0 3 1.561 3 3.5v3.5h-5-1-1-1-1v1 7h1 10 1v-8h-1-1v-4c0-2.216-1.784-4-4-4m-5 9h10v6h-10v-6" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/document-edit.svg b/icons/breeze/icons/actions/22/document-edit.svg new file mode 100644 index 00000000..60e13599 --- /dev/null +++ b/icons/breeze/icons/actions/22/document-edit.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m14.996094 3l-11.992188 11.992188h-.003906v4.00781h1 2 1.00781v-.003906l11.992188-11.992188-.001953-.001953.001953-.001953-4-4-.001953.001953-.001953-.001953m-1.998047 3.412109l2.589844 2.589844-7.587891 7.587891v-1.589844h-1-1v-1-.589844l6.998047-6.998047m-7.998047 7.998047v1.589844h1 1v1 .589844l-.410156.410156h-1.589844l-1-1v-1.589844l1-1" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/document-encrypt.svg b/icons/breeze/icons/actions/22/document-encrypt.svg new file mode 120000 index 00000000..0c903222 --- /dev/null +++ b/icons/breeze/icons/actions/22/document-encrypt.svg | |||
@@ -0,0 +1 @@ | |||
document-encrypted.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/22/edit-delete.svg b/icons/breeze/icons/actions/22/edit-delete.svg new file mode 100644 index 00000000..0467306d --- /dev/null +++ b/icons/breeze/icons/actions/22/edit-delete.svg | |||
@@ -0,0 +1,11 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs> | ||
3 | <clipPath> | ||
4 | <path d="m0 706.465h1490.926v-706.465h-1490.926v706.465"/> | ||
5 | </clipPath> | ||
6 | <clipPath> | ||
7 | <path d="m22.1953 686.117h1447.7347v-667.1902h-1447.7347v667.1902"/> | ||
8 | </clipPath> | ||
9 | </defs> | ||
10 | <path d="m8 3v1 1h1v-1h4v1h1v-1-1h-6m-4 3v1h14v-1h-14m2 2v11h1 9v-1-10h-1v10h-8v-10h-1" style="fill:#da4453"/> | ||
11 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/edit-find.svg b/icons/breeze/icons/actions/22/edit-find.svg new file mode 100644 index 00000000..49a697e9 --- /dev/null +++ b/icons/breeze/icons/actions/22/edit-find.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 9 3 C 5.6759952 3 3 5.6759952 3 9 C 3 12.324005 5.6759952 15 9 15 C 10.481205 15 11.830584 14.465318 12.875 13.582031 L 18.292969 19 L 19 18.292969 L 13.582031 12.875 C 14.465318 11.830584 15 10.481205 15 9 C 15 5.6759952 12.324005 3 9 3 z M 9 4 C 11.770005 4 14 6.2299952 14 9 C 14 11.770005 11.770005 14 9 14 C 6.2299952 14 4 11.770005 4 9 C 4 6.2299952 6.2299952 4 9 4 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/edit-undo.svg b/icons/breeze/icons/actions/22/edit-undo.svg new file mode 100644 index 00000000..e5adcca6 --- /dev/null +++ b/icons/breeze/icons/actions/22/edit-undo.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m8.300781 3l-3.292969 3.292969-.207031.207031.207031.207031 3.292969 3.292969.707031-.707031-2.292969-2.292969h2.285156 1.00781.492188c3.047 0 5.5 2.453 5.5 5.5 0 3.047-2.453 5.5-5.5 5.5h-1.5v1h1.5c3.601 0 6.5-2.899 6.5-6.5 0-3.601-2.899-6.5-6.5-6.5h-.492188-1.00781-2.285156l2.292969-2.292969-.707031-.707031" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/error.svg b/icons/breeze/icons/actions/22/error.svg new file mode 120000 index 00000000..4afa75af --- /dev/null +++ b/icons/breeze/icons/actions/22/error.svg | |||
@@ -0,0 +1 @@ | |||
dialog-cancel.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/22/im-user.svg b/icons/breeze/icons/actions/22/im-user.svg new file mode 100644 index 00000000..2e29a0a0 --- /dev/null +++ b/icons/breeze/icons/actions/22/im-user.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 11 3 A 3.9999902 4.0000296 0 0 0 7 7 A 3.9999902 4.0000296 0 0 0 11 11 A 3.9999902 4.0000296 0 0 0 15 7 A 3.9999902 4.0000296 0 0 0 11 3 z M 11 4 A 3 3.0000296 0 0 1 14 7 A 3 3.0000296 0 0 1 11 10 A 3 3.0000296 0 0 1 8 7 A 3 3.0000296 0 0 1 11 4 z M 11 12 A 7.9999504 8.0000296 0 0 0 3.0722656 19 L 4.0800781 19 A 6.9999604 7.0000296 0 0 1 11 13 A 6.9999604 7.0000296 0 0 1 17.921875 19 L 18.929688 19 A 7.9999504 8.0000296 0 0 0 11 12 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/mail-mark-important.svg b/icons/breeze/icons/actions/22/mail-mark-important.svg new file mode 100644 index 00000000..380b4f89 --- /dev/null +++ b/icons/breeze/icons/actions/22/mail-mark-important.svg | |||
@@ -0,0 +1,18 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | <path | ||
15 | style="fill:#da4453;fill-opacity:1;stroke:none" | ||
16 | d="M 18 13 L 18 17 L 19 17 L 19 13 L 18 13 z M 18 18 L 18 19 L 19 19 L 19 18 L 18 18 z " | ||
17 | /> | ||
18 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/mail-mark-unread-new.svg b/icons/breeze/icons/actions/22/mail-mark-unread-new.svg new file mode 100644 index 00000000..c3bc5689 --- /dev/null +++ b/icons/breeze/icons/actions/22/mail-mark-unread-new.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 18 13 L 17.425781 14.613281 L 15.878906 13.878906 L 16.613281 15.425781 L 15 16 L 16.613281 16.574219 L 15.878906 18.121094 L 17.425781 17.386719 L 18 19 L 18.574219 17.386719 L 20.121094 18.121094 L 19.386719 16.574219 L 21 16 L 19.386719 15.425781 L 20.121094 13.878906 L 18.574219 14.613281 L 18 13 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/mail-reply-sender.svg b/icons/breeze/icons/actions/22/mail-reply-sender.svg new file mode 100644 index 00000000..2b09ad2d --- /dev/null +++ b/icons/breeze/icons/actions/22/mail-reply-sender.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 1 3 L 1 12 L 2 12 L 2 4.2226562 L 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 6 12 L 7.4140625 12 L 8.7304688 10.683594 L 10.183594 12.134766 L 11 12.949219 L 11.001953 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 19.537109 16.951172 L 20 17.414062 L 20 18 L 14 18 L 8 18 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18.414062 L 21 18 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 20 16 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 5 17 L 6 17 L 6 15 L 5 15 L 4 15 L 4 13 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/network-disconnect.svg b/icons/breeze/icons/actions/22/network-disconnect.svg new file mode 100644 index 00000000..e1d5fcb5 --- /dev/null +++ b/icons/breeze/icons/actions/22/network-disconnect.svg | |||
@@ -0,0 +1,22 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 18.292969 3 L 14.792969 6.5 L 13.292969 5 L 11.292969 7 L 9.5 8.7929688 L 11 10.292969 L 11.707031 11 L 13.207031 12.5 L 15 10.707031 L 17 8.7070312 L 15.5 7.2070312 L 19 3.7070312 L 18.292969 3 z M 8.7929688 9.5 L 8 10.292969 L 6 12.292969 L 7.5 13.792969 L 3 18.292969 L 3.7070312 19 L 8.2070312 14.5 L 9.7070312 16 L 11.707031 14 L 12.5 13.207031 L 11 11.707031 L 10.292969 11 L 8.7929688 9.5 z " | ||
15 | class="ColorScheme-Text" | ||
16 | /> | ||
17 | <path | ||
18 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
19 | d="M 14.833984 14 L 14 14.833984 L 15.666016 16.5 L 14 18.166016 L 14.833984 19 L 16.5 17.333984 L 18.166016 19 L 19 18.166016 L 17.333984 16.5 L 19 14.833984 L 18.166016 14 L 16.5 15.666016 L 14.833984 14 z " | ||
20 | class="ColorScheme-NegativeText" | ||
21 | /> | ||
22 | </svg> | ||
diff --git a/icons/breeze/icons/actions/22/view-refresh.svg b/icons/breeze/icons/actions/22/view-refresh.svg new file mode 100644 index 00000000..44b9424e --- /dev/null +++ b/icons/breeze/icons/actions/22/view-refresh.svg | |||
@@ -0,0 +1,17 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-Highlight { | ||
8 | color:#3daee9; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 11 3 C 9.558286 3 8.2107109 3.3829219 7.0449219 4.0449219 L 7.7832031 4.7832031 C 7.7832031 4.7832031 7.7851562 4.78125 7.7851562 4.78125 L 10.564453 7.5585938 L 11.271484 6.8515625 L 8.7890625 4.3710938 C 9.4846855 4.1384172 10.223912 4 11 4 C 14.87797 4 18 7.122 18 11 C 18 12.1625 17.714172 13.253897 17.216797 14.216797 L 17.955078 14.955078 C 18.617129 13.789278 19 12.4417 19 11 C 19 6.568 15.431966 3 11 3 z M 4.0449219 7.0449219 C 3.3828709 8.2107219 3 9.5583 3 11 C 3 15.432 6.568034 19 11 19 C 12.441714 19 13.789289 18.617078 14.955078 17.955078 L 14.271484 17.271484 L 14.273438 17.269531 L 11.445312 14.441406 L 10.738281 15.148438 L 13.216797 17.626953 C 12.519497 17.860874 11.778264 18 11 18 C 7.12203 18 4 14.878 4 11 C 4 9.8375 4.2858291 8.7461031 4.7832031 7.7832031 L 4.0449219 7.0449219 z " | ||
15 | class="ColorScheme-Text" | ||
16 | /> | ||
17 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/application-menu.svg b/icons/breeze/icons/actions/24/application-menu.svg new file mode 100644 index 00000000..c20171fd --- /dev/null +++ b/icons/breeze/icons/actions/24/application-menu.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 4 6 L 4 8 L 20 8 L 20 6 L 4 6 z M 4 11 L 4 13 L 20 13 L 20 11 L 4 11 z M 4 16 L 4 18 L 20 18 L 20 16 L 4 16 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/dialog-cancel.svg b/icons/breeze/icons/actions/24/dialog-cancel.svg new file mode 100644 index 00000000..56718eb6 --- /dev/null +++ b/icons/breeze/icons/actions/24/dialog-cancel.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 12 4 C 9.972402 4 8.12868 4.756694 6.71875 6 C 6.592511 6.11132 6.46272 6.22478 6.34375 6.34375 L 6 6.71875 C 4.756694 8.12868 4 9.972402 4 12 C 4 16.41828 7.58172 20 12 20 C 14.027598 20 15.87132 19.243306 17.28125 18 L 17.65625 17.65625 C 17.77522 17.53728 17.88868 17.407489 18 17.28125 C 19.243306 15.87132 20 14.027598 20 12 C 20 7.58172 16.41828 4 12 4 z M 12 5 C 15.86599 5 19 8.13401 19 12 C 19 13.75366 18.346785 15.334268 17.28125 16.5625 L 7.4375 6.71875 C 8.665731 5.653215 10.24634 5 12 5 z M 6.71875 7.4375 L 16.5625 17.28125 C 15.334268 18.346785 13.75366 19 12 19 C 8.13401 19 5 15.86599 5 12 C 5 10.24634 5.653215 8.665731 6.71875 7.4375 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/dialog-ok.svg b/icons/breeze/icons/actions/24/dialog-ok.svg new file mode 120000 index 00000000..6774aa85 --- /dev/null +++ b/icons/breeze/icons/actions/24/dialog-ok.svg | |||
@@ -0,0 +1 @@ | |||
dialog-ok-apply.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/24/document-decrypt.svg b/icons/breeze/icons/actions/24/document-decrypt.svg new file mode 100644 index 00000000..c54dc4ad --- /dev/null +++ b/icons/breeze/icons/actions/24/document-decrypt.svg | |||
@@ -0,0 +1,15 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m11 3c-2.216 0-4 1.784-4 4v1h1v-.5c0-1.939 1.338-3.5 3-3.5 1.662 0 3 1.561 3 3.5v3.5h-5-1-1-1-1v1 7h1 10 1v-8h-1-1v-4c0-2.216-1.784-4-4-4m-5 9h10v6h-10v-6" | ||
12 | class="ColorScheme-Text" | ||
13 | transform="translate(1,1)" | ||
14 | /> | ||
15 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/document-edit.svg b/icons/breeze/icons/actions/24/document-edit.svg new file mode 100644 index 00000000..afe27315 --- /dev/null +++ b/icons/breeze/icons/actions/24/document-edit.svg | |||
@@ -0,0 +1,15 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m14.996094 3l-11.992188 11.992188h-.003906v4.00781h1 2 1.00781v-.003906l11.992188-11.992188-.001953-.001953.001953-.001953-4-4-.001953.001953-.001953-.001953m-1.998047 3.412109l2.589844 2.589844-7.587891 7.587891v-1.589844h-1-1v-1-.589844l6.998047-6.998047m-7.998047 7.998047v1.589844h1 1v1 .589844l-.410156.410156h-1.589844l-1-1v-1.589844l1-1" | ||
12 | class="ColorScheme-Text" | ||
13 | transform="translate(1,1)" | ||
14 | /> | ||
15 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/document-encrypt.svg b/icons/breeze/icons/actions/24/document-encrypt.svg new file mode 120000 index 00000000..0c903222 --- /dev/null +++ b/icons/breeze/icons/actions/24/document-encrypt.svg | |||
@@ -0,0 +1 @@ | |||
document-encrypted.svg \ No newline at end of file | |||
diff --git a/icons/breeze/icons/actions/24/edit-delete.svg b/icons/breeze/icons/actions/24/edit-delete.svg new file mode 100644 index 00000000..630d5d21 --- /dev/null +++ b/icons/breeze/icons/actions/24/edit-delete.svg | |||
@@ -0,0 +1,11 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs> | ||
3 | <clipPath> | ||
4 | <path d="m0 706.465h1490.926v-706.465h-1490.926v706.465" transform="translate(1,1)"/> | ||
5 | </clipPath> | ||
6 | <clipPath> | ||
7 | <path d="m22.1953 686.117h1447.7347v-667.1902h-1447.7347v667.1902" transform="translate(1,1)"/> | ||
8 | </clipPath> | ||
9 | </defs> | ||
10 | <path d="m8 3v1 1h1v-1h4v1h1v-1-1h-6m-4 3v1h14v-1h-14m2 2v11h1 9v-1-10h-1v10h-8v-10h-1" style="fill:#da4453" transform="translate(1,1)"/> | ||
11 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/edit-find.svg b/icons/breeze/icons/actions/24/edit-find.svg new file mode 100644 index 00000000..e5d48667 --- /dev/null +++ b/icons/breeze/icons/actions/24/edit-find.svg | |||
@@ -0,0 +1,15 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 9 3 C 5.6759952 3 3 5.6759952 3 9 C 3 12.324005 5.6759952 15 9 15 C 10.481205 15 11.830584 14.465318 12.875 13.582031 L 18.292969 19 L 19 18.292969 L 13.582031 12.875 C 14.465318 11.830584 15 10.481205 15 9 C 15 5.6759952 12.324005 3 9 3 z M 9 4 C 11.770005 4 14 6.2299952 14 9 C 14 11.770005 11.770005 14 9 14 C 6.2299952 14 4 11.770005 4 9 C 4 6.2299952 6.2299952 4 9 4 z " | ||
12 | class="ColorScheme-Text" | ||
13 | transform="translate(1,1)" | ||
14 | /> | ||
15 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/edit-undo.svg b/icons/breeze/icons/actions/24/edit-undo.svg new file mode 100644 index 00000000..6be276c2 --- /dev/null +++ b/icons/breeze/icons/actions/24/edit-undo.svg | |||
@@ -0,0 +1,15 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m8.300781 3l-3.292969 3.292969-.207031.207031.207031.207031 3.292969 3.292969.707031-.707031-2.292969-2.292969h2.285156 1.00781.492188c3.047 0 5.5 2.453 5.5 5.5 0 3.047-2.453 5.5-5.5 5.5h-1.5v1h1.5c3.601 0 6.5-2.899 6.5-6.5 0-3.601-2.899-6.5-6.5-6.5h-.492188-1.00781-2.285156l2.292969-2.292969-.707031-.707031" | ||
12 | class="ColorScheme-Text" | ||
13 | transform="translate(1,1)" | ||
14 | /> | ||
15 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/im-user.svg b/icons/breeze/icons/actions/24/im-user.svg new file mode 100644 index 00000000..fb8ee3d6 --- /dev/null +++ b/icons/breeze/icons/actions/24/im-user.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 12 4 A 3.9999902 4.0000296 0 0 0 8 8 A 3.9999902 4.0000296 0 0 0 12 12 A 3.9999902 4.0000296 0 0 0 16 8 A 3.9999902 4.0000296 0 0 0 12 4 z M 12 5 A 3 3.0000296 0 0 1 15 8 A 3 3.0000296 0 0 1 12 11 A 3 3.0000296 0 0 1 9 8 A 3 3.0000296 0 0 1 12 5 z M 12 13 A 7.9999504 8.0000296 0 0 0 4.0722656 20 L 5.0800781 20 A 6.9999604 7.0000296 0 0 1 12 14 A 6.9999604 7.0000296 0 0 1 18.921875 20 L 19.929688 20 A 7.9999504 8.0000296 0 0 0 12 13 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/mail-mark-important.svg b/icons/breeze/icons/actions/24/mail-mark-important.svg new file mode 100644 index 00000000..f81a0344 --- /dev/null +++ b/icons/breeze/icons/actions/24/mail-mark-important.svg | |||
@@ -0,0 +1,21 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 2 4 L 2 5 L 2 13 L 2 19 L 2 19.414062 L 2 20 L 3 20 L 9 20 L 15 20 L 15 19 L 9 19 L 3 19 L 3 18.414062 L 3.4628906 17.951172 L 9.7304688 11.683594 L 11.183594 13.134766 L 11.998047 13.949219 L 12 13.949219 L 12.816406 13.134766 L 14.269531 11.683594 L 15.585938 13 L 17 13 L 14.976562 10.976562 L 20.728516 5.2226562 L 20.951172 5 L 21 5 L 21 5.2226562 L 21 13 L 22 13 L 22 4 L 21.951172 4 L 21 4 L 20.537109 4 L 3.4628906 4 L 3 4 L 2 4 z M 3 5 L 3.0488281 5 L 3.2714844 5.2226562 L 9.0234375 10.976562 L 3 17 L 3 13 L 3 5.2226562 L 3 5 z M 4.4628906 5 L 19.537109 5 L 12 12.537109 L 4.4628906 5 z " | ||
15 | class="ColorScheme-Text"/> | ||
16 | <path | ||
17 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
18 | d="M 19 14 L 19 18 L 20 18 L 20 14 L 19 14 z M 19 19 L 19 20 L 20 20 L 20 19 L 19 19 z " | ||
19 | class="ColorScheme-NegativeText" | ||
20 | /> | ||
21 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/mail-mark-unread-new.svg b/icons/breeze/icons/actions/24/mail-mark-unread-new.svg new file mode 100644 index 00000000..2a6e0a2c --- /dev/null +++ b/icons/breeze/icons/actions/24/mail-mark-unread-new.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 2 4 L 2 5 L 2 13 L 2 19 L 2 19.414062 L 2 20 L 3 20 L 9 20 L 15 20 L 15 19 L 9 19 L 3 19 L 3 18.414062 L 3.4628906 17.951172 L 9.7304688 11.683594 L 11.183594 13.134766 L 11.998047 13.949219 L 12 13.949219 L 12.816406 13.134766 L 14.269531 11.683594 L 15.585938 13 L 17 13 L 14.976562 10.976562 L 20.728516 5.2226562 L 20.951172 5 L 21 5 L 21 5.2226562 L 21 13 L 22 13 L 22 4 L 21.951172 4 L 21 4 L 20.537109 4 L 3.4628906 4 L 3 4 L 2 4 z M 3 5 L 3.0488281 5 L 3.2714844 5.2226562 L 9.0234375 10.976562 L 3 17 L 3 13 L 3 5.2226562 L 3 5 z M 4.4628906 5 L 19.537109 5 L 12 12.537109 L 4.4628906 5 z M 19 14 L 18.425781 15.613281 L 16.878906 14.878906 L 17.613281 16.425781 L 16 17 L 17.613281 17.574219 L 16.878906 19.121094 L 18.425781 18.386719 L 19 20 L 19.574219 18.386719 L 21.121094 19.121094 L 20.386719 17.574219 L 22 17 L 20.386719 16.425781 L 21.121094 14.878906 L 19.574219 15.613281 L 19 14 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/mail-reply-sender.svg b/icons/breeze/icons/actions/24/mail-reply-sender.svg new file mode 100644 index 00000000..5ad0135a --- /dev/null +++ b/icons/breeze/icons/actions/24/mail-reply-sender.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 2 4 L 2 13 L 3 13 L 3 5.2226562 L 3 5 L 3.0488281 5 L 3.2714844 5.2226562 L 9.0234375 10.976562 L 7 13 L 8.4140625 13 L 9.7304688 11.683594 L 11.183594 13.134766 L 12 13.949219 L 12.001953 13.949219 L 12.816406 13.134766 L 14.269531 11.683594 L 20.537109 17.951172 L 21 18.414062 L 21 19 L 15 19 L 9 19 L 9 20 L 15 20 L 21 20 L 22 20 L 22 19.414062 L 22 19 L 22 13 L 22 5 L 22 4 L 21 4 L 20.537109 4 L 3.4628906 4 L 3 4 L 2.0488281 4 L 2 4 z M 4.4628906 5 L 19.537109 5 L 12 12.537109 L 4.4628906 5 z M 20.951172 5 L 21 5 L 21 5.2226562 L 21 13 L 21 17 L 14.976562 10.976562 L 20.728516 5.2226562 L 20.951172 5 z M 5 14 L 2 17 L 5 20 L 5 18 L 6 18 L 7 18 L 7 16 L 6 16 L 5 16 L 5 14 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/network-disconnect.svg b/icons/breeze/icons/actions/24/network-disconnect.svg new file mode 100644 index 00000000..1a1575cf --- /dev/null +++ b/icons/breeze/icons/actions/24/network-disconnect.svg | |||
@@ -0,0 +1,21 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 19.292969 4 L 15.792969 7.5 L 14.292969 6 L 12.292969 8 L 10.5 9.7929688 L 12 11.292969 L 12.707031 12 L 14.207031 13.5 L 16 11.707031 L 18 9.7070312 L 16.5 8.2070312 L 20 4.7070312 L 19.292969 4 z M 9.7929688 10.5 L 9 11.292969 L 7 13.292969 L 8.5 14.792969 L 4 19.292969 L 4.7070312 20 L 9.2070312 15.5 L 10.707031 17 L 12.707031 15 L 13.5 14.207031 L 12 12.707031 L 11.292969 12 L 9.7929688 10.5 z " | ||
15 | class="ColorScheme-Text"/> | ||
16 | <path | ||
17 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
18 | d="M 14.990234 14 L 14 14.990234 L 16.009766 17 L 14 19.009766 L 14.990234 20 L 17 17.990234 L 19.009766 20 L 20 19.009766 L 17.990234 17 L 20 14.990234 L 19.009766 14 L 17 16.009766 L 14.990234 14 z " | ||
19 | class="ColorScheme-NegativeText" | ||
20 | /> | ||
21 | </svg> | ||
diff --git a/icons/breeze/icons/actions/24/view-refresh.svg b/icons/breeze/icons/actions/24/view-refresh.svg new file mode 100644 index 00000000..bebe2da2 --- /dev/null +++ b/icons/breeze/icons/actions/24/view-refresh.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M 12 4 C 10.558286 4 9.2107109 4.3829219 8.0449219 5.0449219 L 8.7832031 5.7832031 L 8.7851562 5.78125 L 11.564453 8.5585938 L 12.271484 7.8515625 L 9.7890625 5.3710938 C 10.484685 5.1384172 11.223912 5 12 5 C 15.87797 5 19 8.122 19 12 C 19 13.1625 18.714172 14.253897 18.216797 15.216797 L 18.955078 15.955078 C 19.617129 14.789278 20 13.4417 20 12 C 20 7.568 16.431966 4 12 4 z M 5.0449219 8.0449219 C 4.3828709 9.2107219 4 10.5583 4 12 C 4 16.432 7.568034 20 12 20 C 13.441714 20 14.789289 19.617078 15.955078 18.955078 L 15.271484 18.271484 L 15.273438 18.269531 L 12.445312 15.441406 L 11.738281 16.148438 L 14.216797 18.626953 C 13.519451 18.860921 12.778264 19 12 19 C 8.12203 19 5 15.878 5 12 C 5 10.8375 5.2858291 9.7461031 5.7832031 8.7832031 L 5.0449219 8.0449219 z " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/application-menu.svg b/icons/breeze/icons/actions/32/application-menu.svg new file mode 100644 index 00000000..50839d36 --- /dev/null +++ b/icons/breeze/icons/actions/32/application-menu.svg | |||
@@ -0,0 +1,18 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs | ||
3 | id="defs3051"> | ||
4 | <style | ||
5 | type="text/css" | ||
6 | id="current-color-scheme"> | ||
7 | .ColorScheme-Text { | ||
8 | color:#4d4d4d; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 4 5 L 4 7 L 28 7 L 28 5 L 4 5 z M 4 15 L 4 17 L 28 17 L 28 15 L 4 15 z M 4 25 L 4 27 L 28 27 L 28 25 L 4 25 z " | ||
15 | id="a" | ||
16 | class="ColorScheme-Text" | ||
17 | /> | ||
18 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/dialog-cancel.svg b/icons/breeze/icons/actions/32/dialog-cancel.svg new file mode 100644 index 00000000..ad9224c5 --- /dev/null +++ b/icons/breeze/icons/actions/32/dialog-cancel.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797" | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/document-decrypt.svg b/icons/breeze/icons/actions/32/document-decrypt.svg new file mode 100644 index 00000000..0f884fc3 --- /dev/null +++ b/icons/breeze/icons/actions/32/document-decrypt.svg | |||
@@ -0,0 +1,18 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs | ||
3 | id="defs3051"> | ||
4 | <style | ||
5 | type="text/css" | ||
6 | id="current-color-scheme"> | ||
7 | .ColorScheme-Text { | ||
8 | color:#4d4d4d; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path | ||
13 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
14 | d="M 6 4 L 6 28 L 15 28 L 15 27 L 7 27 L 7 5 L 18 5 L 18 12 L 25 12 L 25 15 L 26 15 L 26 11 L 19 4 L 18 4 L 6 4 z M 21 16 C 19.343 16 18 17.343 18 19 L 18 20 L 19 20 L 19 19 C 19 17.895 19.895 17 21 17 C 22.105 17 23 17.895 23 19 L 23 22 L 16 22 L 16 28 L 26 28 L 26 22 L 24 22 L 24 19 C 24 17.343 22.657 16 21 16 z M 17 23 L 25 23 L 25 27 L 17 27 L 17 23 z " | ||
15 | id="path109" | ||
16 | class="ColorScheme-Text" | ||
17 | /> | ||
18 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/document-edit.svg b/icons/breeze/icons/actions/32/document-edit.svg new file mode 100644 index 00000000..e1eb3663 --- /dev/null +++ b/icons/breeze/icons/actions/32/document-edit.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="m22.27 4l-18.27 18.27v5.73h5.73c0 0 18.269-18.269 18.27-18.27zm-2.865 4.299l4.297 4.297-11.701 11.703v-2.299h-4v-2.299zm-12.404 12.402v2.299h4v2.299l-1.701 1.701h-2l-2.297-2.297v-2z" | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/edit-delete.svg b/icons/breeze/icons/actions/32/edit-delete.svg new file mode 100644 index 00000000..5ec70a93 --- /dev/null +++ b/icons/breeze/icons/actions/32/edit-delete.svg | |||
@@ -0,0 +1,7 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <g fill="#da4453" transform="translate(-384.57-515.8)"> | ||
3 | <path d="m392.57 525.8v18h16v-18h-1v17h-14v-17z"/> | ||
4 | <path d="m388.57 523.8h24v1h-24z"/> | ||
5 | <path d="m396.57 519.8v3h1v-2h6v2h1v-3z"/> | ||
6 | </g> | ||
7 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/edit-undo.svg b/icons/breeze/icons/actions/32/edit-undo.svg new file mode 100644 index 00000000..7587fd9c --- /dev/null +++ b/icons/breeze/icons/actions/32/edit-undo.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="m11 3.5l.707.707-3.793 3.793h8.09c5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10h-1v-1h1c4.971 0 9-4.03 9-9 0-4.971-4.03-9-9-9h-8.09l3.793 3.793-.707.707-5-5 1-1z" | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/mail-mark-important.svg b/icons/breeze/icons/actions/32/mail-mark-important.svg new file mode 100644 index 00000000..7ed8cf36 --- /dev/null +++ b/icons/breeze/icons/actions/32/mail-mark-important.svg | |||
@@ -0,0 +1,20 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | .ColorScheme-NegativeText { | ||
8 | color:#da4453; | ||
9 | } | ||
10 | </style> | ||
11 | </defs> | ||
12 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
13 | d="M 2,5 2,24.683594 2,27 19,27 19,26 3,26 3,25.111328 3.4296875,24.683594 12.785156,15.541016 16,18.683594 19.214844,15.541016 21,17.285156 21,15.888672 19.929688,14.841797 28.976562,6 29,6 l 0,8 1,0 0,-9 z M 3,6 3.0234375,6 12.070312,14.841797 3,23.707031 Z M 4.453125,6 27.546875,6 16,17.285156 Z" | ||
14 | class="ColorScheme-Text" | ||
15 | /> | ||
16 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
17 | d="M 24 15 L 24 23 L 26 23 L 26 15 L 24 15 z M 24 25 L 24 27 L 26 27 L 26 25 L 24 25 z " | ||
18 | class="ColorScheme-NegativeText" | ||
19 | /> | ||
20 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/mail-mark-unread-new.svg b/icons/breeze/icons/actions/32/mail-mark-unread-new.svg new file mode 100644 index 00000000..98f1cc36 --- /dev/null +++ b/icons/breeze/icons/actions/32/mail-mark-unread-new.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 2 5 L 2 24.683594 L 2 27 L 19 27 L 19 26 L 3 26 L 3 25.111328 L 3.4296875 24.683594 L 12.785156 15.541016 L 16 18.683594 L 28.976562 6 L 29 6 L 29 14 L 30 14 L 30 5 L 2 5 z M 3 6 L 3.0234375 6 L 12.070312 14.841797 L 3 23.707031 L 3 6 z M 4.453125 6 L 27.546875 6 L 16 17.285156 L 4.453125 6 z M 24 15 L 22.851562 18.228516 L 19.757812 16.757812 L 21.228516 19.851562 L 18 21 L 21.228516 22.148438 L 19.757812 25.242188 L 22.851562 23.771484 L 24 27 L 25.148438 23.771484 L 28.242188 25.242188 L 26.771484 22.148438 L 30 21 L 26.771484 19.851562 L 28.242188 16.757812 L 25.148438 18.228516 L 24 15 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/mail-reply-sender.svg b/icons/breeze/icons/actions/32/mail-reply-sender.svg new file mode 100644 index 00000000..a7769584 --- /dev/null +++ b/icons/breeze/icons/actions/32/mail-reply-sender.svg | |||
@@ -0,0 +1,14 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 2 5 L 2 18 L 3 18 L 3 6 L 3.0234375 6 L 12.070312 14.841797 L 11 15.888672 L 11 17.285156 L 12.785156 15.541016 L 16 18.683594 L 19.214844 15.541016 L 28.570312 24.683594 L 29 25.111328 L 29 26 L 14 26 L 14 27 L 30 27 L 30 24.683594 L 30 5 L 2 5 z M 4.453125 6 L 27.546875 6 L 16 17.285156 L 4.453125 6 z M 28.976562 6 L 29 6 L 29 23.707031 L 19.929688 14.841797 L 28.976562 6 z M 7 19 L 2 23 L 7 27 L 7 24 L 13 24 L 13 22 L 7 22 L 7 19 z " | ||
12 | class="ColorScheme-Text" | ||
13 | /> | ||
14 | </svg> | ||
diff --git a/icons/breeze/icons/actions/32/view-refresh.svg b/icons/breeze/icons/actions/32/view-refresh.svg new file mode 100644 index 00000000..c60eef37 --- /dev/null +++ b/icons/breeze/icons/actions/32/view-refresh.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | d="M16 4A12 12 0 0 0 9.916016 5.671875L15.293 11.05 16 10.34 11.596 5.936A11 11 0 0 1 16 5 11 11 0 0 1 27 16 11 11 0 0 1 25.595703 21.351562L26.328 22.08A12 12 0 0 0 28 16 12 12 0 0 0 16 4M5.671875 9.916016A12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 22.08398 26.328125L16.707 20.949 16 21.656 20.406 26.06A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 6.404297 10.648438z" | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/index.theme b/icons/breeze/icons/index.theme new file mode 100644 index 00000000..b2f6b2a2 --- /dev/null +++ b/icons/breeze/icons/index.theme | |||
@@ -0,0 +1,332 @@ | |||
1 | [Icon Theme] | ||
2 | Name=Kube | ||
3 | |||
4 | Comment=Kube Theme | ||
5 | |||
6 | DisplayDepth=32 | ||
7 | |||
8 | Inherits=hicolor | ||
9 | |||
10 | Example=folder | ||
11 | |||
12 | FollowsColorScheme=false | ||
13 | |||
14 | DesktopDefault=48 | ||
15 | DesktopSizes=16,22,32,48,64,128,256 | ||
16 | ToolbarDefault=22 | ||
17 | ToolbarSizes=16,22,32,48 | ||
18 | MainToolbarDefault=22 | ||
19 | MainToolbarSizes=16,22,32,48 | ||
20 | SmallDefault=16 | ||
21 | SmallSizes=16,22,32,48 | ||
22 | PanelDefault=32 | ||
23 | PanelSizes=16,22,32,48,64,128,256 | ||
24 | DialogDefault=32 | ||
25 | DialogSizes=16,22,32,48,64,128,256 | ||
26 | |||
27 | KDE-Extensions=.svg | ||
28 | |||
29 | ########## Directories | ||
30 | ########## ordered by category and alphabetically | ||
31 | |||
32 | Directories=actions/12,actions/16,actions/22,actions/24,actions/32,apps/16,apps/22,apps/32,apps/48,preferences/32,applets/48,applets/64,applets/128,applets/256,categories/32,devices/16,devices/22,devices/64,emblems/8,emblems/16,emblems/22,emotes/22,mimetypes/16,mimetypes/22,mimetypes/32,mimetypes/64,places/16,places/22,places/32,places/64,status/16,status/22,status/24,status/64,actions/symbolic,devices/symbolic,emblems/symbolic,places/symbolic,status/symbolic | ||
33 | |||
34 | ########## Actions | ||
35 | ########## ordered by size | ||
36 | |||
37 | #12x12 - Fixed size - For Inkscape | ||
38 | [actions/12] | ||
39 | Size=12 | ||
40 | Context=Actions | ||
41 | Type=Fixed | ||
42 | |||
43 | #16x16 - Fixed size - For use in sidebar(s) smaller toolbar(s) >!!!ONLY!!!<: e.g. Kate movable sidebar/toolbar (search and replace, current project, etc.) or Juk tree view - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
44 | [actions/16] | ||
45 | Size=16 | ||
46 | Context=Actions | ||
47 | Type=Fixed | ||
48 | |||
49 | #22x22 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
50 | [actions/22] | ||
51 | Size=22 | ||
52 | Context=Actions | ||
53 | Type=Fixed | ||
54 | |||
55 | #24x24 - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
56 | [actions/24] | ||
57 | Size=24 | ||
58 | Context=Actions | ||
59 | Type=Fixed | ||
60 | |||
61 | #32x32 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
62 | [actions/32] | ||
63 | Size=32 | ||
64 | Context=Actions | ||
65 | Type=Fixed | ||
66 | |||
67 | ########## Apps | ||
68 | ########## ordered by size | ||
69 | |||
70 | #16x16 - Fixed size - Application icon(s) for Dolphin sidebar - OPTIONAL + DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
71 | [apps/16] | ||
72 | Size=16 | ||
73 | Context=Applications | ||
74 | Type=Fixed | ||
75 | |||
76 | #22x22 - Fixed size - Workaround icon(s) for toolbar(s) button(s) e.g. Dolphin Open Terminal/About Dolphin/About KDE buttons - WRONG_ICON_USAGE_BY_APP - Monochrome | ||
77 | [apps/22] | ||
78 | Size=22 | ||
79 | Context=Applications | ||
80 | Type=Fixed | ||
81 | |||
82 | #32x32 - Fixed size - For System Settings icons >!!!ONLY!!!< - Scalable to the following sizes: 32x32 (default), 64x64, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
83 | [apps/32] | ||
84 | Size=32 | ||
85 | Context=Applications | ||
86 | Type=Fixed | ||
87 | |||
88 | #48x48 - Scalable - For application icons >!!!ONLY!!!< - Scalable to the following sizes: 48x48 (default), 96x96 and 24x24 (not recommended) - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
89 | [apps/48] | ||
90 | Size=48 | ||
91 | Context=Applications | ||
92 | Type=Scalable | ||
93 | MinSize=48 | ||
94 | MaxSize=256 | ||
95 | |||
96 | #32x32 - Fixed size - For System Settings icons >!!!ONLY!!!< - Scalable to the following sizes: 32x32 (default), 64x64, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
97 | [preferences/32] | ||
98 | Size=32 | ||
99 | Context=Applications | ||
100 | Type=Scalable | ||
101 | MinSize=32 | ||
102 | MaxSize=256 | ||
103 | |||
104 | #256x256 - Color for applets | ||
105 | [applets/48] | ||
106 | Size=48 | ||
107 | Context=Status | ||
108 | Type=Scalable | ||
109 | MinSize=32 | ||
110 | MaxSize=256 | ||
111 | |||
112 | #256x256 - Animation icons for kwin desktop effects | ||
113 | [applets/64] | ||
114 | Size=64 | ||
115 | Context=Status | ||
116 | Type=Scalable | ||
117 | MinSize=32 | ||
118 | MaxSize=256 | ||
119 | |||
120 | #256x256 - Color | ||
121 | [applets/128] | ||
122 | Size=128 | ||
123 | Context=Applications | ||
124 | Type=Scalable | ||
125 | MinSize=32 | ||
126 | MaxSize=256 | ||
127 | |||
128 | #256x256 - Scalable - For applets / widgets icons >!!!ONLY!!! - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
129 | [applets/256] | ||
130 | Size=256 | ||
131 | Context=Applications | ||
132 | Type=Scalable | ||
133 | MinSize=48 | ||
134 | MaxSize=256 | ||
135 | |||
136 | ########## Categories | ||
137 | ########## ordered by size | ||
138 | |||
139 | #32x32 - Fixed size - For categories icons >!!!ONLY!!!< - Used in Kickoff (KDE 4.x.x) and Lancelot. Also used in MATE and Cinnamon (just FYI) - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
140 | [categories/32] | ||
141 | Size=32 | ||
142 | Context=Categories | ||
143 | Type=Scalable | ||
144 | MinSize=32 | ||
145 | MaxSize=256 | ||
146 | |||
147 | ########## Devices | ||
148 | ########## ordered by size | ||
149 | |||
150 | #16x16 - Fixed size - For small device icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
151 | [devices/16] | ||
152 | Size=16 | ||
153 | Context=Devices | ||
154 | Type=Fixed | ||
155 | |||
156 | #22x22 - Fixed size - For small device icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
157 | [devices/22] | ||
158 | Size=22 | ||
159 | Context=Devices | ||
160 | Type=Fixed | ||
161 | |||
162 | #64x64 - Scalable - For device icons >!!!ONLY!!!< - Scalable to the following sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
163 | [devices/64] | ||
164 | Size=64 | ||
165 | Context=Devices | ||
166 | Type=Scalable | ||
167 | MinSize=64 | ||
168 | MaxSize=256 | ||
169 | |||
170 | ########## Emblems | ||
171 | ########## ordered by size | ||
172 | |||
173 | #8x8 - Fixed size - File system emblems - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
174 | [emblems/8] | ||
175 | Size=8 | ||
176 | Context=Emblems | ||
177 | Type=Fixed | ||
178 | |||
179 | #16x16 - Fixed size - File system emblems - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
180 | [emblems/16] | ||
181 | Size=16 | ||
182 | Context=Emblems | ||
183 | Type=Fixed | ||
184 | |||
185 | #22x22 - Fixed size - File system emblems - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
186 | [emblems/22] | ||
187 | Size=22 | ||
188 | Context=Emblems | ||
189 | Type=Fixed | ||
190 | |||
191 | ########## Emoticons | ||
192 | ########## ordered by size | ||
193 | |||
194 | #22x22 - Fixed size - Emoticons - DO_NOT_USE_ANYWHERE_ELSE - Color/flat | ||
195 | [emotes/22] | ||
196 | Size=22 | ||
197 | Context=Emotes | ||
198 | Type=Fixed | ||
199 | |||
200 | ########## Mimetypes | ||
201 | ########## ordered by size | ||
202 | |||
203 | #16x16 - Fixed size - For small file type icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
204 | [mimetypes/16] | ||
205 | Size=16 | ||
206 | Context=MimeTypes | ||
207 | Type=Fixed | ||
208 | MinSize=16 | ||
209 | |||
210 | #22x22 - Fixed size - For small file type icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
211 | [mimetypes/22] | ||
212 | Size=22 | ||
213 | Context=MimeTypes | ||
214 | Type=Scalable | ||
215 | MinSize=22 | ||
216 | MaxSize=24 | ||
217 | |||
218 | #32x32 - Scalable - For file type icons >!!!ONLY!!!< - Scalable to the following sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
219 | [mimetypes/32] | ||
220 | Size=32 | ||
221 | Context=MimeTypes | ||
222 | Type=Scalable | ||
223 | MinSize=32 | ||
224 | MaxSize=48 | ||
225 | |||
226 | #64x64 - Scalable - For file type icons >!!!ONLY!!!< - Scalable to the following sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
227 | [mimetypes/64] | ||
228 | Size=64 | ||
229 | Context=MimeTypes | ||
230 | Type=Scalable | ||
231 | MinSize=64 | ||
232 | MaxSize=256 | ||
233 | |||
234 | ########## Places | ||
235 | ########## ordered by size | ||
236 | |||
237 | #16x16 - Fixed size - For small folder icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
238 | [places/16] | ||
239 | Size=16 | ||
240 | Context=Places | ||
241 | Type=Fixed | ||
242 | MinSize=16 | ||
243 | |||
244 | #22x22 - Fixed size - Workaround icon(s) for toolbar(s) button(s) e.g. KMail trash icon - WRONG_ICON_USAGE_BY_APP - Monochrome | ||
245 | [places/22] | ||
246 | Size=22 | ||
247 | Context=Places | ||
248 | Type=Fixed | ||
249 | |||
250 | #32x32 - Scalable - For folder icons >!!!ONLY!!!< - Scalable to the following sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
251 | [places/32] | ||
252 | Size=32 | ||
253 | Context=Places | ||
254 | Type=Scalable | ||
255 | MinSize=32 | ||
256 | MaxSize=48 | ||
257 | |||
258 | #64x64 - Scalable - For folder icons >!!!ONLY!!!< - Scalable to the following sizes: 64x64 (default), 32x32, 128x128, 256x256 - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
259 | [places/64] | ||
260 | Size=64 | ||
261 | Context=Places | ||
262 | Type=Scalable | ||
263 | MinSize=64 | ||
264 | MaxSize=256 | ||
265 | |||
266 | ########## Status | ||
267 | ########## ordered by size | ||
268 | |||
269 | #16x16 - Fixed size - For IM status icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
270 | [status/16] | ||
271 | Size=16 | ||
272 | Context=Status | ||
273 | Type=Fixed | ||
274 | |||
275 | #22x22 - Fixed size - Icon(s) for Plasma theme/System Tray. Not particularly used on Plasma. - DO_NOT_USE_ANYWHERE_ELSE - Monochrome | ||
276 | [status/22] | ||
277 | Size=22 | ||
278 | Context=Status | ||
279 | Type=Scalable | ||
280 | MinSize=22 | ||
281 | MaxSize=32 | ||
282 | |||
283 | #24x24 - Fixed size - for GTK apps. - WRONG_ICON_USAGE_BY_APP - Monochrome | ||
284 | [status/24] | ||
285 | Size=24 | ||
286 | Context=Status | ||
287 | Type=Fixed | ||
288 | |||
289 | #64x64 - Fixed size - For dialog icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color | ||
290 | [status/64] | ||
291 | Size=64 | ||
292 | Context=Status | ||
293 | Type=Fixed | ||
294 | |||
295 | # Gnome symbolic icons | ||
296 | |||
297 | [actions/symbolic] | ||
298 | Context=Actions | ||
299 | Size=16 | ||
300 | MinSize=8 | ||
301 | MaxSize=512 | ||
302 | Type=Scalable | ||
303 | |||
304 | [devices/symbolic] | ||
305 | Context=Devices | ||
306 | Size=16 | ||
307 | MinSize=8 | ||
308 | MaxSize=512 | ||
309 | Type=Scalable | ||
310 | |||
311 | [emblems/symbolic] | ||
312 | Context=Emblems | ||
313 | Size=16 | ||
314 | MinSize=8 | ||
315 | MaxSize=512 | ||
316 | Type=Scalable | ||
317 | |||
318 | [places/symbolic] | ||
319 | Context=Places | ||
320 | Size=16 | ||
321 | MinSize=8 | ||
322 | MaxSize=512 | ||
323 | Type=Scalable | ||
324 | |||
325 | [status/symbolic] | ||
326 | Context=Status | ||
327 | Size=16 | ||
328 | MinSize=8 | ||
329 | MaxSize=512 | ||
330 | Type=Scalable | ||
331 | |||
332 | ########## EOF | ||
diff --git a/icons/breeze/icons/places/16/folder.svg b/icons/breeze/icons/places/16/folder.svg new file mode 100644 index 00000000..caca0e17 --- /dev/null +++ b/icons/breeze/icons/places/16/folder.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d; | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path style="fill:currentColor;fill-opacity:1;stroke:none" | ||
10 | 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 " | ||
11 | class="ColorScheme-Text" | ||
12 | /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/places/22/folder.svg b/icons/breeze/icons/places/22/folder.svg new file mode 100644 index 00000000..871f94a0 --- /dev/null +++ b/icons/breeze/icons/places/22/folder.svg | |||
@@ -0,0 +1,13 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"> | ||
2 | <defs id="defs3051"> | ||
3 | <style type="text/css" id="current-color-scheme"> | ||
4 | .ColorScheme-Text { | ||
5 | color:#4d4d4d | ||
6 | } | ||
7 | </style> | ||
8 | </defs> | ||
9 | <path | ||
10 | style="fill:currentColor;fill-opacity:1;stroke:none" | ||
11 | d="M 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 5 L 12.007812 5 L 10.007812 3 L 10 3.0078125 L 10 3 L 4 3 L 3 3 z M 4 4 L 7 4 L 9.5859375 4 L 10.589844 5.0039062 L 6.5703125 9 L 6.5683594 9 L 4 9 L 4 4 z M 9.0078125 8 L 18 8 L 18 18 L 4 18 L 4 10 L 5.5625 10 L 7 10 L 7 9.9921875 L 7.0078125 10 L 9.0078125 8 z " | ||
12 | class="ColorScheme-Text" /> | ||
13 | </svg> | ||
diff --git a/icons/breeze/icons/places/32/folder.svg b/icons/breeze/icons/places/32/folder.svg new file mode 100644 index 00000000..2acb4abe --- /dev/null +++ b/icons/breeze/icons/places/32/folder.svg | |||
@@ -0,0 +1,21 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
2 | |||
3 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | ||
4 | <svg width="32" version="1.1" xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"> | ||
5 | <defs id="defs5455"> | ||
6 | <linearGradient inkscape:collect="always" id="linearGradient4172-5"> | ||
7 | <stop style="stop-color:#3daee9" id="stop4174-6"/> | ||
8 | <stop offset="1" style="stop-color:#6cc1ef" id="stop4176-6"/> | ||
9 | </linearGradient> | ||
10 | <linearGradient inkscape:collect="always" xlink:href="#linearGradient4172-5" id="linearGradient4342" y1="29" y2="8" x2="0" gradientUnits="userSpaceOnUse"/> | ||
11 | </defs> | ||
12 | <metadata id="metadata5458"/> | ||
13 | <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -384.57143 -515.798)"> | ||
14 | <path inkscape:connector-curvature="0" style="fill:#147eb8;fill-rule:evenodd" id="path4308" d="m 386.57144,518.798 0,7 0,1 28,0 0,-6 -14.00001,0 -2,-2 z"/> | ||
15 | <path inkscape:connector-curvature="0" style="fill-opacity:0.235294;fill-rule:evenodd" id="path4306" d="m 397.57143,523.798 -1.99999,1 -9,0 0,1 6.99999,0 3,0 z"/> | ||
16 | <path style="fill:url(#linearGradient4342)" id="rect4294" d="M 13 8 L 11 10 L 2 10 L 1 10 L 1 29 L 12 29 L 13 29 L 31 29 L 31 8 L 13 8 z " transform="matrix(1 0 0 1 384.57143 515.798)"/> | ||
17 | <path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.235294;fill-rule:evenodd" id="path4304" d="m 397.57143,523.798 -2,2 -10,0 0,1 11,0 z"/> | ||
18 | <path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.235294;fill-rule:evenodd" id="path4310" d="m 398.57143,518.798 1,3 15.00001,0 0,-1 -14.00001,0 z"/> | ||
19 | <rect width="30" x="385.57144" y="543.79797" height="1" style="fill-opacity:0.235294" id="rect4292"/> | ||
20 | </g> | ||
21 | </svg> | ||
diff --git a/icons/breeze/icons/places/64/folder.svg b/icons/breeze/icons/places/64/folder.svg new file mode 100644 index 00000000..22919bdf --- /dev/null +++ b/icons/breeze/icons/places/64/folder.svg | |||
@@ -0,0 +1,21 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
2 | |||
3 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | ||
4 | <svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"> | ||
5 | <defs id="defs5455"> | ||
6 | <linearGradient inkscape:collect="always" xlink:href="#linearGradient4172-5" id="linearGradient4178" y1="541.79797" y2="499.78421" x2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 0.99967455 0 0.17645)"/> | ||
7 | <linearGradient inkscape:collect="always" id="linearGradient4172-5"> | ||
8 | <stop style="stop-color:#3daee9" id="stop4174-6"/> | ||
9 | <stop offset="1" style="stop-color:#6cc1ef" id="stop4176-6"/> | ||
10 | </linearGradient> | ||
11 | </defs> | ||
12 | <metadata id="metadata5458"/> | ||
13 | <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -384.57143 -483.798)"> | ||
14 | <path inkscape:connector-curvature="0" style="fill:#147eb8" id="rect4180" d="m 388.57143,489.79812 0,5 0,22 c 0,0.55373 0.446,1 1,1 l 54,0 c 0.55399,0 1,-0.44627 1,-1 l 0,-21.99023 c 0,-0.003 -0.002,-0.006 -0.002,-0.01 l 0.002,0 0,-1 -28,0 -4,-4 -24,0 z"/> | ||
15 | <path inkscape:connector-curvature="0" style="fill:url(#linearGradient4178)" id="rect4113" d="m 410.57143,499.79812 -4,4 -19,0 0,1 0.002,0 c -5e-5,0.004 -0.002,0.008 -0.002,0.0117 l 0,35.98828 0,1 1,0 56,0 1,0 0,-1 0,-35.98828 0,-0.0117 0,-5 z"/> | ||
16 | <path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.235294;fill-rule:evenodd" id="path4224" d="m 387.57144,503.79812 0,1 19.99999,0 3,-5 -4,4 z"/> | ||
17 | <path inkscape:connector-curvature="0" style="fill-opacity:0.235294;fill-rule:evenodd" id="path4228" d="m 388.57143,502.79812 0,1 18,0 4,-4 -6,3 z"/> | ||
18 | <path inkscape:connector-curvature="0" style="fill-opacity:0.235294" id="path4151-2" d="m 387.57143,540.7981 0,1 1,0 56,0 1,0 0,-1 -1,0 -56,0 -1,0 z"/> | ||
19 | <path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.235294;fill-rule:evenodd" id="path4196" d="m 28,6 3,5 2,0 27,0 0,-1 -27,0 -1,0 z" transform="matrix(1 0 0 1 384.57143 483.798)"/> | ||
20 | </g> | ||
21 | </svg> | ||