968083e9e5
- Added QuickEdit mode for related agenda items - show/hide hidden agenda items - Added ng-dialog for modal create/update dialogs of customslides - use generic links for list of speakers, edit, delete, project - Moved projector elements to sidebar of index template (In progress! It will be improved with new base template design). - Fixed error if chat messages is empty. - Moved ngSanitize to base.js to use ng-bind-html in projector slides.
574 lines
11 KiB
CSS
574 lines
11 KiB
CSS
/*
|
|
* OpenSlides default template styles of the web interface
|
|
*/
|
|
|
|
body {
|
|
background-color: #FBFBFB;
|
|
}
|
|
|
|
/* TODO: Move only used custom style for angular templates in new css file */
|
|
.angular-ui-tree-handle {
|
|
background: none repeat scroll 0 0 #f8faff;
|
|
border: 1px solid #dae2ea;
|
|
color: #7c9eb2;
|
|
padding: 10px;
|
|
}
|
|
.angular-ui-tree-handle:hover {
|
|
background: none repeat scroll 0 0 #f4f6f7;
|
|
border-color: #dce2e8;
|
|
color: #438eb9;
|
|
}
|
|
.angular-ui-tree-placeholder {
|
|
background: none repeat scroll 0 0 #f0f9ff;
|
|
border: 2px dashed #bed2db;
|
|
box-sizing: border-box;
|
|
}
|
|
.countdown.panel, .message.panel {
|
|
margin-bottom: 7px;
|
|
}
|
|
.countdown .panel-heading {
|
|
padding: 3px 15px;
|
|
}
|
|
.countdown .panel-body {
|
|
padding: 5px 15px;
|
|
}
|
|
.message .panel-body {
|
|
padding: 10px 15px;
|
|
}
|
|
.countdown_timer {
|
|
font-size: 2.2em;
|
|
font-weight: bold;
|
|
}
|
|
.countdown .editicon, .message .editicon {
|
|
padding-right: 10px;
|
|
}
|
|
.vcenter {
|
|
vertical-align: middle;
|
|
}
|
|
.notNull {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
.spacer, .spacer-top {
|
|
margin-top: 7px;
|
|
}
|
|
.spacer-right {
|
|
margin-right: 5px;
|
|
}
|
|
.hoverActions {
|
|
font-size: 85%;
|
|
}
|
|
.hiddenDiv {
|
|
visibility: hidden;
|
|
}
|
|
/* override bootstraps's progress bar for poll results */
|
|
.pollresults .progress {
|
|
height: 12px;
|
|
margin-bottom: 0;
|
|
}
|
|
/* voting results */
|
|
.result_label {
|
|
margin-top: 5px;
|
|
}
|
|
/* background colors for table rows */
|
|
tr.offline td, li.offline {
|
|
background-color: #EAEAEA !important;
|
|
}
|
|
tr.hiddenrow td {
|
|
background-color: #e5e5e5;
|
|
}
|
|
tr.activeline td, li.activeline, .projected {
|
|
background-color: #bed4de;
|
|
}
|
|
tr.selected td {
|
|
background-color: #ff9999;
|
|
}
|
|
|
|
/* override ngdialog-theme-default */
|
|
.ngdialog.ngdialog-theme-default {
|
|
padding-top: 50px;
|
|
}
|
|
.ngdialog.ngdialog-theme-default.wide-form .ngdialog-content {
|
|
width: 650px;
|
|
}
|
|
.ngdialog h2 {
|
|
margin-top: 5px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
|
|
|
|
/* ngAnimate classes */
|
|
.animate-item.ng-enter {
|
|
-webkit-animation: fade-in 1s linear;
|
|
animation: fade-in 1.5s linear;
|
|
}
|
|
.animate-item.ng-leave {
|
|
-webkit-animation: fade-out 1s linear;
|
|
animation: fade-out 1.5s linear;
|
|
}
|
|
|
|
@keyframes fade-out {
|
|
0% { opacity: 1; background: none; }
|
|
25% { opacity: 1; background: #f8efc0; }
|
|
100% { opacity: 0; background: none; }
|
|
}
|
|
@keyframes fade-in {
|
|
0% { opacity: 0; background: none; }
|
|
25% { opacity: 1; background: #dff0d8; }
|
|
100% { opacity: 1; background: none; }
|
|
}
|
|
|
|
/* Chatbox */
|
|
#chatbox {
|
|
position: fixed;
|
|
top: 50px;
|
|
right: 0;
|
|
width: 40%;
|
|
border-color: #dddddd;
|
|
border-width: 1px;
|
|
box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.2);
|
|
height: 200px;
|
|
padding: 0 10px 10px 10px;
|
|
z-index: 99;
|
|
}
|
|
#chatbox-text {
|
|
overflow-y: scroll;
|
|
height: 190px;
|
|
}
|
|
/* Header */
|
|
#header {
|
|
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);
|
|
border-radius: 0;
|
|
height: 35px;
|
|
margin-bottom: 20px;
|
|
padding: 7px 20px 0;
|
|
position: relative;
|
|
}
|
|
.navbar-brand {
|
|
padding: 2px;
|
|
height: 40px;
|
|
}
|
|
.navbar-text {
|
|
margin-top: 9px;
|
|
}
|
|
#logo {
|
|
height: 30px;
|
|
padding-left: 3px;
|
|
}
|
|
#header .title {
|
|
font-size: 16px;
|
|
color: #999999;
|
|
position: absolute;
|
|
margin: 8px 0 0 50px;
|
|
}
|
|
#searchform {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
footer {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Headings and Links */
|
|
h1 {
|
|
border-bottom: 1px solid #EEEEEE;
|
|
margin: 0px 0 30px;
|
|
padding-bottom: 9px;
|
|
}
|
|
#submenu {
|
|
float: right;
|
|
font-size: 85%;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 15px;
|
|
}
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Login page */
|
|
#login-page.container {
|
|
width: 320px;
|
|
margin-top: 20px;
|
|
}
|
|
#login-page h2 {
|
|
margin-left: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
#login-page h2 img {
|
|
width: 250px;
|
|
}
|
|
#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;
|
|
}
|
|
|
|
/* List tables */
|
|
th.sortable:hover, tr.pointer:hover, .pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
/* iframe for live view */
|
|
#iframe {
|
|
width: 1024px;
|
|
height: 768px;
|
|
-moz-transform-origin: 0 0;
|
|
-webkit-transform-origin: 0 0;
|
|
-o-transform-origin: 0 0;
|
|
transform-origin: 0 0 0;
|
|
-moz-transform: scale(0.25);
|
|
-webkit-transform: scale(0.25);
|
|
-o-transform: scale(0.25);
|
|
transform: scale(0.25);
|
|
/* IE8+ - must be on one line, unfortunately */
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.25, M12=0, M21=0, M22=0.25, SizingMethod='auto expand')";
|
|
}
|
|
#iframewrapper {
|
|
width: 256px;
|
|
height: 192px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 1px solid #D5D5D5;
|
|
margin-bottom: 10px;
|
|
}
|
|
#iframeoverlay {
|
|
width: 256px;
|
|
height: 192px;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: block;
|
|
z-index: 1;
|
|
}
|
|
|
|
|
|
/* Log */
|
|
#log {
|
|
padding-left: 14px;
|
|
}
|
|
|
|
/** Utils **/
|
|
div.import .label {
|
|
color: #333 !important;
|
|
font-size: 100%;
|
|
font-weight: normal;
|
|
}
|
|
div.import > div > input[type="text"] {
|
|
width: 30px;
|
|
}
|
|
.white-space-pre-line {
|
|
white-space: pre-line;
|
|
}
|
|
|
|
|
|
|
|
.nopadding {
|
|
padding: 0;
|
|
}
|
|
.alert form {
|
|
margin-bottom: 0;
|
|
}
|
|
.slimlist {
|
|
padding-left: 20px;
|
|
}
|
|
.smallhr {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
border-color: #cccccc;
|
|
}
|
|
.resultcolumn {
|
|
font-weight: bold;
|
|
}
|
|
.nobr {
|
|
white-space: nowrap;
|
|
}
|
|
.right {
|
|
float: right;
|
|
}
|
|
.indentation {
|
|
margin-left: 12px;
|
|
}
|
|
.firstColumn {
|
|
width: 55px;
|
|
}
|
|
.deleteColumn {
|
|
text-align: center;
|
|
background-color: #ff9999 !important;
|
|
}
|
|
.switch.checked {
|
|
background-color: #ff9999 !important;
|
|
border-color: #ff9999;
|
|
}
|
|
|
|
|
|
.minimum, .mini_width {
|
|
width: 1px;
|
|
}
|
|
/* show optional column */
|
|
.optional {
|
|
display: auto;
|
|
}
|
|
.user_details fieldset {
|
|
margin-bottom: 10px;
|
|
}
|
|
.user_details legend {
|
|
margin-bottom: 5px;
|
|
}
|
|
.user_details label {
|
|
font-weight: bold;
|
|
margin: 10px 0 0 0;
|
|
display: block;
|
|
}
|
|
.user_details label:after {
|
|
content: ":";
|
|
}
|
|
|
|
/** Colors **/
|
|
.grey {
|
|
color: grey;
|
|
}
|
|
|
|
/** Forms **/
|
|
|
|
/* Fix the top position by using fa-icons
|
|
* in bootstrap's form elements with form-control-feedback */
|
|
.has-feedback i.form-control-feedback {
|
|
top: 35px;
|
|
}
|
|
legend + .control-group {
|
|
margin-top: 0px !important;
|
|
}
|
|
#id_permissions {
|
|
height: 310px;
|
|
width: auto;
|
|
}
|
|
#id_users {
|
|
height: 110px;
|
|
width: auto;
|
|
}
|
|
#dataTable_filter input {
|
|
width: auto;
|
|
}
|
|
#dataTable {
|
|
clear: none;
|
|
}
|
|
#dataTable_wrapper .row-fluid:after {
|
|
clear: none;
|
|
}
|
|
.searchresults li {
|
|
margin-bottom: 15px;
|
|
}
|
|
.searchresults li .app {
|
|
color: #999999;
|
|
}
|
|
.highlighted {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* ckeditor plugin insertpre: textarea style */
|
|
table.cke_dialog_contents textarea {
|
|
font-family: monospace !important;
|
|
}
|
|
|
|
|
|
/** Left sidebar navigation **/
|
|
.leftmenu ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
.leftmenu ul ul {
|
|
display: none;
|
|
margin-left: 35px;
|
|
margin-top: -1px;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
|
}
|
|
.leftmenu ul li {
|
|
display: block;
|
|
width: 100%;
|
|
line-height: 22px;
|
|
}
|
|
.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;
|
|
padding: 0;
|
|
}
|
|
.leftmenu ul li:first-child a {
|
|
border-top: 1px solid #DDDDDD;
|
|
}
|
|
.leftmenu ul li a span.ico {
|
|
display: inline-block;
|
|
background: #f9f9f9;
|
|
padding: 8px 10px 6px;
|
|
margin: 0 5px 0 0;
|
|
border-right: 1px solid #dddddd;
|
|
width: 35px;
|
|
}
|
|
.leftmenu ul li a, .leftmenu ul li a span.ico {
|
|
-webkit-transition: background 0.2s ease-in-out;
|
|
-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;
|
|
}
|
|
.leftmenu ul li a:hover {
|
|
background-color: #f5f5f5;
|
|
color: #000000;
|
|
}
|
|
.leftmenu ul li a:hover span.ico {
|
|
background-color: #efefef;
|
|
}
|
|
.leftmenu ul li.active a {
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
}
|
|
.leftmenu ul li.active a span.ico {
|
|
background-color: #333333;
|
|
border-right: 1px solid #444444;
|
|
}
|
|
.leftmenu ul li.hider a {
|
|
margin-top: 5px;
|
|
height: 20px;
|
|
}
|
|
.leftmenu.lefticon > ul {
|
|
width: 37px !important;
|
|
}
|
|
.leftmenu.lefticon ul ul {
|
|
position: absolute;
|
|
z-index: 20;
|
|
margin-top: -34px;
|
|
}
|
|
.leftmenu.lefticon > ul > li > a > span.text {
|
|
/*display: none;*/
|
|
}
|
|
.leftmenu.lefticon ul > li > a {
|
|
min-width: 150px !important;
|
|
}
|
|
.leftmenu.lefticon span.text {
|
|
padding-right: 15px;
|
|
}
|
|
|
|
/** Icons **/
|
|
/* TODO: Move some of them to the respective apps. */
|
|
.status_link .icon-on, .icon-checked-new {
|
|
background-image: url("../img/glyphicons_152_check.png");
|
|
background-position: 0;
|
|
}
|
|
.icon-checked-new_white {
|
|
background-image: url("../img/glyphicons_152_check_white.png");
|
|
background-position: 0;
|
|
}
|
|
.status_link .icon-off, .icon-unchecked-new {
|
|
background-image: url("../img/glyphicons_153_unchecked.png");
|
|
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;
|
|
}
|
|
.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;
|
|
}
|
|
.icon-delete {
|
|
background-image: url("../img/glyphicons_256_delete.png");
|
|
background-position: 0;
|
|
}
|
|
.icon-add-user {
|
|
background-image: url("../img/glyphicons_006_user_add.png");
|
|
background-position: 0;
|
|
}
|
|
.icon-clock {
|
|
background-image: url("../img/glyphicons_054_clock.png");
|
|
background-position: 0;
|
|
}
|
|
.icon-speaker {
|
|
background-image: url("../img/glyphicons_300_microphone.png");
|
|
background-position: 0;
|
|
}
|
|
|
|
/** Responsive **/
|
|
@media (max-width: 767px) {
|
|
body {
|
|
padding: 0;
|
|
}
|
|
.row-fluid .leftmenu {
|
|
float: left;
|
|
width: auto;
|
|
}
|
|
#content {
|
|
margin: 0 5px 0 45px;
|
|
width: auto;
|
|
}
|
|
/* hide optional column */
|
|
.optional, #searchform #id_q {
|
|
display: none;
|
|
}
|
|
#searchform button {
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
body {
|
|
padding: 0;
|
|
}
|
|
.row-fluid .leftmenu {
|
|
float: left;
|
|
width: auto;
|
|
}
|
|
#header {
|
|
padding: 7px 5px 0;
|
|
}
|
|
#content {
|
|
margin: 0 5px 0 45px;
|
|
width: auto;
|
|
}
|
|
/* hide optional column */
|
|
.optional, .optional-small{
|
|
display: none;
|
|
}
|
|
#menu-overview .manage, .agenda_list .manage {
|
|
width: 50px !important;
|
|
}
|
|
}
|
|
|
|
/* Hide elements with os-perms-lite */
|
|
.os-perms-lite {
|
|
display: none !important;
|
|
}
|