Skip to content

Commit

Permalink
Move label css to parent tab css file
Browse files Browse the repository at this point in the history
  • Loading branch information
juhangil committed Sep 19, 2024
1 parent 689fc41 commit ee907bf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div id="@Id">
<label id=@($"{Id}-label") for=@($"{Id}-content")
style="display:inline-block;padding-left:5px;font-weight:bold;">
style="display:inline-block;padding-left:5px;">
@LabelText

@* Tooltip Image *@
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
::deep .parameter-label {
display: inline-block;
padding-left: 5px;
font-weight: bold;
font-size: 8px;
}

::deep .parameter-slider {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@using System.Linq

<div id="@Id">
<div id="@Id" class="parameter-tab">
<ParameterSliderComponent Id="slider-pastmessages"
Class="label-with-tooltip"
LabelText="Past messages included"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.parameter-tab ::deep label {
font-size: 12px;
font-weight: bold;
}

0 comments on commit ee907bf

Please sign in to comment.