mirror of https://github.com/gorhill/uBlock.git
Fine tune visuals of ruleset tools in popup panel
This commit is contained in:
parent
0627fcfb62
commit
4629732a69
|
@ -48,10 +48,16 @@ hr {
|
|||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
#sticky > div {
|
||||
align-items: stretch;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#switch {
|
||||
display: flex;
|
||||
flex-grow: 2;
|
||||
justify-content: center;
|
||||
margin: 1em 0;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
#switch .fa-icon {
|
||||
fill: #0046ff;
|
||||
|
@ -66,6 +72,38 @@ hr {
|
|||
body.off #switch .fa-icon {
|
||||
fill: #ccc;
|
||||
}
|
||||
.rulesetTools {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
justify-content: space-evenly;
|
||||
padding: 0.5em;
|
||||
}
|
||||
.rulesetTools [id] {
|
||||
background-color: #ffe;
|
||||
border: 1px solid #ddc;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
fill: #888;
|
||||
flex-grow: 1;
|
||||
font-size: 2.2em;
|
||||
padding: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
.rulesetTools [id]:not(:first-of-type) {
|
||||
margin-top: 0.25em;
|
||||
}
|
||||
.rulesetTools [id]:hover {
|
||||
fill: black;
|
||||
}
|
||||
body.needReload #refresh,
|
||||
body.needSave #saveRules,
|
||||
body.needSave #revertRules {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.itemRibbon {
|
||||
display: grid;
|
||||
|
@ -450,35 +488,3 @@ body.advancedUser #firewallContainer > div > span.noopRule.ownRule {
|
|||
#actionSelector.colorBlind > span:nth-of-type(3) {
|
||||
background-color: rgb(0, 19, 110);
|
||||
}
|
||||
|
||||
#rulesetTools {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
justify-content: space-evenly;
|
||||
left: 0;
|
||||
padding: 0.2em;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
#rulesetTools [id] {
|
||||
background-color: #ffe;
|
||||
border: 1px solid #ddc;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
fill: #888;
|
||||
font-size: 1.8em;
|
||||
padding: 0.2em 0.4em;
|
||||
visibility: hidden;
|
||||
}
|
||||
#rulesetTools [id]:hover {
|
||||
fill: black;
|
||||
}
|
||||
body.needReload #refresh,
|
||||
body.needSave #saveRules,
|
||||
body.needSave #revertRules {
|
||||
visibility: visible;
|
||||
}
|
||||
|
|
|
@ -13,13 +13,17 @@
|
|||
<body>
|
||||
<div id="main" class="tooltipContainer">
|
||||
<div id="sticky">
|
||||
<div id="switch" role="button" aria-label data-tip-position="under" tabindex="0">
|
||||
<span class="fa-icon">power-off</span>
|
||||
</div>
|
||||
<div id="rulesetTools">
|
||||
<span id="refresh" class="fa-icon">refresh</span>
|
||||
<span id="saveRules" class="fa-icon" data-i18n-tip="popupTipSaveRules" data-tip-position="under">lock</span>
|
||||
<span id="revertRules" class="fa-icon" data-i18n-tip="popupTipRevertRules" data-tip-position="under">eraser</span>
|
||||
<div>
|
||||
<div class="rulesetTools">
|
||||
<span id="refresh" class="fa-icon">refresh</span>
|
||||
</div>
|
||||
<div id="switch" role="button" aria-label data-tip-position="under" tabindex="0">
|
||||
<span class="fa-icon">power-off</span>
|
||||
</div>
|
||||
<div class="rulesetTools">
|
||||
<span id="saveRules" class="fa-icon" data-i18n-tip="popupTipSaveRules" data-tip-position="under">lock</span>
|
||||
<span id="revertRules" class="fa-icon" data-i18n-tip="popupTipRevertRules" data-tip-position="under">eraser</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue