Lines Matching full:class
2 <div id="sensors" class="sensors">
4 <div class="page-header">
5 <h2 class="inline">All sensors present in the system</h2>
6 …<a ng-href="data:text/json;charset=utf-8,{{export_data}}" class="btn btn-tertiary float-right" dow…
10 <p class="content-label" aria-label="sensors filter">Filter sensors</p>
11 <div class="content__search">
14 <div class="search-submit__wrapper">
15 <button class="btn" type="button" aria-label="clear filter" ng-click="clear()">
18 …<input id="content__search-submit" type="submit" class="btn btn-primary content__search-submit" va…
22 <div class="toggle-filter">
23 <p class="content-label">FILTER BY SEVERITY</p>
24 <button class="btn" ng-click="toggleSeverityAll()"
25 ng-class="selectedSeverity.all ? 'btn-primary' : 'btn-secondary'">All
27 <button class="btn" ng-click="toggleSeverity('critical')"
28 ng-class="selectedSeverity.critical ? 'btn-primary' : 'btn-secondary'">Critical
30 <button class="btn" ng-click="toggleSeverity('warning')"
31 ng-class="selectedSeverity.warning ? 'btn-primary' : 'btn-secondary'">Warning
33 <button class="btn" ng-click="toggleSeverity('normal')"
34 ng-class="selectedSeverity.normal ? 'btn-primary' : 'btn-secondary'">Normal
46 …<table id="sensor-categories" class="sensors__table" cellpadding="0" cellspacing="0" ng-show="filt…
47 <thead class="sensors__thead fixed-table-header">
48 <tr class="sensors__thead-row">
49 <th class="sensors__thead-cell">Sensors ({{filteredSensorData.length}})<th>
50 <th class="sensors__thead-cell">Low critical<th>
51 <th class="sensors__thead-cell">Low warning<th>
52 <th class="sensors__thead-cell sensor__heading-current">Current<th>
53 <th class="sensors__thead-cell">High warning<th>
54 <th class="sensors__thead-cell">High critical<th>
57 <tbody class="sensors__tbody">
58 …<tr class="sensors__tbody-row" ng-repeat="sensor in data|filter:filterBySeverity|filter:filterBySe…
59 <th class="sensors__tbody-header">
66 <td class="sensors__tbody-cell">
67 <span class="sensors__tbody-cell__title">Low critical</span>
68 <span class="sensors__tbody-cell__content">
69 <span class="sensors__tbody-info">{{sensor.CriticalLow}}</span>
70 <span class="sensors__tbody-degree" ng-if="sensor.unit == 'C'">°</span>
71 <span class="sensors__tbody-unit">{{sensor.unit}}</span>
74 <td class="sensors__tbody-cell">
75 <span class="sensors__tbody-cell__title">Low warning</span>
76 <span class="sensors__tbody-cell__content">
77 <span class="sensors__tbody-info">{{sensor.WarningLow}}</span>
78 <span class="sensors__tbody-degree" ng-if="sensor.unit == 'C'">°</span>
79 <span class="sensors__tbody-unit">{{sensor.unit}}</span>
82 …<td class="sensors__tbody-cell sensors__tbody-current" ng-class="{'sensors__tbody-current--critica…
83 <span class="sensors__tbody-cell__title">Current</span>
84 <span class="sensors__tbody-cell__content">
85 <span class="sensors__tbody-info">{{sensor.Value}}</span>
86 <span class="sensors__tbody-degree" ng-if="sensor.unit == 'C'">°</span>
87 <span class="sensors__tbody-unit">{{sensor.unit}}</span>
90 <td class="sensors__tbody-cell">
91 <span class="sensors__tbody-cell__title">High warning</span>
92 <span class="sensors__tbody-cell__content">
93 <span class="sensors__tbody-info">{{sensor.WarningHigh}}</span>
94 <span class="sensors__tbody-degree" ng-if="sensor.unit == 'C'">°</span>
95 <span class="sensors__tbody-unit">{{sensor.unit}}</span>
98 <td class="sensors__tbody-cell">
99 <span class="sensors__tbody-cell__title">High critical</span>
100 <span class="sensors__tbody-cell__content">
101 <span class="sensors__tbody-info">{{sensor.CriticalHigh}}</span>
102 <span class="sensors__tbody-degree" ng-if="sensor.unit == 'C'">°</span>
103 <span class="sensors__tbody-unit">{{sensor.unit}}</span>