-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: stop changing the appearance of the administration dashboard
- Loading branch information
Manoj
committed
Dec 6, 2024
1 parent
68699be
commit 7582a58
Showing
3 changed files
with
59 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,58 @@ | ||
body { | ||
margin: 0; | ||
background: #fff; | ||
} | ||
|
||
.ck-flex-container { | ||
display: flex; | ||
} | ||
|
||
.ck-side-bar { | ||
top: 60px; /* the height of the header (60px) + its bottom margin (20px) */ | ||
padding: 20px 0px 20px; | ||
width: 300px; | ||
height: 100vh; | ||
border-right: 1px solid #eaeaea; | ||
background: #fff; | ||
} | ||
|
||
.ck-main { | ||
flex-grow: 1; | ||
} | ||
|
||
.ck-main-content { | ||
top: 100px; /* the height of the header (60px) + its bottom margin (20px) */ | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.cookiex-admin-header { | ||
padding: 0 var(--mantine-spacing-xl); | ||
color: lightdark(var(--mantine-color-white), var(--mantine-color-dark)); | ||
gap: var(--mantine-spacing-md); | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
height: 80px; | ||
justify-content: space-between; | ||
border-bottom: 1px solid #eaeaea; | ||
} | ||
|
||
.ck-navbar-links { | ||
flex: 1; | ||
padding: var(--mantine-spacing-sm); | ||
} | ||
|
||
.ck-navbar-linksInner { | ||
padding-top: var(--mantine-spacing-xs); | ||
padding-bottom: var(--mantine-spacing-xs); | ||
margin-top: var(--mantine-spacing-xs); | ||
cursor: pointer; | ||
padding-left: 8px; | ||
} | ||
|
||
.ckActive, | ||
.ck-navbar-linksInner:hover, | ||
.ck-navbar-linksInner:active { | ||
color: #fff; | ||
border-radius: 5px; | ||
background: #0078b4; | ||
} | ||
|
||
.mantine-Accordion-label { | ||
color: #0078b4 !important; | ||
} | ||
|
||
#wpfooter { | ||
position: relative !important; | ||
top: 300px !important; | ||
.cookiex-cmp-admin { | ||
.cookiex-content { | ||
background: #fff; | ||
margin: 0; | ||
} | ||
|
||
.ck-flex-container { | ||
display: flex; | ||
margin-left: -20px; | ||
} | ||
|
||
.ck-side-bar { | ||
width: 300px; | ||
background: #fff; | ||
border-right: 1px solid #eaeaea; | ||
padding: 20px; | ||
} | ||
|
||
.ck-main { | ||
flex-grow: 1; | ||
padding: 20px; | ||
} | ||
|
||
.ck-main-content { | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.cookiex-admin-header { | ||
padding: 0 20px; | ||
background: #fff; | ||
color: lightdark(var(--mantine-color-white), var(--mantine-color-dark)); | ||
gap: var(--mantine-spacing-md); | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
height: 60px; | ||
justify-content: space-between; | ||
border-bottom: 1px solid #eaeaea; | ||
} | ||
|
||
.ck-navbar-links { | ||
.ck-navbar-linksInner { | ||
padding: 12px 16px; | ||
cursor: pointer; | ||
border-radius: 4px; | ||
margin-bottom: 8px; | ||
|
||
&:hover { | ||
background: #f5f5f5; | ||
} | ||
|
||
&.ckActive { | ||
background: #f0f0f0; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters