2014-08-23 21:13:34 +02:00
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
#options {
|
2014-09-09 16:53:47 +02:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
#options li {
|
2014-09-09 16:53:47 +02:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
#lists {
|
2014-08-23 18:08:02 +02:00
|
|
|
margin: 0.5em 0 0 0;
|
2014-10-21 16:45:54 +02:00
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 0em;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
body[dir=rtl] #lists {
|
|
|
|
padding-left: 0em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
#lists > li {
|
2014-08-23 18:08:02 +02:00
|
|
|
margin: 0.5em 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
#lists > li > span {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
#lists > li > ul {
|
2014-08-23 18:08:02 +02:00
|
|
|
margin: 0.25em 0 0 0;
|
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
li.listEntry {
|
2014-08-23 18:08:02 +02:00
|
|
|
font-size: 14px;
|
2014-08-23 21:13:34 +02:00
|
|
|
margin: 0 auto 0 auto;
|
2014-10-21 16:45:54 +02:00
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 0em;
|
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
body[dir=rtl] li.listEntry {
|
2014-10-21 16:45:54 +02:00
|
|
|
margin-left: 0em;
|
|
|
|
margin-right: 1em;
|
2014-08-23 21:13:34 +02:00
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
li.listEntry > * {
|
2014-08-23 21:13:34 +02:00
|
|
|
unicode-bidi: embed;
|
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
li.listEntry > a:nth-of-type(2) {
|
2014-08-23 21:13:34 +02:00
|
|
|
font-size: 13px;
|
|
|
|
opacity: 0.5;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
|
|
|
.dim {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
/* I designed the button with: http://charliepark.org/bootstrap_buttons/ */
|
2014-09-09 16:53:47 +02:00
|
|
|
button.custom {
|
2014-08-23 18:08:02 +02:00
|
|
|
padding: 5px;
|
2014-09-09 16:53:47 +02:00
|
|
|
border: 1px solid transparent;
|
2014-09-09 01:45:22 +02:00
|
|
|
border-color: #80b3ff #80b3ff hsl(216, 100%, 75%);
|
2014-09-09 16:53:47 +02:00
|
|
|
border-radius: 3px;
|
2014-09-09 01:45:22 +02:00
|
|
|
background-color: hsl(216, 100%, 75%);
|
|
|
|
background-image: linear-gradient(#a8cbff, #80b3ff);
|
2014-09-09 16:53:47 +02:00
|
|
|
background-repeat: repeat-x;
|
2014-09-09 01:45:22 +02:00
|
|
|
color: #222;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2014-09-09 16:53:47 +02:00
|
|
|
button.custom.disabled {
|
|
|
|
border-color: #dddddd #dddddd hsl(36, 0%, 85%);
|
|
|
|
background-color: hsl(36, 0%, 72%);
|
|
|
|
background-image: linear-gradient(#f2f2f2, #dddddd);
|
|
|
|
color: #aaa;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
button.custom:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
button.custom.reloadAll:not(.disabled) {
|
2014-08-23 18:08:02 +02:00
|
|
|
border-color: #ffcc7f #ffcc7f hsl(36, 100%, 73%);
|
|
|
|
background-color: hsl(36, 100%, 75%);
|
|
|
|
background-image: linear-gradient(#ffdca8, #ffcc7f);
|
|
|
|
}
|
|
|
|
#buttonApply {
|
2014-09-09 16:53:47 +02:00
|
|
|
display: initial;
|
2015-02-28 13:58:33 +01:00
|
|
|
padding: 1em;
|
|
|
|
position: fixed;
|
2014-10-21 16:45:54 +02:00
|
|
|
right: 1em;
|
2015-02-28 13:58:33 +01:00
|
|
|
top: 0;
|
2014-10-21 16:45:54 +02:00
|
|
|
}
|
|
|
|
body[dir=rtl] #buttonApply {
|
|
|
|
right: auto;
|
|
|
|
left: 1em;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
2014-09-09 16:53:47 +02:00
|
|
|
#buttonApply.disabled {
|
|
|
|
display: none;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
|
|
|
span.status {
|
2015-03-08 22:54:08 +01:00
|
|
|
margin: 0 0 0 1em;
|
2014-08-23 18:08:02 +02:00
|
|
|
border: 1px solid transparent;
|
|
|
|
padding: 1px 2px;
|
|
|
|
display: inline-block;
|
2015-03-08 22:54:08 +01:00
|
|
|
font-size: smaller;
|
|
|
|
line-height: 1;
|
2014-08-23 18:08:02 +02:00
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
span.purge {
|
|
|
|
border-color: #ddd;
|
|
|
|
color: #444;
|
|
|
|
background-color: #eee;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
span.purge:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
span.obsolete {
|
|
|
|
border-color: hsl(36, 100%, 73%);
|
|
|
|
color: #222;
|
|
|
|
background-color: hsl(36, 100%, 75%);
|
|
|
|
}
|
2014-08-23 21:13:34 +02:00
|
|
|
#externalListsDiv {
|
2014-10-21 16:45:54 +02:00
|
|
|
margin: 2em auto 0 2em;
|
|
|
|
}
|
|
|
|
body[dir=rtl] #externalListsDiv {
|
|
|
|
margin: 2em 2em 0;
|
2014-08-23 21:13:34 +02:00
|
|
|
}
|
2014-08-23 18:08:02 +02:00
|
|
|
#externalLists {
|
2015-02-16 13:14:20 +01:00
|
|
|
box-sizing: border-box;
|
2014-08-23 18:08:02 +02:00
|
|
|
font-size: smaller;
|
2015-02-16 13:14:20 +01:00
|
|
|
height: 10em;
|
2014-11-27 20:45:54 +01:00
|
|
|
white-space: pre;
|
2015-02-16 13:14:20 +01:00
|
|
|
width: 100%;
|
2015-03-06 16:22:30 +01:00
|
|
|
word-wrap: normal;
|
2014-08-23 18:08:02 +02:00
|
|
|
}
|
2014-09-09 16:53:47 +02:00
|
|
|
body #busyOverlay {
|
2014-08-23 18:08:02 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: white;
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: wait;
|
|
|
|
display: none;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
2014-09-09 16:53:47 +02:00
|
|
|
body.busy #busyOverlay {
|
2014-08-23 18:08:02 +02:00
|
|
|
display: block;
|
|
|
|
}
|