mirror of
https://github.com/tabler/tabler.git
synced 2026-07-29 14:34:37 +04:00
tracks
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
font-size: 12px;
|
||||
direction: ltr;
|
||||
text-align: left;
|
||||
z-index: 1000;
|
||||
z-index: 3000;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
<header class="header{% if include.dark %} bg-dark text-white{% endif %}">
|
||||
<header class="navbar {% if include.dark %} bg-dark text-white{% endif %}">
|
||||
{% include parts/navbar.html logo=true user-menu=1 person=5 dark=false white-logo=include.dark %}
|
||||
</header>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="p-3">
|
||||
<a href="{{ site.base }}" class=" navbar-brand text-inherit">
|
||||
<img src="{{ site.base }}/img/logo{% if include.white %}-white{% endif %}.svg" alt="" class="hide-sidenav-folded navbar-brand-logo">
|
||||
<img src="{{ site.base }}/img/logo-small{% if include.white %}-white{% endif %}.svg" alt="" class="hide-sidenav-expanded navbar-brand-logo">
|
||||
<!--<img src="{{ site.base }}/img/logo-small{% if include.white %}-white{% endif %}.svg" alt="" class="hide-sidenav-expanded navbar-brand-logo">-->
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{% assign menu = page.menu | default: layout.menu %}
|
||||
<div class="sidenav sidenav-dark{% if page.nav-position == "right" %} sidenav-right{% endif %} sidenav-expand-md">
|
||||
{% include layout/sidenav-content.html white=true menu=menu %}
|
||||
<div class="navbar navbar-side{% if page.nav-position == 'right' %} navbar-right{% endif %} navbar-expand-md">
|
||||
{% include layout/sidenav-content.html menu=menu %}
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="topnav">
|
||||
<header class="navbar navbar-expand-md">
|
||||
<div class="container">
|
||||
{% include layout/menu.html %}
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{% assign person = site.data.people | where: "id", include.person %}
|
||||
{% assign person = person[0] %}
|
||||
|
||||
<div class="navbar container{% if include.fluid %}-fluid{% endif %} navbar-expand-lg{% if include.dark %} navbar-dark bg-dark{% endif %}">
|
||||
<div class="container{% if include.fluid %}-fluid{% endif %}{% if include.dark %} navbar-dark bg-dark{% endif %}">
|
||||
<a class="d-lg-none px-1" data-toggle="modal" data-target="#aside">
|
||||
{% include ui/icon.html icon="menu" %}
|
||||
</a>
|
||||
@@ -33,7 +33,7 @@
|
||||
<div class="dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown">Pages</a>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item" href="##">App Pages</a>
|
||||
<a class="dropdown-item" href="#">App Pages</a>
|
||||
<a class="dropdown-item" href="#">Utility Pages</a>
|
||||
<a class="dropdown-item" href="#">Layouts</a>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
{% capture class %}{% if include.class %} {{ include.class }}{% endif %}{% if include.color %} text-{{ include.color }}{% endif %}{% endcapture %}
|
||||
{% assign class = class | strip %}
|
||||
<i class="icon fe fe-{{ include.icon }}"></i>
|
||||
<i class="icon fe fe-{{ include.icon }}{% if include.class %} {{ include.class }}{% endif %}{% if include.color %} text-{{ include.color }}{% endif %}"></i>
|
||||
|
||||
Reference in New Issue
Block a user