Skip to content

Commit 15c6d1b

Browse files
author
OpenShift Bot
authored
Merge pull request #1836 from sg00dwin/table-label-filter-issue1824
Merged by openshift-bot
2 parents 4209f2a + ddf4e78 commit 15c6d1b

File tree

5 files changed

+26
-15
lines changed

5 files changed

+26
-15
lines changed

app/styles/_tables.less

+2-6
Original file line numberDiff line numberDiff line change
@@ -147,16 +147,12 @@
147147
border-top: none;
148148
}
149149

150-
.table-filter-wrapper {
150+
.table-filter-extension {
151151
background-color: #f9f9f9;
152152
border-left: 1px solid @table-border-color;
153153
border-right: 1px solid @table-border-color;
154154
border-top: 1px solid @table-border-color;
155-
display: flex;
156-
padding: 10px 10px 5px 10px;
157-
.form-group {
158-
margin-bottom: 5px;
159-
}
155+
padding: 5px 10px;
160156
}
161157

162158
@media (max-width: @screen-xs-max) {

app/views/browse/build-config.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,12 @@ <h2>No builds.</h2>
175175
<build-trends-chart builds="builds"></build-trends-chart>
176176
</div>
177177
<div ng-if="loaded && (unfilteredBuilds | hashSize) > 0" class="mar-bottom-xl">
178-
<div class="table-filter-wrapper">
179-
<project-filter></project-filter>
178+
<div class="table-filter-extension">
179+
<div class="data-toolbar">
180+
<div class="data-toolbar-filter">
181+
<project-filter></project-filter>
182+
</div>
183+
</div>
180184
</div>
181185
<table ng-if="!(buildConfig | isJenkinsPipelineStrategy)" class="table table-bordered table-hover table-mobile">
182186
<thead>

app/views/browse/deployment-config.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,12 @@ <h1 class="contains-actions">
127127
created <span am-time-ago="mostRecent.metadata.creationTimestamp"></span>
128128
</div>
129129
</div>
130-
<div class="table-filter-wrapper">
131-
<project-filter></project-filter>
130+
<div class="table-filter-extension">
131+
<div class="data-toolbar">
132+
<div class="data-toolbar-filter">
133+
<project-filter></project-filter>
134+
</div>
135+
</div>
132136
</div>
133137
<table class="table table-bordered table-hover table-mobile">
134138
<thead>

dist/scripts/templates.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -1770,9 +1770,13 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
17701770
"<build-trends-chart builds=\"builds\"></build-trends-chart>\n" +
17711771
"</div>\n" +
17721772
"<div ng-if=\"loaded && (unfilteredBuilds | hashSize) > 0\" class=\"mar-bottom-xl\">\n" +
1773-
"<div class=\"table-filter-wrapper\">\n" +
1773+
"<div class=\"table-filter-extension\">\n" +
1774+
"<div class=\"data-toolbar\">\n" +
1775+
"<div class=\"data-toolbar-filter\">\n" +
17741776
"<project-filter></project-filter>\n" +
17751777
"</div>\n" +
1778+
"</div>\n" +
1779+
"</div>\n" +
17761780
"<table ng-if=\"!(buildConfig | isJenkinsPipelineStrategy)\" class=\"table table-bordered table-hover table-mobile\">\n" +
17771781
"<thead>\n" +
17781782
"<tr>\n" +
@@ -2425,9 +2429,13 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
24252429
"created <span am-time-ago=\"mostRecent.metadata.creationTimestamp\"></span>\n" +
24262430
"</div>\n" +
24272431
"</div>\n" +
2428-
"<div class=\"table-filter-wrapper\">\n" +
2432+
"<div class=\"table-filter-extension\">\n" +
2433+
"<div class=\"data-toolbar\">\n" +
2434+
"<div class=\"data-toolbar-filter\">\n" +
24292435
"<project-filter></project-filter>\n" +
24302436
"</div>\n" +
2437+
"</div>\n" +
2438+
"</div>\n" +
24312439
"<table class=\"table table-bordered table-hover table-mobile\">\n" +
24322440
"<thead>\n" +
24332441
"<tr>\n" +

dist/styles/main.css

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)