-
Notifications
You must be signed in to change notification settings - Fork 42
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
1 parent
7384e53
commit 07fd92f
Showing
453 changed files
with
32,881 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
theme.css | ||
.DS_STORE |
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,7 @@ | ||
# Changelog | ||
|
||
## [9.2.0](https://github.com/primefaces/primereact-sass-theme/tree/0.2.0) (2023-03-13) | ||
|
||
**Implemented New Features and Enhancements:** | ||
|
||
- Initial release |
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,2 +1,3 @@ | ||
# primereact-sass-theme | ||
PrimeReact Theming with SASS | ||
# PrimeReact Theming with SASS | ||
|
||
Visit the [official documentation](https://primereact.org/theming/#customtheme) for more information. |
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,25 @@ | ||
{ | ||
"name": "primereact-sass-theme", | ||
"version": "9.2.0", | ||
"description": "PrimeReact Sass Theme", | ||
"homepage": "https://primereact.org/", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/primefaces/primereact-sass-theme.git" | ||
}, | ||
"keywords": [ | ||
"primereact", | ||
"react", | ||
"ui framework", | ||
"component framework", | ||
"ui library", | ||
"component library", | ||
"material", | ||
"bootstrap" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/primefaces/primereact-sass-theme/issues" | ||
} | ||
} | ||
|
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%)}; | ||
} | ||
} | ||
} | ||
} |
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,68 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
.p-component { | ||
font-family: $fontFamily; | ||
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-link { | ||
font-size: $fontSize; | ||
font-family: $fontFamily; | ||
border-radius: $borderRadius; | ||
|
||
&:focus { | ||
@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; | ||
} | ||
} | ||
} |
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,102 @@ | ||
@import '_mixins'; | ||
@import '_common'; | ||
@import '_colors'; | ||
|
||
//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/_editor'; | ||
@import './components/input/_inputgroup'; | ||
@import './components/input/_inputnumber'; | ||
@import './components/input/_inputswitch'; | ||
@import './components/input/_inputtext'; | ||
@import './components/input/_listbox'; | ||
@import './components/input/_mention'; | ||
@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/_treeselect'; | ||
@import './components/input/_togglebutton'; | ||
|
||
//Button | ||
@import './components/button/_button'; | ||
@import './components/button/_splitbutton'; | ||
@import './components/button/_speeddial'; | ||
|
||
//Data | ||
@import './components/data/_carousel'; | ||
@import './components/data/_datatable'; | ||
@import './components/data/_dataview'; | ||
@import './components/data/_datascroller'; | ||
@import './components/data/_filter'; | ||
@import './components/data/_fullcalendar'; | ||
@import './components/data/_orderlist'; | ||
@import './components/data/_organizationchart'; | ||
@import './components/data/_paginator'; | ||
@import './components/data/_picklist'; | ||
@import './components/data/_tree'; | ||
@import './components/data/_treetable'; | ||
@import './components/data/_timeline'; | ||
|
||
//Panel | ||
@import './components/panel/_accordion'; | ||
@import './components/panel/_card'; | ||
@import './components/panel/_fieldset'; | ||
@import './components/panel/_divider'; | ||
@import './components/panel/_panel'; | ||
@import './components/panel/_splitter'; | ||
@import './components/panel/_scrollpanel'; | ||
@import './components/panel/_tabview'; | ||
@import './components/panel/_toolbar'; | ||
|
||
//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/_chip'; | ||
@import './components/misc/_scrolltop'; | ||
@import './components/misc/_skeleton'; | ||
@import './components/misc/_tag'; | ||
@import './components/misc/_inplace'; | ||
@import './components/misc/_progressbar'; | ||
@import './components/misc/_terminal'; | ||
@import './components/misc/_blockui'; | ||
@import './components/misc/_badge'; |
Oops, something went wrong.