mirror of
https://github.com/tabler/tabler.git
synced 2026-07-26 04:54:40 +04:00
tabler v1 fixes
This commit is contained in:
+3
-3
@@ -165,9 +165,6 @@ colors:
|
|||||||
cyan:
|
cyan:
|
||||||
hex: '#17a2b8'
|
hex: '#17a2b8'
|
||||||
title: Cyan
|
title: Cyan
|
||||||
gray:
|
|
||||||
hex: '#868e96'
|
|
||||||
title: Gray
|
|
||||||
|
|
||||||
colors-extra:
|
colors-extra:
|
||||||
white:
|
white:
|
||||||
@@ -176,6 +173,9 @@ colors-extra:
|
|||||||
dark:
|
dark:
|
||||||
hex: '#303645'
|
hex: '#303645'
|
||||||
title: Dark
|
title: Dark
|
||||||
|
gray:
|
||||||
|
hex: '#868e96'
|
||||||
|
title: Gray
|
||||||
|
|
||||||
variants:
|
variants:
|
||||||
- name: success
|
- name: success
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<div class="d-flex">
|
||||||
|
{% include ui/breadcrumb.html class="breadcrumb-alternate" %}
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<div class="btn-list">
|
||||||
|
<span class="d-none d-sm-inline">
|
||||||
|
{% include ui/button.html text="New view" color="white" %}
|
||||||
|
</span>
|
||||||
|
{% include ui/button.html icon="plus" text="Create new report" color="primary" class="d-none d-sm-inline-block" modal-id="report" %}
|
||||||
|
{% include ui/button.html icon="plus" icon-only=true color="primary" class="d-sm-none" text="Create new report" modal-id="report" %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include ui/modal.html modal-id="report" size="lg" top=true %}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<div class="d-flex">
|
||||||
|
{% include ui/button.html text="Add event" color="primary" icon="plus" %}
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<div class="d-flex">
|
||||||
|
<div class="mr-3">
|
||||||
|
{% include ui/form/input-icon.html %}
|
||||||
|
</div>
|
||||||
|
{% include ui/button.html text="Add event" color="primary" icon="plus" %}
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<div class="d-flex">
|
||||||
|
<input type="search" class="form-control d-inline-block w-9 mr-3" placeholder="Search user…"/>
|
||||||
|
{% include ui/button.html text="New user" color="primary" icon="plus" %}
|
||||||
|
</div>
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
{% assign actions = include.actions %}
|
|
||||||
|
|
||||||
<!-- Page title actions -->
|
|
||||||
<div class="col-auto ml-auto d-print-none">
|
|
||||||
{% if actions == 'users' %}
|
|
||||||
<div class="d-flex">
|
|
||||||
<input type="search" class="form-control d-inline-block w-9 mr-3" placeholder="Search user…"/>
|
|
||||||
{% include ui/button.html text="New user" color="primary" icon="plus" %}
|
|
||||||
</div>
|
|
||||||
{% elsif actions == 'calendar' %}
|
|
||||||
<div class="d-flex">
|
|
||||||
{% include ui/button.html text="Add event" color="primary" icon="plus" %}
|
|
||||||
</div>
|
|
||||||
{% elsif actions == 'photos' %}
|
|
||||||
<div class="d-flex">
|
|
||||||
<div class="mr-3">
|
|
||||||
{% include ui/form/input-icon.html %}
|
|
||||||
</div>
|
|
||||||
{% include ui/button.html text="Add event" color="primary" icon="plus" %}
|
|
||||||
</div>
|
|
||||||
{% elsif actions == 'breadcrumb' %}
|
|
||||||
<div class="d-flex">
|
|
||||||
{% include ui/breadcrumb.html class="breadcrumb-alternate" %}
|
|
||||||
</div>
|
|
||||||
{% elsif actions == 'buttons' %}
|
|
||||||
<span class="d-none d-sm-inline">
|
|
||||||
{% include ui/button.html text="New view" color="white" %}
|
|
||||||
</span>
|
|
||||||
{% include ui/button.html icon="plus" text="Create new report" color="primary" class="ml-3 d-none d-sm-inline-block" modal-id="report" %}
|
|
||||||
{% include ui/button.html icon="plus" icon-only=true color="primary" class="ml-3 d-sm-none" text="Create new report" modal-id="report" %}
|
|
||||||
{% include ui/modal.html modal-id="report" size="lg" top=true %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
<div class="page-header{% if include.class %} {{ include.class }}{% endif %}">
|
<div class="page-header{% if include.class %} {{ include.class }}{% endif %}">
|
||||||
|
|
||||||
<div class="row align-items-center">
|
<div class="row align-items-center">
|
||||||
<div class="col-auto">
|
<div class="col">
|
||||||
{% if include.pretitle %}
|
{% if include.pretitle %}
|
||||||
<!-- Page pre-title -->
|
<!-- Page pre-title -->
|
||||||
<div class="page-pretitle">
|
<div class="page-pretitle">
|
||||||
@@ -19,7 +19,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if include.actions %}
|
{% if include.actions %}
|
||||||
{% include layout/page-header-actions.html actions=include.actions %}
|
<!-- Page title actions -->
|
||||||
|
<div class="col-auto ml-auto d-print-none">
|
||||||
|
{% include layout/header-actions/{{ include.actions }}.html %}
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ $text-muted-opacity: .68 !default;
|
|||||||
$text-muted-light-opacity: .4 !default;
|
$text-muted-light-opacity: .4 !default;
|
||||||
|
|
||||||
$border-opacity: .18 !default;
|
$border-opacity: .18 !default;
|
||||||
$border-dark-opacity: .32 !default;
|
$border-dark-opacity: .28 !default;
|
||||||
|
|
||||||
$light: #f5f7fb !default;
|
$light: #f5f7fb !default;
|
||||||
$dark: #252f3f !default;
|
$dark: #252f3f !default;
|
||||||
@@ -286,7 +286,7 @@ $input-focus-color: inherit !default;
|
|||||||
|
|
||||||
//buttons
|
//buttons
|
||||||
$btn-padding-x: 1rem !default;
|
$btn-padding-x: 1rem !default;
|
||||||
$btn-font-weight: $font-weight-bold !default;
|
$btn-font-weight: $font-weight-medium !default;
|
||||||
$btn-border-radius: 3px !default;
|
$btn-border-radius: 3px !default;
|
||||||
|
|
||||||
//cards
|
//cards
|
||||||
|
|||||||
+10
-16
@@ -9,7 +9,7 @@
|
|||||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .05), inset 0 2px 0 -1px rgba(255, 255, 255, .1);
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .05), inset 0 2px 0 -1px rgba(255, 255, 255, .1);
|
||||||
}
|
}
|
||||||
|
|
||||||
svg.icon {
|
svg {
|
||||||
filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .05));
|
filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .05));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,32 +19,27 @@
|
|||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
svg {
|
||||||
margin: 0 .25em 0 -.25em;
|
width: 1.25rem;
|
||||||
font-size: (20em/14);
|
height: 1.25rem;
|
||||||
|
margin: 0 .5em 0 -.5em;
|
||||||
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
width: 1.25rem;
|
width: 1.25rem;
|
||||||
height: 1.25rem;
|
height: 1.25rem;
|
||||||
vertical-align: text-top;
|
vertical-align: text-top;
|
||||||
margin: 0 .5em 0 -.25em;
|
margin: 0 .5em 0 -.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-right {
|
.icon-right {
|
||||||
margin: 0 -.25em 0 .5em;
|
margin: 0 -.5em 0 .5em;
|
||||||
}
|
|
||||||
|
|
||||||
svg.icon {
|
|
||||||
width: 1em;
|
|
||||||
height: 1em;
|
|
||||||
stroke-width: 1.75;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-white {
|
.btn-white {
|
||||||
@include button-variant($white, $border-color, $dark);
|
@include button-variant($white, $border-color-dark, $text-muted);
|
||||||
background-image: linear-gradient(-180deg, rgba($dark, 0), rgba($dark, .04) 100%);
|
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
@@ -97,8 +92,7 @@
|
|||||||
margin-bottom: -.5rem !important;
|
margin-bottom: -.5rem !important;
|
||||||
margin-right: -.5rem;
|
margin-right: -.5rem;
|
||||||
|
|
||||||
> .btn,
|
> * {
|
||||||
> .dropdown {
|
|
||||||
margin: 0 .5rem .5rem 0;
|
margin: 0 .5rem .5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user