Skip to content

Commit

Permalink
Bug 1528855 - [release 126] Fix Frames Group style. (#7960). r=dwalsh
Browse files Browse the repository at this point in the history
  • Loading branch information
nchevobbe authored and Jason Laster committed Feb 19, 2019
1 parent b89ee06 commit 0d741b9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions devtools/client/debugger/new/dist/debugger.css
Original file line number Diff line number Diff line change
Expand Up @@ -3421,8 +3421,8 @@ html[dir="rtl"] .breakpoints-list .breakpoint .breakpoint-line {
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

.frames ul .frames-group .group,
.frames ul .frames-group .group .location {
.frames [role="list"] .frames-group .group,
.frames [role="list"] .frames-group .group .location {
font-weight: 500;
cursor: default;
/*
Expand All @@ -3433,21 +3433,21 @@ html[dir="rtl"] .breakpoints-list .breakpoint .breakpoint-line {
direction: ltr;
}

.frames ul .frames-group.expanded .group,
.frames ul .frames-group.expanded .group .location {
.frames [role="list"] .frames-group.expanded .group,
.frames [role="list"] .frames-group.expanded .group .location {
color: var(--theme-highlight-blue);
}

.frames ul .frames-group .frames-list li {
.frames [role="list"] .frames-group .frames-list [role="listitem"] {
padding-left: 30px;
}

.frames ul .frames-group .frames-list {
.frames [role="list"] .frames-group .frames-list {
border-top: 1px solid var(--theme-splitter-color);
border-bottom: 1px solid var(--theme-splitter-color);
}

.frames ul .frames-group.expanded .badge {
.frames [role="list"] .frames-group.expanded .badge {
color: var(--theme-highlight-blue);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

.frames ul .frames-group .group,
.frames ul .frames-group .group .location {
.frames [role="list"] .frames-group .group,
.frames [role="list"] .frames-group .group .location {
font-weight: 500;
cursor: default;
/*
Expand All @@ -14,21 +14,21 @@
direction: ltr;
}

.frames ul .frames-group.expanded .group,
.frames ul .frames-group.expanded .group .location {
.frames [role="list"] .frames-group.expanded .group,
.frames [role="list"] .frames-group.expanded .group .location {
color: var(--theme-highlight-blue);
}

.frames ul .frames-group .frames-list li {
.frames [role="list"] .frames-group .frames-list [role="listitem"] {
padding-left: 30px;
}

.frames ul .frames-group .frames-list {
.frames [role="list"] .frames-group .frames-list {
border-top: 1px solid var(--theme-splitter-color);
border-bottom: 1px solid var(--theme-splitter-color);
}

.frames ul .frames-group.expanded .badge {
.frames [role="list"] .frames-group.expanded .badge {
color: var(--theme-highlight-blue);
}

Expand Down

0 comments on commit 0d741b9

Please sign in to comment.