Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
hestiaHUGO: renamed all components to an SKU ID capable pattern
Browse files Browse the repository at this point in the history
The existing naming conventions for all the components are very
odd.

Number 1: it breaks the SKU convention (owner_name).
Number 2: it has capital naming (rust will have problem later).
Number 3: all the designs were originated from zoralab.

Hence, let's amend it so that the inventory can be workable and
managable in long run.

This patch renames all components to an SKU ID capable pattern for
all components in hestiaHUGO/ directory.

Signed-off-by: (Holloway) Chew, Kean Ho <kean.ho.chew@zoralab.com>
  • Loading branch information
hollowaykeanho committed May 6, 2023
1 parent a89d364 commit 28bcc00
Show file tree
Hide file tree
Showing 134 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions hestiaHUGO/archetypes/hestia/__components.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
#
# EXAMPLE:
# [[List]]
# Name = "core_hestiaUI"
# Name = "zoralab_core"
# Include = true
# Variables = [
# { "--test-variable-1" = "1rem" },
# { "--test-variable-2" = "2rem" },
# ]
#
# [[List]]
# Name = "font-NotoSans_hestiaUI"
# Name = "zoralab_font_notosans"
# Include = true
# Variables = []
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ specific language governing permissions and limitations under the License.
align-items: center;
gap: 0;

position: absolute;
position: fixed;
right: 5%;
bottom: 5%;
z-index: 2147483647;

box-sizing: border-box;
min-width: 50pt;
Expand All @@ -43,6 +44,7 @@ specific language governing permissions and limitations under the License.

font-family: sans-serif;
font-size: 25pt;
line-height: 25pt;

color: #FFF;
background: linear-gradient(144deg, #AF40FF,
Expand All @@ -54,7 +56,7 @@ specific language governing permissions and limitations under the License.
<dialog id="hestia-debug-console" style='
/* NOTE: DO NOT set display for dialog object - reserved by browser. */
--hestia-debugger-margin-content: 5pt;
--hestia-debugger-margin-section: 30pt;
--hestia-debugger-margin-section: 2%;
--hestia-debugger-padding-content: 5pt;

--hestia-debugger-font-size-text: 12pt;
Expand Down Expand Up @@ -108,7 +110,7 @@ specific language governing permissions and limitations under the License.
grid-area: header;

display: grid;
grid: "title close" 100% / auto 25pt;
grid: "title close" 100% / auto 30pt;
justify-items: stretch;
align-items: stretch;
gap: 0;
Expand All @@ -120,7 +122,7 @@ specific language governing permissions and limitations under the License.

background: transparent;
'>
<h2 style='
<p style='
grid-area: title;

display: flex;
Expand All @@ -143,7 +145,7 @@ specific language governing permissions and limitations under the License.
background: transparent;
'>
⚒ ZORALab's Hestia Debugger
</h2>
</p>
<form method='dialog' style='
grid-area: close;

Expand Down Expand Up @@ -178,14 +180,14 @@ specific language governing permissions and limitations under the License.
width: 25pt;
height: 25pt;

margin: 0;
margin: auto;

border: 0;
border-radius: 8px;

font-family: var(--hestia-debugger-font-family);
font-size: 20pt;
line-height: .8pt;
line-height: 20pt;
text-decoration: none;
white-space: nowrap;
cursor: pointer;
Expand All @@ -204,7 +206,7 @@ specific language governing permissions and limitations under the License.

margin: var(--hestia-debugger-margin-section) 0;

overflow-y: auto;
overflow: hidden auto;

color: inherit;
background: transparent;
Expand Down

0 comments on commit 28bcc00

Please sign in to comment.