mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-07 21:02:48 +08:00
feat: 迁移经典头部跳转导航
This commit is contained in:
6
source/components/nav/ul-nav-button/_index.env
Normal file
6
source/components/nav/ul-nav-button/_index.env
Normal file
@@ -0,0 +1,6 @@
|
||||
title=操作导航
|
||||
padding=0
|
||||
margin=0
|
||||
gray=0
|
||||
mobile=0
|
||||
inner_margin=0
|
||||
29
source/components/nav/ul-nav-button/_index.html
Normal file
29
source/components/nav/ul-nav-button/_index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<div class="ul-nav-button">
|
||||
<div class="ul-nav-button-item">
|
||||
<div class="ul-nav-button-icon">
|
||||
<i class="icon layui-icon layui-icon-add-circle"></i>
|
||||
</div>
|
||||
<div class="ul-nav-button-info">
|
||||
<div class="ul-nav-button-title">
|
||||
发布公告
|
||||
</div>
|
||||
<div class="ul-nav-button-desc">
|
||||
发布文字/图片和视频.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ul-nav-button-item">
|
||||
<div class="ul-nav-button-icon">
|
||||
<i class="icon layui-icon layui-icon-about"></i>
|
||||
</div>
|
||||
<div class="ul-nav-button-info">
|
||||
<div class="ul-nav-button-title">
|
||||
关于
|
||||
</div>
|
||||
<div class="ul-nav-button-desc">
|
||||
查看详细系统信息
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
0
source/components/nav/ul-nav-button/_index.md
Normal file
0
source/components/nav/ul-nav-button/_index.md
Normal file
5
source/components/nav/ul-nav-button/_index.php
Normal file
5
source/components/nav/ul-nav-button/_index.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
34
source/components/nav/ul-nav-button/_index.scss
Normal file
34
source/components/nav/ul-nav-button/_index.scss
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
.ul-nav-button-item {
|
||||
display : flex;
|
||||
align-items : center;
|
||||
justify-content : flex-start;
|
||||
margin-bottom : 10px;
|
||||
border-radius : 8px;
|
||||
padding : 10px;
|
||||
box-shadow : 0px 1px 3px #bbb;
|
||||
background-color: #fff;
|
||||
cursor : pointer;
|
||||
}
|
||||
|
||||
.ul-nav-button-icon {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ul-nav-button-icon .icon {
|
||||
font-size: 38px;
|
||||
color : #999;
|
||||
}
|
||||
|
||||
.ul-nav-button-title {
|
||||
color : #333;
|
||||
font-size : 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.ul-nav-button-desc {
|
||||
color : #666;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user