Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Dec 27, 2024
1 parent 11e3efd commit 195503c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion resources/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@


#power-grid-table-base {
div:has(> div > table) {
@apply border-uh-border-color;
scrollbar-width: thin;
}

table {
thead {
@apply bg-gray-100;
Expand All @@ -47,7 +52,7 @@
}

td {
border: 1px solid #e2e8f0;
@apply border border-uh-border-color;

&:first-child {
border-left: none;
Expand All @@ -59,10 +64,28 @@
}
}

input, select {
@apply focus:ring-primary-500 focus-within:focus:ring-primary-500 focus-within:ring-primary-500 focus-within:ring-1;
}

button[data-cy^="toggle-columns-"] {
@apply bg-gray-100 border-gray-200 hover:bg-gray-200 active:bg-gray-100 focus-within:ring-1;
@apply duration-300 ease-out;

svg {
@apply text-gray-800;
}
}

nav[aria-label="Pagination Navigation"] {
span, a {
@apply !border-uh-border-color;
}

span {
@apply bg-primary-50 text-primary-700;
@apply first:rounded-l-md last:rounded-r-md;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/table/destination.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<br>

<a href="{{ $destination }}" target="_blank" title="{{ $destination }}" rel="noopener noreferrer" class="text-neutral-500">
<a href="{{ $destination }}" target="_blank" title="{{ $destination }}" rel="noopener noreferrer" class="text-gray-500">
{{ Helper::urlFormat($destination, $limit) }}
</a>
</div>

0 comments on commit 195503c

Please sign in to comment.