forked from MakerAsia/KBProIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
214 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<v-footer height="23" style="z-index: 99999" min-height="10" class="grey lighten-3"> | ||
<v-layout row wrap> | ||
<v-flex xs4> | ||
<v-card> | ||
<v-card-text class="px-0 text-xs-left pl-3 pt-0 pb-0 ma-0"> | ||
<v-icon>fa-microchip</v-icon> | ||
<span class="caption"> | ||
KBIDE Python Mode | ||
</span> | ||
</v-card-text> | ||
</v-card> | ||
</v-flex> | ||
<v-flex xs2> | ||
<v-card> | ||
<v-card-text class="px-0 text-xs-center pa-0 ma-0"> | ||
<span class="caption"> | ||
|
||
</span> | ||
</v-card-text> | ||
</v-card> | ||
</v-flex> | ||
<v-flex xs6> | ||
<v-card> | ||
<v-card-text class="px-0 text-xs-right pr-3 pt-0 pb-0 ma-0"> | ||
<v-icon>fa-puzzle-piece</v-icon> | ||
<span class="caption"> | ||
{{editorStatus}} | ||
</span> | ||
</v-card-text> | ||
</v-card> | ||
</v-flex> | ||
</v-layout> | ||
</v-footer> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<template> | ||
<v-toolbar | ||
color="primary" | ||
fixed | ||
dark | ||
app | ||
height="64px" | ||
> | ||
<v-tooltip bottom> | ||
<template v-slot:activator="{ on }"> | ||
<img v-on="on" src="/static/logo/KBIDE.png" height="45" | ||
alt="Problem? report me at fb.com/comdet" | ||
class="mr-3" | ||
style="border-radius: 8px; background-color: #ffffffa8; //margin-top: 4px;"> | ||
</template> | ||
<span>KBIDE by MakerAsia</span> | ||
</v-tooltip> | ||
<v-tooltip bottom> | ||
<template v-slot:activator="{ on }"> | ||
<img v-on="on" src="/static/logo/kidcom_128.png" height="45" | ||
alt="KidBright Community" | ||
class="mr-2" | ||
style="border-radius: 8px; background-color: rgba(255, 255, 255, 0.8); //margin-top: 4px;"> | ||
</template> | ||
<span>KidBright Community</span> | ||
</v-tooltip> | ||
|
||
<!-- dynamic left toolbar --> | ||
|
||
<v-divider class="mx-1" inset vertical></v-divider> | ||
|
||
<!-- load board package toolbar --> | ||
|
||
<!-- load board package toolbar --> | ||
|
||
|
||
<v-spacer></v-spacer> | ||
|
||
<!-- load app package actionbar --> | ||
|
||
<v-divider class="mx-1" inset vertical></v-divider> | ||
|
||
<!-- load dynamic actionbar --> | ||
|
||
<v-divider class="mx-1" inset vertical></v-divider> | ||
|
||
<!-- load board package actionbar --> | ||
|
||
<v-divider class="mx-1" inset vertical></v-divider> | ||
</v-toolbar> | ||
</template> |