Fixed some styles

This commit is contained in:
Igor Scheller 2021-07-29 20:18:40 +02:00
parent 82f640896e
commit bd8acfcf51
7 changed files with 36 additions and 17 deletions

View File

@ -1,9 +1,11 @@
// select 2 variables // Basic variables
$cursor-disabled: false; @use "sass:map";
// select 2 variables
$link-decoration: none !default; $link-decoration: none !default;
$link-hover-decoration: underline !default; $link-hover-decoration: underline !default;
// Imports
@import "~bootstrap/scss/functions"; @import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables"; @import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins"; @import "~bootstrap/scss/mixins";
@ -269,10 +271,27 @@ span.ref-id[id] {
} }
} }
// Cards
.card-body > *:last-child { .card-body > *:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.card-header {
&.bg-dark {
color: map.get($theme-colors, "light");;
}
&.bg-light {
color: map.get($theme-colors, "dark");;
}
}
// code tag
code {
background-color: $input-disabled-bg;
@include border-radius($input-border-radius);
}
@keyframes pulse { @keyframes pulse {
0% { 0% {
transform: rotate(0deg); transform: rotate(0deg);
@ -343,3 +362,8 @@ span.ref-id[id] {
} }
} }
} }
// Forms
.form-label {
font-weight: $font-weight-bold;
}

View File

@ -158,10 +158,3 @@ table,
color: #fff; color: #fff;
} }
} }
// code tag
code {
background-color: $input-bg-disabled;
color: $input-color;
}

View File

@ -53,6 +53,8 @@ $state-danger-border: darken($state-danger-bg, 3%);
$headings-small-color: $gray-light; $headings-small-color: $gray-light;
$nav-tabs-link-active-color: $gray-light;
code { code {
background-color: $state-info-bg; background-color: $state-info-bg;
color: $state-info-text; color: $state-info-text;

View File

@ -1,5 +1,5 @@
{% macro angel() %} {% macro angel() %}
<span class="icon-icon_angel bg-light"></span> <span class="icon-icon_angel"></span>
{% endmacro %} {% endmacro %}
{% macro icon(icon, color) %} {% macro icon(icon, color) %}
@ -19,7 +19,7 @@
{% endmacro %} {% endmacro %}
{% macro button(label, url, type, size, title) %} {% macro button(label, url, type, size, title) %}
<a href="{{ url }}" class="btn btn-{{ type|default('primary') }}{% if size %} btn-{{ size }}{% endif %}"{% if title %} title="{{ title }}"{% endif %}> <a href="{{ url }}" class="btn btn-{{ type|default('secondary') }}{% if size %} btn-{{ size }}{% endif %}"{% if title %} title="{{ title }}"{% endif %}>
{{ label }} {{ label }}
</a> </a>
{% endmacro %} {% endmacro %}

View File

@ -67,7 +67,7 @@
{% macro button(label, opt) %} {% macro button(label, opt) %}
<button <button
class="btn btn-{{ opt.btn_type|default('primary') }} class="btn btn-{{ opt.btn_type|default('secondary') }}
{%- if 'btn_size' in opt %} btn-{{ opt.btn_size }}{% endif %}" {%- if 'btn_size' in opt %} btn-{{ opt.btn_size }}{% endif %}"
{%- if opt.type is defined %} type="{{ opt.type }}"{% endif %} {%- if opt.type is defined %} type="{{ opt.type }}"{% endif %}
{%- if opt.name is defined %} name="{{ opt.name }}"{% endif %} {%- if opt.name is defined %} name="{{ opt.name }}"{% endif %}
@ -79,5 +79,5 @@
{%- endmacro %} {%- endmacro %}
{% macro submit(label, opt) %} {% macro submit(label, opt) %}
{{ _self.button(label|default(__('form.submit')), opt|default({})|merge({'type': 'submit'})) }} {{ _self.button(label|default(__('form.submit')), opt|default({})|merge({'type': 'submit', 'btn_type': 'primary'})) }}
{%- endmacro %} {%- endmacro %}

View File

@ -235,7 +235,7 @@
<div class="col"> <div class="col">
<label class="form-label">Button</label> <label class="form-label">Button</label>
<div> <div>
{{ f.button('Button', {'btn_type': 'primary'}) }} {{ f.button('Button') }}
</div> </div>
</div> </div>
<div class="col"> <div class="col">
@ -334,7 +334,7 @@
<div class="col-md-3"> <div class="col-md-3">
<h4><code>button(label, opt)</code></h4> <h4><code>button(label, opt)</code></h4>
<p> <p>
{{ f.button('Label', {'btn_type': 'primary', 'name': 'button-name', 'value': 'buton-value'}) }} {{ f.button('Label', {'name': 'button-name', 'value': 'buton-value'}) }}
</p> </p>
</div> </div>