Skip to content

Commit

Permalink
Fixed #24 - New layer implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Sep 25, 2023
1 parent 82bf9cf commit c2379cb
Show file tree
Hide file tree
Showing 14 changed files with 1,067 additions and 1,041 deletions.
56 changes: 29 additions & 27 deletions themes/arya/_extensions.scss
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
.p-carousel {
.p-carousel-indicators .p-carousel-indicator.p-highlight button {
background-color: $primaryColor;
}
}

.p-galleria {
.p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: $primaryColor;
@layer primevue {
.p-carousel {
.p-carousel-indicators .p-carousel-indicator.p-highlight button {
background-color: $primaryColor;
}
}

&.p-galleria-indicator-onitem {
.p-galleria-indicators {
.p-galleria-indicator {
&.p-highlight {
button {
background: $primaryColor;

.p-galleria {
.p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: $primaryColor;
}

&.p-galleria-indicator-onitem {
.p-galleria-indicators {
.p-galleria-indicator {
&.p-highlight {
button {
background: $primaryColor;
}
}
}
}
}
}
}

.p-datatable {
.p-datatable-tbody {
> tr {
&.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 $primaryColor;
}

&.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 $primaryColor;
.p-datatable {
.p-datatable-tbody {
> tr {
&.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 $primaryColor;
}

&.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 $primaryColor;
}
}
}
}
Expand Down
20 changes: 11 additions & 9 deletions themes/bootstrap4/_vendor_extensions.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
/* Vendor extensions to the designer enhanced bootstrap compatibility */
.fc {
&.fc-theme-standard {
.fc-highlight {
background: $primaryAccentBg;
@layer primevue {
.fc {
&.fc-theme-standard {
.fc-highlight {
background: $primaryAccentBg;
}
}
}
}

.p-fileupload {
.p-fileupload-content.p-fileupload-highlight {
background-color: $primaryAccentBg;
.p-fileupload {
.p-fileupload-content.p-fileupload-highlight {
background-color: $primaryAccentBg;
}
}
}
Loading

0 comments on commit c2379cb

Please sign in to comment.