color shema, badge bg-color

This commit is contained in:
ogerly 2023-01-02 13:25:23 +01:00
parent 1430e45fe8
commit 5c96099ef1
8 changed files with 19 additions and 11 deletions

View File

@ -114,11 +114,11 @@ $theme-colors: map.merge(
"dark": $dark,
"darker": $darker,
"f5": $gradido-f5,
"248": $gradido-248,
"140": $gradido-140,
"205": $gradido-205,
"197": $gradido-197,
"4": $gradido-4
"248": $gradido-248,
"140": $gradido-140,
"205": $gradido-205,
"197": $gradido-197,
"4": $gradido-4
),
$theme-colors
);

View File

@ -9,6 +9,11 @@ body {
cursor: pointer;
}
.bg-gradient {
background: rgb(4,112,6);
background: linear-gradient(90deg, rgba(4,112,6,1) 73%, rgba(197,141,56,1) 100%);
color: white;
}
.hover-icon:hover {
background-color: rgb(220 216 217);
border-radius: 29px;

View File

@ -25,7 +25,7 @@
:locale="$i18n.locale"
:max="maximalDate"
:min="minimalDate"
class="mb-4"
class="mb-4 bg-248"
reset-value=""
:label-no-date-selected="$t('contribution.noDateSelected')"
required

View File

@ -18,6 +18,7 @@
step="0.5"
min="0"
:max="validMaxTime"
class="bg-248"
></b-form-input>
</b-form-group>
</validation-provider>

View File

@ -10,7 +10,7 @@
v-model="currentValue"
v-bind="ariaInput"
:id="labelFor"
:class="$route.path === '/send' ? 'bg-248' : ''"
class="bg-248"
:name="name"
:placeholder="placeholder"
:state="validated ? valid : false"

View File

@ -1,7 +1,7 @@
<template>
<div class="community-member mt-3 mt-lg-0">
<div class="text-center">
<b-badge class="position-absolute mt--2 ml--5 px-3" variant="success">
<div class="text-center bg-gradient">
<b-badge class="position-absolute mt--2 ml--5 px-3 bg-gradient">
{{ $t('member') }}
</b-badge>
</div>

View File

@ -4,7 +4,8 @@
<b-badge
v-if="badgeShow"
class="position-absolute mt--2 ml--4 px-3 zindex1"
:variant="showStatus ? 'success' : 'light'"
:class="showStatus ? 'bg-gradient' : ''"
:variant="showStatus ? '' : 'light'"
>
{{ $t('GDD') }}
</b-badge>

View File

@ -4,7 +4,8 @@
<b-badge
v-if="badgeShow"
class="position-absolute mt--2 ml--4 px-3 zindex1"
:variant="showStatus ? 'success' : 'light'"
:class="showStatus ? 'bg-gradient' : ''"
:variant="showStatus ? '' : 'light'"
>
{{ $t('GDT') }}
</b-badge>