Added missing file

This commit is contained in:
Jesús Ángel González 2018-03-07 14:57:49 +01:00
parent 881ad801ec
commit 1545ccba97
4 changed files with 30 additions and 29 deletions

View File

@ -1,7 +1,7 @@
<div flex ng-if="!isruleset && !isdecoders" layout="column" class="groupsFixPadding no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div flex ng-if="!isruleset && !isdecoders" layout="column" class="wz-table-no-padding wz-table-no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div ng-if="!noscroll" flex class="wz-height-400 wz-overflow-auto" when-scrolled="data.nextPage('')">
<div layout="row" ng-class-odd="'wz-odd'" ng-class-even="'wz-even'" ng-repeat="item in data.items | filter : searchTerm"
class="wz-padding-left-15 groups-table groupsFixPadding wz-word-wrap wz-table-border" ng-class="!nopointer ? 'cursor-pointer' : '' "
class="wz-padding-left-15 wz-table-size wz-table-no-padding wz-word-wrap wz-table-border" ng-class="!nopointer ? 'cursor-pointer' : '' "
ng-click="clickAction(full ? item : $index)">
<div ng-repeat="key in keys" flex="{{key.size || ''}}">
<span>{{parseItem(item,key) || '---'}}</span>
@ -9,7 +9,7 @@
</div>
</div>
<div ng-if="noscroll" flex class="wz-height-400 wz-overflow-auto">
<div layout="row" ng-class-odd="'wz-odd'" ng-class-even="'wz-even'" ng-repeat="item in data" class="wz-padding-left-15 groups-table groupsFixPadding wz-word-wrap wz-table-border"
<div layout="row" ng-class-odd="'wz-odd'" ng-class-even="'wz-even'" ng-repeat="item in data" class="wz-padding-left-15 wz-table-size wz-table-no-padding wz-word-wrap wz-table-border"
ng-class="!nopointer ? 'cursor-pointer' : '' " ng-click="clickAction($index)">
<div ng-repeat="key in keys" flex="{{key.size || ''}}">
<span>{{parseItem(item,key) || '---'}}</span>
@ -18,16 +18,16 @@
</div>
</div>
<div flex ng-if="isruleset" layout="column" class="md-padding groupsFixPadding no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div flex ng-if="isruleset" layout="column" class="md-padding wz-table-no-padding wz-table-no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div ng-if="!noscroll" flex class="wz-height-400 wz-overflow-auto" when-scrolled="data.nextPage('')">
<div layout="row" ng-class-odd="'wz-odd'" ng-class-even="'wz-even'" ng-repeat="item in data.items | filter : searchTerm"
class="wz-padding-left-15 groups-table groupsFixPadding wz-table-border" ng-class="!nopointer && activeitem !== item.id ? 'cursor-pointer' : !nopointer && activeitem === item.id ? 'cursor-pointer wz-active' : ''"
class="wz-padding-left-15 wz-table-size wz-table-no-padding wz-table-border" ng-class="!nopointer && activeitem !== item.id ? 'cursor-pointer' : !nopointer && activeitem === item.id ? 'cursor-pointer wz-active' : ''"
ng-click="clickAction(full ? item : $index)">
<div ng-show="activeitem !== item.id" ng-repeat="key in keys" flex="{{key.size || ''}}">
<span>{{parseItem(item,key) || '---'}}</span>
</div>
<div layout="column" flex ng-show="activeitem === item.id">
<div layout="row" class="ruleset-card-info ruleset-opened">
<div layout="row" class="ruleset-card-info wz-table-size">
<div ng-repeat="key in keys" flex="{{key.size || ''}}">
<span>{{parseItem(item,key) || '---'}}</span>
</div>
@ -93,16 +93,16 @@
</div>
</div>
<div flex ng-if="isdecoders" layout="column" class="md-padding groupsFixPadding no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div flex ng-if="isdecoders" layout="column" class="md-padding wz-table-no-padding wz-table-no-padding-bottom" ng-show="(!noscroll && data.items && data.items.length > 0) || (noscroll && data)">
<div ng-if="!noscroll" flex class="wz-height-400 wz-overflow-auto" when-scrolled="data.nextPage('')">
<div layout="row" ng-class-odd="'wz-odd'" ng-class-even="'wz-even'" ng-repeat="decoder in data.items | filter : searchTerm"
class="wz-padding-left-15 groups-table groupsFixPadding wz-table-border" ng-class="!nopointer && activeitem !== decoder.name+decoder.file+decoder.position ? 'cursor-pointer' : !nopointer && activeitem === decoder.name+decoder.file+decoder.position ? 'cursor-pointer wz-active' : ''"
class="wz-padding-left-15 wz-table-size wz-table-no-padding wz-table-border" ng-class="!nopointer && activeitem !== decoder.name+decoder.file+decoder.position ? 'cursor-pointer' : !nopointer && activeitem === decoder.name+decoder.file+decoder.position ? 'cursor-pointer wz-active' : ''"
ng-click="clickAction(full ? decoder : $index)">
<div ng-show="activeitem !== decoder.name+decoder.file+decoder.position" class="wz-word-wrap" ng-repeat="key in keys" flex="{{key.size || ''}}">
<span>{{parseItem(decoder,key) || '---'}}</span>
</div>
<div layout="column" flex ng-show="activeitem === decoder.name+decoder.file+decoder.position">
<div layout="row" class="ruleset-card-info ruleset-opened">
<div layout="row" class="ruleset-card-info wz-table-size">
<div ng-repeat="key in keys" flex="{{key.size || ''}}" class="wz-word-wrap">
<span>{{parseItem(decoder,key) || '---'}}</span>
</div>

View File

@ -0,0 +1,21 @@
.wz-table-no-padding {
padding-top: 0px;
}
.wz-table-no-padding-bottom {
padding-bottom: 0px;
}
.wz-padding-left-15 {
padding-left: 15px;
}
.wz-table-size {
min-height: 34px !important;
height: auto !important;
align-items: center !important;
}
.groups-table:hover {
background-color: rgb(0,121,165);
color: white !important;
}

View File

@ -171,11 +171,6 @@ kbn-vis, visualize, visualization {
}
// MAIN LESS
.no-padding-bottom {
padding-bottom: 0px !important;
}
.wz-no-display {
display: none !important;
}
@ -335,10 +330,6 @@ kbn-vis, visualize, visualization {
margin-left: 15px;
}
.wz-padding-left-15 {
padding-left: 15px;
}
.wz-height-400 {
height: 400px;
}

View File

@ -68,17 +68,6 @@ md-list-item {
height: auto !important;
}
.groups-table,
.ruleset-opened {
min-height: 34px !important;
height: auto !important;
align-items: center !important;
}
.groups-table:hover {
background-color: rgb(0,121,165);
color: white !important;
}
.wz-table-header-color {
color: black !important;
}