-
Notifications
You must be signed in to change notification settings - Fork 230
[Remove Vuetify from Studio] Collection channels loader in Channels - New collection #5388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: unstable
Are you sure you want to change the base?
Changes from all commits
0701d5b
f9bee66
a7518ad
9e71fd5
96f21da
0f2e809
c2632f0
e3503fc
ecea0ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<template> | ||
|
||
<div class="studio-large-loader"> | ||
<KCircularLoader :size="70" /> | ||
<div class="loader-text"> | ||
<slot ></slot> | ||
</div> | ||
</div> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
|
||
import KCircularLoader from 'kolibri-design-system/lib/loaders/KCircularLoader.vue'; | ||
|
||
export default { | ||
name: 'StudioLargeLoader', | ||
components: { KCircularLoader }, | ||
}; | ||
|
||
</script> | ||
|
||
|
||
<style scoped> | ||
|
||
.studio-large-loader { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
min-height: 180px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the loader size should be set using the |
||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Simplify this css class in light of https://github.com/learningequality/studio/pull/5388/files#r2388418039 |
||
|
||
.loader-text { | ||
margin-top: 16px; | ||
font-size: 1.2em; | ||
color: #555555; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets use the the KDS colors here. There are quite a number of examples on how this can be done eg There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because of https://github.com/learningequality/studio/pull/5388/files#r2388418039, this css class should be removed as well |
||
} | ||
|
||
</style> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not required, so should be removed.