mirror of https://github.com/akveo/blur-admin
fix component scroll
parent
0393f2599c
commit
36f7dbc804
|
@ -49,8 +49,9 @@ $panel-title-height: 35px;
|
|||
}
|
||||
|
||||
.panel-body {
|
||||
padding: 15px 22px;
|
||||
padding: 0;
|
||||
}
|
||||
.panel-content {
|
||||
padding: 15px 22px;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
<div class="widgets">
|
||||
<div ng-repeat="widgetBlock in ngModel" ng-class="{'row': widgetBlock.widgets.length > 1}">
|
||||
<div ng-repeat="widgetCol in widgetBlock.widgets" ng-class="{'col-md-6': widgetBlock.widgets.length === 2}" ng-model="widgetCol" class="widgets-block">
|
||||
<blur-panel title="{{::widget.title}}" ng-repeat="widget in widgetCol" >
|
||||
<blur-panel title="{{::widget.title}}" ng-repeat="widget in widgetCol" class-container="with-scroll">
|
||||
<div ng-include="widget.url"></div>
|
||||
</blur-panel>
|
||||
</div>
|
||||
|
|
|
@ -61,10 +61,10 @@
|
|||
|
||||
.sub-photo-icon {
|
||||
position: absolute;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
right: -4px;
|
||||
bottom: -4px;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.popular-app {
|
||||
.panel-body {
|
||||
.panel-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<div class="widgets-block">
|
||||
<div class="panel panel-default invisible" zoom-in>
|
||||
<div class="panel-body content-panel profile-page">
|
||||
|
||||
<div class="panel-content">
|
||||
<div class="progress-info">Your profile is 70% Complete</div>
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar"
|
||||
|
@ -214,4 +214,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<profile-modal></profile-modal>
|
|
@ -1,4 +1,4 @@
|
|||
<div class="horizontal-scroll vertical-scroll" ng-controller="tablesPageCtrl">
|
||||
<div class="vertical-scroll" ng-controller="tablesPageCtrl">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<div class="widgets-block">
|
||||
<div class="panel panel-default invisible" zoom-in>
|
||||
<div class="panel-body content-panel">
|
||||
<div class="panel-content">
|
||||
<div class="section-block">
|
||||
<h1>H1. Blur Admin Heading</h1>
|
||||
|
||||
|
@ -180,3 +181,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -108,7 +108,7 @@ input.search-input {
|
|||
}
|
||||
|
||||
.vertical-scroll {
|
||||
max-height: 210px;
|
||||
max-height: 214px;
|
||||
}
|
||||
|
||||
.pagination>li>a, .pagination>li>span {
|
||||
|
|
Loading…
Reference in New Issue