1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-04 20:46:39 +02:00

Added navigator protection

This commit is contained in:
kkapsner 2019-02-27 23:49:00 +01:00
parent 479ee74903
commit e56df7160f
23 changed files with 711 additions and 1 deletions

36
options/navigator.css Normal file
View file

@ -0,0 +1,36 @@
.presetSection ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.presetSection ul li {
display: inline-block;
}
.button {
display: inline-block;
border: none;
background-color: white;
border: 1px solid lightgray;
margin: 2px;
width: 7em;
box-sizing: border-box;
padding: 0.5em;
outline: none;
cursor: pointer;
}
.active .button {
border-color: red;
}
.button:focus {
outline: none;
border-style: dotted;
}
.button::-moz-focus-inner {
border: 0;
}
.values tbody + tbody tr:first-child td {
padding-top: 1em;
}