OpenSlides/openslides/projector/static/styles/projector-control.css

103 lines
2.0 KiB
CSS
Raw Normal View History

/**
* OpenSlides projector control style
*
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
* :license: GNU GPL, see LICENSE for more details.
*/
/* Portlet */
.column {
width: 50%;
float: left;
padding-bottom: 0px;
}
.portlet {
margin: 0 10px 10px 0;
}
.portlet-header {
margin: 0.3em;
padding-bottom: 4px;
padding-left: 0.2em;
}
.portlet-header .ui-icon {
float: right;
}
.portlet-content {
padding: 0.4em;
overflow: hidden;
}
.portlet-content li{
padding: 4px 0;
}
.ui-sortable-placeholder {
border: 1px dotted black;
visibility: visible !important;
height: 50px !important;
}
.ui-sortable-placeholder * {
visibility: hidden;
}
/* iframe */
#iframe {
-ms-zoom: 0.25;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-o-transform-origin: 0 0;
-moz-transform: scale(0.25);
-webkit-transform: scale(0.25);
-o-transform: scale(0.25);
width: 1024px;
height: 768px;
}
#iframewrapper {
width: 256px;/*100%;*/
height: 192px;/*230px;*/
position: relative;
overflow: hidden;
}
#iframeoverlay {
width: 256px;
height: 192px;
position: absolute;
top: 0px;
left: 0px;
display: block;
z-index: 1;
}
/* countdown */
a.countdown_visible_link.closed div {
2012-04-23 21:27:22 +02:00
background-image: url(../images/icons/off.png);
background-repeat: no-repeat;
background-position: center;
width: 16px;
height: 16px;
display: inline-block;
}
a.countdown_visible_link.open div {
2012-04-23 21:27:22 +02:00
background-image: url(../images/icons/on.png);
background-repeat: no-repeat;
background-position: center;
width: 16px;
height: 16px;
display: inline-block;
}
/* activate link */
a.activate_link div {
2012-04-23 21:27:22 +02:00
background-image: url(../images/icons/accept-grey.png);
background-repeat: no-repeat;
float: left;
width: 16px;
height: 16px;
padding-right: 16px;
position: relative;
top: 4px;
left: 4px;
}
a.activate_link.active div {
2012-04-23 21:27:22 +02:00
background-image: url(../images/icons/accept.png);
}