mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
HiFi glyphs font file update with fixed up/down carats
Update QML and HTML spinboxes accordingly.
This commit is contained in:
parent
e0483585b8
commit
17d41dd7b9
4 changed files with 8 additions and 8 deletions
Binary file not shown.
|
@ -56,7 +56,7 @@ SpinBox {
|
|||
incrementControl: HiFiGlyphs {
|
||||
id: incrementButton
|
||||
text: hifi.glyphs.caratUp
|
||||
x: 6
|
||||
x: 10
|
||||
y: 1
|
||||
size: hifi.dimensions.spinnerSize
|
||||
color: styleData.upPressed ? (isLightColorScheme ? hifi.colors.black : hifi.colors.white) : hifi.colors.gray
|
||||
|
@ -64,8 +64,8 @@ SpinBox {
|
|||
|
||||
decrementControl: HiFiGlyphs {
|
||||
text: hifi.glyphs.caratDn
|
||||
x: 6
|
||||
y: -3
|
||||
x: 10
|
||||
y: -1
|
||||
size: hifi.dimensions.spinnerSize
|
||||
color: styleData.downPressed ? (isLightColorScheme ? hifi.colors.black : hifi.colors.white) : hifi.colors.gray
|
||||
}
|
||||
|
|
|
@ -141,7 +141,7 @@ Item {
|
|||
readonly property real textPadding: 8
|
||||
readonly property real sliderHandleSize: 18
|
||||
readonly property real sliderGrooveHeight: 8
|
||||
readonly property real spinnerSize: 42
|
||||
readonly property real spinnerSize: 50
|
||||
readonly property real tablePadding: 12
|
||||
readonly property real tableRowHeight: largeScreen ? 26 : 23
|
||||
readonly property real tableHeaderHeight: 29
|
||||
|
|
|
@ -268,7 +268,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|||
height: 100%;
|
||||
overflow: hidden;
|
||||
font-family: hifi-glyphs;
|
||||
font-size: 50px;
|
||||
font-size: 46px;
|
||||
color: #afafaf;
|
||||
cursor: pointer;
|
||||
/*background-color: #000000;*/
|
||||
|
@ -276,17 +276,17 @@ input[type=number]::-webkit-inner-spin-button {
|
|||
input[type=number]::-webkit-inner-spin-button:before,
|
||||
input[type=number]::-webkit-inner-spin-button:after {
|
||||
position:absolute;
|
||||
left: -21px;
|
||||
left: -19px;
|
||||
line-height: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
input[type=number]::-webkit-inner-spin-button:before {
|
||||
content: "6";
|
||||
top: 5px;
|
||||
top: 4px;
|
||||
}
|
||||
input[type=number]::-webkit-inner-spin-button:after {
|
||||
content: "5";
|
||||
bottom: 6px;
|
||||
bottom: 4px;
|
||||
}
|
||||
|
||||
input[type=number].hover-up::-webkit-inner-spin-button:before,
|
||||
|
|
Loading…
Reference in a new issue