Skip to content

Commit

Permalink
ui tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Oct 14, 2024
1 parent ccb914b commit fc1de77
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 24 deletions.
29 changes: 6 additions & 23 deletions AiServer/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3047,6 +3047,12 @@ select{
opacity: 0.5;
}

.\!shadow-none {
--tw-shadow: 0 0 #0000 !important;
--tw-shadow-colored: 0 0 #0000 !important;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow {
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
Expand Down Expand Up @@ -3077,12 +3083,6 @@ select{
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.\!shadow-none {
--tw-shadow: 0 0 #0000 !important;
--tw-shadow-colored: 0 0 #0000 !important;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.\!outline-none {
outline: 2px solid transparent !important;
outline-offset: 2px !important;
Expand Down Expand Up @@ -3159,10 +3159,6 @@ select{
--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity));
}

.ring-transparent {
--tw-ring-color: transparent;
}

.ring-opacity-5 {
--tw-ring-opacity: 0.05;
}
Expand Down Expand Up @@ -3625,14 +3621,6 @@ select{
outline-offset: 2px;
}

.focus\:outline:focus {
outline-style: solid;
}

.focus\:outline-indigo-700:focus {
outline-color: #4338ca;
}

.focus\:ring-0:focus {
--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(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
Expand Down Expand Up @@ -3691,11 +3679,6 @@ select{
--tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity));
}

.focus\:ring-indigo-700:focus {
--tw-ring-opacity: 1;
--tw-ring-color: rgb(67 56 202 / var(--tw-ring-opacity));
}

.focus\:ring-offset-1:focus {
--tw-ring-offset-width: 1px;
}
Expand Down
2 changes: 1 addition & 1 deletion AiServer/wwwroot/mjs/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const HistoryTitle = {
<div class="sm:w-72 md:w-92 flex items-center justify-between">
<h3 class="p-2 sm:block text-xl md:text-2xl font-semibold">History</h3>
<button type="button" @click="clear()" title="Clear History"
class="mr-2 bg-white dark:bg-black rounded-md text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:ring-offset-black">
class="mr-4 bg-white dark:bg-black rounded-md text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:ring-offset-black">
<span class="sr-only">Clear</span>
<svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="none" stroke="currentColor" stroke-width="2" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2S2 6.477 2 12s4.477 10 10 10ZM5 5l14 14"/>
Expand Down

0 comments on commit fc1de77

Please sign in to comment.