Skip to content

Commit 127bfb6

Browse files
committed
Adding a new icon to new features
1 parent efac9bd commit 127bfb6

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

demo/v2-demo/settings_interact.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@
3232
<li class="" onclick="Report_UpdateSettings()">Update settings</li>
3333
<li class="" onclick="Report_Reload()">Reload</li>
3434
<li class="" onclick="Report_Refresh()">Refresh</li>
35-
<li class="" onclick="Report_Extensions_OptionsMenu()">Extend options menu</li>
36-
<li class="" onclick="Report_Extensions_ContextMenu()">Extend context menu</li>
35+
<li class="newOperation" onclick="Report_Extensions_OptionsMenu()">
36+
<p>Extend options menu</p>
37+
<img src="images\new.svg"/>
38+
</li>
39+
<li class="newOperation" onclick="Report_Extensions_ContextMenu()">
40+
<p>Extend context menu</p>
41+
<img src="images\new.svg"/>
42+
</li>
3743
<li class="" onclick="Report_FullScreen()">Full screen</li>
3844
<li class="" onclick="Report_ExitFullScreen()">Exit full screen</li>
3945
</ul>

demo/v2-demo/step_authorize.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ <h3>Sample Report</h3>
1212

1313
<div id="sampleQna" class="pbi-line">
1414
<div class="pageTitle">
15-
<h3>Sample Q&A</h3>
15+
<div class="pageTitleNewItem">
16+
<h3>Sample Q&A</h3>
17+
<img src="images\new.svg" class = "textAreaControl"/>
18+
</div>
1619
<h8>You can embed a sample Q&A and interact with Power BI Embedded firsthand by clicking below.</h8>
1720
</div>
1821
<div class="settings">

demo/v2-demo/style/style.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,19 @@ a {
423423
padding: 0px 20px 0px 0px;
424424
}
425425

426+
.newOperation{
427+
display: flex;
428+
}
429+
430+
.newOperation p{
431+
display: inline-block;
432+
padding-right: 10px;
433+
margin-bottom: 0px;
434+
}
435+
.newOperation img{
436+
vertical-align: center;
437+
}
438+
426439
.function-ul li {
427440
width: 100%;
428441
clear: both;
@@ -470,6 +483,15 @@ a {
470483
font-weight: normal;
471484
}
472485

486+
.pageTitleNewItem h3
487+
{
488+
display: inline-block;
489+
}
490+
491+
.pageTitleNewItem img {
492+
margin: 0 0 10px 5px;
493+
}
494+
473495
.editorTitle {
474496
margin-bottom: 5px;
475497
}

0 commit comments

Comments
 (0)