-
Notifications
You must be signed in to change notification settings - Fork 152
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
Benjamin Wilson
committed
Oct 25, 2024
1 parent
3585535
commit a998625
Showing
107 changed files
with
8,836 additions
and
6,448 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
277 changes: 134 additions & 143 deletions
277
main/http_server/axe-os/src/app/components/home/home.component.html
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
main/http_server/axe-os/src/app/layout/app.footer.component.html
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div class="layout-footer"> | ||
<!-- <div class="layout-footer"> | ||
</div> | ||
</div> --> |
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
2 changes: 1 addition & 1 deletion
2
main/http_server/axe-os/src/app/layout/app.topbar.component.html
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
2 changes: 1 addition & 1 deletion
2
main/http_server/axe-os/src/app/layout/styles/layout/_variables.scss
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* General */ | ||
$scale:14px; /* main font size */ | ||
$borderRadius:12px; /* border radius of layout element e.g. card, sidebar */ | ||
$borderRadius:0px; /* border radius of layout element e.g. card, sidebar */ | ||
$transitionDuration:.2s; /* transition duration of layout elements e.g. sidebar, overlay menus */ |
18 changes: 18 additions & 0 deletions
18
main/http_server/axe-os/src/app/layout/styles/theme/theme-base/_colors.scss
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,18 @@ | ||
:root { | ||
@if variable-exists(colors) { | ||
@each $name, $color in $colors { | ||
@for $i from 0 through 5 { | ||
@if ($i == 0) { | ||
--#{$name}-50:#{tint($color, (5 - $i) * 19%)}; | ||
} | ||
@else { | ||
--#{$name}-#{$i * 100}:#{tint($color, (5 - $i) * 19%)}; | ||
} | ||
} | ||
|
||
@for $i from 1 through 4 { | ||
--#{$name}-#{($i + 5) * 100}:#{shade($color, $i * 15%)}; | ||
} | ||
} | ||
} | ||
} |
75 changes: 75 additions & 0 deletions
75
main/http_server/axe-os/src/app/layout/styles/theme/theme-base/_common.scss
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,75 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
.p-component { | ||
font-family: var(--font-family); | ||
font-feature-settings: var(--font-feature-settings, normal); | ||
font-size: $fontSize; | ||
font-weight: $fontWeight; | ||
} | ||
|
||
.p-component-overlay { | ||
background-color: $maskBg; | ||
transition-duration: $transitionDuration; | ||
} | ||
|
||
.p-disabled, .p-component:disabled { | ||
opacity: $disabledOpacity; | ||
} | ||
|
||
.p-error { | ||
color: $errorColor; | ||
} | ||
|
||
.p-text-secondary { | ||
color: $textSecondaryColor; | ||
} | ||
|
||
.pi { | ||
font-size: $primeIconFontSize; | ||
} | ||
|
||
.p-icon { | ||
width: $primeIconFontSize; | ||
height: $primeIconFontSize; | ||
} | ||
|
||
.p-link { | ||
font-family: var(--font-family); | ||
font-feature-settings: var(--font-feature-settings, normal); | ||
font-size: $fontSize; | ||
border-radius: $borderRadius; | ||
|
||
&:focus-visible { | ||
@include focused(); | ||
} | ||
} | ||
|
||
.p-component-overlay-enter { | ||
animation: p-component-overlay-enter-animation 150ms forwards; | ||
} | ||
|
||
.p-component-overlay-leave { | ||
animation: p-component-overlay-leave-animation 150ms forwards; | ||
} | ||
|
||
.p-component-overlay { | ||
@keyframes p-component-overlay-enter-animation { | ||
from { | ||
background-color: transparent; | ||
} | ||
to { | ||
background-color: var(--maskbg); | ||
} | ||
} | ||
|
||
@keyframes p-component-overlay-leave-animation { | ||
from { | ||
background-color: var(--maskbg); | ||
} | ||
to { | ||
background-color: transparent; | ||
} | ||
} | ||
} |
110 changes: 110 additions & 0 deletions
110
main/http_server/axe-os/src/app/layout/styles/theme/theme-base/_components.scss
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,110 @@ | ||
@import "_mixins"; | ||
@import "_colors"; | ||
|
||
@import "./components/input/_editor"; | ||
|
||
@layer primeng { | ||
@import "_common"; | ||
|
||
//Input | ||
@import "./components/input/_autocomplete"; | ||
@import "./components/input/_calendar"; | ||
@import "./components/input/_cascadeselect"; | ||
@import "./components/input/_checkbox"; | ||
@import "./components/input/_chips"; | ||
@import "./components/input/_colorpicker"; | ||
@import "./components/input/_dropdown"; | ||
@import "./components/input/_iconfield"; | ||
@import "./components/input/_inputgroup"; | ||
@import "./components/input/_inputicon"; | ||
@import "./components/input/_inputmask"; | ||
@import "./components/input/_inputnumber"; | ||
@import "./components/input/_inputotp"; | ||
@import "./components/input/_inputswitch"; | ||
@import "./components/input/_inputtext"; | ||
@import "./components/input/_listbox"; | ||
@import "./components/input/_multiselect"; | ||
@import "./components/input/_password"; | ||
@import "./components/input/_radiobutton"; | ||
@import "./components/input/_rating"; | ||
@import "./components/input/_selectbutton"; | ||
@import "./components/input/_slider"; | ||
@import "./components/input/_togglebutton"; | ||
@import "./components/input/_treeselect"; | ||
|
||
//Button | ||
@import "./components/button/_button"; | ||
@import "./components/button/_speeddial"; | ||
@import "./components/button/_splitbutton"; | ||
|
||
//Data | ||
@import "./components/data/_carousel"; | ||
@import "./components/data/_datatable"; | ||
@import "./components/data/_dataview"; | ||
@import "./components/data/_filter"; | ||
@import "./components/data/_orderlist"; | ||
@import "./components/data/_organizationchart"; | ||
@import "./components/data/_paginator"; | ||
@import "./components/data/_picklist"; | ||
@import "./components/data/_timeline"; | ||
@import "./components/data/_tree"; | ||
@import "./components/data/_treetable"; | ||
@import "./components/data/_virtualscroller"; | ||
|
||
//Panel | ||
@import "./components/panel/_accordion"; | ||
@import "./components/panel/_card"; | ||
@import "./components/panel/_divider"; | ||
@import "./components/panel/_fieldset"; | ||
@import "./components/panel/_panel"; | ||
@import "./components/panel/_scrollpanel"; | ||
@import "./components/panel/_splitter"; | ||
@import "./components/panel/_tabview"; | ||
@import "./components/panel/_toolbar"; | ||
@import "./components/panel/_stepper"; | ||
|
||
//Overlay | ||
@import "./components/overlay/_confirmpopup"; | ||
@import "./components/overlay/_dialog"; | ||
@import "./components/overlay/_overlaypanel"; | ||
@import "./components/overlay/_sidebar"; | ||
@import "./components/overlay/_tooltip"; | ||
|
||
//File | ||
@import "./components/file/_fileupload"; | ||
|
||
//Menu | ||
@import "./components/menu/_breadcrumb"; | ||
@import "./components/menu/_contextmenu"; | ||
@import "./components/menu/_dock"; | ||
@import "./components/menu/_megamenu"; | ||
@import "./components/menu/_menu"; | ||
@import "./components/menu/_menubar"; | ||
@import "./components/menu/_panelmenu"; | ||
@import "./components/menu/_slidemenu"; | ||
@import "./components/menu/_steps"; | ||
@import "./components/menu/_tabmenu"; | ||
@import "./components/menu/_tieredmenu"; | ||
|
||
//Messages | ||
@import "./components/messages/_inlinemessage"; | ||
@import "./components/messages/_message"; | ||
@import "components/messages/toast"; | ||
|
||
//MultiMedia | ||
@import "./components/multimedia/_galleria"; | ||
@import "./components/multimedia/_image"; | ||
|
||
//Misc | ||
@import "./components/misc/_avatar"; | ||
@import "./components/misc/_badge"; | ||
@import "./components/misc/_blockui"; | ||
@import "./components/misc/_chip"; | ||
@import "./components/misc/_inplace"; | ||
@import "./components/misc/_metergroup"; | ||
@import "./components/misc/_progressbar"; | ||
@import "./components/misc/_scrolltop"; | ||
@import "./components/misc/_skeleton"; | ||
@import "./components/misc/_tag"; | ||
@import "./components/misc/_terminal"; | ||
} |
Oops, something went wrong.