Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix widget permission tooltip style rules by applying the naming policy properly #10916

Merged
merged 1 commit into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
32 changes: 16 additions & 16 deletions res/css/components/views/elements/_AppPermission.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,25 @@ limitations under the License.
mask-image: url("$(res)/img/feather-customised/help-circle.svg");
}
}
}

.mx_AppPermission_tooltip {
box-shadow: none;
background-color: $tooltip-timeline-bg-color;
color: $tooltip-timeline-fg-color;
border: none;
border-radius: 3px;
padding: 6px 8px;
.mx_Tooltip.mx_Tooltip--appPermission {
box-shadow: none;
background-color: $tooltip-timeline-bg-color;
color: $tooltip-timeline-fg-color;
border: none;
border-radius: 3px;
padding: 6px 8px;

&.mx_AppPermission_tooltip--dark {
.mx_Tooltip_chevron::after {
border-right-color: $tooltip-timeline-bg-color;
}
&.mx_Tooltip--appPermission--dark {
.mx_Tooltip_chevron::after {
border-right-color: $tooltip-timeline-bg-color;
}
}

ul {
list-style-position: inside;
padding-left: 2px;
margin-left: 0;
}
ul {
list-style-position: inside;
padding-left: 2px;
margin-left: 0;
}
}
2 changes: 1 addition & 1 deletion src/components/views/elements/AppPermission.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default class AppPermission extends React.Component<IProps, IState> {
const warningTooltip = (
<TextWithTooltip
tooltip={warningTooltipText}
tooltipClass="mx_AppPermission_tooltip mx_AppPermission_tooltip--dark"
tooltipClass="mx_Tooltip--appPermission mx_Tooltip--appPermission--dark"
>
<span className="mx_AppPermission_helpIcon" />
</TextWithTooltip>
Expand Down