Skip to content

Commit 81db5c4

Browse files
authored
Merge pull request #6967 from gwd-1/endgame-202209
Fix id 1983782、1983783 bug
2 parents 9728e5f + 85635cd commit 81db5c4

File tree

6 files changed

+27
-18
lines changed

6 files changed

+27
-18
lines changed
Binary file not shown.

Utils/hdinsight-node-common/resources/htmlResources/hdinsight/job/html/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<p id="stage_detail_info_message"></p>
118118
</div>
119119
<div id="taskSummary" role="tabpanel" aria-labelledby="taskSummaryButton" hidden="">
120-
<input id="filterTableInput" type="text" placeholder="Search.." style="margin-bottom: 5px; height:1.6em; width:350px;" onkeyup="filterTaskSummaryTable()">
120+
<input id="filterTableInput" type="text" placeholder="Search.." style="margin-bottom: 5px; height:1.6em; width:350px;font-size:16px;" onkeyup="filterTaskSummaryTable()">
121121
<table id="taskSummaryTable" class="table table-bordered table-condensed table-striped sortable ui-widget-content JColResizer">
122122
<thead class="ui-widget-content">
123123
<tr align="center" class="ui-widget-content">
@@ -176,4 +176,4 @@
176176
</div>
177177
<script src="js/tabs.js"></script>
178178
</body>
179-
</html>
179+
</html>

Utils/hdinsight-node-common/resources/htmlResources/hdinsight/job/html/indexpage.css

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
:root.dark-theme-mode {
33
--text-color: white;
44
--bg-color: #2b2b2b;
5+
--caret-color:white;
56
--selection-bg-color: #4B77AF;
67
--selection-text-color: white;
78
--edge-color: #828384;
@@ -12,6 +13,7 @@
1213
:root.light-theme-mode {
1314
--text-color: black;
1415
--bg-color: white;
16+
--caret-color:black;
1517
--selection-bg-color: #2675BF;
1618
--selection-text-color: white;
1719
--edge-color: #828384;
@@ -22,6 +24,7 @@
2224
:root.highcontrast-theme-mode {
2325
--text-color: white;
2426
--bg-color: black;
27+
--caret-color:white;
2528
--selection-bg-color: #3333FF;
2629
--selection-text-color: white;
2730
--edge-color: #828384;
@@ -298,7 +301,9 @@ input[type=text] {
298301
border-radius: 4px;
299302
font-size: 12px;
300303
background-color: var(--bg-color);
301-
background-image: url('resources/icons/searchicon.png');
304+
color: var(--caret-color);
305+
caret-color: var(--caret-color);
306+
background-image: url('resources/icons/searchicon.svg');
302307
background-position: 3px 3px;
303308
background-repeat: no-repeat;
304309
padding: 12px 20px 12px 40px;
@@ -311,28 +316,28 @@ input[type=text]:focus {
311316
}
312317

313318
[role="tablist"] {
314-
overflow: visible;
315-
margin:5px;
319+
overflow: visible;
320+
margin:5px;
316321
}
317322

318323
[role="tab"] {
319-
position: relative;
320-
margin: 0;
321-
padding: 0.3em 0.5em 0.4em;
322-
border: 1px solid hsl(219, 1%, 72%);
323-
border-radius: 0.2em 0.2em 0 0;
324-
overflow: visible;
325-
font-family: inherit;
326-
font-size: inherit;
327-
background-color: inherit;
328-
color: inherit;
324+
position: relative;
325+
margin: 0;
326+
padding: 0.3em 0.5em 0.4em;
327+
border: 1px solid hsl(219, 1%, 72%);
328+
border-radius: 0.2em 0.2em 0 0;
329+
overflow: visible;
330+
font-family: inherit;
331+
font-size: inherit;
332+
background-color: inherit;
333+
color: inherit;
329334
}
330335

331336
[role="tab"][aria-selected="true"] {
332-
background: var(--selection-bg-color);
333-
color: var(--selection-text-color);
337+
background: var(--selection-bg-color);
338+
color: var(--selection-text-color);
334339
}
335340

336341
th, td {
337342
word-break: break-all;
338-
}
343+
}
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)