Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/common/nav-bar/nav-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class NavBar {
<button
id="dropdownAvatarNameButton"
data-dropdown-toggle="dropdownAvatarName"
class="flex items-center text-sm font-medium text-gray-900 rounded-full hover:text-blue-600 dark:hover:text-blue-500 md:mr-0 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:text-white"
class="flex items-center text-sm font-medium text-gray-900 rounded-full hover:text-blue-600 dark:hover:text-blue-500 md:mr-0 ring-4 ring-gray-100 focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 dark:text-white"
type="button"
onClick={() => this.avatarDropDownHandler()}
>
Expand Down
6 changes: 3 additions & 3 deletions src/components/editorPage/editor-res/editor-res.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export class EditorRes {

isEditable: false,
isDeletable: false,
isFilterable: ['string', 'number', 'date'].includes(column.type),
isSortable: ['string', 'number', 'date'].includes(column.type),
isFilterable: ['string', 'number', 'date'].includes(column.type) && state.selectedNodeName,
isSortable: ['string', 'number', 'date'].includes(column.type) && state.selectedNodeName,

maxChar: 30,

Expand Down Expand Up @@ -137,7 +137,7 @@ export class EditorRes {
columns={columns}
data={state.nodes}
showActions={false}
showPagination={true}
showPagination={Boolean(state.selectedNodeName)}
total={state.total}
limit={state.limit}
supportedLimit={SUPPORTED_ROWS}
Expand Down
16 changes: 16 additions & 0 deletions src/global/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -1767,6 +1767,17 @@ Ensure the default browser behavior of the `hidden` attribute.
outline-color: #e5e7eb;
}

.ring-4 {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-gray-100 {
--tw-ring-opacity: 1;
--tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity));
}

.filter {
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
Expand Down Expand Up @@ -2031,6 +2042,11 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity));
}

.focus\:ring-gray-200:focus {
--tw-ring-opacity: 1;
--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
}

.focus\:ring-offset-2:focus {
--tw-ring-offset-width: 2px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<!-- <user-details-component></user-details-component> -->
<!-- <download-result-modal></download-result-modal> -->
<!-- <toggle-button></toggle-button> -->
<pagination-component></pagination-component>
<!-- <pagination-component></pagination-component> -->
</fluid-container>
</div>
</body>
Expand Down