From b3d9b62971371afd30fccab3527bd47328da927c Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Sun, 2 Mar 2025 22:50:44 -0500 Subject: [PATCH] Adding Child Entities Tab Adding Child Entities Tab --- scripts/system/html/css/edit-style.css | 29 +++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/scripts/system/html/css/edit-style.css b/scripts/system/html/css/edit-style.css index 3ec78eb6cc..5f344eb3e8 100644 --- a/scripts/system/html/css/edit-style.css +++ b/scripts/system/html/css/edit-style.css @@ -4,7 +4,7 @@ // Created by Ryan Huffman on November 13th, 2014 // Copyright 2014 High Fidelity, Inc. // Copyright 2020 Vircadia contributors. -// Copyright 2022-2024 Overte e.V. +// Copyright 2022-2025 Overte e.V. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html @@ -175,10 +175,21 @@ tr:focus { outline: none; } +th.childrenTableHeader { + height: 26px; + background-color: #1c1c1c; + border-right: 1px solid #575757; + border-bottom: 1px solid #575757; +} + tr.avatarEntity { color: #7fdb98; } +tr.localEntity { + color: #f0d769; +} + tr.selAvatarEntity { color: #000000; background-color: #7fdb98; @@ -446,6 +457,18 @@ input[type=button].glyph, button.hifi-edit-button.glyph { padding: 0; } +input[type=button].navigation, button.hifi-edit-button.navigation { + font-family: HiFi-Glyphs; + font-size: 20px; + text-transform: none; + min-width: 32px; + padding: 0; +} + +input[type=button].navigation:focus, button.hifi-edit-button.navigation:focus { + outline: none; +} + input[type=button].normal, button.hifi-edit-button.normal { font-family: FiraSans-SemiBold; font-size: 15px; @@ -2211,3 +2234,7 @@ div.menu-item-caption { div.menu-item-shortcut { float: right; } + +span.viewParent { + color: #ffffff; +}