81 lines
1.6 KiB
Plaintext
81 lines
1.6 KiB
Plaintext
|
|
/* pages/HostUpgrade/HostUpgrade.wxss */@import "../../colorui/main.wxss";
|
||
|
|
@import "../../colorui/icon.wxss";
|
||
|
|
|
||
|
|
.flex-nine
|
||
|
|
{
|
||
|
|
flex: 8;
|
||
|
|
}
|
||
|
|
.flex-five
|
||
|
|
{
|
||
|
|
flex: 5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.newcu-tag{
|
||
|
|
font-size: 32rpx;
|
||
|
|
vertical-align: middle;
|
||
|
|
position: relative;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
box-sizing: border-box;
|
||
|
|
padding: 0rpx 0rpx;
|
||
|
|
height: 70rpx;
|
||
|
|
font-family: Helvetica Neue, Helvetica, sans-serif;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
.newcu-tag[class*="line-"]::after {
|
||
|
|
content: " ";
|
||
|
|
width: 200%;
|
||
|
|
height: 200%;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
border: 1rpx solid currentColor;
|
||
|
|
transform: scale(0.5);
|
||
|
|
transform-origin: 0 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
border-radius: inherit;
|
||
|
|
z-index: 1;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.devices_summary {
|
||
|
|
margin-top: 2px;
|
||
|
|
padding: 6px;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.device_list {
|
||
|
|
height: 500px;
|
||
|
|
margin: 50px 5px;
|
||
|
|
margin-top: 0;
|
||
|
|
border: 1px solid #EEE;
|
||
|
|
border-radius: 5px;
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
.device_item {
|
||
|
|
border-bottom: 1px solid #EEE;
|
||
|
|
padding: 10px;
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
.device_item_hover {
|
||
|
|
background-color: rgba(0, 0, 0, .1);
|
||
|
|
}
|
||
|
|
.connected_info {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
background-color: #F0F0F0;
|
||
|
|
padding: 10px;
|
||
|
|
padding-bottom: 20px;
|
||
|
|
margin-bottom: env(safe-area-inset-bottom);
|
||
|
|
font-size: 14px;
|
||
|
|
min-height: 100px;
|
||
|
|
box-shadow: 0px 0px 3px 0px;
|
||
|
|
}
|
||
|
|
.connected_info .operation {
|
||
|
|
position: absolute;
|
||
|
|
display: inline-block;
|
||
|
|
right: 30px;
|
||
|
|
}
|
||
|
|
|