mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
#48 spójniejsze kolory - usuń osoby kolor neutratywowy
This commit is contained in:
parent
f38cde9762
commit
e61d9f72d2
@ -13,11 +13,6 @@ $container-max-widths: (
|
|||||||
) !default;
|
) !default;
|
||||||
|
|
||||||
|
|
||||||
$nouns: #0F3974;
|
|
||||||
$theme-colors: (
|
|
||||||
"nouns": $nouns,
|
|
||||||
);
|
|
||||||
|
|
||||||
@import "~bootstrap/scss/functions";
|
@import "~bootstrap/scss/functions";
|
||||||
@import "~bootstrap/scss/variables";
|
@import "~bootstrap/scss/variables";
|
||||||
@import "~bootstrap/scss/mixins";
|
@import "~bootstrap/scss/mixins";
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a v-if="!templateVisible" href="#" @click.prevent="templateVisible = true" class="btn btn-outline-nouns btn-block">
|
<a v-if="!templateVisible" href="#" @click.prevent="templateVisible = true" class="btn btn-outline-primary btn-block">
|
||||||
<Icon v="copy"/>
|
<Icon v="copy"/>
|
||||||
Użyj szablonu
|
Użyj szablonu
|
||||||
</a>
|
</a>
|
||||||
@ -92,7 +92,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li v-for="template in templates" class="my-2">
|
<li v-for="template in templates" class="my-2">
|
||||||
{{ template.toString() }}
|
{{ template.toString() }}
|
||||||
<button type="button" class="btn btn-outline-nouns btn-sm" @click="form = template.fill(templateBase)">
|
<button type="button" class="btn btn-outline-primary btn-sm" @click="form = template.fill(templateBase)">
|
||||||
<Icon v="copy"/>
|
<Icon v="copy"/>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
@ -100,7 +100,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="btn btn-nouns btn-block" :disabled="submitting">
|
<button class="btn btn-primary btn-block" :disabled="submitting">
|
||||||
<template v-if="submitting">
|
<template v-if="submitting">
|
||||||
<Icon v="circle-notch fa-spin"/>
|
<Icon v="circle-notch fa-spin"/>
|
||||||
</template>
|
</template>
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<nuxt-link to="/neutratywy" class="btn btn-outline-nouns">
|
<nuxt-link to="/neutratywy" class="btn btn-outline-primary">
|
||||||
<Icon v="atom-alt"/>
|
<Icon v="atom-alt"/>
|
||||||
Słownik neutratywów
|
Słownik neutratywów
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
<Share title="Słownik neutratywów"/>
|
<Share title="Słownik neutratywów"/>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<Separator icon="book-open" colour="nouns"/>
|
<Separator icon="book-open"/>
|
||||||
|
|
||||||
<section v-if="secret">
|
<section v-if="secret">
|
||||||
<div class="alert alert-info">
|
<div class="alert alert-info">
|
||||||
@ -88,7 +88,7 @@
|
|||||||
<Icon v="filter"/>
|
<Icon v="filter"/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<input class="form-control border-nouns" v-model="filter" placeholder="Filtruj listę…" ref="filter"/>
|
<input class="form-control border-primary" v-model="filter" placeholder="Filtruj listę…" ref="filter"/>
|
||||||
<div class="input-group-append" v-if="filter">
|
<div class="input-group-append" v-if="filter">
|
||||||
<button class="btn btn-outline-danger" @click="filter = ''; $refs.filter.focus()">
|
<button class="btn btn-outline-danger" @click="filter = ''; $refs.filter.focus()">
|
||||||
<Icon v="times"/>
|
<Icon v="times"/>
|
||||||
@ -143,7 +143,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</small>
|
</small>
|
||||||
|
|
||||||
<button v-if="!secret" class="btn btn-outline-nouns btn-sm m-1 hover-show" @click="edit(noun)">
|
<button v-if="!secret" class="btn btn-outline-primary btn-sm m-1 hover-show" @click="edit(noun)">
|
||||||
<Icon v="pen"/>
|
<Icon v="pen"/>
|
||||||
Zaproponuj zmianę
|
Zaproponuj zmianę
|
||||||
</button>
|
</button>
|
||||||
@ -205,7 +205,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<button class="btn btn-outline-nouns btn-sm m-1" @click="edit(noun)">
|
<button class="btn btn-outline-primary btn-sm m-1" @click="edit(noun)">
|
||||||
<Icon v="pen"/>
|
<Icon v="pen"/>
|
||||||
Edytuj
|
Edytuj
|
||||||
</button>
|
</button>
|
||||||
@ -226,7 +226,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<Separator icon="plus" colour="nouns"/>
|
<Separator icon="plus"/>
|
||||||
|
|
||||||
<NounSubmitForm ref="form" :secret="secret"/>
|
<NounSubmitForm ref="form" :secret="secret"/>
|
||||||
|
|
||||||
@ -380,7 +380,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mark-left {
|
.mark-left {
|
||||||
border-left: 3px solid $nouns;
|
border-left: 3px solid $primary;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
tr {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user