fix(storidge): description tables on the same view have now the same fixed offset

storidge-standalone
baron_l 2019-03-28 17:26:28 +01:00
parent 33a02c59b5
commit 75964deebf
2 changed files with 8 additions and 4 deletions

View File

@ -24,7 +24,7 @@
</button>
</rd-widget-header>
<rd-widget-body classes="no-padding">
<table class="table">
<table class="table description-table">
<tbody>
<tr>
<td>Name</td>
@ -74,7 +74,7 @@
<rd-widget>
<rd-widget-header icon="fa-object-group" title-text="Bandwidth details"></rd-widget-header>
<rd-widget-body classes="no-padding">
<table class="table">
<table class="table description-table">
<tbody>
<tr>
<td>Free</td>
@ -104,7 +104,7 @@
<rd-widget>
<rd-widget-header icon="fa-object-group" title-text="Capacity details"></rd-widget-header>
<rd-widget-body classes="no-padding">
<table class="table">
<table class="table description-table">
<tbody>
<tr>
<td>Free</td>
@ -134,7 +134,7 @@
<rd-widget>
<rd-widget-header icon="fa-object-group" title-text="IOPS details"></rd-widget-header>
<rd-widget-body classes="no-padding">
<table class="table">
<table class="table description-table">
<tbody>
<tr>
<td>Free</td>

View File

@ -129,6 +129,10 @@ a[ng-click]{
word-break: break-word;
}
.widget .widget-body table.description-table {
table-layout: fixed;
}
.template-widget {
height: 100%;
}