Skip to content

Commit

Permalink
Fix more white things
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed Sep 3, 2023
1 parent 0675cd2 commit af56b83
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ body .container-main {
}

body:not(.contentpane) .main-card {
background: $white;
background: var(--body-bg);
border-radius: $border-radius;
box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
padding: 30px;
margin: 1rem;
color: var(--template-text-dark);
background: var(--white);
background: var(--body-bg);
border-radius: 10px;
box-shadow: 0 4px 20px -10px var(--template-bg-dark-50);

Expand Down Expand Up @@ -102,7 +102,6 @@

input:focus,
select:focus {
background: $white;
box-shadow: inset 0 0 1px 1px var(--template-contrast);
}

Expand Down Expand Up @@ -219,6 +218,15 @@ label {
color: $darkblue;
}

@if $enable-dark-mode {
@include color-mode(dark) {
label {
color: var(--white);
}
}
}


.com_login .sidebar-wrapper .main-brand {
flex: 1;
flex-basis: auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,15 @@
}
}

@if $enable-dark-mode {
@include color-mode(dark) {
.subhead {
background-color: var(--body-bg);
background-image: linear-gradient(var(--body-bg), var(--dark-bg));
}
}
}

@include media-breakpoint-down(sm) {
joomla-tab[view=accordion] .col-md-9,
joomla-tab[view=accordion] .col-md-3 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ joomla-tab {
--gutter-x: 2rem;
display: none;
padding: 30px 2vw;
background-color: $white;
background-color: var(--body-bg);
border: 0;
border-radius: .25rem;
box-shadow: none;
Expand Down

0 comments on commit af56b83

Please sign in to comment.