1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
body {
font-family: Cantarell, Arial, sans-serif;
padding: 10px;
min-width: 550px;
}
#update_check_period { width: 5em; }
#status {
display: none;
color: green;
text-align: center;
}
#error {
display: none;
color: red;
text-align: center;
}
.buttons { text-align: center; margin-top: 1em; }
.notice { font-size: 90%; font-weight: normal; margin-top: 0.5em; white-space: nowrap; }
.update-notice { display: none; }
.wrapped { white-space: normal; }
fieldset {
border: 0;
margin: 0;
padding: 0;
width: 100%;
}
dl {
padding: 0.2em 0;
clear: both;
}
dt {
display: block;
float: left;
width: 50%;
text-align: left;
font-weight: bold;
}
dd {
margin-left: 51%;
vertical-align: top;
margin-bottom: 3px;
}
ul.tabs {
float: right;
}
ul.tabs li {
list-style: none;
}
ul.tabs li, ul.tabs li a {
display: inline-block;
}
ul.tabs li a.active {
color: inherit;
cursor: default;
text-decoration: none;
}
ul.tabs li:not(:last-child) {
border-right: 1px solid #000;
margin-right: 5px;
padding-right: 5px;
}
div.tabs-pane {
clear: both;
}
#synchronization table {
width: 100%;
border-collapse: collapse;
vertical-align: middle;
}
#synchronization table th {
border-bottom: 1px solid #000;
}
#synchronization table tbody td.ok, #synchronization table td.fail {
text-align: center;
font-size: 150%;
}
#synchronization table tbody td.ok:after {
content: '\2713';
color: green;
}
#synchronization table td.fail:after {
content: '\2717';
color: red;
}
dialog#syncChoice button {
display: block;
width: 90%;
margin: 0.3em auto;
}
div#translation_credits div
{
white-space: pre-line;
}
|