Skip to content

Commit

Permalink
[CrOS cellular] Fix css class conflict
Browse files Browse the repository at this point in the history
Separator is a class used elsewhere in chrome and it overrides current
separator class in cellular_networks_list causing some inconsistent UI
this CL fixed that issue.

Bug: 1093185
Change-Id: I592ecfe103546c7cfe46f1d270705ef6b66a477b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2728359
Commit-Queue: Nnamdi Theodore Johnson-kanu <tjohnsonkanu@google.com>
Reviewed-by: Azeem Arshad <azeemarshad@chromium.org>
Cr-Commit-Position: refs/heads/master@{#858812}
  • Loading branch information
Theo Johnson-Kanu authored and Chromium LUCI CQ committed Mar 2, 2021
1 parent 317d768 commit 861372a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
padding-inline-start: var(--cr-section-padding);
}

.separator {
.cellular-network-list-separator {
border-top: var(--cr-separator-line);
padding: 0;
}
Expand Down Expand Up @@ -77,7 +77,7 @@
}
</style>
<template is="dom-if" if="[[!!euicc_]]" restamp>
<div class="separator"></div>
<div class="cellular-network-list-separator"></div>
<div class="cellular-network-list-header esim-list-header flex">
<div class="esim-list-title">$i18n{cellularNetworkEsimLabel}</div>
<div class="flex-column">
Expand Down Expand Up @@ -117,7 +117,7 @@
</div>
</template>
</template>
<div class="separator"></div>
<div class="cellular-network-list-separator"></div>
<div class="cellular-network-list-header">
$i18n{cellularNetworkPsimLabel}
</div>
Expand All @@ -144,7 +144,7 @@
</settings-localized-link>
</div>
</template>
<div class="separator"></div>
<div class="cellular-network-list-separator"></div>
<div class="cellular-network-list-header">
$i18n{cellularNetworkTetherLabel}
</div>
Expand Down

0 comments on commit 861372a

Please sign in to comment.