合并代码

This commit is contained in:
MuHua-123
2024-11-15 18:28:21 +08:00
parent 497b43a446
commit 72d1f89b54
274 changed files with 4939 additions and 1968 deletions
+129
View File
@@ -0,0 +1,129 @@
.horizontal-slider {
flex-direction: row;
width: auto;
height: 30px;
flex-grow: 0;
flex-shrink: 1;
align-items: center;
justify-content: space-between;
}
.horizontal-slider-label {
flex-grow: 0;
flex-basis: auto;
flex-shrink: 0;
min-width: 70px;
-unity-text-align: middle-left;
padding-top: 0;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
width: auto;
background-color: rgba(0, 0, 0, 0);
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.horizontal-slider-background {
height: 10px;
width: 100%;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
padding-right: 0;
padding-left: 0;
background-color: rgb(128, 128, 128);
padding-top: 0;
padding-bottom: 0;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-left-color: rgb(51, 51, 51);
border-right-color: rgb(51, 51, 51);
border-top-color: rgb(51, 51, 51);
border-bottom-color: rgb(51, 51, 51);
}
.horizontal-slider-container {
height: 100%;
width: auto;
margin-right: 0;
margin-left: 0;
margin-top: 0;
margin-bottom: 0;
}
.horizontal-slider-tracker {
height: 100%;
background-color: rgb(255, 255, 255);
width: 0;
flex-direction: row;
align-items: center;
justify-content: flex-end;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.horizontal-slider-dragger {
width: 16px;
height: 16px;
position: absolute;
background-color: rgb(255, 255, 255);
translate: 8px 0;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
border-left-color: rgb(51, 51, 51);
border-right-color: rgb(51, 51, 51);
border-top-color: rgb(51, 51, 51);
border-bottom-color: rgb(51, 51, 51);
}
.horizontal-slider-field {
background-color: rgb(255, 255, 255);
width: 40px;
height: 20px;
flex-grow: 0;
flex-shrink: 0;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
.horizontal-slider-field-box {
width: 100%;
height: 100%;
align-items: center;
justify-content: space-around;
}
.horizontal-slider-field-text {
}