2013-07-28 02:47:42 +02:00
|
|
|
#contentOverlay {
|
|
|
|
background-color: rgba(255, 255, 255, 0.65);
|
2013-08-08 00:22:23 +02:00
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
2013-07-28 02:47:42 +02:00
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2013-09-18 20:43:00 +02:00
|
|
|
width: 1024px;
|
2013-07-28 02:47:42 +02:00
|
|
|
height: 100%;
|
|
|
|
display:none;
|
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
|
|
|
|
.popup {
|
2013-08-08 00:22:23 +02:00
|
|
|
background-color: #fff;
|
|
|
|
z-index: 15;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 835px;
|
|
|
|
height: 500px;
|
|
|
|
margin: -250px 0 0 -417.5px;
|
|
|
|
/*padding: 25px;*/
|
|
|
|
|
2013-07-28 02:47:42 +02:00
|
|
|
/*overflow: scroll;*/
|
|
|
|
/*overflow-y: hidden;*/
|
|
|
|
-moz-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);
|
|
|
|
-webkit-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);
|
|
|
|
box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);
|
2013-08-08 00:22:23 +02:00
|
|
|
border: 2px solid #222;
|
|
|
|
border-radius: 15px;
|
|
|
|
-moz-border-radius: 15px;
|
|
|
|
-webkit-border-radius: 15px;
|
2013-09-25 16:19:40 +02:00
|
|
|
overflow: hidden;
|
|
|
|
display:none;
|
2013-07-28 02:47:42 +02:00
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
|
|
|
|
|
2013-07-28 02:47:42 +02:00
|
|
|
#settings header {
|
2013-08-08 00:22:23 +02:00
|
|
|
margin: 25px 25px 0 25px;
|
2013-07-28 02:47:42 +02:00
|
|
|
height: 44px;
|
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
#settings div.content {
|
2013-08-08 00:22:23 +02:00
|
|
|
margin: 15px 25px 25px 25px;
|
2013-07-28 02:47:42 +02:00
|
|
|
height: 388px;
|
|
|
|
display: table;
|
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
#settings div.content > div {
|
2013-07-28 02:47:42 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
#settings div.content > div.settings {
|
2013-08-28 18:33:25 +02:00
|
|
|
border: 1px solid rgb(187, 187, 187);
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
2013-08-08 00:22:23 +02:00
|
|
|
width: 660px;
|
2013-07-28 02:47:42 +02:00
|
|
|
overflow: scroll;
|
|
|
|
max-height: 368px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
padding: 10px 10px 10px 10px;
|
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
#settings div.content > div.manipulationBtns {
|
2013-07-28 02:47:42 +02:00
|
|
|
display: table-cell;
|
|
|
|
vertical-align: bottom;
|
|
|
|
width: 125px;
|
2013-08-08 00:22:23 +02:00
|
|
|
|
2013-07-28 02:47:42 +02:00
|
|
|
}
|
2013-09-25 16:19:40 +02:00
|
|
|
#settings div.content .btnOK {
|
2013-07-28 02:47:42 +02:00
|
|
|
width: 85px;
|
|
|
|
height: 86px;
|
|
|
|
background: url('../img/buttons/btnOk_settings.png') no-repeat;
|
2013-08-08 00:22:23 +02:00
|
|
|
margin: 0 0 0 10px;
|
2013-09-18 12:06:47 +02:00
|
|
|
cursor: pointer;
|
2013-09-25 16:19:40 +02:00
|
|
|
}
|