Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Calcote <[email protected]>
  • Loading branch information
leecalcote committed Nov 28, 2023
1 parent 2392d32 commit b466ffc
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 31 deletions.
36 changes: 28 additions & 8 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,32 @@
.td-navbar{
min-height:6rem;
background-color: $body-bg !important;
.navbar-brand {
.navbar-brand {
margin: 1.25rem;
}
.td-search {
display:flex;
justify-content: center;
align-content: center;
// background-color: #EBC017;
background-color:#2e2e31;

.td-search__input {
width: 100%;
text-indent: 1.25em;
border-radius: 1rem; }
.td-search__input:not(:focus) {
background: transparent; }
.td-search__input.form-control:focus {
border-color: orange;
box-shadow: 0 0 0 2px red;
color: inherit; }
}
.td-search__input.form-control:focus {

background-color: #EBC017;
}

}

.navbar-dark {
Expand Down Expand Up @@ -170,17 +193,14 @@ a:not([href]):not([class]):hover {
z-index: 5;

}
td-sidebar {
.td-sidebar {
background-image: linear-gradient(to top, #1e2117, #1d1912, #18120e, #0f0a09, #000000);

td-sidebar__inner {
td-sidebar__search {
td-search {

}
.td-sidebar__inner {
.td-sidebar__search {
}
}
}

// Left sidebar
.td-sidebar-nav {
overflow: hidden;
Expand Down
4 changes: 0 additions & 4 deletions content/en/cloud/identity/users/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ categories: [Identity]
tags: [users]
---

{{% pageinfo %}}
Page under construction.
{{% /pageinfo %}}

### User Accounts

Every person who uses Layer5 Cloud signs into a user account. Your user account is your identity on Layer5 Cloud and has a username and profile. For example, see Five's profile.
Expand Down
25 changes: 6 additions & 19 deletions layouts/partials/hotkey.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
<style>
#iconParent {
width: 100%;
display: flex;
justify-content: flex-end;
}

#promptChild {
position: relative;
right: -70px;
top: -1.5px;
#searchKey {
font-size: 16px;
font-weight: bold;
color: black;
background-color: #cccccc;
border-radius: 6px;
padding: 0px 8px;
margin: 0px;
}
</style>
<script>
Expand All @@ -33,17 +25,12 @@
});

document.addEventListener("DOMContentLoaded", function () {
var parent = document.createElement("div");
parent.id = "iconParent";

var prompt = document.createElement("span");
prompt.textContent = "/";
prompt.id = "promptChild";
parent.appendChild(prompt);
var searchKey = document.createElement("div");
searchKey.id = "searchKey";

var searchElement = document.querySelector(".td-search__icon");
var searchElement = document.querySelector(".td-search-input");
if (searchElement) {
searchElement.appendChild(parent);
searchElement.appendChild(searchKey);
}

var inputElement = document.querySelector(".td-search-input");
Expand Down

0 comments on commit b466ffc

Please sign in to comment.