操作栏样式优化
parent
1a95fb7fd8
commit
898aa0ac46
|
|
@ -113,7 +113,7 @@
|
|||
<div class="am-nbfc am-padding-vertical-xs">
|
||||
<div class="base am-nbfc">
|
||||
<a href="{{:MyUrl('index/goods/index', ['id'=>$item['goods_id']])}}" target="_blank" title="{{$item.title}}">
|
||||
<img src="{{$item['images']}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="60" height="60" />
|
||||
<img src="{{$item['images']}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="35" height="35" />
|
||||
</a>
|
||||
<a href="{{:MyUrl('index/goods/index', ['id'=>$item['goods_id']])}}" target="_blank" title="{{$item.title}}" {{if !empty($item['title_color'])}} style="color:{{$item.title_color}};" {{/if}} class="am-nowrap-initial">{{$item.title}}</a>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
<hr data-am-widget="divider" class="am-divider am-divider-dashed am-margin-top-0" />
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$module_data.order_data.items.goods_url}}" target="_blank">
|
||||
<img src="{{$module_data.order_data.items.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="60" height="60" />
|
||||
<img src="{{$module_data.order_data.items.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="35" height="35" />
|
||||
</a>
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$module_data.order_data.items.goods_url}}" target="_blank" class="am-nowrap-initial">{{$module_data.order_data.items.title}}</a>
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@
|
|||
{{foreach $module_data.items as $item}}
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$item.goods_url}}" target="_blank">
|
||||
<img src="{{$item.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="60" height="60" />
|
||||
<img src="{{$item.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="35" height="35" />
|
||||
</a>
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$item.goods_url}}" target="_blank" class="am-nowrap-initial">{{$item.title}}</a>
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
<hr data-am-widget="divider" class="am-divider am-divider-dashed am-margin-top-0" />
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$module_data.order_data.items.goods_url}}" target="_blank">
|
||||
<img src="{{$module_data.order_data.items.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="60" height="60" />
|
||||
<img src="{{$module_data.order_data.items.images}}" class="am-img-thumbnail am-radius am-margin-right-xs am-fl" width="35" height="35" />
|
||||
</a>
|
||||
<div class="am-nbfc">
|
||||
<a href="{{$module_data.order_data.items.goods_url}}" target="_blank" class="am-nowrap-initial">{{$module_data.order_data.items.title}}</a>
|
||||
|
|
|
|||
|
|
@ -209,6 +209,28 @@ table.am-table .am-btn-danger:hover {
|
|||
color: #fff;
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表操作按钮美化
|
||||
*/
|
||||
table.am-table .am-operate-grid .am-btn {
|
||||
background: transparent;
|
||||
padding: 2px 5px;
|
||||
width: auto;
|
||||
border: 0px !important;
|
||||
}
|
||||
table.am-table .am-operate-grid .am-btn:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
table.am-table .am-operate-grid .am-btn:nth-child(odd) {
|
||||
float: left;
|
||||
}
|
||||
table.am-table .am-operate-grid .am-btn:nth-child(even) {
|
||||
float: right;
|
||||
}
|
||||
table.am-table .am-operate-grid .am-btn:nth-child(n+3) {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/**
|
||||
* 下拉选框
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1080,7 +1080,7 @@ button.colorpicker-submit img {
|
|||
min-width: 200px;
|
||||
}
|
||||
.am-table-scrollable-horizontal .am-table tr .am-operate-grid {
|
||||
min-width: 120px;
|
||||
min-width: 140px;
|
||||
}
|
||||
.am-table-scrollable-horizontal .am-table tr .am-grid-auto {
|
||||
min-width: auto;
|
||||
|
|
|
|||
Loading…
Reference in New Issue