1.更新西安大屏样式
This commit is contained in:
2024-06-15 13:51:44 +08:00
parent 1adff85a83
commit f6129b7aa4
12 changed files with 138 additions and 83 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

+19 -2
View File
@@ -1,5 +1,6 @@
@import "./amap-item";
@import "./themeType";
@import "./public-title";
.type-time {
padding-right: 4%;
@@ -13,7 +14,7 @@
cursor: pointer;
}
.select {
.select.dark {
color: var(--typeTimeSelectColor);
position: relative;
@@ -30,9 +31,25 @@
}
}
.unSelect {
.unSelect.dark {
color: var(--typeTimeUnSelectColor);
}
.select.light {
color: #5876DB;
background-color: #BDC9F5;
position: relative;
margin-left: 5px;
border: 1px solid #607DDB;
border-radius: 5px;
}
.unSelect.light {
background-color: #BDC9F5;
margin-left: 5px;
color: #889BDB;
border: 1px solid #BDC9F5;
border-radius: 5px;
}
}
*::-webkit-scrollbar {
+96
View File
@@ -0,0 +1,96 @@
.public-title.dark {
background: linear-gradient(90deg, rgba(106, 112, 124, 0.4) 0%, rgba(106, 112, 124, 0) 70%, rgba(106, 112, 124, 0) 100%);
opacity: 1;
border-top: 1px solid #6a707c;
border-bottom: 1px solid #6a707c;
border-image: linear-gradient(
90deg,
rgba(217.0000022649765, 231.00000143051147, 255, 0.5),
rgba(217.0000022649765, 231.00000143051147, 255, 0)
)
1 1;
color: #ffffff;
&:before {
position: absolute;
content: '';
width: 7px;
height: 100%;
top: 0;
left: 0;
background-color: #45a2ff;
}
.tips {
font-size: 16px;
padding-right: 10px;
font-weight: normal;
}
}
.public-title.light {
background: url("/@/assets/images/title-background.png") no-repeat;
background-size: 100% 100%;
color: #576BAD;
}
.server-item.light {
color: #607DDB;
}
.server-item.dark {
&:nth-child(odd) {
background-color: #0a0a0c;
}
}
.right-top-item.light{
>span:nth-child(1) {
color: #607DDB;
}
>span:nth-child(2) {
color: #F58584;
}
>div {
color: #607DDB;
}
.terminal-icon {
background: url('/@/assets/images/terminalNew.png') no-repeat;
}
.position {
background: url('/@/assets/images/positionNew.png') no-repeat;
}
}
.right-top-item.dark {
.fixed-width {
display: inline-flex;
width: 100px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
span {
color: #ffffff;
font-size: 16px;
}
.terminal-icon {
background: url('/@/assets/images/terminal.png') no-repeat;
}
.position {
background: url('/@/assets/img/position.png') no-repeat;
}
}
.outer-title.light{
color: #576BAD;
background: url('/@/assets/images/top-title-new.png') no-repeat;
}
.outer-title.dark{
color: #ffffff;
background: url('/@/assets/images/top-title.png') no-repeat;
}
+1 -1
View File
@@ -22,4 +22,4 @@
//右侧区域
.body-d-right.light {
padding: 0 16px;
}
}