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

Operator-to-robot Text-to-Speech #64

Merged
merged 20 commits into from
Jul 15, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
updated style of dropdown input to be consistent with the regular dro…
…pdown
  • Loading branch information
hello-vinitha committed Jul 12, 2024
commit 1f797d7f98249c523f53a5540cd2174cda6374e3
11 changes: 9 additions & 2 deletions src/pages/operator/css/basic_components.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,20 @@

.dropdown-input:focus-within {
border: 1px solid black;
border-radius: 0 var(--btn-brdr-radius) var(--btn-brdr-radius) 0;
}

.dropdown-input-textarea {
border-right-width: 0px !important;
resize: none;
border-radius: var(--btn-brdr-radius) 0 0 var(--btn-brdr-radius);
box-shadow: var(--shadow);
border: none;
padding: 0.25rem 0 0.25rem 0.5rem;
}

.dropdown-input-textarea:focus {
border-radius: var(--btn-brdr-radius) 0 0 var(--btn-brdr-radius);
outline: none;
}

Expand All @@ -224,8 +230,9 @@
padding-top: 0rem;
padding-bottom: 0rem;
box-shadow: none;
border-radius: unset;
border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
border-radius: 0 var(--btn-brdr-radius) var(--btn-brdr-radius) 0;
box-shadow: var(--shadow);
/* border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133)); */
border-left-width: 0px !important;
}

Expand Down