1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00
uBlock/src/epicker.html

160 lines
3.0 KiB
HTML
Raw Normal View History

<head>
<meta charset="utf-8">
<style>
:focus {
outline: none;
}
html, body {
2015-02-15 23:27:58 +01:00
background: transparent !important;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
font: 12px sans-serif;
}
ul, li, div {
display: block;
}
2015-02-14 14:13:04 +01:00
ul {
margin: 0.25em 0 0 0;
}
button {
2015-02-14 14:13:04 +01:00
margin: 0 0 0 2px;
border: 1px solid #aaa;
2015-02-14 14:13:04 +01:00
padding: 4px 6px;
box-sizing: border-box;
box-shadow: none;
border-radius: 3px;
color: #444;
background-color: #ccc;
cursor: pointer;
}
button:hover {
background-color: #eee;
}
button:disabled {
color: #999;
background-color: #ccc;
}
#create:not(:disabled) {
background-color: #ffdca8;
}
section {
2015-02-14 14:13:04 +01:00
border: 1px solid #ccc;
box-sizing: border-box;
display: inline-block;
height: 8em;
position: relative;
width: 100%;
}
textarea {
background-color: #fff;
2015-02-14 14:13:04 +01:00
border: 0;
box-sizing: border-box;
font: 11px monospace;
height: 100%;
overflow: hidden;
2015-02-14 14:13:04 +01:00
padding: 0;
resize: none;
width: 100%;
}
div {
2015-02-14 14:13:04 +01:00
bottom: 1px;
direction: ltr;
opacity: 0.2;
position: absolute;
2015-02-14 14:13:04 +01:00
right: 1px;
}
div:hover {
opacity: 1;
}
ul {
padding: 0;
list-style-type: none;
text-align: left;
overflow: hidden;
}
body > ul > li {
padding-top: 3px;
}
ul > li > span:nth-of-type(1) {
font-weight: bold;
}
ul > li > span:nth-of-type(2) {
font-size: smaller;
color: gray;
}
ul > li > ul {
background-color: #eee;
list-style-type: none;
margin: 0 0 0 1em;
overflow: hidden;
text-align: left;
}
ul > li > ul > li {
font: 11px monospace;
white-space: nowrap;
cursor: pointer;
direction: ltr;
}
ul > li > ul > li:hover {
background-color: rgba(255,255,255,1);
}
svg {
position: fixed;
top: 0;
left: 0;
cursor: crosshair;
width: 100%;
height: 100%;
}
.paused > svg {
2015-02-17 13:46:49 +01:00
cursor: not-allowed;
}
svg > path:first-child {
fill: rgba(0,0,0,0.75);
fill-rule: evenodd;
}
svg > path + path {
stroke: #F00;
stroke-width: 0.5px;
fill: rgba(255,0,0,0.25);
}
aside {
background-color: rgba(255,255,255,0.9);
bottom: 4px;
padding: 4px;
display: none;
position: fixed;
right: 4px;
width: 30em;
}
body.paused > aside {
opacity: 0.2;
display: block;
}
body.paused > aside:hover {
opacity: 1;
}
</style>
</head>
<body direction="{{bidi_dir}}">
<svg><path></path><path></path></svg>
<aside>
<section>
<textarea lang="en" dir="ltr" spellcheck="false"></textarea>
2015-02-14 14:13:04 +01:00
<div><button id="create" type="button" disabled="disabled">{{create}}</button><button id="pick" type="button">{{pick}}</button><button id="quit" type="button">{{quit}}</button></div>
</section>
<ul>
<li id="netFilters">
<span>{{netFilters}}</span><ul lang="en" class="changeFilter"></ul>
</li>
<li id="cosmeticFilters">
<span>{{cosmeticFilters}}</span> <span>{{cosmeticFiltersHint}}</span>
<ul lang="en" class="changeFilter"></ul>
</li>
</ul>
</aside>
</body>