Skip to content
Snippets Groups Projects
Commit 7aef44c4 authored by smtw's avatar smtw
Browse files

removing colors from other themes

parent dd610b75
Branches
Tags
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
</section> </section>
{% if card.link %} {% if card.link %}
<footer class="card-footer p-0 mt-2"> <footer class="card-footer p-0 mt-2">
<a href="{{ card.link.url }}" class="btn btn-block btn-l{% if card.link.type %} btn-{{card.link.type}}{% endif %}"> <a href="{{ card.link.url }}" class="btn btn-block btn-l btn-transparent">
{{ card.link.text }} {{ card.link.text }}
</a> </a>
</footer> </footer>
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
.btn.btn-tag-#{$color} { .btn.btn-tag-#{$color} {
background: $info; background: $info;
border: 1px solid $value; border: 1px solid $value;
color: $gray-100; color: $gray-900;
&:hover, &:hover,
&:focus, &:focus,
...@@ -79,25 +79,25 @@ ...@@ -79,25 +79,25 @@
&:not(:disabled):not(.disabled).active { &:not(:disabled):not(.disabled).active {
@if $color == "primary" and $btn-primary-color != null { @if $color == "primary" and $btn-primary-color != null {
color: $btn-primary-color; color: $btn-primary-color;
}@else if $color == "assembly" { // }@else if $color == "assembly" {
color: $body-bg; // color: $body-bg;
}@else if $color == "plattform" { // }@else if $color == "plattform" {
color: $light; // color: $light;
}@else { }@else {
color: $btn-color; color: $btn-color;
} }
} }
&:hover { &:hover {
text-shadow: $btn-hover-text-shadow; // text-shadow: $btn-hover-text-shadow;
background: $value; background: $value;
} }
&:focus, &:focus,
&.focus, &.focus,
&:focus-visible { &:focus-visible {
box-shadow: $btn-focus-box-shadow; // box-shadow: $btn-focus-box-shadow;
color: $gray-100; color: $gray-900;
} }
&:focus-visible { &:focus-visible {
...@@ -137,10 +137,10 @@ ...@@ -137,10 +137,10 @@
.show > &.dropdown-toggle { .show > &.dropdown-toggle {
@if $color == "primary" and $btn-primary-color != null { @if $color == "primary" and $btn-primary-color != null {
color: $btn-primary-color; color: $btn-primary-color;
}@else if $color == "assembly" { // }@else if $color == "assembly" {
color: $body-bg; // color: $body-bg;
}@else if $color == "plattform" { // }@else if $color == "plattform" {
color: $light; // color: $light;
}@else { }@else {
color: $btn-color; color: $btn-color;
} }
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
} }
} }
} }
/*
.btn-outline-#{$color} { .btn-outline-#{$color} {
border-width: 1px; border-width: 1px;
...@@ -206,7 +206,12 @@ ...@@ -206,7 +206,12 @@
.show > &.dropdown-toggle { .show > &.dropdown-toggle {
color: $gray-100; color: $gray-100;
} }
} */
} }
.btn-transparent {
background-color: transparent;
color: $primary;
} }
// add new styles // add new styles
......
...@@ -181,6 +181,7 @@ h6, ...@@ -181,6 +181,7 @@ h6,
.card-footer { .card-footer {
border-top: none; border-top: none;
background-color: transparent;
} }
.form-check { .form-check {
......
...@@ -10,31 +10,32 @@ $plattform: ( ...@@ -10,31 +10,32 @@ $plattform: (
); );
$assembly: ( $assembly: (
"one": #FFF900, "one": #FFF, // original: #B239FF
"two": #02FAE0, "two": #000,
"two-dark": #018577, "two-dark": #018577,
"three": #0BCB60, "three": #fff,
"four": #FFFFFF, "four": #ffff,
"bg": #0E1C23, "bg": rgba(0,0,0,1),
"bg-two": #212B30, "bg-two": #fff,
"bg-three": #4C4C4C "bg-three": #4C4C4C
); );
$world: ( $world: (
"one": #E500FC, "one": #FFF, // original: #B239FF
"two": #46EED5, "two": #000,
"three": #751DE7, "three": #fff,
"four": #FFFFFF, "four": #ffff,
"bg": #160624, "bg": rgba(0,0,0,1),
"bg-two": #330E54, "bg-two": #fff,
"bg-three": #4C4C4C "bg-three": #4C4C4C
); );
$high-contrast: ( $high-contrast: (
"one": #E500FC, "one": #FFF, // original: #B239FF
"two": #46EED5, "two": #000,
"three": #751DE7, "three": #fff,
"four": #FFFFFF, "four": #ffff,
"bg": #160624, "bg": rgba(0,0,0,1),
"bg-two": #fff,
"bg-three": #4C4C4C "bg-three": #4C4C4C
); );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment