mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-31 16:37:27 -08:00
fix mobile view for asset and user
This commit is contained in:
parent
021e82927e
commit
15c9df0ab1
|
@ -878,9 +878,6 @@ th.css-component > .th-inner::before
|
|||
.info-stack-container {
|
||||
flex-direction: column;
|
||||
}
|
||||
.row-new-striped div {
|
||||
width:100%;
|
||||
}
|
||||
.col-md-3.col-xs-12.col-sm-push-9.info-stack{
|
||||
left:auto;
|
||||
order:1;
|
||||
|
@ -894,6 +891,12 @@ th.css-component > .th-inner::before
|
|||
float:none;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 992px){
|
||||
.row-new-striped div{
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1318px) and (min-width: 1200px){
|
||||
.admin.box{
|
||||
height:170px;
|
||||
|
|
|
@ -309,10 +309,10 @@
|
|||
<div class="row">
|
||||
<!-- name -->
|
||||
|
||||
<div class="col-md-3 col-sm-2">
|
||||
<div class="col-md-3">
|
||||
{{ trans('admin/users/table.name') }}
|
||||
</div>
|
||||
<div class="col-md-9 col-sm-2">
|
||||
<div class="col-md-9">
|
||||
{{ $user->present()->fullName() }}
|
||||
</div>
|
||||
|
||||
|
@ -751,7 +751,7 @@
|
|||
{{Helper::formatCurrencyOutput($user->getUserTotalCost()->total_user_cost)}}
|
||||
|
||||
<a id="optional_info" class="text-primary">
|
||||
<x-icon type="caret-right" id="optional_info_icon" /></i>
|
||||
<x-icon type="caret-right" id="optional_info_icon" />
|
||||
<strong>{{ trans('admin/hardware/form.optional_infos') }}</strong>
|
||||
</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue