Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Stepan Kiryakov <[email protected]>
  • Loading branch information
Stepan-Kirjakov committed Oct 8, 2024
1 parent 3388ef8 commit c851ab5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
height: 40px;
z-index: 2;
background: var(--guardian-grey-background, #F9FAFC);
padding: 8px 16px 0px 16px;
padding: 0px 16px 0px 16px;
display: flex;
flex-direction: row;
border-top: 1px solid var(--guardian-border-color, #E1E7EF);
Expand All @@ -159,6 +159,7 @@
height: 30px;
min-width: 70px;
padding: 0 5px;
margin-top: 5px;

.tree-tabs-nav-left {
width: 30px;
Expand Down Expand Up @@ -220,9 +221,9 @@
color: var(--guardian-font-color, #23252E);
border: 1px solid #C4D0E1;
border-radius: 6px;
border-bottom-width: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-width: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
height: 30px;
cursor: pointer;
margin-right: 8px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export class StatisticDefinitionsComponent implements OnInit {
styleClass: 'guardian-dialog',
data: {
header: 'Delete Statistic',
text: 'Are you sure want to delete statistic?',
text: `Are you sure want to delete statistic (${item.name})?`,
buttons: [{
name: 'Close',
class: 'secondary'
Expand Down Expand Up @@ -324,7 +324,7 @@ export class StatisticDefinitionsComponent implements OnInit {
styleClass: 'guardian-dialog',
data: {
header: 'Publish Statistic',
text: 'Are you sure want to publish statistic?',
text: `Are you sure want to publish statistic (${row.name})?`,
buttons: [{
name: 'Close',
class: 'secondary'
Expand Down

0 comments on commit c851ab5

Please sign in to comment.