Skip to content

Commit

Permalink
fix(scheduler): scheduler tooltip no data template should not stretch…
Browse files Browse the repository at this point in the history
… the tooltip
  • Loading branch information
joneff committed Jan 17, 2022
1 parent a1b5786 commit e7bb71f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
20 changes: 9 additions & 11 deletions packages/default/scss/list/_layout.scss
Expand Up @@ -142,17 +142,15 @@


// No data
.k-list-container {
.k-no-data {
min-height: 140px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
font-weight: lighter;
text-align: center;
white-space: normal;
}
.k-no-data {
min-height: 140px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
font-weight: lighter;
text-align: center;
white-space: normal;
}


Expand Down
8 changes: 4 additions & 4 deletions packages/default/scss/list/_theme.scss
Expand Up @@ -94,12 +94,12 @@
background: transparent;
}

}

// No data
.k-no-data {
color: $list-no-data-text;
}

// No data
.k-no-data {
color: $list-no-data-text;
}

}
6 changes: 6 additions & 0 deletions packages/default/scss/scheduler/_layout.scss
Expand Up @@ -1095,6 +1095,12 @@
flex-shrink: 0;
font-size: inherit;
}

.k-no-data {
height: auto;
min-height: auto;
color: inherit;
}
}

}
Expand Down

0 comments on commit e7bb71f

Please sign in to comment.