mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 10:44:31 +02:00
Local Entities in Create app Entity List
Local Entities in Create app Entity List
This commit is contained in:
parent
eb5aabe813
commit
a00986ecce
1 changed files with 49 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
// Created by Ryan Huffman on November 13th, 2014
|
// Created by Ryan Huffman on November 13th, 2014
|
||||||
// Copyright 2014 High Fidelity, Inc.
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
// Copyright 2020 Vircadia contributors.
|
// Copyright 2020 Vircadia contributors.
|
||||||
// Copyright 2022-2024 Overte e.V.
|
// Copyright 2022-2025 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
@ -197,6 +197,28 @@ tr.lastSelAvatarEntity + tr.lastSelAvatarEntity {
|
||||||
border-top: 1px solid #2e2e2e;
|
border-top: 1px solid #2e2e2e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr.localEntity {
|
||||||
|
color: #f0d769;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.selLocalEntity {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #f0d769;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.selLocalEntity + tr.selLocalEntity {
|
||||||
|
border-top: 1px solid #2e2e2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.lastSelLocalEntity {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ebac00;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.lastSelLocalEntity + tr.lastSelLocalEntity {
|
||||||
|
border-top: 1px solid #2e2e2e;
|
||||||
|
}
|
||||||
|
|
||||||
tr.selected {
|
tr.selected {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
background-color: #00b4ef;
|
background-color: #00b4ef;
|
||||||
|
@ -486,6 +508,21 @@ input[type=button].white, button.hifi-edit-button.white {
|
||||||
background-color: #afafaf;
|
background-color: #afafaf;
|
||||||
background: linear-gradient(#fff 20%, #afafaf 100%);
|
background: linear-gradient(#fff 20%, #afafaf 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type=button].localEntity, button.hifi-edit-button.localEntity {
|
||||||
|
color: #f0d769;
|
||||||
|
font-size: 26px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=button].selLocalEntity, button.hifi-edit-button.selLocalEntity {
|
||||||
|
color: #000000;
|
||||||
|
font-size: 26px;
|
||||||
|
background-color: #f0d769;
|
||||||
|
background: linear-gradient(#f0d769 20%, #ebac00 100%);
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
input[type=button].secondary, button.hifi-edit-button.secondary {
|
input[type=button].secondary, button.hifi-edit-button.secondary {
|
||||||
font-family: Raleway-Bold;
|
font-family: Raleway-Bold;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
|
@ -559,6 +596,17 @@ input[type=button].white:enabled:hover, button.hifi-edit-button.white:enabled:ho
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type=button].localEntity:enabled:hover, button.hifi-edit-button.localEntity:enabled:hover {
|
||||||
|
color: #ebac00;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=button].selLocalEntity:enabled:hover, button.hifi-edit-button.selLocalEntity:enabled:hover {
|
||||||
|
color: #000000;
|
||||||
|
background: linear-gradient(#ebac00, #ebac00);
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
input[type=button]:active, button.hifi-edit-button:active {
|
input[type=button]:active, button.hifi-edit-button:active {
|
||||||
background: linear-gradient(#343434, #343434);
|
background: linear-gradient(#343434, #343434);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue