CanvasBlocker/browserAction/browserAction.css

45 lines
622 B
CSS
Raw Normal View History

2018-07-29 21:43:40 +02:00
body {
padding: 1em;
}
div {
display: block;
}
.action {
display: block;
padding: 0.5em;
background-color: white;
border: 1px solid #e0e0e0;
cursor: pointer;
width: 100%;
text-align: left;
height: auto;
z-index: 1;
position: relative;
white-space: nowrap;
2018-08-19 23:25:19 +02:00
color: #505050;
2018-07-29 21:43:40 +02:00
}
.action + .action {
border-top-width: 0;
}
.action:first-child {
border-radius: 3px 3px 0 0;
}
.action:last-child {
border-radius: 0 0 3px 3px;
}
.action:active, .action:hover, .action:focus {
z-index: 10;
background-color: #eaeaea;
}
.action img {
2018-07-31 14:17:39 +02:00
vertical-align: text-bottom;
2018-07-29 21:43:40 +02:00
max-height: 19px;
margin-right: 0.25em;
}