Use svg icons in the default main toolbar

This commit is contained in:
Luis Ángel San Martín 2018-10-01 18:35:58 +02:00 committed by Luis Ángel San Martín
parent a1f1cca3b3
commit 732ea7ecac
31 changed files with 47 additions and 35 deletions

View File

@ -61,7 +61,6 @@
<file>../images/importingIcon.png</file> <file>../images/importingIcon.png</file>
<file>../images/importLibrary.png</file> <file>../images/importLibrary.png</file>
<file>../images/importTopCoversDecoration.png</file> <file>../images/importTopCoversDecoration.png</file>
<file>../images/main_toolbar/divider.png</file>
<file>../images/menus_icons/editIcon.png</file> <file>../images/menus_icons/editIcon.png</file>
<file>../images/menus_icons/editIcon@2x.png</file> <file>../images/menus_icons/editIcon@2x.png</file>
<file>../images/menus_icons/exportComicsInfoIcon.png</file> <file>../images/menus_icons/exportComicsInfoIcon.png</file>
@ -110,5 +109,16 @@
<file>../images/sidebar/libraryOptions.png</file> <file>../images/sidebar/libraryOptions.png</file>
<file>../images/sidebar/libraryOptions@2x.png</file> <file>../images/sidebar/libraryOptions@2x.png</file>
<file>../images/updatingIcon.png</file> <file>../images/updatingIcon.png</file>
<!-- main toolbar - default theme -->
<file>../images/main_toolbar/back.svg</file>
<file>../images/main_toolbar/forward.svg</file>
<file>../images/main_toolbar/settings.svg</file>
<file>../images/main_toolbar/server.svg</file>
<file>../images/main_toolbar/help.svg</file>
<file>../images/main_toolbar/fullscreen.svg</file>
<file>../images/main_toolbar/divider.svg</file>
<file>../images/main_toolbar/iconSearch.svg</file>
<file>../images/main_toolbar/clearSearch.svg</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@ -1,28 +1,15 @@
<RCC> <RCC>
<qresource prefix="/"> <qresource prefix="/">
<file>../images/main_toolbar/back.png</file>
<file>../images/main_toolbar/back_disabled.png</file>
<file>../images/main_toolbar/forward.png</file>
<file>../images/main_toolbar/forward_disabled.png</file>
<file>../images/main_toolbar/settings.png</file>
<file>../images/main_toolbar/server.png</file>
<file>../images/main_toolbar/help.png</file>
<file>../images/main_toolbar/fullscreen.png</file>
<file>../images/sidebar/libraryIcon.png</file> <file>../images/sidebar/libraryIcon.png</file>
<file>../images/sidebar/setRoot.png</file> <file>../images/sidebar/setRoot.png</file>
<file>../images/sidebar/expand.png</file> <file>../images/sidebar/expand.png</file>
<file>../images/sidebar/colapse.png</file> <file>../images/sidebar/colapse.png</file>
<file>../images/sidebar/newLibraryIcon.png</file> <file>../images/sidebar/newLibraryIcon.png</file>
<file>../images/sidebar/openLibraryIcon.png</file> <file>../images/sidebar/openLibraryIcon.png</file>
<file>../images/main_toolbar/flow.png</file>
<file>../images/main_toolbar/grid.png</file>
<file>../images/main_toolbar/info.png</file>
<file>../images/empty_folder.png</file> <file>../images/empty_folder.png</file>
<file>../images/empty_search.png</file> <file>../images/empty_search.png</file>
<file>../images/sidebar/addNew_sidebar.png</file> <file>../images/sidebar/addNew_sidebar.png</file>
<file>../images/sidebar/delete_sidebar.png</file> <file>../images/sidebar/delete_sidebar.png</file>
<file alias="images/iconSearch.png">../images/iconSearchNew.png</file>
<file alias="images/clearSearch.png">../images/clearSearchNew.png</file>
<file>../images/sidebar/addLabelIcon.png</file> <file>../images/sidebar/addLabelIcon.png</file>
<file>../images/sidebar/renameListIcon.png</file> <file>../images/sidebar/renameListIcon.png</file>
<file>../images/lists/default_0.png</file> <file>../images/lists/default_0.png</file>

View File

@ -189,7 +189,7 @@ void YACReaderComicsViewsManager::_toggleComicsView()
switch (comicsViewStatus) { switch (comicsViewStatus) {
case Flow: { case Flow: {
QIcon icoViewsButton; QIcon icoViewsButton;
icoViewsButton.addFile(":/images/main_toolbar/info.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/info.svg", QSize(), QIcon::Normal);
libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton); libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton);
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton); libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);
@ -205,7 +205,7 @@ void YACReaderComicsViewsManager::_toggleComicsView()
case Grid: { case Grid: {
QIcon icoViewsButton; QIcon icoViewsButton;
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/flow.svg", QSize(), QIcon::Normal);
libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton); libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton);
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton); libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);
@ -220,7 +220,7 @@ void YACReaderComicsViewsManager::_toggleComicsView()
case Info: { case Info: {
QIcon icoViewsButton; QIcon icoViewsButton;
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/grid.svg", QSize(), QIcon::Normal);
libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton); libraryWindow->libraryToolBar->toggleComicsViewAction->setIcon(icoViewsButton);
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton); libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);

View File

@ -11,8 +11,8 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
{ {
backAction = new QAction(mainWindow); backAction = new QAction(mainWindow);
QIcon icoBackButton; QIcon icoBackButton;
icoBackButton.addFile(":/images/main_toolbar/back.png",QSize(), QIcon::Normal); icoBackButton.addFile(":/images/main_toolbar/back.svg",QSize(), QIcon::Normal);
//icoBackButton.addPixmap(QPixmap(":/images/main_toolbar/back_disabled.png"), QIcon::Disabled); //icoBackButton.addPixmap(QPixmap(":/images/main_toolbar/back_disabled.svg"), QIcon::Disabled);
backAction->setData(BACK_ACTION_YL); backAction->setData(BACK_ACTION_YL);
backAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(BACK_ACTION_YL)); backAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(BACK_ACTION_YL));
backAction->setIcon(icoBackButton); backAction->setIcon(icoBackButton);
@ -20,8 +20,7 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
forwardAction = new QAction(mainWindow); forwardAction = new QAction(mainWindow);
QIcon icoFordwardButton; QIcon icoFordwardButton;
icoFordwardButton.addFile(":/images/main_toolbar/forward.png", QSize(), QIcon::Normal); icoFordwardButton.addFile(":/images/main_toolbar/forward.svg", QSize(), QIcon::Normal);
//icoFordwardButton.addPixmap(QPixmap(":/images/main_toolbar/forward_disabled.png"), QIcon::Disabled);
forwardAction->setData(FORWARD_ACTION_YL); forwardAction->setData(FORWARD_ACTION_YL);
forwardAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(FORWARD_ACTION_YL)); forwardAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(FORWARD_ACTION_YL));
forwardAction->setIcon(icoFordwardButton); forwardAction->setIcon(icoFordwardButton);
@ -32,7 +31,7 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
optionsAction->setData(OPTIONS_ACTION_YL); optionsAction->setData(OPTIONS_ACTION_YL);
optionsAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(OPTIONS_ACTION_YL)); optionsAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(OPTIONS_ACTION_YL));
QIcon icoSettingsButton; QIcon icoSettingsButton;
icoSettingsButton.addFile(":/images/main_toolbar/settings.png", QSize(), QIcon::Normal); icoSettingsButton.addFile(":/images/main_toolbar/settings.svg", QSize(), QIcon::Normal);
optionsAction->setIcon(icoSettingsButton); optionsAction->setIcon(icoSettingsButton);
serverConfigAction = new QAction(mainWindow); serverConfigAction = new QAction(mainWindow);
@ -40,7 +39,7 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
serverConfigAction->setData(SERVER_CONFIG_ACTION_YL); serverConfigAction->setData(SERVER_CONFIG_ACTION_YL);
serverConfigAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(SERVER_CONFIG_ACTION_YL)); serverConfigAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(SERVER_CONFIG_ACTION_YL));
QIcon icoServerButton; QIcon icoServerButton;
icoServerButton.addFile(":/images/main_toolbar/server.png", QSize(), QIcon::Normal); icoServerButton.addFile(":/images/main_toolbar/server.svg", QSize(), QIcon::Normal);
serverConfigAction->setIcon(icoServerButton); serverConfigAction->setIcon(icoServerButton);
toggleComicsViewAction = new QAction(tr("Change between comics views"),mainWindow); toggleComicsViewAction = new QAction(tr("Change between comics views"),mainWindow);
@ -48,11 +47,11 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
QIcon icoViewsButton; QIcon icoViewsButton;
if(!settings->contains(COMICS_VIEW_STATUS) || settings->value(COMICS_VIEW_STATUS) == Flow) if(!settings->contains(COMICS_VIEW_STATUS) || settings->value(COMICS_VIEW_STATUS) == Flow)
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/grid.svg", QSize(), QIcon::Normal);
else if(settings->value(COMICS_VIEW_STATUS) == Grid) else if(settings->value(COMICS_VIEW_STATUS) == Grid)
icoViewsButton.addFile(":/images/main_toolbar/info.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/info.svg", QSize(), QIcon::Normal);
else else
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal); icoViewsButton.addFile(":/images/main_toolbar/flow.svg", QSize(), QIcon::Normal);
toggleComicsViewAction->setData(TOGGLE_COMICS_VIEW_ACTION_YL); toggleComicsViewAction->setData(TOGGLE_COMICS_VIEW_ACTION_YL);
toggleComicsViewAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_COMICS_VIEW_ACTION_YL)); toggleComicsViewAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_COMICS_VIEW_ACTION_YL));
@ -63,7 +62,7 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
helpAboutAction->setData(HELP_ABOUT_ACTION_YL); helpAboutAction->setData(HELP_ABOUT_ACTION_YL);
helpAboutAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(HELP_ABOUT_ACTION_YL)); helpAboutAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(HELP_ABOUT_ACTION_YL));
QIcon icoHelpButton; QIcon icoHelpButton;
icoHelpButton.addFile(":/images/main_toolbar/help.png",QSize(), QIcon::Normal); icoHelpButton.addFile(":/images/main_toolbar/help.svg",QSize(), QIcon::Normal);
helpAboutAction->setIcon(icoHelpButton); helpAboutAction->setIcon(icoHelpButton);
if (!useNativeFullScreen) { if (!useNativeFullScreen) {
@ -72,7 +71,7 @@ YACReaderLibraryToolbar::YACReaderLibraryToolbar(QMainWindow *mainWindow, bool i
toggleFullScreenAction->setData(TOGGLE_FULL_SCREEN_ACTION_YL); toggleFullScreenAction->setData(TOGGLE_FULL_SCREEN_ACTION_YL);
toggleFullScreenAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_FULL_SCREEN_ACTION_YL)); toggleFullScreenAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_FULL_SCREEN_ACTION_YL));
QIcon icoFullscreenButton; QIcon icoFullscreenButton;
icoFullscreenButton.addPixmap(QPixmap(":/images/main_toolbar/fullscreen.png"), QIcon::Normal); icoFullscreenButton.addPixmap(QPixmap(":/images/main_toolbar/fullscreen.svg"), QIcon::Normal);
toggleFullScreenAction->setIcon(icoFullscreenButton); toggleFullScreenAction->setIcon(icoFullscreenButton);
} }

View File

@ -116,8 +116,8 @@ void YACReaderMainToolBar::resizeEvent(QResizeEvent *event)
void YACReaderMainToolBar::addDivider() void YACReaderMainToolBar::addDivider()
{ {
QPixmap img(":/images/main_toolbar/divider.png"); QPixmap img(":/images/main_toolbar/divider.svg");
QLabel *divider = new QLabel(); auto divider = new QLabel();
divider->setPixmap(img); divider->setPixmap(img);
mainLayout->addSpacing(5); mainLayout->addSpacing(5);

View File

@ -14,14 +14,17 @@ YACReaderSearchLineEdit::YACReaderSearchLineEdit(QWidget *parent)
clearButton = new QToolButton(this); clearButton = new QToolButton(this);
searchLabel = new QLabel(this); searchLabel = new QLabel(this);
QPixmap pixmap(":/images/clearSearch.png"); QPixmap clearSearchPixmap(":/images/main_toolbar/clearSearch.svg");
QPixmap pixmapIcon(":/images/iconSearch.png"); QPixmap inconSearchPixmap(":/images/main_toolbar/iconSearch.svg");
clearSearchPixmap.setDevicePixelRatio(devicePixelRatio());
inconSearchPixmap.setDevicePixelRatio(devicePixelRatio());
searchLabel->setStyleSheet("QLabel { border: none; padding: 0px; }"); searchLabel->setStyleSheet("QLabel { border: none; padding: 0px; }");
searchLabel->setPixmap(pixmapIcon); searchLabel->setPixmap(inconSearchPixmap);
clearButton->setIcon(QIcon(pixmap)); clearButton->setIcon(QIcon(clearSearchPixmap));
clearButton->setIconSize(pixmap.size()); clearButton->setIconSize(clearSearchPixmap.size());
clearButton->setCursor(Qt::ArrowCursor); clearButton->setCursor(Qt::ArrowCursor);
clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }"); clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }");
clearButton->hide(); clearButton->hide();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -0,0 +1 @@
<svg id="5b79b16c-3824-467c-801d-0fb298ac7175" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16"><title>back</title><path d="M15,14.8103a.51055.51055,0,0,1-.809.49349L.809,8.41591c-.445-.229-.445-.6038,0-.83282L14.191.69521A.51055.51055,0,0,1,15,1.1887Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -0,0 +1 @@
<svg id="ad0250db-9451-47a2-98b0-98243ea7ade5" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><title>clearSearch</title><line x1="1" y1="1" x2="11" y2="11" fill="none" stroke="#eee" stroke-miterlimit="10" stroke-width="1.5"/><line x1="11" y1="1" x2="1" y2="11" fill="none" stroke="#eee" stroke-miterlimit="10" stroke-width="1.5"/></svg>

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

View File

@ -0,0 +1 @@
<svg id="205a6cf8-6ae1-4a8d-9d0f-2993bac2aec5" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1" height="34" viewBox="0 0 1 34"><defs><linearGradient id="4dc67389-b799-478d-b246-13bd07f3d3c1" x1="0.5" x2="0.5" y2="34" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d1d1d1" stop-opacity="0"/><stop offset="0.00314" stop-color="#d1d1d1" stop-opacity="0.01007"/><stop offset="0.10224" stop-color="#c9cbcd" stop-opacity="0.30794"/><stop offset="0.19793" stop-color="#c3c6ca" stop-opacity="0.55552"/><stop offset="0.28788" stop-color="#bec2c7" stop-opacity="0.74835"/><stop offset="0.37078" stop-color="#bbbfc5" stop-opacity="0.88664"/><stop offset="0.44405" stop-color="#b9bec4" stop-opacity="0.97052"/><stop offset="0.5" stop-color="#b8bdc4"/><stop offset="0.55595" stop-color="#b9bec4" stop-opacity="0.97052"/><stop offset="0.62922" stop-color="#bbbfc5" stop-opacity="0.88664"/><stop offset="0.71212" stop-color="#bec2c7" stop-opacity="0.74835"/><stop offset="0.80207" stop-color="#c3c6ca" stop-opacity="0.55552"/><stop offset="0.89776" stop-color="#c9cbcd" stop-opacity="0.30794"/><stop offset="0.99686" stop-color="#d1d1d1" stop-opacity="0.01007"/><stop offset="1" stop-color="#d1d1d1" stop-opacity="0"/></linearGradient></defs><title>divider</title><line x1="0.5" x2="0.5" y2="34" fill="none" stroke-miterlimit="10" stroke="url(#4dc67389-b799-478d-b246-13bd07f3d3c1)"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

View File

@ -0,0 +1 @@
<svg id="147fb762-630a-467f-a630-19a85d234295" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>flow</title><rect x="6" y="2" width="12" height="20" rx="1" ry="1" fill="#404040"/><rect width="1" height="24" fill="#404040"/><rect x="23" width="1" height="24" fill="#404040"/><rect x="20" y="2" width="1" height="20" fill="#404040"/><rect x="3" y="2" width="1" height="20" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 449 B

View File

@ -0,0 +1 @@
<svg id="1795b94b-852e-48aa-82ac-d9eaae02d184" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16"><title>fordward</title><path d="M0,1.1887A.51054.51054,0,0,1,.809.69522L14.191,7.58309c.445.229.445.6038,0,.83283L.809,15.30379A.51054.51054,0,0,1,0,14.8103Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

View File

@ -0,0 +1 @@
<svg id="6dd2b09a-dc06-4993-bcc0-43d35e24880b" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16"><title>forward</title><path d="M0,1.1887A.51054.51054,0,0,1,.809.69522L14.191,7.58309c.445.229.445.6038,0,.83283L.809,15.30379A.51054.51054,0,0,1,0,14.8103Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 259 B

View File

@ -0,0 +1 @@
<svg id="4aca275a-81cb-485f-87dc-12b8c655b812" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>fullscreen</title><rect x="12.25736" y="3.96447" width="8.48528" height="7.07107" transform="translate(-0.47056 13.86396) rotate(-45)" fill="#404040"/><path d="M24,11V2a2.00588,2.00588,0,0,0-2-2H13" fill="#404040"/><path d="M22,13v9H13V13a2.0064,2.0064,0,0,0-2-2H2V2h9V0H2A2.0064,2.0064,0,0,0,0,2V22a2.0064,2.0064,0,0,0,2,2H22a2.0064,2.0064,0,0,0,2-2V13Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 179 B

View File

@ -0,0 +1 @@
<svg id="20d929c2-bf6e-49f7-83df-ed9ba4d9b812" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>grid</title><rect width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="9" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="18" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect y="14" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="9" y="14" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="18" y="14" width="6" height="10" rx="1" ry="1" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 B

View File

@ -0,0 +1 @@
<svg id="fa0c3e09-b041-4d3e-ab78-a05ea0fb0643" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="14" height="25" viewBox="0 0 14 25"><title>help</title><path d="M3.8672,16.6652l-.0352-.9101a7.71478,7.71478,0,0,1,2.0654-5.4956C7.01761,8.9294,7.9277,7.8093,7.9277,6.6193c0-1.2251-.8052-2.0302-2.5557-2.1001A6.613,6.613,0,0,0,1.9067,5.569L.7168,1.7536A12.0113,12.0113,0,0,1,6.5625.3186c4.6206,0,6.7207,2.5551,6.7207,5.4604,0,2.6607-1.645,4.4107-2.97559,5.8809A6.0198,6.0198,0,0,0,8.5224,16.0354v.6298ZM2.957,21.4958a3.03374,3.03374,0,0,1,3.1152-3.1855,3.04233,3.04233,0,0,1,3.15041,3.1855A3.04192,3.04192,0,0,1,6.0722,24.6814,3.03359,3.03359,0,0,1,2.957,21.4958Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 695 B

View File

@ -0,0 +1 @@
<svg id="e821a4bd-f4aa-4321-8ea5-d23574b996ef" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><title>iconSearchNew</title><path d="M7,2.20508A4.79492,4.79492,0,1,1,2.20508,7,4.80035,4.80035,0,0,1,7,2.20508m0-2A6.79492,6.79492,0,1,0,13.79492,7,6.80281,6.80281,0,0,0,7,.20508Z" fill="#eee"/><line x1="14" y1="14" x2="11" y2="11" fill="none" stroke="#eee" stroke-miterlimit="10" stroke-width="3"/></svg>

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 B

View File

@ -0,0 +1 @@
<svg id="cb5ca48f-78d8-481d-b019-075fb0e4be4f" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>info</title><rect width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="9" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect x="18" width="6" height="10" rx="1" ry="1" fill="#404040"/><rect y="14" width="24" height="1" fill="#424242"/><rect y="17" width="24" height="1" fill="#424242"/><rect y="20" width="24" height="1" fill="#424242"/><rect y="23" width="16" height="1" fill="#424242"/></svg>

After

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 B

View File

@ -0,0 +1 @@
<svg id="809b4ff6-b964-4e56-8b88-bbd7dc3603f5" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="17" height="24" viewBox="0 0 17 24"><title>server</title><path d="M14,0H3A3.00894,3.00894,0,0,0,0,3V21a3.00894,3.00894,0,0,0,3,3H14a3.009,3.009,0,0,0,3-3V3A3.009,3.009,0,0,0,14,0ZM11,12h2v2H11Zm4,9H2V20H15Zm0-2H2V18H15Zm0-2H2V16H15Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 369 B

View File

@ -0,0 +1 @@
<svg id="bb574dc5-ab3f-409d-8d6f-816942ba93db" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>settings</title><path d="M23,14a1.00294,1.00294,0,0,0,1-1V11a1.00294,1.00294,0,0,0-1-1h-.20121a1.4465,1.4465,0,0,1-1.29613-.95515l-.68981-1.67552a1.43225,1.43225,0,0,1,.234-1.58814l.14538-.14538a1.003,1.003,0,0,0,0-1.41422L19.7784,2.80771a1.003,1.003,0,0,0-1.41422,0l-.14538.14538a1.43225,1.43225,0,0,1-1.58814.23406l-1.67553-.68976A1.4466,1.4466,0,0,1,14,1.2012V1a1.00294,1.00294,0,0,0-1-1H11a1.00294,1.00294,0,0,0-1,1v.2012a1.44662,1.44662,0,0,1-.95513,1.29619l-1.67555.68976a1.43226,1.43226,0,0,1-1.58814-.23406L5.6358,2.80771a1.003,1.003,0,0,0-1.41422,0L2.8077,4.22159a1.003,1.003,0,0,0,0,1.41422l.14538.14538a1.43227,1.43227,0,0,1,.23406,1.58815L2.49733,9.04485A1.44652,1.44652,0,0,1,1.20119,10H1a1.00294,1.00294,0,0,0-1,1v2a1.00294,1.00294,0,0,0,1,1h.20119a1.44652,1.44652,0,0,1,1.29614.95515l.68981,1.67551a1.43227,1.43227,0,0,1-.23406,1.58815l-.14538.14538a1.003,1.003,0,0,0,0,1.41422l1.41388,1.41388a1.003,1.003,0,0,0,1.41422,0l.14538-.14538a1.43226,1.43226,0,0,1,1.58814-.23406l1.67555.68976A1.44662,1.44662,0,0,1,10,22.7988V23a1.00294,1.00294,0,0,0,1,1h2a1.00294,1.00294,0,0,0,1-1v-.2012a1.4466,1.4466,0,0,1,.95513-1.29619l1.67553-.68976a1.43225,1.43225,0,0,1,1.58814.23406l.14538.14538a1.003,1.003,0,0,0,1.41422,0l1.41388-1.41388a1.003,1.003,0,0,0,0-1.41422l-.14538-.14538a1.43225,1.43225,0,0,1-.234-1.58814l.68981-1.67552A1.4465,1.4465,0,0,1,22.79879,14ZM12,16.4004A4.4004,4.4004,0,1,1,16.40039,12,4.40156,4.40156,0,0,1,12,16.4004Z" fill="#404040"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB