Skip to content

Commit 6fb4dac

Browse files
committed
fix caret in form-select
1 parent bed351c commit 6fb4dac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/remix-ide/src/assets/css/themes/remix-dark_tvx1s2.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2315,7 +2315,7 @@ textarea.form-control-lg {
23152315
}
23162316

23172317
.form-select {
2318-
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23303030' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
2318+
/* --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23303030' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); */
23192319
display: block;
23202320
width: 100%;
23212321
padding: 0.375rem 2.25rem 0.375rem 0.75rem;

apps/remix-ide/src/assets/css/themes/remix-light_powaqg.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2314,7 +2314,7 @@ textarea.form-control-lg {
23142314
}
23152315

23162316
.form-select {
2317-
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
2317+
/* --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); */
23182318
display: block;
23192319
width: 100%;
23202320
padding: 0.375rem 2.25rem 0.375rem 0.75rem;

libs/remix-ui/run-tab/src/lib/components/environment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export function EnvironmentUI(props: EnvironmentProps) {
159159
</span>
160160
</CustomTooltip> }
161161
</label>
162-
<div className="udapp_environment" data-id={`selected-provider-${currentProvider && currentProvider.name}`}>
162+
<div className="" data-id={`selected-provider-${currentProvider && currentProvider.name}`}>
163163
<Dropdown id="selectExEnvOptions" data-id="settingsSelectEnvOptions" className="udapp_selectExEnvOptions">
164164
<Dropdown.Toggle as={CustomToggle} id="dropdown-custom-components" className="btn btn-light btn-block w-100 d-inline-block border border-dark form-control" icon={null}>
165165
{/* {isL2(currentProvider && currentProvider.displayName)} */}

libs/remix-ui/run-tab/src/lib/components/network.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function NetworkUI(props: NetworkProps) {
66
return (
77
<div className="">
88
<div className="udapp_settingsLabel"></div>
9-
<div className="udapp_environment" data-id="settingsNetworkEnv">
9+
<div className="" data-id="settingsNetworkEnv">
1010
<span className="udapp_network badge text-bg-secondary">{props.networkName}</span>
1111
</div>
1212
</div>

0 commit comments

Comments
 (0)