| 1 |
/* Responsive table */ |
| 2 |
@media screen and (max-width: 782px) { |
| 3 |
#plugin-check__submit { |
| 4 |
margin-top: 1em; |
| 5 |
} |
| 6 |
|
| 7 |
table#plugin-check__categories td { |
| 8 |
padding-bottom: .5em; |
| 9 |
} |
| 10 |
|
| 11 |
table.plugin-check__results-table { |
| 12 |
border: 0; |
| 13 |
} |
| 14 |
|
| 15 |
table.plugin-check__results-table caption { |
| 16 |
font-size: 1.3em; |
| 17 |
} |
| 18 |
|
| 19 |
table.plugin-check__results-table thead { |
| 20 |
border: none; |
| 21 |
clip: rect(0 0 0 0); |
| 22 |
height: 1px; |
| 23 |
margin: -1px; |
| 24 |
overflow: hidden; |
| 25 |
padding: 0; |
| 26 |
position: absolute; |
| 27 |
width: 1px; |
| 28 |
} |
| 29 |
|
| 30 |
table.plugin-check__results-table tr { |
| 31 |
border-bottom: 3px solid #ddd; |
| 32 |
display: block; |
| 33 |
} |
| 34 |
|
| 35 |
table.plugin-check__results-table td, |
| 36 |
table.plugin-check__results-table code { |
| 37 |
font-size: .9em; |
| 38 |
} |
| 39 |
|
| 40 |
table.plugin-check__results-table td { |
| 41 |
border-bottom: 1px solid #ddd; |
| 42 |
display: block; |
| 43 |
text-align: right; |
| 44 |
} |
| 45 |
|
| 46 |
table.plugin-check__results-table td::before { |
| 47 |
content: attr(data-label); |
| 48 |
float: left; |
| 49 |
font-weight: bold; |
| 50 |
} |
| 51 |
|
| 52 |
.rtl table.plugin-check__results-table td { |
| 53 |
text-align: left; |
| 54 |
} |
| 55 |
|
| 56 |
.rtl table.plugin-check__results-table td::before { |
| 57 |
float: right; |
| 58 |
} |
| 59 |
|
| 60 |
table.plugin-check__results-table td:last-child { |
| 61 |
border-bottom: 0; |
| 62 |
} |
| 63 |
} |
| 64 |
|
| 65 |
.plugin-check__options { |
| 66 |
display: flex; |
| 67 |
} |
| 68 |
|
| 69 |
.plugin-check__options #plugin-check__types-container { |
| 70 |
margin-left: 40px; |
| 71 |
} |
| 72 |
|
| 73 |
/* JSON output formatting */ |
| 74 |
#plugin-check-namer-raw { |
| 75 |
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; |
| 76 |
font-size: 13px; |
| 77 |
line-height: 1.6; |
| 78 |
background: #f6f7f7; |
| 79 |
border: 1px solid #c3c4c7; |
| 80 |
border-radius: 4px; |
| 81 |
padding: 15px; |
| 82 |
max-height: 600px; |
| 83 |
overflow: auto; |
| 84 |
color: #1d2327; |
| 85 |
white-space: pre-wrap; |
| 86 |
word-wrap: break-word; |
| 87 |
} |
| 88 |
|
| 89 |
/* Plugin Check Namer styles */ |
| 90 |
.plugin-check-namer-spinner { |
| 91 |
float: none; |
| 92 |
margin-left: 10px; |
| 93 |
} |
| 94 |
|
| 95 |
.plugin-check-namer-hidden { |
| 96 |
display: none; |
| 97 |
} |
| 98 |
|
| 99 |
.plugin-check-namer-verdict-container { |
| 100 |
margin-bottom: 20px; |
| 101 |
padding: 15px; |
| 102 |
background: #fff; |
| 103 |
border-left: 4px solid #2271b1; |
| 104 |
} |
| 105 |
|
| 106 |
.plugin-check-namer-verdict-item { |
| 107 |
margin: 0 0 10px 0; |
| 108 |
} |
| 109 |
|
| 110 |
.plugin-check-namer-meta { |
| 111 |
margin: 0 0 5px 0; |
| 112 |
color: #646970; |
| 113 |
font-style: italic; |
| 114 |
font-size: 0.9em; |
| 115 |
} |
| 116 |
|
| 117 |
.plugin-check-namer-tokens { |
| 118 |
margin: 0; |
| 119 |
} |
| 120 |
|
| 121 |
.plugin-check-namer-confusion { |
| 122 |
margin-top: 20px; |
| 123 |
} |
| 124 |
|
| 125 |
.plugin-check-namer-confusion-item { |
| 126 |
margin-bottom: 15px; |
| 127 |
padding: 10px; |
| 128 |
background: #fff; |
| 129 |
border-left: 4px solid #2271b1; |
| 130 |
} |
| 131 |
|
| 132 |
.plugin-check-namer-confusion-item-others { |
| 133 |
border-left-color: #dba617; |
| 134 |
} |
| 135 |
|
| 136 |
.plugin-check-namer-confusion-meta { |
| 137 |
color: #646970; |
| 138 |
} |
| 139 |
|
| 140 |
.plugin-check-namer-confusion-text { |
| 141 |
color: #646970; |
| 142 |
font-size: 0.9em; |
| 143 |
} |
| 144 |
|