ThunderAI/pages/spamfilter/mzta-spamfilter.css

181 lines
No EOL
3 KiB
CSS

#spamfilter_container, #account_selector_container, #spamfitler_reports_container{
width: 90%;
margin: 20px auto;
}
#spamfilter_prompt_text{
width: 100%;
}
#account_selector_container{
margin-top: 40px;
margin-bottom: 40px;
}
#account_selector_checkboxes{
padding: 10px;
border: 1px solid gray;
width: 24em;
margin-bottom: 10px;
margin-top: 10px;
}
.infoline{
font-size: 0.8em;
font-style: italic;
}
.btn_div{
width: 100%;
display: flex;
justify-content: space-between;
}
table#miczPrefs {
padding: 10px;
border-spacing: 0px;
width: 90%;
margin: 0px auto 40px auto;
border: 1px solid #ccc;
}
.spamfilter_table_title{
width: 90%;
margin: auto;
}
.section_title{
font-weight: bold;
font-size: 1.2em;
}
table#miczPrefs td{
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
vertical-align: top;
padding: 2px;
}
table#miczPrefs tr:first-child td {
border-top: none;
}
table#miczPrefs tr:last-child td {
border-bottom: none;
}
.autocomplete-container {
position: relative;
}
.autocomplete-list {
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: white;
border: 1px solid #ccc;
z-index: 1000;
max-height: 200px;
overflow-y: auto;
padding: 0;
margin: 0;
list-style: none;
font-size: small;
}
.autocomplete-list li {
padding: 8px;
cursor: pointer;
}
.autocomplete-list li:hover {
background-color: #f0f0f0;
}
.autocomplete-list li.active {
background-color: #ddd;
}
.hidden {
display: none;
}
.unsaved{
color: red;
}
#spamfilter_threshold_too_low{
display: none;
color:red;
font-weight: bold;
font-size: 1.1em;
margin-left: 10px;
}
table#report_data {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table#report_data th, table#report_data td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
table#report_data th {
background-color: #f4f4f4;
}
label:has(input[type="checkbox"]) {
cursor: pointer;
}
#spamfilter_skip_addresses_container{
width: 90%;
margin: 40px auto;
}
#spamfilter_skip_addresses{
width: 30em;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1C1B22;
color: rgb(251, 251, 254);
}
a:link { color: #409EFF; }
a:visited { color: #409EFF; }
a:hover { color: #66B1FF; }
a:active { color: #66B1FF; }
a:active { color: #66B1FF; }
.autocomplete-list {
background-color: #2E2F36;
border: 1px solid #2E2F36;
}
.autocomplete-list li:hover {
background-color: #4c4e58;
}
.autocomplete-list li.active {
background-color: #4c4e58;
}
table#report_data th,
table#report_data td {
border-color: #444;
color: #ddd;
}
table#report_data th {
background-color: #333;
}
table#report_data td {
background-color: #222;
}
}