fixed(net):wireless icon changed by theme
@ -26,10 +26,13 @@
|
||||
#include <QHBoxLayout>
|
||||
#include <QDebug>
|
||||
#include <dimagebutton.h>
|
||||
#include <DGuiApplicationHelper>
|
||||
#include <DApplication>
|
||||
|
||||
using namespace dde::network;
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
DGUI_USE_NAMESPACE
|
||||
|
||||
AccessPointWidget::AccessPointWidget()
|
||||
: QFrame(nullptr),
|
||||
@ -45,9 +48,6 @@ AccessPointWidget::AccessPointWidget()
|
||||
m_ssidBtn->setObjectName("Ssid");
|
||||
|
||||
m_disconnectBtn->setVisible(false);
|
||||
m_disconnectBtn->setNormalPic(":/wireless/resources/wireless/select.svg");
|
||||
m_disconnectBtn->setHoverPic(":/wireless/resources/wireless/disconnect_hover.svg");
|
||||
m_disconnectBtn->setPressPic(":/wireless/resources/wireless/disconnect_press.svg");
|
||||
|
||||
m_securityPixmap = Utils::renderSVG(":/wireless/resources/wireless/security.svg", QSize(16, 16), devicePixelRatioF());
|
||||
m_securityIconSize = m_securityPixmap.size();
|
||||
@ -71,27 +71,19 @@ AccessPointWidget::AccessPointWidget()
|
||||
centralLayout->setMargin(0);
|
||||
|
||||
setLayout(centralLayout);
|
||||
setStyleSheet("AccessPointWidget #Ssid {"
|
||||
"color:white;"
|
||||
"background-color:transparent;"
|
||||
"border:none;"
|
||||
"text-align:left;"
|
||||
"}"
|
||||
"AccessPointWidget {"
|
||||
"border-radius:4px;"
|
||||
"margin:0 2px;"
|
||||
"border-top:1px solid rgba(255, 255, 255, .05);"
|
||||
"}"
|
||||
"AccessPointWidget:hover {"
|
||||
"background-color:rgba(255, 255, 255, .1);"
|
||||
"}"
|
||||
"AccessPointWidget[active=true] #Ssid {"
|
||||
// "color:#2ca7f8;"
|
||||
"}");
|
||||
|
||||
connect(m_ssidBtn, &SsidButton::clicked, this, &AccessPointWidget::clicked);
|
||||
connect(m_ssidBtn, &SsidButton::clicked, this, &AccessPointWidget::ssidClicked);
|
||||
connect(m_disconnectBtn, &DImageButton::clicked, this, &AccessPointWidget::disconnectBtnClicked);
|
||||
connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, [ = ] {
|
||||
setStrengthIcon(m_ap.strength());
|
||||
});
|
||||
connect(qApp, &DApplication::iconThemeChanged, this, [ = ] {
|
||||
setStrengthIcon(m_ap.strength());
|
||||
});
|
||||
|
||||
setStrengthIcon(m_ap.strength());
|
||||
|
||||
}
|
||||
|
||||
void AccessPointWidget::updateAP(const AccessPoint &ap)
|
||||
@ -132,13 +124,15 @@ void AccessPointWidget::setActiveState(const NetworkDevice::DeviceStatus state)
|
||||
void AccessPointWidget::enterEvent(QEvent *e)
|
||||
{
|
||||
QWidget::enterEvent(e);
|
||||
m_disconnectBtn->setNormalPic(":/wireless/resources/wireless/disconnect.svg");
|
||||
bool isLight = (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType);
|
||||
m_disconnectBtn->setNormalPic(isLight ? ":/wireless/resources/wireless/disconnect_dark.svg" : ":/wireless/resources/wireless/disconnect.svg");
|
||||
}
|
||||
|
||||
void AccessPointWidget::leaveEvent(QEvent *e)
|
||||
{
|
||||
QWidget::leaveEvent(e);
|
||||
m_disconnectBtn->setNormalPic(":/wireless/resources/wireless/select.svg");
|
||||
bool isLight = (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType);
|
||||
m_disconnectBtn->setNormalPic(isLight ? ":/wireless/resources/wireless/select_dark.svg" : ":/wireless/resources/wireless/select.svg");
|
||||
}
|
||||
|
||||
void AccessPointWidget::setStrengthIcon(const int strength)
|
||||
@ -154,9 +148,25 @@ void AccessPointWidget::setStrengthIcon(const int strength)
|
||||
else
|
||||
type = QString::number(strength / 10 & ~0x1) + "0";
|
||||
|
||||
iconPix = Utils::renderSVG(QString(":/wireless/resources/wireless/wireless-%1-symbolic.svg").arg(type), s, devicePixelRatioF());
|
||||
QString iconString = QString("wireless-%1-symbolic").arg(type);
|
||||
bool isLight = (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType);
|
||||
|
||||
if (isLight) {
|
||||
iconString.append("-dark");
|
||||
}
|
||||
|
||||
const auto ratio = devicePixelRatioF();
|
||||
iconPix = QIcon::fromTheme(iconString, QIcon(QString(":/wireless/resources/wireless/%1").arg(iconString))).pixmap(s * ratio);
|
||||
|
||||
m_strengthLabel->setPixmap(iconPix);
|
||||
|
||||
|
||||
m_securityPixmap = QIcon::fromTheme(isLight ? ":/wireless/resources/wireless/security_dark.svg" : ":/wireless/resources/wireless/security.svg").pixmap(s * devicePixelRatioF());
|
||||
m_securityLabel->setPixmap(m_securityPixmap);
|
||||
|
||||
m_disconnectBtn->setNormalPic(isLight ? ":/wireless/resources/wireless/select_dark.svg" : ":/wireless/resources/wireless/select.svg");
|
||||
m_disconnectBtn->setHoverPic(isLight ? ":/wireless/resources/wireless/disconnect_dark.svg" : ":/wireless/resources/wireless/disconnect.svg");
|
||||
m_disconnectBtn->setPressPic(isLight ? ":/wireless/resources/wireless/disconnect_dark.svg" : ":/wireless/resources/wireless/disconnect.svg");
|
||||
}
|
||||
|
||||
void AccessPointWidget::ssidClicked()
|
||||
|
@ -28,8 +28,10 @@
|
||||
#include <QHBoxLayout>
|
||||
#include <QDebug>
|
||||
#include <QEvent>
|
||||
#include <DGuiApplicationHelper>
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
DGUI_USE_NAMESPACE
|
||||
|
||||
DeviceControlWidget::DeviceControlWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
@ -39,16 +41,16 @@ DeviceControlWidget::DeviceControlWidget(QWidget *parent)
|
||||
|
||||
m_switchBtn = new DSwitchButton;
|
||||
|
||||
const QPixmap pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh_normal.svg");
|
||||
const QPixmap pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh.svg");
|
||||
|
||||
m_loadingIndicator = new DLoadingIndicator;
|
||||
m_loadingIndicator->setImageSource(pixmap);
|
||||
m_loadingIndicator->setLoading(false);
|
||||
m_loadingIndicator->setSmooth(true);
|
||||
m_loadingIndicator->setAniDuration(1000);
|
||||
m_loadingIndicator->setAniEasingCurve(QEasingCurve::InOutCirc);
|
||||
m_loadingIndicator->installEventFilter(this);
|
||||
m_loadingIndicator->setFixedSize(pixmap.size() / devicePixelRatioF());
|
||||
refreshIcon();
|
||||
|
||||
QHBoxLayout *infoLayout = new QHBoxLayout;
|
||||
infoLayout->addWidget(m_deviceName);
|
||||
@ -75,6 +77,7 @@ DeviceControlWidget::DeviceControlWidget(QWidget *parent)
|
||||
setFixedHeight(30);
|
||||
|
||||
connect(m_switchBtn, &DSwitchButton::checkedChanged, this, &DeviceControlWidget::enableButtonToggled);
|
||||
connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, &DeviceControlWidget::refreshIcon);
|
||||
}
|
||||
|
||||
void DeviceControlWidget::setDeviceName(const QString &name)
|
||||
@ -114,6 +117,17 @@ void DeviceControlWidget::refreshNetwork()
|
||||
});
|
||||
}
|
||||
|
||||
void DeviceControlWidget::refreshIcon()
|
||||
{
|
||||
QPixmap pixmap;
|
||||
if (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType)
|
||||
pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh_dark.svg");
|
||||
else
|
||||
pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh.svg");
|
||||
|
||||
m_loadingIndicator->setImageSource(pixmap);
|
||||
}
|
||||
|
||||
//void DeviceControlWidget::setSeperatorVisible(const bool visible)
|
||||
//{
|
||||
// m_seperator->setVisible(visible);
|
||||
|
@ -48,6 +48,7 @@ signals:
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *watched, QEvent *event) Q_DECL_OVERRIDE;
|
||||
void refreshIcon();
|
||||
|
||||
private slots:
|
||||
void refreshNetwork();
|
||||
|
@ -54,8 +54,6 @@ WirelessList::WirelessList(WirelessDevice *deviceIter, QWidget *parent)
|
||||
setFixedHeight(WIDTH);
|
||||
|
||||
const auto ratio = devicePixelRatioF();
|
||||
QPixmap iconPix = QIcon::fromTheme("notification-network-wireless-full").pixmap(QSize(48, 48) * ratio);
|
||||
iconPix.setDevicePixelRatio(ratio);
|
||||
|
||||
m_updateAPTimer->setSingleShot(true);
|
||||
m_updateAPTimer->setInterval(100);
|
||||
@ -68,11 +66,12 @@ WirelessList::WirelessList(WirelessDevice *deviceIter, QWidget *parent)
|
||||
m_centralLayout->setMargin(0);
|
||||
|
||||
setWidget(m_centralWidget);
|
||||
setFrameStyle(QFrame::NoFrame);
|
||||
setFrameShape(QFrame::NoFrame);
|
||||
setFixedWidth(300);
|
||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
setStyleSheet("background-color:transparent;");
|
||||
m_centralWidget->setAutoFillBackground(false);
|
||||
viewport()->setAutoFillBackground(false);
|
||||
|
||||
m_indicator = new DPictureSequenceView(this);
|
||||
m_indicator->setPictureSequence(":/wireless/indicator/resources/wireless/spinner14/Spinner%1.png", QPair<int, int>(1, 91), 2);
|
||||
|
@ -196,9 +196,7 @@ const QPixmap WirelessItem::iconPix(const Dock::DisplayMode displayMode, const i
|
||||
type = "disabled";
|
||||
}
|
||||
|
||||
QString key = QString("wireless-%1%2")
|
||||
.arg(type)
|
||||
.arg(displayMode == Dock::Fashion ? "" : "-symbolic");
|
||||
QString key = QString("wireless-%1-symbolic").arg(type);
|
||||
|
||||
if (state == NetworkDevice::DeviceStatus::Activated && !NetworkPlugin::isConnectivity()) {
|
||||
key = "network-wireless-offline-symbolic";
|
||||
|
@ -7,11 +7,6 @@
|
||||
<file>resources/wired/network-wired-symbolic-connecting5.svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="/wireless">
|
||||
<file>resources/wireless/wireless-0.svg</file>
|
||||
<file>resources/wireless/wireless-20.svg</file>
|
||||
<file>resources/wireless/wireless-40.svg</file>
|
||||
<file>resources/wireless/wireless-60.svg</file>
|
||||
<file>resources/wireless/wireless-80.svg</file>
|
||||
<file>resources/wireless/wireless-background.svg</file>
|
||||
<file>resources/wireless/wireless-disconnect.svg</file>
|
||||
<file>resources/wireless/wireless-0-symbolic.svg</file>
|
||||
@ -19,15 +14,20 @@
|
||||
<file>resources/wireless/wireless-40-symbolic.svg</file>
|
||||
<file>resources/wireless/wireless-60-symbolic.svg</file>
|
||||
<file>resources/wireless/wireless-80-symbolic.svg</file>
|
||||
<file>resources/wireless/wireless-0-symbolic-dark.svg</file>
|
||||
<file>resources/wireless/wireless-20-symbolic-dark.svg</file>
|
||||
<file>resources/wireless/wireless-40-symbolic-dark.svg</file>
|
||||
<file>resources/wireless/wireless-60-symbolic-dark.svg</file>
|
||||
<file>resources/wireless/wireless-80-symbolic-dark.svg</file>
|
||||
<file>resources/wireless/wireless-disconnect-symbolic.svg</file>
|
||||
<file>resources/wireless/security.svg</file>
|
||||
<file>resources/wireless/refresh_press.svg</file>
|
||||
<file>resources/wireless/refresh_normal.svg</file>
|
||||
<file>resources/wireless/refresh_hover.svg</file>
|
||||
<file>resources/wireless/security_dark.svg</file>
|
||||
<file>resources/wireless/select.svg</file>
|
||||
<file>resources/wireless/disconnect_hover.svg</file>
|
||||
<file>resources/wireless/disconnect_press.svg</file>
|
||||
<file>resources/wireless/select_dark.svg</file>
|
||||
<file>resources/wireless/disconnect.svg</file>
|
||||
<file>resources/wireless/disconnect_dark.svg</file>
|
||||
<file>resources/wireless/refresh.svg</file>
|
||||
<file>resources/wireless/refresh_dark.svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="/wireless/indicator">
|
||||
<file>resources/wireless/spinner14/Spinner01.png</file>
|
||||
|
@ -1,16 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>disconnect</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="disconnect">
|
||||
<circle id="Oval-58" fill="#FFFFFF" opacity="0.800000012" cx="8" cy="8" r="8"></circle>
|
||||
<g id="Group" transform="translate(5.500000, 5.500000)" stroke="#303030" stroke-width="1.2" stroke-linecap="round">
|
||||
<path d="M0.384439573,4.94443861 L5.05110624,0.277771944" id="Stroke-12"></path>
|
||||
<path d="M5.05110624,4.94443861 L0.384439573,0.277771944" id="Stroke-13"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M10.0000013,1.27118983e-06 C15.5228488,1.27118983e-06 20.0000013,4.47715377 20.0000013,10.0000013 C20.0000013,15.5228488 15.5228488,20.0000013 10.0000013,20.0000013 C4.47715377,20.0000013 1.27118983e-06,15.5228488 1.27118983e-06,10.0000013 C1.27118983e-06,4.47715377 4.47715377,1.27118983e-06 10.0000013,1.27118983e-06 Z M7.2843055,6.58858366 C7.08943736,6.45358761 6.82001296,6.47287276 6.64644661,6.64643911 L6.64644661,6.64643911 L6.58859116,6.715687 C6.45359511,6.91055514 6.47288026,7.17997954 6.64644661,7.35354589 L6.64644661,7.35354589 L9.293,9.9999925 L6.64644661,12.6464391 L6.58859116,12.715687 C6.45359511,12.9105551 6.47288026,13.1799795 6.64644661,13.3535459 L6.64644661,13.3535459 L6.7156945,13.4114013 C6.91056264,13.5463974 7.17998704,13.5271122 7.35355339,13.3535459 L7.35355339,13.3535459 L10,10.7069925 L12.6464466,13.3535459 L12.7156945,13.4114013 C12.9105626,13.5463974 13.179987,13.5271122 13.3535534,13.3535459 L13.3535534,13.3535459 L13.4114088,13.284298 C13.5464049,13.0894299 13.5271197,12.8200055 13.3535534,12.6464391 L13.3535534,12.6464391 L10.707,9.9999925 L13.3535534,7.35354589 L13.4114088,7.284298 C13.5464049,7.08942986 13.5271197,6.82000546 13.3535534,6.64643911 L13.3535534,6.64643911 L13.2843055,6.58858366 C13.0894374,6.45358761 12.820013,6.47287276 12.6464466,6.64643911 L12.6464466,6.64643911 L10,9.2929925 L7.35355339,6.64643911 Z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 932 B After Width: | Height: | Size: 1.5 KiB |
3
plugins/network/resources/wireless/disconnect_dark.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" d="M10.0000013,1.27118983e-06 C15.5228488,1.27118983e-06 20.0000013,4.47715377 20.0000013,10.0000013 C20.0000013,15.5228488 15.5228488,20.0000013 10.0000013,20.0000013 C4.47715377,20.0000013 1.27118983e-06,15.5228488 1.27118983e-06,10.0000013 C1.27118983e-06,4.47715377 4.47715377,1.27118983e-06 10.0000013,1.27118983e-06 Z M7.2843055,6.58858366 C7.08943736,6.45358761 6.82001296,6.47287276 6.64644661,6.64643911 L6.64644661,6.64643911 L6.58859116,6.715687 C6.45359511,6.91055514 6.47288026,7.17997954 6.64644661,7.35354589 L6.64644661,7.35354589 L9.293,9.9999925 L6.64644661,12.6464391 L6.58859116,12.715687 C6.45359511,12.9105551 6.47288026,13.1799795 6.64644661,13.3535459 L6.64644661,13.3535459 L6.7156945,13.4114013 C6.91056264,13.5463974 7.17998704,13.5271122 7.35355339,13.3535459 L7.35355339,13.3535459 L10,10.7069925 L12.6464466,13.3535459 L12.7156945,13.4114013 C12.9105626,13.5463974 13.179987,13.5271122 13.3535534,13.3535459 L13.3535534,13.3535459 L13.4114088,13.284298 C13.5464049,13.0894299 13.5271197,12.8200055 13.3535534,12.6464391 L13.3535534,12.6464391 L10.707,9.9999925 L13.3535534,7.35354589 L13.4114088,7.284298 C13.5464049,7.08942986 13.5271197,6.82000546 13.3535534,6.64643911 L13.3535534,6.64643911 L13.2843055,6.58858366 C13.0894374,6.45358761 12.820013,6.47287276 12.6464466,6.64643911 L12.6464466,6.64643911 L10,9.2929925 L7.35355339,6.64643911 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>disconnect_hover</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="disconnect_hover">
|
||||
<circle id="Oval-58" fill="#FFFFFF" cx="8" cy="8" r="8"></circle>
|
||||
<g id="Group" transform="translate(5.500000, 5.500000)" stroke="#303030" stroke-width="1.2" stroke-linecap="round">
|
||||
<path d="M0.384439573,4.94443861 L5.05110624,0.277771944" id="Stroke-12"></path>
|
||||
<path d="M5.05110624,4.94443861 L0.384439573,0.277771944" id="Stroke-13"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 922 B |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>disconnect_press</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="disconnect_press">
|
||||
<circle id="Oval-58" fill="#FFFFFF" opacity="0.200000003" cx="8" cy="8" r="8"></circle>
|
||||
<g id="Group" transform="translate(5.500000, 5.500000)" stroke="#2CA7F8" stroke-width="1.2" stroke-linecap="round">
|
||||
<path d="M0.384439573,4.94443861 L5.05110624,0.277771944" id="Stroke-12"></path>
|
||||
<path d="M5.05110624,4.94443861 L0.384439573,0.277771944" id="Stroke-13"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 944 B |
3
plugins/network/resources/wireless/refresh.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" d="M17,2 L17,8 L11,8 L14.0692732,4.93027904 C12.9431015,4.02647545 11.5199506,3.5 10,3.5 C6.41014912,3.5 3.5,6.41014912 3.5,10 C3.5,13.5898508 6.41014914,16.5 10,16.5 C12.6572393,16.5 15.0163846,14.8908134 16.012065,12.4756735 L16.012065,12.4756735 L16.9365798,12.8568197 C15.7878061,15.6433054 13.0658021,17.5 10,17.5 C5.85786439,17.5 2.5,14.1421356 2.5,10 C2.5,5.85786438 5.85786438,2.5 10,2.5 C11.7921585,2.5 13.4677532,3.13445568 14.7801646,4.21961165 L17,2 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 578 B |
3
plugins/network/resources/wireless/refresh_dark.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" d="M17,2 L17,8 L11,8 L14.0692732,4.93027904 C12.9431015,4.02647545 11.5199506,3.5 10,3.5 C6.41014912,3.5 3.5,6.41014912 3.5,10 C3.5,13.5898508 6.41014914,16.5 10,16.5 C12.6572393,16.5 15.0163846,14.8908134 16.012065,12.4756735 L16.012065,12.4756735 L16.9365798,12.8568197 C15.7878061,15.6433054 13.0658021,17.5 10,17.5 C5.85786439,17.5 2.5,14.1421356 2.5,10 C2.5,5.85786438 5.85786438,2.5 10,2.5 C11.7921585,2.5 13.4677532,3.13445568 14.7801646,4.21961165 L17,2 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 586 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>refresh_hover</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="dock位置" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="refresh_hover" stroke="#FFFFFF">
|
||||
<g id="Group-9" transform="translate(1.000000, 0.000000)">
|
||||
<path d="M13.4319825,5.23329444 C12.3594699,2.74325894 9.88331491,1 7,1 C3.13400675,1 0,4.13400675 0,8 C0,11.8659932 3.13400675,15 7,15 L7,15 C9.92193589,15 12.4257313,13.2097276 13.4743224,10.6662466" id="Oval-5"></path>
|
||||
<path d="M13.5,1.20710678 L9.20710678,5.5 L13.5,5.5 L13.5,1.20710678 Z" id="Rectangle"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 956 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>refresh_normal</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="dock位置" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.600000024">
|
||||
<g id="refresh_normal" stroke="#FFFFFF">
|
||||
<g id="Group-9" transform="translate(1.000000, 0.000000)">
|
||||
<path d="M13.4319825,5.23329444 C12.3594699,2.74325894 9.88331491,1 7,1 C3.13400675,1 0,4.13400675 0,8 C0,11.8659932 3.13400675,15 7,15 L7,15 C9.92193589,15 12.4257313,13.2097276 13.4743224,10.6662466" id="Oval-5"></path>
|
||||
<path d="M13.5,1.20710678 L9.20710678,5.5 L13.5,5.5 L13.5,1.20710678 Z" id="Rectangle"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 980 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>refresh_press</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="dock位置" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="refresh_press" stroke="#2CA7F8">
|
||||
<g id="Group-9" transform="translate(1.000000, 0.000000)">
|
||||
<path d="M13.4319825,5.23329444 C12.3594699,2.74325894 9.88331491,1 7,1 C3.13400675,1 0,4.13400675 0,8 C0,11.8659932 3.13400675,15 7,15 L7,15 C9.92193589,15 12.4257313,13.2097276 13.4743224,10.6662466" id="Oval-5"></path>
|
||||
<path d="M13.5,1.20710678 L9.20710678,5.5 L13.5,5.5 L13.5,1.20710678 Z" id="Rectangle"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 956 B |
@ -1,12 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>小锁</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="小锁" fill="#FFFFFF">
|
||||
<path d="M5.987,11.006 L9.994,11.006 L9.994,9 L5.987,9 L5.987,11.006 Z M7.008,6.74 C7.008,6.341 7.333,6.016 7.732,6.016 L8.283,6.016 C8.683,6.016 9.008,6.341 9.008,6.74 L9.008,8.016 L7.008,8.016 L7.008,6.74 Z M10.459,8 L10,8 L10,6.74 C10,5.789 9.234,5 8.283,5 L7.732,5 C6.781,5 6,5.789 6,6.74 L6,8 L5.557,8 C5.254,8 5,8.261 5,8.565 L5,11.466 C5,11.77 5.254,12 5.557,12 L10.459,12 C10.762,12 11,11.77 11,11.466 L11,8.565 C11,8.261 10.762,8 10.459,8 L10.459,8 Z" id="Page-1"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M2.008,1.74 C2.008,1.341 2.333,1.016 2.732,1.016 L3.283,1.016 C3.683,1.016 4.008,1.341 4.008,1.74 L4.008,3.016 L2.008,3.016 L2.008,1.74 Z M5.459,3 L5,3 L5,1.74 C5,0.789 4.234,0 3.283,0 L2.732,0 C1.781,0 1,0.789 1,1.74 L1,3 L0.557,3 C0.254,3 0,3.261 0,3.565 L0,6.466 C0,6.77 0.254,7 0.557,7 L5.459,7 C5.762,7 6,6.77 6,6.466 L6,3.565 C6,3.261 5.762,3 5.459,3 L5.459,3 Z" transform="translate(7 6)"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1009 B After Width: | Height: | Size: 532 B |
3
plugins/network/resources/wireless/security_dark.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" d="M2.008,1.74 C2.008,1.341 2.333,1.016 2.732,1.016 L3.283,1.016 C3.683,1.016 4.008,1.341 4.008,1.74 L4.008,3.016 L2.008,3.016 L2.008,1.74 Z M5.459,3 L5,3 L5,1.74 C5,0.789 4.234,0 3.283,0 L2.732,0 C1.781,0 1,0.789 1,1.74 L1,3 L0.557,3 C0.254,3 0,3.261 0,3.565 L0,6.466 C0,6.77 0.254,7 0.557,7 L5.459,7 C5.762,7 6,6.77 6,6.466 L6,3.565 C6,3.261 5.762,3 5.459,3 L5.459,3 Z" transform="translate(7 6)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 520 B |
@ -1,15 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>select</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="UI" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="select">
|
||||
<path d="M8,0 C3.6,0 0,3.59334258 0,7.98520574 C0,12.3770689 3.6,15.9704115 8,15.9704115 C12.4,15.9704115 16,12.3770689 16,7.98520574 C16,3.59334258 12.4,0 8,0 L8,0 Z" id="select_active-copy-24" fill="#FFFFFF" opacity="0.800000012"></path>
|
||||
<g transform="translate(4.000000, 4.000000)" id="Path-1112" stroke-width="1.2" stroke="#303030">
|
||||
<polyline points="0.601182426 4.06499815 3.2576281 6.88760344 8.63650463 0"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M10,0 C15.5,0 20,4.5 20,10 C20,15.5 15.5,20 10,20 C4.5,20 0,15.5 0,10 C0,4.5 4.5,0 10,0 Z M14.1636213,5.63070157 L9.2152245,11.9670795 L7.038112,9.65378951 L6.16425285,10.4762068 L9.30003171,13.8081274 L15.109388,6.36929843 L14.1636213,5.63070157 Z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 962 B After Width: | Height: | Size: 386 B |
3
plugins/network/resources/wireless/select_dark.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" d="M10,0 C15.5,0 20,4.5 20,10 C20,15.5 15.5,20 10,20 C4.5,20 0,15.5 0,10 C0,4.5 4.5,0 10,0 Z M14.1636213,5.63070157 L9.2152245,11.9670795 L7.038112,9.65378951 L6.16425285,10.4762068 L9.30003171,13.8081274 L15.109388,6.36929843 L14.1636213,5.63070157 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 374 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill-rule="evenodd" transform="translate(0 2.5)">
|
||||
<path d="M10,9.5 C11.3807119,9.5 12.5,10.6192881 12.5,12 C12.5,13.3807119 11.3807119,14.5 10,14.5 C8.61928813,14.5 7.5,13.3807119 7.5,12 C7.5,10.6192881 8.61928813,9.5 10,9.5 Z M10,6.35 C12.4909956,6.35 14.6054812,7.96203047 15.3571516,10.199786 L14.28887,11.2691526 C13.9413071,9.21468815 12.1533798,7.65 10,7.65 C7.84697001,7.65 6.0592738,9.21417985 5.71129948,11.2681514 L4.64318369,10.1987882 C5.39514732,7.96155131 7.50937467,6.35 10,6.35 Z M10,3.35 C13.3034694,3.35 16.1744216,5.20182631 17.6314067,7.92402907 L16.6634803,8.89414968 C15.4929817,6.38717755 12.9493606,4.65 10,4.65 C7.05103156,4.65 4.50769477,6.38671557 3.33698673,8.8931496 L2.36859333,7.92402907 C3.82557845,5.20182631 6.69653062,3.35 10,3.35 Z"/>
|
||||
<path fill-opacity=".3" d="M0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 L0.16,5.78353274 Z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -1,27 +1,3 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M14.958,7.079c-0.133,0-0.267-0.053-0.364-0.158C12.826,5.037,10.481,4,7.992,4
|
||||
S3.158,5.037,1.391,6.921C1.203,7.124,0.884,7.133,0.685,6.943C0.482,6.755,0.473,6.438,0.662,6.237C2.62,4.149,5.224,3,7.992,3
|
||||
s5.372,1.149,7.33,3.237c0.189,0.201,0.18,0.518-0.022,0.706C15.204,7.034,15.081,7.079,14.958,7.079z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M12.968,9.199c-0.133,0-0.267-0.053-0.364-0.158C11.368,7.725,9.73,7,7.992,7
|
||||
S4.616,7.725,3.381,9.041C3.193,9.244,2.874,9.253,2.675,9.063C2.473,8.875,2.463,8.559,2.652,8.357C4.078,6.837,5.975,6,7.992,6
|
||||
s3.914,0.837,5.34,2.357c0.189,0.201,0.18,0.518-0.022,0.706C13.214,9.154,13.091,9.199,12.968,9.199z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M5.006,11.318c-0.123,0-0.245-0.045-0.342-0.136c-0.201-0.188-0.212-0.505-0.022-0.706
|
||||
C5.534,9.524,6.724,9,7.992,9c1.268,0,2.458,0.524,3.352,1.477c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
c-0.199,0.188-0.517,0.181-0.706-0.022c-1.407-1.497-3.842-1.496-5.245,0C5.272,11.266,5.139,11.318,5.006,11.318z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M6.66,12.569L8,13.996l1.337-1.424c0,0-0.013-0.007-0.021-0.015
|
||||
C8.582,11.775,7.324,11.862,6.66,12.569z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M10,12 C11.3807119,12 12.5,13.1192881 12.5,14.5 C12.5,15.8807119 11.3807119,17 10,17 C8.61928813,17 7.5,15.8807119 7.5,14.5 C7.5,13.1192881 8.61928813,12 10,12 Z M10,8.85 C12.4909956,8.85 14.6054812,10.4620305 15.3571516,12.699786 L14.28887,13.7691526 C13.9413071,11.7146882 12.1533798,10.15 10,10.15 C7.84697001,10.15 6.0592738,11.7141798 5.71129948,13.7681514 L4.64318369,12.6987882 C5.39514732,10.4615513 7.50937467,8.85 10,8.85 Z M10,5.85 C13.3034694,5.85 16.1744216,7.70182631 17.6314067,10.4240291 L16.6634803,11.3941497 C15.4929817,8.88717755 12.9493606,7.15 10,7.15 C7.05103156,7.15 4.50769477,8.88671557 3.33698673,11.3931496 L2.36859333,10.4240291 C3.82557845,7.70182631 6.69653062,5.85 10,5.85 Z M9.98281644,2.9 C14.1100998,2.9 17.7361019,5.04624077 19.8056329,8.28353274 L18.8613804,9.22778525 C17.0518111,6.21552849 13.7526897,4.2 9.98281644,4.2 C6.21294316,4.2 2.91382177,6.21552849 1.10425251,9.22778525 L0.16,8.28353274 C2.22953104,5.04624077 5.85553305,2.9 9.98281644,2.9 Z" opacity=".3"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>wireless-0-48px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.2">
|
||||
<g id="wireless-0-48px">
|
||||
<path d="M38.0552595,20.0744361 C34.2435333,16.9056184 29.3443072,15 24,15 C18.7050453,15 13.8469893,16.8705857 10.0506174,19.9869716" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M34.0650585,24.5616892 C31.3159579,22.3343608 27.8138073,21 24,21 C20.2485619,21 16.7986705,22.2910747 14.0704162,24.4531336" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M30.0455976,29.0337207 C28.366534,27.7575116 26.2717301,27 24,27 C21.7498512,27 19.673283,27.7431873 18.0023678,28.9974896" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M25.4364793,32.5635207 C24.6679257,31.7949671 23.4017563,31.8150651 22.6084107,32.6084107 C21.8150651,33.4017563 21.7949671,34.6679257 22.5635207,35.4364793 C23.3320743,36.2050329 24.5982437,36.1849349 25.3915893,35.3915893 C26.1849349,34.5982437 26.2050329,33.3320743 25.4364793,32.5635207 Z" id="Path" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill-rule="evenodd" transform="translate(.16 3)">
|
||||
<path fill-opacity=".3" d="M9.82281644,6 C12.3136486,6 14.4280203,7.61181898 15.1798201,9.84934557 L14.1114441,10.9177215 C13.7632932,8.86396159 11.9756962,7.3 9.82281644,7.3 C7.66993667,7.3 5.8823397,8.86396159 5.53418878,10.9177215 L4.46581283,9.84934557 C5.21761262,7.61181898 7.33198429,6 9.82281644,6 Z M9.82281644,3 C13.1265265,3 15.9976563,4.85209616 17.4545415,7.57462408 L16.485889,8.5432766 C15.3152076,6.03677423 12.7718347,4.3 9.82281644,4.3 C6.8737982,4.3 4.3304253,6.03677423 3.15974386,8.5432766 L2.19109134,7.57462408 C3.64797655,4.85209616 6.51910638,3 9.82281644,3 Z M9.82281644,-2.66453526e-14 C13.9500998,-2.66453526e-14 17.5761019,2.14624077 19.6456329,5.38353274 L18.7013804,6.32778525 C16.8918111,3.31552849 13.5926897,1.3 9.82281644,1.3 C6.05294316,1.3 2.75382177,3.31552849 0.944252509,6.32778525 L5.5067062e-14,5.38353274 C2.06953104,2.14624077 5.69553305,-2.66453526e-14 9.82281644,-2.66453526e-14 Z"/>
|
||||
<path d="M9.82281644,14.15 C8.44210457,14.15 7.32281644,13.0307119 7.32281644,11.65 C7.32281644,10.2692881 8.44210457,9.15 9.82281644,9.15 C11.2035283,9.15 12.3228164,10.2692881 12.3228164,11.65 C12.3228164,13.0307119 11.2035283,14.15 9.82281644,14.15 Z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
@ -1,27 +1,8 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M14.958,7.079c-0.133,0-0.267-0.053-0.364-0.158C12.826,5.037,10.481,4,7.992,4
|
||||
S3.158,5.037,1.391,6.921C1.202,7.124,0.884,7.133,0.685,6.943C0.482,6.755,0.473,6.438,0.662,6.237C2.62,4.149,5.224,3,7.992,3
|
||||
s5.372,1.149,7.33,3.237c0.189,0.201,0.18,0.518-0.022,0.706C15.204,7.034,15.081,7.079,14.958,7.079z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M12.968,9.199c-0.133,0-0.267-0.053-0.364-0.158C11.368,7.725,9.73,7,7.992,7
|
||||
S4.616,7.725,3.381,9.041C3.193,9.244,2.874,9.253,2.675,9.063C2.473,8.875,2.463,8.559,2.652,8.357C4.078,6.837,5.975,6,7.992,6
|
||||
s3.914,0.837,5.34,2.357c0.189,0.201,0.18,0.518-0.022,0.706C13.214,9.154,13.091,9.199,12.968,9.199z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M5.006,11.318c-0.123,0-0.245-0.045-0.342-0.136c-0.201-0.188-0.212-0.505-0.022-0.706
|
||||
C5.534,9.524,6.724,9,7.992,9c1.268,0,2.458,0.524,3.352,1.477c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
c-0.199,0.188-0.517,0.181-0.706-0.022c-1.408-1.497-3.843-1.496-5.245,0C5.272,11.266,5.139,11.318,5.006,11.318z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M6.66,12.569L8,13.996l1.337-1.424c0,0-0.013-0.007-0.021-0.015
|
||||
C8.582,11.775,7.324,11.862,6.66,12.569z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill="#FFF" fill-rule="evenodd" transform="translate(.16 3)">
|
||||
<path d="M4.46581283,9.84934557 C5.21761262,7.61181898 7.33198429,6 9.82281644,6 C12.3136486,6 14.4280203,7.61181898 15.1798201,9.84934557 L14.1114441,10.9177215 C13.7632932,8.86396159 11.9756962,7.3 9.82281644,7.3 C7.66993667,7.3 5.8823397,8.86396159 5.53418878,10.9177215 L4.46581283,9.84934557 L4.46581283,9.84934557 Z" opacity=".3"/>
|
||||
<path d="M2.19109134,7.57462408 C3.64797655,4.85209616 6.51910638,3 9.82281644,3 C13.1265265,3 15.9976563,4.85209616 17.4545415,7.57462408 L16.485889,8.5432766 C15.3152076,6.03677423 12.7718347,4.3 9.82281644,4.3 C6.8737982,4.3 4.3304253,6.03677423 3.15974386,8.5432766 L2.19109134,7.57462408 L2.19109134,7.57462408 Z" opacity=".3"/>
|
||||
<path d="M2.66453526e-14,5.38353274 C2.06953104,2.14624077 5.69553305,-1.33226763e-14 9.82281644,-1.33226763e-14 C13.9500998,-1.33226763e-14 17.5761019,2.14624077 19.6456329,5.38353274 L18.7013804,6.32778525 C16.8918111,3.31552849 13.5926897,1.3 9.82281644,1.3 C6.05294316,1.3 2.75382177,3.31552849 0.944252509,6.32778525 L2.66453526e-14,5.38353274 L2.66453526e-14,5.38353274 Z" opacity=".3"/>
|
||||
<path d="M9.82281644,14.15 C8.44210457,14.15 7.32281644,13.0307119 7.32281644,11.65 C7.32281644,10.2692881 8.44210457,9.15 9.82281644,9.15 C11.2035283,9.15 12.3228164,10.2692881 12.3228164,11.65 C12.3228164,13.0307119 11.2035283,14.15 9.82281644,14.15 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.5 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>wireless-20-48px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="wireless-20-48px">
|
||||
<path d="M38.0552595,20.0744361 C34.2435333,16.9056184 29.3443072,15 24,15 C18.7050453,15 13.8469893,16.8705857 10.0506174,19.9869716" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M34.0650585,24.5616892 C31.3159579,22.3343608 27.8138073,21 24,21 C20.2485619,21 16.7986705,22.2910747 14.0704162,24.4531336" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M30.0455976,29.0337207 C28.366534,27.7575116 26.2717301,27 24,27 C21.7498512,27 19.673283,27.7431873 18.0023678,28.9974896" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M25.4364793,32.5635207 C24.6679257,31.7949671 23.4017563,31.8150651 22.6084107,32.6084107 C21.8150651,33.4017563 21.7949671,34.6679257 22.5635207,35.4364793 C23.3320743,36.2050329 24.5982437,36.1849349 25.3915893,35.3915893 C26.1849349,34.5982437 26.2050329,33.3320743 25.4364793,32.5635207 Z" id="Path" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
|
||||
<defs>
|
||||
<path id="wireless-40-symbolic-dark-a" d="M5.65,4.05025253 C7.03071187,4.05025253 8.15,5.16954066 8.15,6.55025253 C8.15,7.93096441 7.03071187,9.05025253 5.65,9.05025253 C4.26928813,9.05025253 3.15,7.93096441 3.15,6.55025253 C3.15,5.16954066 4.26928813,4.05025253 5.65,4.05025253 Z M5.65,0.900252532 C8.14099557,0.900252532 10.2554812,2.512283 11.0071516,4.75003848 L9.93887001,5.81940512 C9.59130708,3.76494068 7.80337979,2.20025253 5.65,2.20025253 C3.49697001,2.20025253 1.7092738,3.76443238 1.36129948,5.81840396 L0.292848434,4.75003848 C1.04451875,2.512283 3.15900443,0.900252532 5.65,0.900252532 Z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(0 2.5)">
|
||||
<use fill="#000" transform="translate(4.35 5.45)" xlink:href="#wireless-40-symbolic-dark-a"/>
|
||||
<path fill="#000" fill-opacity=".3" d="M0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 L0.16,5.78353274 Z"/>
|
||||
<path fill="#000" fill-opacity=".3" d="M9.98281644,3.4 C13.2865265,3.4 16.1576563,5.25209616 17.6145415,7.97462408 L16.645889,8.9432766 C15.4752076,6.43677423 12.9318347,4.7 9.98281644,4.7 C7.0337982,4.7 4.4904253,6.43677423 3.31974386,8.9432766 L2.35109134,7.97462408 C3.80797655,5.25209616 6.67910638,3.4 9.98281644,3.4 Z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
@ -1,27 +1,10 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M14.958,7.079c-0.133,0-0.267-0.053-0.364-0.158C12.826,5.037,10.481,4,7.992,4
|
||||
S3.158,5.037,1.391,6.921C1.202,7.124,0.884,7.133,0.685,6.943C0.482,6.755,0.473,6.438,0.662,6.237C2.62,4.149,5.224,3,7.992,3
|
||||
s5.372,1.149,7.33,3.237c0.189,0.201,0.18,0.518-0.022,0.706C15.204,7.034,15.081,7.079,14.958,7.079z"/>
|
||||
</g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M12.968,9.199c-0.133,0-0.267-0.053-0.364-0.158C11.368,7.725,9.73,7,7.992,7
|
||||
S4.616,7.725,3.381,9.041C3.192,9.244,2.873,9.253,2.675,9.063C2.473,8.875,2.463,8.559,2.652,8.357C4.078,6.837,5.975,6,7.992,6
|
||||
s3.914,0.837,5.34,2.357c0.189,0.201,0.18,0.518-0.022,0.706C13.214,9.154,13.091,9.199,12.968,9.199z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M5.006,11.318c-0.123,0-0.245-0.045-0.342-0.136c-0.201-0.188-0.212-0.505-0.022-0.706
|
||||
C5.534,9.524,6.724,9,7.992,9c1.268,0,2.458,0.524,3.352,1.477c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
c-0.199,0.188-0.516,0.181-0.706-0.022c-1.408-1.497-3.843-1.496-5.245,0C5.272,11.266,5.139,11.318,5.006,11.318z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M6.66,12.569L8,13.996l1.337-1.424c0,0-0.013-0.007-0.021-0.015
|
||||
C8.582,11.775,7.324,11.862,6.66,12.569z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
|
||||
<defs>
|
||||
<path id="wireless-40-symbolic-a" d="M5.65,4.05025253 C7.03071187,4.05025253 8.15,5.16954066 8.15,6.55025253 C8.15,7.93096441 7.03071187,9.05025253 5.65,9.05025253 C4.26928813,9.05025253 3.15,7.93096441 3.15,6.55025253 C3.15,5.16954066 4.26928813,4.05025253 5.65,4.05025253 Z M5.65,0.900252532 C8.14099557,0.900252532 10.2554812,2.512283 11.0071516,4.75003848 L9.93887001,5.81940512 C9.59130708,3.76494068 7.80337979,2.20025253 5.65,2.20025253 C3.49697001,2.20025253 1.7092738,3.76443238 1.36129948,5.81840396 L0.292848434,4.75003848 C1.04451875,2.512283 3.15900443,0.900252532 5.65,0.900252532 Z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(0 2.5)">
|
||||
<use fill="#FFF" transform="translate(4.35 5.45)" xlink:href="#wireless-40-symbolic-a"/>
|
||||
<path fill="#FFF" d="M0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 L0.16,5.78353274 Z" opacity=".3"/>
|
||||
<path fill="#FFF" d="M9.98281644,3.4 C13.2865265,3.4 16.1576563,5.25209616 17.6145415,7.97462408 L16.645889,8.9432766 C15.4752076,6.43677423 12.9318347,4.7 9.98281644,4.7 C7.0337982,4.7 4.4904253,6.43677423 3.31974386,8.9432766 L2.35109134,7.97462408 C3.80797655,5.25209616 6.67910638,3.4 9.98281644,3.4 Z" opacity=".3"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.6 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>wireless-40-48px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="wireless-40-48px">
|
||||
<path d="M38.0552595,20.0744361 C34.2435333,16.9056184 29.3443072,15 24,15 C18.7050453,15 13.8469893,16.8705857 10.0506174,19.9869716" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M34.0650585,24.5616892 C31.3159579,22.3343608 27.8138073,21 24,21 C20.2485619,21 16.7986705,22.2910747 14.0704162,24.4531336" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M30.0455976,29.0337207 C28.366534,27.7575116 26.2717301,27 24,27 C21.7498512,27 19.673283,27.7431873 18.0023678,28.9974896" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M25.4364793,32.5635207 C24.6679257,31.7949671 23.4017563,31.8150651 22.6084107,32.6084107 C21.8150651,33.4017563 21.7949671,34.6679257 22.5635207,35.4364793 C23.3320743,36.2050329 24.5982437,36.1849349 25.3915893,35.3915893 C26.1849349,34.5982437 26.2050329,33.3320743 25.4364793,32.5635207 Z" id="Path" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill-rule="evenodd" transform="translate(0 2.5)">
|
||||
<path d="M10,9.5 C11.3807119,9.5 12.5,10.6192881 12.5,12 C12.5,13.3807119 11.3807119,14.5 10,14.5 C8.61928813,14.5 7.5,13.3807119 7.5,12 C7.5,10.6192881 8.61928813,9.5 10,9.5 Z M10,6.35 C12.4909956,6.35 14.6054812,7.96203047 15.3571516,10.199786 L14.28887,11.2691526 C13.9413071,9.21468815 12.1533798,7.65 10,7.65 C7.84697001,7.65 6.0592738,9.21417985 5.71129948,11.2681514 L4.64318369,10.1987882 C5.39514732,7.96155131 7.50937467,6.35 10,6.35 Z M10,3.35 C13.3034694,3.35 16.1744216,5.20182631 17.6314067,7.92402907 L16.6634803,8.89414968 C15.4929817,6.38717755 12.9493606,4.65 10,4.65 C7.05103156,4.65 4.50769477,6.38671557 3.33698673,8.8931496 L2.36859333,7.92402907 C3.82557845,5.20182631 6.69653062,3.35 10,3.35 Z"/>
|
||||
<path fill-opacity=".3" d="M0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 L0.16,5.78353274 Z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -1,27 +1,6 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<g>
|
||||
<g style="opacity:0.3;">
|
||||
<path style="fill:#FFFFFF;" d="M14.959,7.079c-0.133,0-0.267-0.053-0.364-0.158C12.827,5.037,10.482,4,7.993,4
|
||||
S3.159,5.037,1.392,6.921C1.203,7.124,0.885,7.133,0.686,6.943C0.483,6.755,0.474,6.438,0.663,6.237C2.621,4.149,5.225,3,7.993,3
|
||||
s5.372,1.149,7.33,3.237c0.189,0.201,0.18,0.518-0.022,0.706C15.205,7.034,15.082,7.079,14.959,7.079z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M12.969,9.199c-0.133,0-0.267-0.053-0.364-0.158C11.369,7.725,9.731,7,7.993,7
|
||||
S4.617,7.725,3.382,9.041C3.193,9.244,2.875,9.253,2.676,9.063C2.474,8.875,2.464,8.559,2.653,8.357C4.079,6.837,5.976,6,7.993,6
|
||||
s3.914,0.837,5.34,2.357c0.189,0.201,0.18,0.518-0.022,0.706C13.215,9.154,13.092,9.199,12.969,9.199z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M5.007,11.318c-0.123,0-0.245-0.045-0.342-0.136c-0.201-0.188-0.212-0.505-0.022-0.706
|
||||
C5.535,9.524,6.725,9,7.993,9c1.268,0,2.458,0.524,3.352,1.477c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
c-0.199,0.188-0.517,0.181-0.706-0.022c-1.407-1.497-3.842-1.496-5.245,0C5.273,11.266,5.14,11.318,5.007,11.318z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M6.661,12.569l1.339,1.427l1.337-1.424c0,0-0.013-0.007-0.021-0.015
|
||||
C8.583,11.775,7.325,11.862,6.661,12.569z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill="#FFF" fill-rule="evenodd" transform="translate(0 2.5)">
|
||||
<path d="M10,9.5 C11.3807119,9.5 12.5,10.6192881 12.5,12 C12.5,13.3807119 11.3807119,14.5 10,14.5 C8.61928813,14.5 7.5,13.3807119 7.5,12 C7.5,10.6192881 8.61928813,9.5 10,9.5 Z M10,6.35 C12.4909956,6.35 14.6054812,7.96203047 15.3571516,10.199786 L14.28887,11.2691526 C13.9413071,9.21468815 12.1533798,7.65 10,7.65 C7.84697001,7.65 6.0592738,9.21417985 5.71129948,11.2681514 L4.64318369,10.1987882 C5.39514732,7.96155131 7.50937467,6.35 10,6.35 Z M10,3.35 C13.3034694,3.35 16.1744216,5.20182631 17.6314067,7.92402907 L16.6634803,8.89414968 C15.4929817,6.38717755 12.9493606,4.65 10,4.65 C7.05103156,4.65 4.50769477,6.38671557 3.33698673,8.8931496 L2.36859333,7.92402907 C3.82557845,5.20182631 6.69653062,3.35 10,3.35 Z"/>
|
||||
<path d="M0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 L0.16,5.78353274 Z" opacity=".3"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.2 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>wireless-60-48px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="wireless-60-48px">
|
||||
<path d="M38.0552595,20.0744361 C34.2435333,16.9056184 29.3443072,15 24,15 C18.7050453,15 13.8469893,16.8705857 10.0506174,19.9869716" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.2"></path>
|
||||
<path d="M34.0650585,24.5616892 C31.3159579,22.3343608 27.8138073,21 24,21 C20.2485619,21 16.7986705,22.2910747 14.0704162,24.4531336" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M30.0455976,29.0337207 C28.366534,27.7575116 26.2717301,27 24,27 C21.7498512,27 19.673283,27.7431873 18.0023678,28.9974896" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M25.4364793,32.5635207 C24.6679257,31.7949671 23.4017563,31.8150651 22.6084107,32.6084107 C21.8150651,33.4017563 21.7949671,34.6679257 22.5635207,35.4364793 C23.3320743,36.2050329 24.5982437,36.1849349 25.3915893,35.3915893 C26.1849349,34.5982437 26.2050329,33.3320743 25.4364793,32.5635207 Z" id="Path" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" d="M10,9.5 C11.3807119,9.5 12.5,10.6192881 12.5,12 C12.5,13.3807119 11.3807119,14.5 10,14.5 C8.61928813,14.5 7.5,13.3807119 7.5,12 C7.5,10.6192881 8.61928813,9.5 10,9.5 Z M10,6.35 C12.4909956,6.35 14.6054812,7.96203047 15.3571516,10.199786 L14.28887,11.2691526 C13.9413071,9.21468815 12.1533798,7.65 10,7.65 C7.84697001,7.65 6.0592738,9.21417985 5.71129948,11.2681514 L4.64318369,10.1987882 C5.39514732,7.96155131 7.50937467,6.35 10,6.35 Z M10,3.35 C13.3034694,3.35 16.1744216,5.20182631 17.6314067,7.92402907 L16.6634803,8.89414968 C15.4929817,6.38717755 12.9493606,4.65 10,4.65 C7.05103156,4.65 4.50769477,6.38671557 3.33698673,8.8931496 L2.36859333,7.92402907 C3.82557845,5.20182631 6.69653062,3.35 10,3.35 Z M9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 Z" transform="translate(0 2.5)"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -1,29 +1,3 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M14.966,7.072c-0.133,0-0.267-0.053-0.364-0.158C12.834,5.03,10.489,3.993,8,3.993
|
||||
c-2.489,0-4.833,1.037-6.602,2.921C1.209,7.116,0.893,7.126,0.691,6.937C0.49,6.748,0.48,6.432,0.669,6.23
|
||||
C2.628,4.143,5.232,2.993,8,2.993c2.769,0,5.372,1.149,7.33,3.237c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
C15.212,7.027,15.089,7.072,14.966,7.072z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M3.024,9.192c-0.123,0-0.246-0.045-0.342-0.136C2.48,8.868,2.47,8.552,2.659,8.351
|
||||
C4.086,6.83,5.982,5.993,8,5.993s3.914,0.837,5.34,2.357c0.189,0.201,0.18,0.518-0.022,0.706
|
||||
c-0.199,0.188-0.518,0.181-0.706-0.022C11.376,7.718,9.738,6.993,8,6.993S4.624,7.718,3.389,9.034
|
||||
C3.29,9.14,3.157,9.192,3.024,9.192z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M10.987,11.311c-0.133,0-0.266-0.053-0.364-0.157c-1.406-1.496-3.839-1.496-5.246,0
|
||||
c-0.189,0.201-0.506,0.211-0.707,0.021c-0.201-0.189-0.211-0.506-0.022-0.707C5.543,9.517,6.733,8.993,8,8.993
|
||||
s2.458,0.523,3.352,1.475c0.189,0.201,0.18,0.518-0.021,0.707C11.233,11.266,11.11,11.311,10.987,11.311z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M6.668,12.562l1.339,1.427l1.337-1.424c0,0-0.013-0.007-0.021-0.015
|
||||
C8.59,11.768,7.332,11.855,6.668,12.562z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M10,9.5 C11.3807119,9.5 12.5,10.6192881 12.5,12 C12.5,13.3807119 11.3807119,14.5 10,14.5 C8.61928813,14.5 7.5,13.3807119 7.5,12 C7.5,10.6192881 8.61928813,9.5 10,9.5 Z M10,6.35 C12.4909956,6.35 14.6054812,7.96203047 15.3571516,10.199786 L14.28887,11.2691526 C13.9413071,9.21468815 12.1533798,7.65 10,7.65 C7.84697001,7.65 6.0592738,9.21417985 5.71129948,11.2681514 L4.64318369,10.1987882 C5.39514732,7.96155131 7.50937467,6.35 10,6.35 Z M10,3.35 C13.3034694,3.35 16.1744216,5.20182631 17.6314067,7.92402907 L16.6634803,8.89414968 C15.4929817,6.38717755 12.9493606,4.65 10,4.65 C7.05103156,4.65 4.50769477,6.38671557 3.33698673,8.8931496 L2.36859333,7.92402907 C3.82557845,5.20182631 6.69653062,3.35 10,3.35 Z M9.98281644,0.4 C14.1100998,0.4 17.7361019,2.54624077 19.8056329,5.78353274 L18.8613804,6.72778525 C17.0518111,3.71552849 13.7526897,1.7 9.98281644,1.7 C6.21294316,1.7 2.91382177,3.71552849 1.10425251,6.72778525 L0.16,5.78353274 C2.22953104,2.54624077 5.85553305,0.4 9.98281644,0.4 Z" transform="translate(0 2.5)"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>wireless-80-48px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="wireless-80-48px">
|
||||
<path d="M25.4364793,32.5635207 C24.6679257,31.7949671 23.4017563,31.8150651 22.6084107,32.6084107 C21.8150651,33.4017563 21.7949671,34.6679257 22.5635207,35.4364793 C23.3320743,36.2050329 24.5982437,36.1849349 25.3915893,35.3915893 C26.1849349,34.5982437 26.2050329,33.3320743 25.4364793,32.5635207 Z" id="Path" fill="#FFFFFF"></path>
|
||||
<path d="M38.0552595,20.0744361 C34.2435333,16.9056184 29.3443072,15 24,15 C18.7050453,15 13.8469893,16.8705857 10.0506174,19.9869716" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M34.0650585,24.5616892 C31.3159579,22.3343608 27.8138073,21 24,21 C20.2485619,21 16.7986705,22.2910747 14.0704162,24.4531336" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
<path d="M30.0455976,29.0337207 C28.366534,27.7575116 26.2717301,27 24,27 C21.7498512,27 19.673283,27.7431873 18.0023678,28.9974896" id="Oval-53" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |