| Index: third_party/WebKit/Source/devtools/front_end/devices/devicesView.css
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/devices/devicesView.css b/third_party/WebKit/Source/devtools/front_end/devices/devicesView.css
|
| index c0a7eefb71782a125d5ad46c98e6e50ca2b91ca9..c07c66f5b66e01ce5bd91fdc9586ecf264296ccf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/devices/devicesView.css
|
| +++ b/third_party/WebKit/Source/devtools/front_end/devices/devicesView.css
|
| @@ -189,6 +189,73 @@
|
| white-space: pre-wrap;
|
| }
|
|
|
| +.network-discovery-header {
|
| + display: flex;
|
| + align-items: center;
|
| + flex-direction: row;
|
| + margin-top: 5px;
|
| +}
|
| +
|
| +.add-network-target-button {
|
| + margin: 10px 25px;
|
| + align-self: flex-start;
|
| +}
|
| +
|
| +.network-discovery-list {
|
| + margin: 10px 0 0 25px;
|
| + max-width: 500px;
|
| + flex: none;
|
| +}
|
| +
|
| +.network-discovery-list-empty {
|
| + flex: auto;
|
| + height: 30px;
|
| + display: flex;
|
| + align-items: center;
|
| + justify-content: center;
|
| +}
|
| +
|
| +.network-discovery-list-item {
|
| + padding: 3px 5px 3px 5px;
|
| + height: 30px;
|
| + display: flex;
|
| + align-items: center;
|
| + position: relative;
|
| + flex: auto 1 1;
|
| +}
|
| +
|
| +.network-discovery-value {
|
| + white-space: nowrap;
|
| + text-overflow: ellipsis;
|
| + -webkit-user-select: none;
|
| + color: #222;
|
| + flex: 3 1 0;
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.network-discovery-edit-row {
|
| + flex: none;
|
| + display: flex;
|
| + flex-direction: row;
|
| + margin: 6px 5px;
|
| + align-items: center;
|
| +}
|
| +
|
| +.network-discovery-edit-row input {
|
| + width: 100%;
|
| + text-align: inherit;
|
| +}
|
| +
|
| +.network-discovery-footer {
|
| + overflow: hidden;
|
| + margin: 15px 0 0 25px;
|
| + max-width: 500px;
|
| +}
|
| +
|
| +.network-discovery-footer > * {
|
| + white-space: pre-wrap;
|
| +}
|
| +
|
| .device-view {
|
| overflow: auto;
|
| -webkit-user-select: text;
|
| @@ -333,3 +400,19 @@
|
| transform: scale(1.2);
|
| background-color: orange;
|
| }
|
| +
|
| +
|
| +.node-frontend .devices-sidebar,
|
| +.node-frontend .view-title,
|
| +.node-frontend .devices-footer,
|
| +.node-frontend .usb-checkbox,
|
| +.node-frontend .port-forwarding-view,
|
| +.node-frontend .discovery-help,
|
| +.node-frontend .network-discovery-header {
|
| + display: none;
|
| +}
|
| +
|
| +.node-frontend .discovery-view {
|
| + padding-top: 0;
|
| +}
|
| +
|
|
|