Bug 1590811 - Better align the breakpoint icon and change hover effects.

Differential Revision: https://phabricator.services.mozilla.com/D50157

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Anshul 2019-10-28 22:24:26 +00:00
Родитель 7f08913d02
Коммит ec63a27082
3 изменённых файлов: 31 добавлений и 15 удалений

Просмотреть файл

@ -15,7 +15,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -36,7 +36,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -57,7 +57,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -78,7 +78,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -99,7 +99,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -120,7 +120,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}
@ -141,7 +141,7 @@
"byName": {},
"byBlocks": {},
"usedIds": {
"0": 0
"1": 1
}
}
}

Просмотреть файл

@ -58,10 +58,10 @@
button.remove-set-watchpoint {
mask: url("resource://devtools/client/debugger/images/webconsole-logpoint.svg")
no-repeat;
no-repeat;
display: inline-block;
vertical-align: top;
height: 15px;
height: 13px;
width: 15px;
margin: 0 4px 0px 20px;
padding: 0;
@ -72,10 +72,10 @@ button.remove-set-watchpoint {
button.remove-get-watchpoint {
mask: url("resource://devtools/client/debugger/images/webconsole-logpoint.svg")
no-repeat;
no-repeat;
display: inline-block;
vertical-align: top;
height: 15px;
height: 13px;
width: 15px;
margin: 0 4px 0px 20px;
padding: 0;
@ -83,3 +83,11 @@ button.remove-get-watchpoint {
background-color: var(--purple-60);
cursor: pointer;
}
.theme-dark button.remove-set-watchpoint:hover,
.theme-light button.remove-set-watchpoint:hover {
background-color: var(--breakpoint-fill);
}
.theme-dark button.remove-get-watchpoint:hover,
.theme-light button.remove-get-watchpoint:hover {
background-color: var(--purple-60);
}

Просмотреть файл

@ -461,10 +461,10 @@ button.invoke-getter {
button.remove-set-watchpoint {
mask: url("resource://devtools/client/debugger/images/webconsole-logpoint.svg")
no-repeat;
no-repeat;
display: inline-block;
vertical-align: top;
height: 15px;
height: 13px;
width: 15px;
margin: 0 4px 0px 20px;
padding: 0;
@ -475,10 +475,10 @@ button.remove-set-watchpoint {
button.remove-get-watchpoint {
mask: url("resource://devtools/client/debugger/images/webconsole-logpoint.svg")
no-repeat;
no-repeat;
display: inline-block;
vertical-align: top;
height: 15px;
height: 13px;
width: 15px;
margin: 0 4px 0px 20px;
padding: 0;
@ -486,3 +486,11 @@ button.remove-get-watchpoint {
background-color: var(--purple-60);
cursor: pointer;
}
.theme-dark button.remove-set-watchpoint:hover,
.theme-light button.remove-set-watchpoint:hover {
background-color: var(--breakpoint-fill);
}
.theme-dark button.remove-get-watchpoint:hover,
.theme-light button.remove-get-watchpoint:hover {
background-color: var(--purple-60);
}