Skip to content
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

Enhancement - Split CSS Files to make more maintainable #1775

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@
# Exclude unminified versions of files
/resources/js/laravel-livewire-tables-thirdparty.js export-ignore
/resources/js/laravel-livewire-tables.js export-ignore
/resources/js/partials/filter-date-range.js export-ignore
/resources/js/partials/filter-number-range.js export-ignore
/resources/js/partials/reorder.js export-ignore
/resources/css/laravel-livewire-tables-thirdparty.css export-ignore
/resources/css/laravel-livewire-tables.css export-ignore
/resources/css/numberRange.css export-ignore
/resources/css/numericSlider.css export-ignore
/resources/css/flatpickr.css export-ignore
/resources/js/partials/filter-date-range.js export-ignore
/resources/js/partials/filter-number-range.js export-ignore
/resources/js/partials/reorder.js export-ignore
/resources/css/number-range.css export-ignore
/resources/css/loading.css export-ignore
/resources/css/draggable.css export-ignore
24 changes: 24 additions & 0 deletions resources/css/draggable.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.laravel-livewire-tables-highlight {
border-style: solid !important;
border-top-width: 2px !important;
border-bottom-width: 2px !important;
border-color: var(--rappasoft-table-highlight-color, rgb(255 255 255)) !important;
}

.laravel-livewire-tables-highlight-top {
border-style: solid !important;
border-top-width: 2px !important;
border-bottom-width: 0px !important;
border-color: var(--rappasoft-table-top-highlight-color, var(--rappasoft-table-highlight-color, rgb(255 255 255))) !important;
}

.laravel-livewire-tables-highlight-bottom {
border-style: solid !important;
border-top-width: 0px !important;
border-bottom-width: 2px !important;
border-color: var(--rappasoft-table-bottom-highlight-color, var(--rappasoft-table-highlight-color, rgb(255 255 255))) !important;
}

.laravel-livewire-table-dragging {
opacity: 0.5 !important;
}
1 change: 1 addition & 0 deletions resources/css/draggable.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading