2012-09-10 18:03:33 +02:00
|
|
|
/**
|
|
|
|
* OpenSlides default template style
|
|
|
|
*
|
|
|
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
* :license: GNU GPL, see LICENSE for more details.
|
|
|
|
*/
|
|
|
|
|
2012-09-07 21:25:18 +02:00
|
|
|
body {
|
2012-09-10 17:17:22 +02:00
|
|
|
background-color: #FBFBFB;
|
2012-09-07 21:25:18 +02:00
|
|
|
}
|
|
|
|
|
2012-09-05 00:20:28 +02:00
|
|
|
/* Header */
|
2011-07-31 10:46:29 +02:00
|
|
|
#header {
|
2012-09-05 00:20:28 +02:00
|
|
|
background-color: #333333;
|
|
|
|
background-image: -moz-linear-gradient(top, #444444, #222222);
|
|
|
|
background-image: -ms-linear-gradient(top, #444444, #222222);
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
|
|
|
|
background-image: -webkit-linear-gradient(top, #444444, #222222);
|
|
|
|
background-image: -o-linear-gradient(top, #444444, #222222);
|
|
|
|
background-image: linear-gradient(top, #444444, #222222);
|
|
|
|
box-shadow: 0 0 7px rgba(0,0,0,0.6);
|
|
|
|
height: 35px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 7px 20px 0;
|
|
|
|
position: relative;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
#header .logo img {
|
|
|
|
height: 30px;
|
|
|
|
padding-left: 3px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
#header .title {
|
2013-04-22 19:59:05 +02:00
|
|
|
font-size: 16px;
|
2012-09-05 00:20:28 +02:00
|
|
|
color: #999999;
|
2013-04-22 19:59:05 +02:00
|
|
|
position: absolute;
|
|
|
|
margin: 8px 0 0 50px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2013-09-08 14:44:41 +02:00
|
|
|
#header .navbar-search {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2013-01-31 10:19:56 +01:00
|
|
|
footer {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-09-07 21:25:18 +02:00
|
|
|
/* Headings and Links */
|
2012-09-05 00:20:28 +02:00
|
|
|
h1 {
|
|
|
|
border-bottom: 1px solid #EEEEEE;
|
|
|
|
margin: 0px 0 30px;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
margin-bottom: 0px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 21:25:18 +02:00
|
|
|
/* Login page */
|
|
|
|
#login-page.container {
|
|
|
|
width: 320px;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
#login-page h2 {
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2012-09-10 17:17:22 +02:00
|
|
|
#login-page h2 img {
|
|
|
|
width: 250px;
|
|
|
|
}
|
2012-09-07 21:25:18 +02:00
|
|
|
#login-page .well {
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-radius: 6px 6px 6px 6px;
|
|
|
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
|
|
margin-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
line-height: 45px;
|
|
|
|
}
|
|
|
|
#login-page input {
|
|
|
|
width: 240px;
|
|
|
|
height: 30px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
#login-page span.add-on {
|
|
|
|
height: 26px;
|
|
|
|
padding: 8px 5px 4px 5px;
|
|
|
|
}
|
2012-09-10 17:17:22 +02:00
|
|
|
|
2013-03-09 14:29:40 +01:00
|
|
|
/* Log */
|
|
|
|
#log {
|
|
|
|
padding-left: 14px;
|
|
|
|
}
|
2012-09-10 18:03:33 +02:00
|
|
|
|
|
|
|
/** Utils **/
|
2013-01-31 10:19:56 +01:00
|
|
|
tr.offline td, li.offline {
|
2013-01-08 23:05:35 +01:00
|
|
|
background-color: #EAEAEA !important;
|
|
|
|
}
|
2013-01-18 21:44:47 +01:00
|
|
|
tr.activeline td, li.activeline {
|
|
|
|
background-color: #bed4de !important;
|
|
|
|
}
|
2012-09-10 18:03:33 +02:00
|
|
|
.nopadding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.alert form {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
tr.total td {
|
|
|
|
border-top: 1px solid #333333;
|
|
|
|
}
|
|
|
|
.nobr {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2013-01-31 10:19:56 +01:00
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.indentation {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
2013-02-05 22:03:43 +01:00
|
|
|
.mini_width {
|
|
|
|
width: 1px;
|
|
|
|
}
|
2012-09-05 07:54:01 +02:00
|
|
|
/* show optional column */
|
|
|
|
.optional {
|
2012-09-06 22:41:24 +02:00
|
|
|
display: auto;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
.user_details fieldset {
|
2013-04-09 11:21:55 +02:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
.user_details legend {
|
2013-04-09 11:21:55 +02:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
.user_details label {
|
2013-04-09 11:21:55 +02:00
|
|
|
font-weight: bold;
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
.user_details label:after {
|
2013-04-09 11:21:55 +02:00
|
|
|
content: ":";
|
|
|
|
}
|
2012-09-10 18:03:33 +02:00
|
|
|
|
2013-05-06 20:17:13 +02:00
|
|
|
/** Colors **/
|
|
|
|
.grey {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2012-09-10 18:03:33 +02:00
|
|
|
/** Forms **/
|
|
|
|
input, textarea {
|
|
|
|
width: 320px;
|
|
|
|
}
|
2013-02-04 13:06:36 +01:00
|
|
|
.small-form input {
|
2013-11-11 17:36:52 +01:00
|
|
|
width: 55px;
|
2013-02-04 13:06:36 +01:00
|
|
|
}
|
2012-09-10 18:03:33 +02:00
|
|
|
textarea {
|
|
|
|
height: 100px;
|
|
|
|
}
|
2012-09-06 22:41:24 +02:00
|
|
|
.help-inline {
|
|
|
|
font-size: 11px;
|
2012-09-05 07:54:01 +02:00
|
|
|
}
|
2012-09-10 18:03:33 +02:00
|
|
|
.errorlist{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.errorlist li {
|
|
|
|
list-style: none outside none;
|
|
|
|
}
|
|
|
|
form .required label:after {
|
|
|
|
content: " *";
|
|
|
|
}
|
2013-01-31 10:19:56 +01:00
|
|
|
legend + .control-group {
|
|
|
|
margin-top: 0px !important;
|
|
|
|
}
|
2013-04-09 20:12:57 +02:00
|
|
|
#id_permissions {
|
|
|
|
height: 310px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2013-05-28 20:31:01 +02:00
|
|
|
#id_users {
|
2013-04-09 20:12:57 +02:00
|
|
|
height: 110px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2013-05-28 20:31:01 +02:00
|
|
|
#dataTable_filter input {
|
2013-04-22 19:59:05 +02:00
|
|
|
width: auto;
|
|
|
|
}
|
2013-05-28 20:31:01 +02:00
|
|
|
#dataTable {
|
2013-04-22 19:59:05 +02:00
|
|
|
clear: none;
|
|
|
|
}
|
2013-05-28 20:31:01 +02:00
|
|
|
#dataTable_wrapper .row-fluid:after {
|
2013-04-22 19:59:05 +02:00
|
|
|
clear: none;
|
|
|
|
}
|
2013-09-08 14:44:41 +02:00
|
|
|
.searchresults li {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.searchresults li .app {
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
.highlighted {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-09-10 18:03:33 +02:00
|
|
|
/** Left sitebar navigation **/
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul {
|
|
|
|
margin: 0;
|
2013-04-22 19:59:05 +02:00
|
|
|
list-style: none;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul ul {
|
|
|
|
display: none;
|
|
|
|
margin-left: 35px;
|
|
|
|
margin-top: -1px;
|
2013-04-22 19:59:05 +02:00
|
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
2011-09-21 21:23:22 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li a {
|
|
|
|
border-style: none solid solid;
|
|
|
|
border-width: 0 1px 1px;
|
|
|
|
border-color: #dddddd;
|
|
|
|
color: #666666;
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #ffffff;
|
2013-04-22 19:59:05 +02:00
|
|
|
padding: 0;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li:first-child a {
|
|
|
|
border-top: 1px solid #DDDDDD;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li a span.ico {
|
2011-07-31 10:46:29 +02:00
|
|
|
display: inline-block;
|
2012-09-05 00:20:28 +02:00
|
|
|
background: #f9f9f9;
|
|
|
|
padding: 8px 10px 6px;
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
border-right: 1px solid #dddddd;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li a, .leftmenu ul li a span.ico {
|
|
|
|
-webkit-transition: background 0.2s ease-in-out;
|
2012-09-10 18:03:33 +02:00
|
|
|
-moz-transition: background 0.2s ease-in-out;
|
|
|
|
-ms-transition: background 0.2s ease-in-out;
|
|
|
|
-o-transition: background 0.2s ease-in-out;
|
|
|
|
transition: background 0.2s ease-in-out;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li a:hover {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
color: #000000;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li a:hover span.ico {
|
|
|
|
background-color: #efefef;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li.active a {
|
|
|
|
background-color: #333333;
|
|
|
|
color: #ffffff;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li.active a span.ico {
|
|
|
|
background-color: #111111;
|
|
|
|
border-right: 1px solid #444444;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li.active a span.ico i {
|
|
|
|
background-image: url("../img/glyphicons-halflings-white.png");
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu ul li.hider a {
|
|
|
|
margin-top: 5px;
|
|
|
|
height: 20px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu.lefticon > ul {
|
|
|
|
width: 37px !important;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu.lefticon ul ul {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 20;
|
|
|
|
margin-top: -34px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu.lefticon > ul > li > a > span.text {
|
|
|
|
display: none;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu.lefticon ul ul > li > a {
|
|
|
|
min-width: 200px !important;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.leftmenu.lefticon span.text {
|
|
|
|
padding-right: 15px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
|
|
|
|
/** Navigation icons (mapping to glyphicons-halflings) **/
|
|
|
|
.icon-dashboard {
|
|
|
|
background-position: 0 -24px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.icon-agenda {
|
2013-01-31 10:19:56 +01:00
|
|
|
background-position: 0;
|
|
|
|
background-image: url("../img/glyphicons_045_calendar.png");
|
|
|
|
}
|
|
|
|
.leftmenu ul li.active a span.ico i.icon-agenda {
|
|
|
|
background-image: url("../img/glyphicons_045_calendar_white.png");
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2013-01-02 23:22:12 +01:00
|
|
|
.icon-motion, .icon-motions {
|
2012-09-05 00:20:28 +02:00
|
|
|
background-position: -24px -24px;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-11 00:00:44 +02:00
|
|
|
.icon-assignment, .icon-assignments {
|
2013-02-05 17:05:40 +01:00
|
|
|
background-image: url("../img/glyphicons_041_charts.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
|
|
|
.leftmenu ul li.active a span.ico i.icon-assignment {
|
|
|
|
background-image: url("../img/glyphicons_041_charts_white.png");
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-09-11 00:00:44 +02:00
|
|
|
.icon-participant, .icon-participants {
|
2012-09-05 00:20:28 +02:00
|
|
|
background-position: -168px 0;
|
2011-11-14 19:33:45 +01:00
|
|
|
}
|
2012-09-05 00:20:28 +02:00
|
|
|
.icon-config {
|
2013-05-14 20:20:41 +02:00
|
|
|
background-position: -432px 0px;
|
2012-04-17 09:13:02 +02:00
|
|
|
}
|
2013-01-31 10:19:56 +01:00
|
|
|
.icon-welcome {
|
|
|
|
background-position: 0 -24px;
|
|
|
|
}
|
|
|
|
.icon-live_view {
|
|
|
|
background-position: -432px -48px;
|
|
|
|
}
|
|
|
|
.icon-overlays {
|
|
|
|
background-position: -120px 0px;
|
|
|
|
}
|
|
|
|
.icon-custom_slide {
|
|
|
|
background-position: -120px 0px;
|
|
|
|
}
|
2013-02-05 17:05:40 +01:00
|
|
|
.icon-personal_info {
|
|
|
|
background-position: -312px -24px;
|
|
|
|
}
|
2013-04-22 19:59:05 +02:00
|
|
|
.icon-append_to_list_of_speakers {
|
|
|
|
background-position: -48px -144px;
|
|
|
|
}
|
2013-10-04 11:38:39 +02:00
|
|
|
.icon-presentations {
|
|
|
|
background-position: -264px -48px;
|
|
|
|
}
|
2013-01-08 23:05:35 +01:00
|
|
|
/** More glyphicons free icons **/
|
2013-02-05 11:24:41 +01:00
|
|
|
.status_link .icon-on, .icon-checked-new {
|
2013-01-08 23:05:35 +01:00
|
|
|
background-image: url("../img/glyphicons_152_check.png");
|
2013-01-31 10:19:56 +01:00
|
|
|
background-position: 0;
|
2013-01-08 23:05:35 +01:00
|
|
|
}
|
2013-02-05 17:05:40 +01:00
|
|
|
.icon-checked-new_white {
|
|
|
|
background-image: url("../img/glyphicons_152_check_white.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-01-31 10:19:56 +01:00
|
|
|
.status_link .icon-off, .icon-unchecked-new {
|
2013-01-08 23:05:35 +01:00
|
|
|
background-image: url("../img/glyphicons_153_unchecked.png");
|
2013-01-31 10:19:56 +01:00
|
|
|
background-position: 0;
|
|
|
|
}
|
|
|
|
.icon-summary {
|
|
|
|
background-image: url("../img/glyphicons_154_more_windows.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
|
|
|
.icon-summary.icon-white {
|
|
|
|
background-image: url("../img/glyphicons_154_more_windows_white.png");
|
|
|
|
background-position: 0;
|
2013-01-08 23:05:35 +01:00
|
|
|
}
|
2013-01-31 10:19:56 +01:00
|
|
|
.icon-login {
|
|
|
|
background-image: url("../img/glyphicons_044_keys.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
|
|
|
.icon-group {
|
|
|
|
background-image: url("../img/glyphicons_043_group.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
|
|
|
.icon-import {
|
|
|
|
background-image: url("../img/glyphicons_358_file_import.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-02-05 11:24:41 +01:00
|
|
|
.icon-delete {
|
|
|
|
background-image: url("../img/glyphicons_256_delete.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-02-05 20:40:55 +01:00
|
|
|
.icon-add-user {
|
|
|
|
background-image: url("../img/glyphicons_006_user_add.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-02-11 23:01:48 +01:00
|
|
|
.icon-clock {
|
|
|
|
background-image: url("../img/glyphicons_054_clock.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-05-06 20:17:13 +02:00
|
|
|
.icon-speaker {
|
|
|
|
background-image: url("../img/glyphicons_300_microphone.png");
|
|
|
|
background-position: 0;
|
|
|
|
}
|
2013-02-05 20:40:55 +01:00
|
|
|
|
2012-09-05 00:20:28 +02:00
|
|
|
|
|
|
|
/** Responsive **/
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.row-fluid .leftmenu {
|
|
|
|
float: left;
|
2013-04-22 19:59:05 +02:00
|
|
|
width: auto;
|
2012-09-05 00:20:28 +02:00
|
|
|
}
|
|
|
|
#content {
|
|
|
|
margin: 0 5px 0 45px;
|
2013-04-22 19:59:05 +02:00
|
|
|
width: auto;
|
2012-09-05 00:20:28 +02:00
|
|
|
}
|
2012-09-05 07:54:01 +02:00
|
|
|
/* hide optional column */
|
|
|
|
.optional {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-04-20 22:43:12 +02:00
|
|
|
}
|