uBlock/src/css/devtool-log.css

99 lines
2.1 KiB
CSS
Raw Normal View History

body {
border: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
2015-01-06 13:44:19 +00:00
font: 12px monospace;
margin: 0;
overflow-x: hidden;
padding: 0;
white-space: nowrap;
width: 100%;
}
#toolbar {
2015-03-03 00:48:28 +00:00
background-color: white;
border: 0;
box-sizing: border-box;
height: 36px;
margin: 0;
padding: 0;
position: fixed;
text-align: center;
top: 0;
2015-03-03 00:48:28 +00:00
width: 100%;
}
#toolbar .button {
background-color: white;
border: none;
2015-03-03 00:48:28 +00:00
box-sizing: border-box;
cursor: pointer;
2015-03-03 00:48:28 +00:00
display: inline-block;
font-size: 20px;
margin: 0;
2015-03-03 00:48:28 +00:00
padding: 8px;
}
#toolbar .button:hover {
background-color: #eee;
}
2015-03-03 04:40:41 +00:00
body.filterOff #toolbar #filterButton {
2015-03-03 00:48:28 +00:00
opacity: 0.25;
2015-01-13 17:54:13 +00:00
}
2015-03-03 00:48:28 +00:00
#content {
margin-top: 36px;
2015-01-13 17:54:13 +00:00
}
#content table {
border: 0;
border-collapse: collapse;
2015-01-13 17:54:13 +00:00
direction: ltr;
width: 100%;
}
#content table tr.blocked {
background-color: rgba(192, 0, 0, 0.1)
}
#content table tr.allowed {
background-color: rgba(0, 160, 0, 0.1)
}
2015-01-16 17:15:12 +00:00
#content table tr.allowed.mirrored {
background-color: rgba(255, 255, 0, 0.3)
}
2015-01-07 23:56:03 +00:00
#content table tr.maindoc {
background-color: #eee;
}
2015-03-03 04:40:41 +00:00
body:not(.filterOff) #content table tr.hidden {
2015-03-03 00:48:28 +00:00
display: none;
}
#content table tr td {
border: 1px solid #ccc;
padding: 3px;
vertical-align: top;
2015-01-07 17:13:13 +00:00
}
#content table tr td:nth-of-type(1) {
2015-01-23 16:32:49 +00:00
padding: 3px 0;
text-align: center;
2015-03-03 00:48:28 +00:00
white-space: pre;
2015-03-03 10:40:48 +00:00
width: 1em;
2015-01-23 16:32:49 +00:00
}
#content table tr td:nth-of-type(2) {
white-space: normal;
2015-01-07 17:13:13 +00:00
width: 25%;
word-break: break-all;
word-wrap: break-word;
}
2015-01-23 16:32:49 +00:00
#content table tr td:nth-of-type(3) {
2015-01-07 17:13:13 +00:00
white-space: nowrap;
}
2015-01-23 16:32:49 +00:00
#content table tr td:nth-of-type(4) {
border-right: none;
2015-01-07 17:13:13 +00:00
white-space: normal;
width: 60%;
word-break: break-all;
word-wrap: break-word;
}
2015-01-23 16:32:49 +00:00
#content table tr td:nth-of-type(4) b {
2015-01-06 13:44:19 +00:00
font-weight: normal;
}
2015-01-23 16:32:49 +00:00
#content table tr.blocked td:nth-of-type(4) b {
background-color: rgba(192, 0, 0, 0.2);
}
2015-01-23 16:32:49 +00:00
#content table tr.allowed td:nth-of-type(4) b {
background-color: rgba(0, 160, 0, 0.2);
}