diff --git a/main/css/academica/dataTable.css b/main/css/academica/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/academica/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/academica/default.css b/main/css/academica/default.css
deleted file mode 100755
index 44bfe3a3da..0000000000
--- a/main/css/academica/default.css
+++ /dev/null
@@ -1,1056 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FE9A2E;
-}
-a:active {
- text-decoration: none;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background: #505f6b; /* Old browsers */
- background: -moz-linear-gradient(top, #505f6b 0%, #3e4f5c 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#505f6b), color-stop(100%,#3e4f5c)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* IE10+ */
- background: linear-gradient(to bottom, #505f6b 0%,#3e4f5c 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#505f6b', endColorstr='#3e4f5c',GradientType=0 ); /* IE6-9 */
- border: none;
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #3A4751;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- border: 1px solid rgba(255, 255, 255, 0.2);
- box-shadow:0 1px 1px rgba(0, 0, 0, 0.15) inset;
- line-height: 13px;
- margin-top: 5px;
-}
-
-.subnav li a {
- color:#fff;
-}
-#main .nav .dropdown .dropdown-toggle{
- background: #f68a7a; /* Old browsers */
- background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
- background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- line-height: 23px;
-}
-#main .nav .dropdown .dropdown-toggle:hover{
- background: #f68a7a; /* Old browsers */
- background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
- background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- line-height: 23px;
- margin-top: 0;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- color: #fff;
- background-color: #3A4751;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- border: none;
- box-shadow:0 1px 1px rgba(0, 0, 0, 0.15) inset;
- line-height: 15px;
- margin-top: 5px;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-.dropdown .dropdown-menu li a:hover {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-#logout_button{
- margin-top: 4px;
-}
-#logout_button:hover{
- margin-top: 6px;
- background: none;
- box-shadow: none;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
- .page-section{
- background:url(images/bg-header.jpg) repeat-x;
- margin-top: -5px;
- }
-.navbar-inner{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
-}
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #3A4751;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.controls .btn{
- background: #f68a7a; /* Old browsers */
- background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
- background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.controls .btn:hover{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #ef7f70 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#ef7f70)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#ef7f70 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#ef7f70',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background-color: #E1E1E0;
- background-image: none;
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #E1E1E0;
- box-shadow: none;
- height: 25px;
-}
-.breadcrumb a{
- color: #333;
- f
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 17px;
- text-transform: none;
- color: #FFFFFF;
-}
-.breadcrumb a.btn-success {
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- border: 1px solid #FD6600;
- color: #FFFFFF;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.breadcrumb a.btn-success:hover{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #ef7f70 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#ef7f70)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#ef7f70 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#ef7f70',GradientType=0 ); /* IE6-9 */
-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn{
- display: inline-block;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.428571429;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- cursor: pointer;
- color: #FFFFFF;
- background: #606e78; /* Old browsers */
- background: -moz-linear-gradient(top, #606e78 0%, #495864 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#606e78), color-stop(100%,#495864)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #606e78 0%,#495864 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #606e78 0%,#495864 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #606e78 0%,#495864 100%); /* IE10+ */
- background: linear-gradient(to bottom, #606e78 0%,#495864 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606e78', endColorstr='#495864',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
-}
-.btn:hover{
- background: #6f8091; /* Old browsers */
- background: -moz-linear-gradient(top, #6f8091 0%, #4d5963 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6f8091), color-stop(100%,#4d5963)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #6f8091 0%,#4d5963 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #6f8091 0%,#4d5963 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #6f8091 0%,#4d5963 100%); /* IE10+ */
- background: linear-gradient(to bottom, #6f8091 0%,#4d5963 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6f8091', endColorstr='#4d5963',GradientType=0 ); /* IE6-9 */
- color: #ffffff;
- text-decoration: none;
-}
-.btn-primary{
- background: #f68a7a; /* Old browsers */
- background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
- background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 3px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn-primary:hover{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #ef7f70 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#ef7f70)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#ef7f70 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#ef7f70',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
-
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- font-weight: normal;
- background: #E6E6E6;
- color: #666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
- background: #FFFFFF;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #666;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background: #f2f2f2; /* Old browsers */
-background: -moz-linear-gradient(top, #f2f2f2 0%, #fcfcfc 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f2f2f2 0%,#fcfcfc 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
- border: 1px solid rgba(243,226,169, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- margin-right: 10px;
- width: 260px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- /*color: #DE3A01;*/
-}
-#homepage .row .span9 a:hover{
- /*color: #DE3A01;*/
-}
-.page-header h2{
- color: #666;
- font-weight: bold;
- font-size: 18px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #666;
- font-weight: bold;
-
-
-}
-.page-header {
- border-bottom-color: #CCCCCC;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background: #f2f2f2; /* Old browsers */
- background: -moz-linear-gradient(top, #f2f2f2 0%, #fcfcfc 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* IE10+ */
- background: linear-gradient(to bottom, #f2f2f2 0%,#fcfcfc 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
- border: 1px solid rgba(243,226,169, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background: #505f6b; /* Old browsers */
- background: -moz-linear-gradient(top, #505f6b 0%, #3e4f5c 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#505f6b), color-stop(100%,#3e4f5c)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* IE10+ */
- background: linear-gradient(to bottom, #505f6b 0%,#3e4f5c 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#505f6b', endColorstr='#3e4f5c',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: 5px solid #B0BEBC;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-.user_login_icon{
- background: url(images/user_icon.png) no-repeat 5px center;
-}
-.user_password_icon{
- background: url(images/user_password.png) no-repeat 5px center;
-}
-.form-vertical .controls input.span2{
- padding-left: 25px;
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image
-button.add {
- background-image:url(images/button_add.gif);
-
-}
-/*including "cancel" image
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image
-button.search {
- background-image:url(images/bg-button.gif);
-
-}
-/*including "plus" image
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image
-button.next {
- background-image:url(images/button_next.gif) !important;
-}
-/*including "back" image
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-*/
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
- display: inline-block;
- padding: 3px 25px;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.428571429;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- cursor: pointer;
- color: #FFFFFF;
- background: #606e78; /* Old browsers */
- background: -moz-linear-gradient(top, #606e78 0%, #495864 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#606e78), color-stop(100%,#495864)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #606e78 0%,#495864 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #606e78 0%,#495864 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #606e78 0%,#495864 100%); /* IE10+ */
- background: linear-gradient(to bottom, #606e78 0%,#495864 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606e78', endColorstr='#495864',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
-}
-.bottom_actions_fixed{
- background: #f2f2f2; /* Old browsers */
-background: -moz-linear-gradient(top, #f2f2f2 0%, #fcfcfc 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f2f2f2 0%,#fcfcfc 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f2f2f2 0%,#fcfcfc 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 15px;
- color: #FFFFFF;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
- .welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
- #homepage .row .span9 h2 {
- color: #666;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/academica/frames.css b/main/css/academica/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/academica/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/academica/images/2leftarrow.gif b/main/css/academica/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/academica/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/academica/images/2rightarrow.gif b/main/css/academica/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/academica/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/academica/images/bg-button.gif b/main/css/academica/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/academica/images/bg-button.gif and /dev/null differ
diff --git a/main/css/academica/images/bg-header.jpg b/main/css/academica/images/bg-header.jpg
deleted file mode 100755
index 7f8d86fe15..0000000000
Binary files a/main/css/academica/images/bg-header.jpg and /dev/null differ
diff --git a/main/css/academica/images/bg-main.png b/main/css/academica/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/academica/images/bg-main.png and /dev/null differ
diff --git a/main/css/academica/images/blue_arrow.png b/main/css/academica/images/blue_arrow.png
deleted file mode 100755
index f16ae578df..0000000000
Binary files a/main/css/academica/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/academica/images/bullet.gif b/main/css/academica/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/academica/images/bullet.gif and /dev/null differ
diff --git a/main/css/academica/images/button_accept.gif b/main/css/academica/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/academica/images/button_accept.gif and /dev/null differ
diff --git a/main/css/academica/images/button_add.gif b/main/css/academica/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/academica/images/button_add.gif and /dev/null differ
diff --git a/main/css/academica/images/button_back.gif b/main/css/academica/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/academica/images/button_back.gif and /dev/null differ
diff --git a/main/css/academica/images/button_delete.gif b/main/css/academica/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/academica/images/button_delete.gif and /dev/null differ
diff --git a/main/css/academica/images/button_login.gif b/main/css/academica/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/academica/images/button_login.gif and /dev/null differ
diff --git a/main/css/academica/images/button_minus.gif b/main/css/academica/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/academica/images/button_minus.gif and /dev/null differ
diff --git a/main/css/academica/images/button_next.gif b/main/css/academica/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/academica/images/button_next.gif and /dev/null differ
diff --git a/main/css/academica/images/button_refresh.gif b/main/css/academica/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/academica/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/academica/images/button_search.gif b/main/css/academica/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/academica/images/button_search.gif and /dev/null differ
diff --git a/main/css/academica/images/button_upload.gif b/main/css/academica/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/academica/images/button_upload.gif and /dev/null differ
diff --git a/main/css/academica/images/chamilo-welcome.png b/main/css/academica/images/chamilo-welcome.png
deleted file mode 100755
index 7dfc66ea88..0000000000
Binary files a/main/css/academica/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/academica/images/dataTable/Sorting icons.psd b/main/css/academica/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/academica/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/academica/images/dataTable/back_disabled.jpg b/main/css/academica/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/academica/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/academica/images/dataTable/back_enabled.jpg b/main/css/academica/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/academica/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/academica/images/dataTable/favicon.ico b/main/css/academica/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/academica/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/academica/images/dataTable/forward_disabled.jpg b/main/css/academica/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/academica/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/academica/images/dataTable/forward_enabled.jpg b/main/css/academica/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/academica/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/academica/images/dataTable/sort_asc.png b/main/css/academica/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/academica/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/academica/images/dataTable/sort_asc_disabled.png b/main/css/academica/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/academica/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/academica/images/dataTable/sort_both.png b/main/css/academica/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/academica/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/academica/images/dataTable/sort_desc.png b/main/css/academica/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/academica/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/academica/images/dataTable/sort_desc_disabled.png b/main/css/academica/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/academica/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/academica/images/header-logo.png b/main/css/academica/images/header-logo.png
deleted file mode 100755
index ed64bdb840..0000000000
Binary files a/main/css/academica/images/header-logo.png and /dev/null differ
diff --git a/main/css/academica/images/help2.png b/main/css/academica/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/academica/images/help2.png and /dev/null differ
diff --git a/main/css/academica/images/icon-chamilo.png b/main/css/academica/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/academica/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/academica/images/loading.gif b/main/css/academica/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/academica/images/loading.gif and /dev/null differ
diff --git a/main/css/academica/images/portal.png b/main/css/academica/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/academica/images/portal.png and /dev/null differ
diff --git a/main/css/academica/images/refresh.png b/main/css/academica/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/academica/images/refresh.png and /dev/null differ
diff --git a/main/css/academica/images/sprite-icon-social.png b/main/css/academica/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/academica/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/academica/images/sprite-icon.png b/main/css/academica/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/academica/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/academica/images/start-level.png b/main/css/academica/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/academica/images/start-level.png and /dev/null differ
diff --git a/main/css/academica/images/user_icon.png b/main/css/academica/images/user_icon.png
deleted file mode 100755
index cdb2d3ac4e..0000000000
Binary files a/main/css/academica/images/user_icon.png and /dev/null differ
diff --git a/main/css/academica/images/user_password.png b/main/css/academica/images/user_password.png
deleted file mode 100755
index 77cab16886..0000000000
Binary files a/main/css/academica/images/user_password.png and /dev/null differ
diff --git a/main/css/academica/images/vineta.png b/main/css/academica/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/academica/images/vineta.png and /dev/null differ
diff --git a/main/css/academica/images/white_arrow.png b/main/css/academica/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/academica/images/white_arrow.png and /dev/null differ
diff --git a/main/css/academica/learnpath.css b/main/css/academica/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/academica/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/academica/print.css b/main/css/academica/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/academica/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/academica/scorm.css b/main/css/academica/scorm.css
deleted file mode 100755
index 20d9040ed4..0000000000
--- a/main/css/academica/scorm.css
+++ /dev/null
@@ -1,33 +0,0 @@
-/* copy of default_scorm.css */
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #505f6b; /* Old browsers */
- background: -moz-linear-gradient(top, #505f6b 0%, #3e4f5c 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#505f6b), color-stop(100%,#3e4f5c)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #505f6b 0%,#3e4f5c 100%); /* IE10+ */
- background: linear-gradient(to bottom, #505f6b 0%,#3e4f5c 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#505f6b', endColorstr='#3e4f5c',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 5px;
- padding-bottom: 5px;
-}
\ No newline at end of file
diff --git a/main/css/academica/scormfs.css b/main/css/academica/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/academica/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/baby_orange/dataTable.css b/main/css/baby_orange/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/baby_orange/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/baby_orange/default.css b/main/css/baby_orange/default.css
deleted file mode 100755
index bc5b7c0225..0000000000
--- a/main/css/baby_orange/default.css
+++ /dev/null
@@ -1,956 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FE9A2E;
-}
-a:active {
- text-decoration: none;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
- text-shadow: none;
-}
-.subnav .navbar-inner {
- background: #F9F9F9;
- border: 1px solid #E1E1E0;
- margin-bottom: 5px;
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
- color: #666;
- font-weight: normal;
- font-size: 13px;
- box-shadow: 1px 1px #EDEDED !important;
-}
-.subnav .nav > li > a:hover{
- background: #3D3D3D;
- color: #FFFFFF;
- line-height: 22px;
-}
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #EC5923;
- border: 1px solid #EC5923;
- box-shadow:0 1px 1px rgba(0, 0, 0, 0.15) inset;
- line-height: 22px;
-}
-
-.subnav li a {
- color:#fff;
-}
-/*#main .nav .dropdown .dropdown-toggle{
-}
-#main .nav .dropdown .dropdown-toggle:hover{
- margin-top: 0;
-*/
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- color: #fff;
- background-color: #3A4751;
- border: none;
- box-shadow:none;
- line-height: 24px;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-.dropdown .dropdown-menu li a:hover {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-#logout_button{
- margin-top: 4px;
- border: none;
-}
-#logout_button:hover{
- margin-top: 4px;
- background: none;
- box-shadow: none;
-
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
- /*.page-section{
- background:url(images/bg-header.jpg) repeat-x;
- margin-top: -5px;
- }*/
-.navbar-inner{
- background: #ec5923; /* Old browsers */
- background: -moz-linear-gradient(top, #ec5923 0%, #ec5923 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ec5923), color-stop(100%,#ec5923)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ec5923 0%,#ec5923 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ec5923 0%,#ec5923 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ec5923 0%,#ec5923 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ec5923 0%,#ec5923 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec5923', endColorstr='#ec5923',GradientType=0 ); /* IE6-9 */
-
-}
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #3A4751;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.controls .btn{
- background:#EC5923;
- color: #ffffff;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.controls .btn:hover{
- background: #EC5923; /* Old browsers */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #E1E1E0;
- box-shadow: none;
- color: #666;
-}
-.breadcrumb a{
- color: #666;
- font-size: 13px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
- font-size: 14px;
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 17px;
- text-transform: none;
- color: #FFFFFF;
-}
-.breadcrumb a.btn-success {
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- border: 1px solid #FD6600;
- color: #FFFFFF;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.breadcrumb a.btn-success:hover{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #ef7f70 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#ef7f70)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#ef7f70 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#ef7f70',GradientType=0 ); /* IE6-9 */
-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn{
- display: inline-block;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.428571429;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- cursor: pointer;
- color: #FFFFFF;
- background: #3D3D3D; /* Old browsers */
- border:1px solid rgba(0, 0, 0, 0.15);
-}
-.btn:hover{
- background: #4E5B65; /* Old browsers */
- color: #ffffff;
- text-decoration: none;
-}
-.btn-primary{
- background:#EC5923;
- color: #ffffff;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 3px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn-primary:hover{
- background: #EA4E15; /* Old browsers */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
-
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- font-weight: normal;
- background: #E6E6E6;
- color: #666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
- background: #FFFFFF;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #666;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background: #F9F9F9; /* Old browsers */
- border: 1px solid #EDEDED;
- border-radius: 8px;
- box-shadow: none;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- margin-right: 10px;
- width: 260px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- /*color: #DE3A01;*/
-}
-#homepage .row .span9 a:hover{
- /*color: #DE3A01;*/
-}
-.page-header h2{
- color: #666;
- font-weight: bold;
- font-size: 18px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #666;
- font-weight: bold;
-
-
-}
-.page-header {
- border-bottom-color: #CCCCCC;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background: #F9F9F9; /* Old browsers */
- border: 1px solid #EDEDED;
- border-radius: 8px;
- box-shadow: none;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-.bottom_actions_fixed {
- background: #EC5923;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background: #3D3D3D;
- color:#ffffff;
- border-top: 5px solid #CFCFCF;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-.new_actions-fixed{
- top: 49px;
-}
-.user_login_icon{
- background: url(images/user_icon.png) no-repeat 5px center;
-}
-.user_password_icon{
- background: url(images/user_password.png) no-repeat 5px center;
-}
-.form-vertical .controls input.span2{
- padding-left: 25px;
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.png)
-}
-/*including "add" image*/
-.controls .btn.add {
- background-image:url(images/button_plus_green.png);
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/bg-button.png);
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus_blue.png);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.png);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 15px;
- color: #ffffff;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
- .navbar .brand {
- color: #666;
- }
- .navbar .nav-collapse .nav.pull-right a{
- color: #3A4751;
- line-height: 26px;
- }
- .navbar .nav-collapse .nav.pull-right a:hover{
- color: #FFFFFF;
- }
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
- .welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
- #homepage .row .span9 h2 {
- color: #666;
- font-size: 18px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-|}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/baby_orange/frames.css b/main/css/baby_orange/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/baby_orange/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/baby_orange/images/2leftarrow.gif b/main/css/baby_orange/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/baby_orange/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/2rightarrow.gif b/main/css/baby_orange/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/baby_orange/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/bg-button.png b/main/css/baby_orange/images/bg-button.png
deleted file mode 100755
index bdd66f531d..0000000000
Binary files a/main/css/baby_orange/images/bg-button.png and /dev/null differ
diff --git a/main/css/baby_orange/images/bg-header.jpg b/main/css/baby_orange/images/bg-header.jpg
deleted file mode 100755
index 7f8d86fe15..0000000000
Binary files a/main/css/baby_orange/images/bg-header.jpg and /dev/null differ
diff --git a/main/css/baby_orange/images/bg-main.png b/main/css/baby_orange/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/baby_orange/images/bg-main.png and /dev/null differ
diff --git a/main/css/baby_orange/images/blue_arrow.png b/main/css/baby_orange/images/blue_arrow.png
deleted file mode 100755
index 34e662eb0e..0000000000
Binary files a/main/css/baby_orange/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/baby_orange/images/bullet.gif b/main/css/baby_orange/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/baby_orange/images/bullet.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/buttom.png b/main/css/baby_orange/images/buttom.png
deleted file mode 100755
index d675c3d77f..0000000000
Binary files a/main/css/baby_orange/images/buttom.png and /dev/null differ
diff --git a/main/css/baby_orange/images/button_accept.png b/main/css/baby_orange/images/button_accept.png
deleted file mode 100755
index 6fb82d28fe..0000000000
Binary files a/main/css/baby_orange/images/button_accept.png and /dev/null differ
diff --git a/main/css/baby_orange/images/button_delete.gif b/main/css/baby_orange/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/baby_orange/images/button_delete.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/button_login.gif b/main/css/baby_orange/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/baby_orange/images/button_login.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/button_minus.png b/main/css/baby_orange/images/button_minus.png
deleted file mode 100755
index bb6d0befc8..0000000000
Binary files a/main/css/baby_orange/images/button_minus.png and /dev/null differ
diff --git a/main/css/baby_orange/images/button_plus_blue.png b/main/css/baby_orange/images/button_plus_blue.png
deleted file mode 100755
index 78dd59543d..0000000000
Binary files a/main/css/baby_orange/images/button_plus_blue.png and /dev/null differ
diff --git a/main/css/baby_orange/images/button_plus_green.png b/main/css/baby_orange/images/button_plus_green.png
deleted file mode 100755
index fbf0aadfd0..0000000000
Binary files a/main/css/baby_orange/images/button_plus_green.png and /dev/null differ
diff --git a/main/css/baby_orange/images/button_refresh.gif b/main/css/baby_orange/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/baby_orange/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/button_search.gif b/main/css/baby_orange/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/baby_orange/images/button_search.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/button_upload.gif b/main/css/baby_orange/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/baby_orange/images/button_upload.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/chamilo-welcome.png b/main/css/baby_orange/images/chamilo-welcome.png
deleted file mode 100755
index 7dfc66ea88..0000000000
Binary files a/main/css/baby_orange/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/Sorting icons.psd b/main/css/baby_orange/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/baby_orange/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/back_disabled.jpg b/main/css/baby_orange/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/baby_orange/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/back_enabled.jpg b/main/css/baby_orange/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/baby_orange/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/favicon.ico b/main/css/baby_orange/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/baby_orange/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/forward_disabled.jpg b/main/css/baby_orange/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/baby_orange/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/forward_enabled.jpg b/main/css/baby_orange/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/baby_orange/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/sort_asc.png b/main/css/baby_orange/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/baby_orange/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/sort_asc_disabled.png b/main/css/baby_orange/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/baby_orange/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/sort_both.png b/main/css/baby_orange/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/baby_orange/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/sort_desc.png b/main/css/baby_orange/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/baby_orange/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/baby_orange/images/dataTable/sort_desc_disabled.png b/main/css/baby_orange/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/baby_orange/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/baby_orange/images/header-logo.png b/main/css/baby_orange/images/header-logo.png
deleted file mode 100755
index 365c197158..0000000000
Binary files a/main/css/baby_orange/images/header-logo.png and /dev/null differ
diff --git a/main/css/baby_orange/images/help2.png b/main/css/baby_orange/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/baby_orange/images/help2.png and /dev/null differ
diff --git a/main/css/baby_orange/images/icon-chamilo.png b/main/css/baby_orange/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/baby_orange/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/baby_orange/images/loading.gif b/main/css/baby_orange/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/baby_orange/images/loading.gif and /dev/null differ
diff --git a/main/css/baby_orange/images/next.png b/main/css/baby_orange/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/baby_orange/images/next.png and /dev/null differ
diff --git a/main/css/baby_orange/images/portal.png b/main/css/baby_orange/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/baby_orange/images/portal.png and /dev/null differ
diff --git a/main/css/baby_orange/images/previus.png b/main/css/baby_orange/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/baby_orange/images/previus.png and /dev/null differ
diff --git a/main/css/baby_orange/images/refresh.png b/main/css/baby_orange/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/baby_orange/images/refresh.png and /dev/null differ
diff --git a/main/css/baby_orange/images/sprite-icon-social.png b/main/css/baby_orange/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/baby_orange/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/baby_orange/images/sprite-icon.png b/main/css/baby_orange/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/baby_orange/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/baby_orange/images/start-level.png b/main/css/baby_orange/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/baby_orange/images/start-level.png and /dev/null differ
diff --git a/main/css/baby_orange/images/user_icon.png b/main/css/baby_orange/images/user_icon.png
deleted file mode 100755
index cdb2d3ac4e..0000000000
Binary files a/main/css/baby_orange/images/user_icon.png and /dev/null differ
diff --git a/main/css/baby_orange/images/user_password.png b/main/css/baby_orange/images/user_password.png
deleted file mode 100755
index 77cab16886..0000000000
Binary files a/main/css/baby_orange/images/user_password.png and /dev/null differ
diff --git a/main/css/baby_orange/images/vineta.png b/main/css/baby_orange/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/baby_orange/images/vineta.png and /dev/null differ
diff --git a/main/css/baby_orange/images/white_arrow.png b/main/css/baby_orange/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/baby_orange/images/white_arrow.png and /dev/null differ
diff --git a/main/css/baby_orange/learnpath.css b/main/css/baby_orange/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/baby_orange/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/baby_orange/print.css b/main/css/baby_orange/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/baby_orange/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/baby_orange/scorm.css b/main/css/baby_orange/scorm.css
deleted file mode 100755
index 4973c9f01e..0000000000
--- a/main/css/baby_orange/scorm.css
+++ /dev/null
@@ -1,11 +0,0 @@
-/* copy of default_scorm.css */
-
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 5px;
- padding-bottom: 5px;
-}
\ No newline at end of file
diff --git a/main/css/baby_orange/scormfs.css b/main/css/baby_orange/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/baby_orange/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/base.css b/main/css/base.css
index 742bdfca12..1144e08520 100755
--- a/main/css/base.css
+++ b/main/css/base.css
@@ -2,7 +2,7 @@
* Common CSS for all themes
*/
-@import url('bootstrap.css');
+/* @import url('bootstrap.css');*/
/* some changes to the bootstrap.css */
@@ -471,7 +471,9 @@ span.form_required {
form .formw {
margin-left: 170px;
}
-
+form .form-button-login{
+ margin-top: 5px;
+}
form .formw input {
float:left;
}
@@ -600,32 +602,6 @@ footer {
height: 9em; /* Very important */
}
-footer .container .row {
- padding-top: 50px;
-}
-
-footer #footer_left {
- overflow-y : auto;
- max-height:50px;
- padding: 5px;
-}
-
-footer #footer_right {
- float: right;
-}
-
-#footer_right #admin_name, #footer_right #software_name{
- text-align:right;
-}
-
-.page-header {
- padding-bottom: 10px;
- border-bottom: 1px solid #ddd;
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-
#topbar_push {
height: 55px;
}
diff --git a/main/css/bg-scrollbar-thumb-y.png b/main/css/bg-scrollbar-thumb-y.png
deleted file mode 100755
index 2f80cdca15..0000000000
Binary files a/main/css/bg-scrollbar-thumb-y.png and /dev/null differ
diff --git a/main/css/bg-scrollbar-track-y.png b/main/css/bg-scrollbar-track-y.png
deleted file mode 100755
index 8ed4591546..0000000000
Binary files a/main/css/bg-scrollbar-track-y.png and /dev/null differ
diff --git a/main/css/bg-scrollbar-trackend-y.png b/main/css/bg-scrollbar-trackend-y.png
deleted file mode 100755
index 16d740c25a..0000000000
Binary files a/main/css/bg-scrollbar-trackend-y.png and /dev/null differ
diff --git a/main/css/biggerdot.png b/main/css/biggerdot.png
deleted file mode 100755
index 66324b66b4..0000000000
Binary files a/main/css/biggerdot.png and /dev/null differ
diff --git a/main/css/blue_lagoon/dataTable.css b/main/css/blue_lagoon/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/blue_lagoon/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/blue_lagoon/default.css b/main/css/blue_lagoon/default.css
deleted file mode 100755
index 0fb6a2063d..0000000000
--- a/main/css/blue_lagoon/default.css
+++ /dev/null
@@ -1,999 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FD6600;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background-color: #3C678B; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: none;
- border: none;
-}
-
-.subnav .nav > li > a {
- border:none;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #0f466a;
- border-right-color: #0f466a;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: none repeat scroll 0 0 #6D8DA8;
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.controls .btn{
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.controls .btn:hover{
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-
-}
-
-.btn-primary{
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border-radius: 4px;
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn-primary:hover{
- background: #0167ba; /* Old browsers */
- background: -moz-linear-gradient(top, #0167ba 0%, #0f466a 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0167ba), color-stop(100%,#0f466a)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* IE10+ */
- background: linear-gradient(to bottom, #0167ba 0%,#0f466a 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0167ba', endColorstr='#0f466a',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background-color: #b1d6ec;
- background-image: none;
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #B1D6EC;
- box-shadow: none;
- font-size: 12px;
-}
-.breadcrumb a{
- color: #333;
- font-size: 12px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
-
- line-height: 17px;
- text-transform: none;
-}
-.breadcrumb a.btn-success {
- background-color: #FD6600;
- background-image: none;
- border: 1px solid #FD6600;
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-.page-section{
- background: #f4f5f6; /* Old browsers */
-background: -moz-linear-gradient(top, #f4f5f6 0%, #ffffff 25%, #ffffff 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f5f6), color-stop(25%,#ffffff), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f4f5f6 0%,#ffffff 25%,#ffffff 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f5f6', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #24547D;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: #F3F3F4;
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #24547D;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #24547D;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: #F3F3F4;
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background-color: #163650;
- background-image: none;
- background-repeat:repeat-x;
- color:#ffffff;
- border-top: none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat #FD6600;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat #FF9900;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #163650; /* Old browsers */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: rgba(115, 115, 115, 0.90);
-}
-.navbar.subnav.subnav-fixed {
- display: none;
- visibility: hidden;
-}
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/blue_lagoon/frames.css b/main/css/blue_lagoon/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/blue_lagoon/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/blue_lagoon/images/2leftarrow.gif b/main/css/blue_lagoon/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/blue_lagoon/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/2rightarrow.gif b/main/css/blue_lagoon/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/blue_lagoon/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/accept.png b/main/css/blue_lagoon/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/blue_lagoon/images/accept.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/accept_data.png b/main/css/blue_lagoon/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/blue_lagoon/images/accept_data.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/add.png b/main/css/blue_lagoon/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/blue_lagoon/images/add.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/bg-button.gif b/main/css/blue_lagoon/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/blue_lagoon/images/bg-button.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/bg-main.png b/main/css/blue_lagoon/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/blue_lagoon/images/bg-main.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/blue_arrow.png b/main/css/blue_lagoon/images/blue_arrow.png
deleted file mode 100755
index c40ba9fc31..0000000000
Binary files a/main/css/blue_lagoon/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/bullet.gif b/main/css/blue_lagoon/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/blue_lagoon/images/bullet.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/buttom.png b/main/css/blue_lagoon/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/blue_lagoon/images/buttom.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_accept.gif b/main/css/blue_lagoon/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/blue_lagoon/images/button_accept.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_add.gif b/main/css/blue_lagoon/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/blue_lagoon/images/button_add.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_back.gif b/main/css/blue_lagoon/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/blue_lagoon/images/button_back.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_delete.gif b/main/css/blue_lagoon/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/blue_lagoon/images/button_delete.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_login.gif b/main/css/blue_lagoon/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/blue_lagoon/images/button_login.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_minus.gif b/main/css/blue_lagoon/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/blue_lagoon/images/button_minus.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_next.gif b/main/css/blue_lagoon/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/blue_lagoon/images/button_next.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_refresh.gif b/main/css/blue_lagoon/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/blue_lagoon/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_search.gif b/main/css/blue_lagoon/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/blue_lagoon/images/button_search.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/button_upload.gif b/main/css/blue_lagoon/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/blue_lagoon/images/button_upload.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/chamilo-welcome.png b/main/css/blue_lagoon/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/blue_lagoon/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/Sorting icons.psd b/main/css/blue_lagoon/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/back_disabled.jpg b/main/css/blue_lagoon/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/back_enabled.jpg b/main/css/blue_lagoon/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/favicon.ico b/main/css/blue_lagoon/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/forward_disabled.jpg b/main/css/blue_lagoon/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/forward_enabled.jpg b/main/css/blue_lagoon/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/sort_asc.png b/main/css/blue_lagoon/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/sort_asc_disabled.png b/main/css/blue_lagoon/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/sort_both.png b/main/css/blue_lagoon/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/sort_desc.png b/main/css/blue_lagoon/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/dataTable/sort_desc_disabled.png b/main/css/blue_lagoon/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/blue_lagoon/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/error.png b/main/css/blue_lagoon/images/error.png
deleted file mode 100755
index 965d44d7eb..0000000000
Binary files a/main/css/blue_lagoon/images/error.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/header-logo.png b/main/css/blue_lagoon/images/header-logo.png
deleted file mode 100755
index ed64bdb840..0000000000
Binary files a/main/css/blue_lagoon/images/header-logo.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/help2.png b/main/css/blue_lagoon/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/blue_lagoon/images/help2.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/icon-chamilo.png b/main/css/blue_lagoon/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/blue_lagoon/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/install.png b/main/css/blue_lagoon/images/install.png
deleted file mode 100755
index e95b7c7192..0000000000
Binary files a/main/css/blue_lagoon/images/install.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/loading.gif b/main/css/blue_lagoon/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/blue_lagoon/images/loading.gif and /dev/null differ
diff --git a/main/css/blue_lagoon/images/next.png b/main/css/blue_lagoon/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/blue_lagoon/images/next.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/portal.png b/main/css/blue_lagoon/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/blue_lagoon/images/portal.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/previus.png b/main/css/blue_lagoon/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/blue_lagoon/images/previus.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/refresh.png b/main/css/blue_lagoon/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/blue_lagoon/images/refresh.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/sprite-icon-social.png b/main/css/blue_lagoon/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/blue_lagoon/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/sprite-icon.png b/main/css/blue_lagoon/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/blue_lagoon/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/start-level.png b/main/css/blue_lagoon/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/blue_lagoon/images/start-level.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/vineta.png b/main/css/blue_lagoon/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/blue_lagoon/images/vineta.png and /dev/null differ
diff --git a/main/css/blue_lagoon/images/white_arrow.png b/main/css/blue_lagoon/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/blue_lagoon/images/white_arrow.png and /dev/null differ
diff --git a/main/css/blue_lagoon/learnpath.css b/main/css/blue_lagoon/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/blue_lagoon/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/blue_lagoon/print.css b/main/css/blue_lagoon/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/blue_lagoon/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/blue_lagoon/scorm.css b/main/css/blue_lagoon/scorm.css
deleted file mode 100755
index 1fcbb77831..0000000000
--- a/main/css/blue_lagoon/scorm.css
+++ /dev/null
@@ -1,37 +0,0 @@
-/* copy of default_scorm.css */
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #2e75a3; /* Old browsers */
- background: -moz-linear-gradient(top, #2e75a3 0%, #2c678b 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e75a3), color-stop(100%,#2c678b)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2e75a3 0%,#2c678b 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2e75a3 0%,#2c678b 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2e75a3 0%,#2c678b 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2e75a3 0%,#2c678b 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e75a3', endColorstr='#2c678b',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
\ No newline at end of file
diff --git a/main/css/blue_lagoon/scormfs.css b/main/css/blue_lagoon/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/blue_lagoon/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/bootstrap-responsive.css b/main/css/bootstrap-responsive.css
deleted file mode 100755
index 06e55c0b45..0000000000
--- a/main/css/bootstrap-responsive.css
+++ /dev/null
@@ -1,815 +0,0 @@
-/*!
- * Bootstrap Responsive v2.0.4
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- */
-
-.clearfix {
- *zoom: 1;
-}
-
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: "";
-}
-
-.clearfix:after {
- clear: both;
-}
-
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.hidden {
- display: none;
- visibility: hidden;
-}
-
-.visible-phone {
- display: none !important;
-}
-
-.visible-tablet {
- display: none !important;
-}
-
-.hidden-desktop {
- display: none !important;
-}
-
-@media (max-width: 767px) {
- .visible-phone {
- display: inherit !important;
- }
- .hidden-phone {
- display: none !important;
- }
- .hidden-desktop {
- display: inherit !important;
- }
- .visible-desktop {
- display: none !important;
- }
-}
-
-@media (min-width: 768px) and (max-width: 979px) {
- .visible-tablet {
- display: inherit !important;
- }
- .hidden-tablet {
- display: none !important;
- }
- .hidden-desktop {
- display: inherit !important;
- }
- .visible-desktop {
- display: none !important ;
- }
-}
-
-@media (max-width: 480px) {
- .nav-collapse {
- -webkit-transform: translate3d(0, 0, 0);
- }
- .page-header h1 small {
- display: block;
- line-height: 18px;
- }
- input[type="checkbox"],
- input[type="radio"] {
- border: 1px solid #ccc;
- }
- .form-horizontal .control-group > label {
- float: none;
- width: auto;
- padding-top: 0;
- text-align: left;
- }
- .form-horizontal .controls {
- margin-left: 0;
- }
- .form-horizontal .control-list {
- padding-top: 0;
- }
- .form-horizontal .form-actions {
- padding-right: 10px;
- padding-left: 10px;
- }
- .modal {
- position: absolute;
- top: 10px;
- right: 10px;
- left: 10px;
- width: auto;
- margin: 0;
- }
- .modal.fade.in {
- top: auto;
- }
- .modal-header .close {
- padding: 10px;
- margin: -10px;
- }
- .carousel-caption {
- position: static;
- }
-}
-
-@media (max-width: 767px) {
- body {
- padding-right: 20px;
- padding-left: 20px;
- }
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- margin-right: -20px;
- margin-left: -20px;
- }
- .container-fluid {
- padding: 0;
- }
- .dl-horizontal dt {
- float: none;
- width: auto;
- clear: none;
- text-align: left;
- }
- .dl-horizontal dd {
- margin-left: 0;
- }
- .container {
- width: auto;
- }
- .row-fluid {
- width: 100%;
- }
- .row,
- .thumbnails {
- margin-left: 0;
- }
- [class*="span"],
- .row-fluid [class*="span"] {
- display: block;
- float: none;
- width: auto;
- margin-left: 0;
- }
- .input-large,
- .input-xlarge,
- .input-xxlarge,
- input[class*="span"],
- select[class*="span"],
- textarea[class*="span"],
- .uneditable-input {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- }
- .input-prepend input,
- .input-append input,
- .input-prepend input[class*="span"],
- .input-append input[class*="span"] {
- display: inline-block;
- width: auto;
- }
-}
-
-@media (min-width: 768px) and (max-width: 979px) {
- .row {
- margin-left: -20px;
- *zoom: 1;
- }
- .row:before,
- .row:after {
- display: table;
- content: "";
- }
- .row:after {
- clear: both;
- }
- [class*="span"] {
- float: left;
- margin-left: 20px;
- }
- .container,
- .navbar-fixed-top .container,
- .navbar-fixed-bottom .container {
- width: 724px;
- }
- .span12 {
- width: 724px;
- }
- .span11 {
- width: 662px;
- }
- .span10 {
- width: 600px;
- }
- .span9 {
- width: 538px;
- }
- .span8 {
- width: 476px;
- }
- .span7 {
- width: 414px;
- }
- .span6 {
- width: 352px;
- }
- .span5 {
- width: 290px;
- }
- .span4 {
- width: 228px;
- }
- .span3 {
- width: 166px;
- }
- .span2 {
- width: 104px;
- }
- .span1 {
- width: 42px;
- }
- .offset12 {
- margin-left: 764px;
- }
- .offset11 {
- margin-left: 702px;
- }
- .offset10 {
- margin-left: 640px;
- }
- .offset9 {
- margin-left: 578px;
- }
- .offset8 {
- margin-left: 516px;
- }
- .offset7 {
- margin-left: 454px;
- }
- .offset6 {
- margin-left: 392px;
- }
- .offset5 {
- margin-left: 330px;
- }
- .offset4 {
- margin-left: 268px;
- }
- .offset3 {
- margin-left: 206px;
- }
- .offset2 {
- margin-left: 144px;
- }
- .offset1 {
- margin-left: 82px;
- }
- .row-fluid {
- width: 100%;
- *zoom: 1;
- }
- .row-fluid:before,
- .row-fluid:after {
- display: table;
- content: "";
- }
- .row-fluid:after {
- clear: both;
- }
- .row-fluid [class*="span"] {
- display: block;
- float: left;
- width: 100%;
- min-height: 28px;
- margin-left: 2.762430939%;
- *margin-left: 2.709239449638298%;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- }
- .row-fluid [class*="span"]:first-child {
- margin-left: 0;
- }
- .row-fluid .span12 {
- width: 99.999999993%;
- *width: 99.9468085036383%;
- }
- .row-fluid .span11 {
- width: 91.436464082%;
- *width: 91.38327259263829%;
- }
- .row-fluid .span10 {
- width: 82.87292817100001%;
- *width: 82.8197366816383%;
- }
- .row-fluid .span9 {
- width: 74.30939226%;
- *width: 74.25620077063829%;
- }
- .row-fluid .span8 {
- width: 65.74585634900001%;
- *width: 65.6926648596383%;
- }
- .row-fluid .span7 {
- width: 57.182320438000005%;
- *width: 57.129128948638304%;
- }
- .row-fluid .span6 {
- width: 48.618784527%;
- *width: 48.5655930376383%;
- }
- .row-fluid .span5 {
- width: 40.055248616%;
- *width: 40.0020571266383%;
- }
- .row-fluid .span4 {
- width: 31.491712705%;
- *width: 31.4385212156383%;
- }
- .row-fluid .span3 {
- width: 22.928176794%;
- *width: 22.874985304638297%;
- }
- .row-fluid .span2 {
- width: 14.364640883%;
- *width: 14.311449393638298%;
- }
- .row-fluid .span1 {
- width: 5.801104972%;
- *width: 5.747913482638298%;
- }
- input,
- textarea,
- .uneditable-input {
- margin-left: 0;
- }
- input.span12,
- textarea.span12,
- .uneditable-input.span12 {
- width: 714px;
- }
- input.span11,
- textarea.span11,
- .uneditable-input.span11 {
- width: 652px;
- }
- input.span10,
- textarea.span10,
- .uneditable-input.span10 {
- width: 590px;
- }
- input.span9,
- textarea.span9,
- .uneditable-input.span9 {
- width: 528px;
- }
- input.span8,
- textarea.span8,
- .uneditable-input.span8 {
- width: 466px;
- }
- input.span7,
- textarea.span7,
- .uneditable-input.span7 {
- width: 404px;
- }
- input.span6,
- textarea.span6,
- .uneditable-input.span6 {
- width: 342px;
- }
- input.span5,
- textarea.span5,
- .uneditable-input.span5 {
- width: 280px;
- }
- input.span4,
- textarea.span4,
- .uneditable-input.span4 {
- width: 218px;
- }
- input.span3,
- textarea.span3,
- .uneditable-input.span3 {
- width: 156px;
- }
- input.span2,
- textarea.span2,
- .uneditable-input.span2 {
- width: 94px;
- }
- input.span1,
- textarea.span1,
- .uneditable-input.span1 {
- width: 32px;
- }
-}
-
-@media (min-width: 1200px) {
- .row {
- margin-left: -30px;
- *zoom: 1;
- }
- .row:before,
- .row:after {
- display: table;
- content: "";
- }
- .row:after {
- clear: both;
- }
- [class*="span"] {
- float: left;
- margin-left: 30px;
- }
- .container,
- .navbar-fixed-top .container,
- .navbar-fixed-bottom .container {
- width: 1170px;
- }
- .span12 {
- width: 1170px;
- }
- .span11 {
- width: 1070px;
- }
- .span10 {
- width: 970px;
- }
- .span9 {
- width: 870px;
- }
- .span8 {
- width: 770px;
- }
- .span7 {
- width: 670px;
- }
- .span6 {
- width: 570px;
- }
- .span5 {
- width: 470px;
- }
- .span4 {
- width: 370px;
- }
- .span3 {
- width: 270px;
- }
- .span2 {
- width: 170px;
- }
- .span1 {
- width: 70px;
- }
- .offset12 {
- margin-left: 1230px;
- }
- .offset11 {
- margin-left: 1130px;
- }
- .offset10 {
- margin-left: 1030px;
- }
- .offset9 {
- margin-left: 930px;
- }
- .offset8 {
- margin-left: 830px;
- }
- .offset7 {
- margin-left: 730px;
- }
- .offset6 {
- margin-left: 630px;
- }
- .offset5 {
- margin-left: 530px;
- }
- .offset4 {
- margin-left: 430px;
- }
- .offset3 {
- margin-left: 330px;
- }
- .offset2 {
- margin-left: 230px;
- }
- .offset1 {
- margin-left: 130px;
- }
- .row-fluid {
- width: 100%;
- *zoom: 1;
- }
- .row-fluid:before,
- .row-fluid:after {
- display: table;
- content: "";
- }
- .row-fluid:after {
- clear: both;
- }
- .row-fluid [class*="span"] {
- display: block;
- float: left;
- width: 100%;
- min-height: 28px;
- margin-left: 2.564102564%;
- *margin-left: 2.510911074638298%;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- }
- .row-fluid [class*="span"]:first-child {
- margin-left: 0;
- }
- .row-fluid .span12 {
- width: 100%;
- *width: 99.94680851063829%;
- }
- .row-fluid .span11 {
- width: 91.45299145300001%;
- *width: 91.3997999636383%;
- }
- .row-fluid .span10 {
- width: 82.905982906%;
- *width: 82.8527914166383%;
- }
- .row-fluid .span9 {
- width: 74.358974359%;
- *width: 74.30578286963829%;
- }
- .row-fluid .span8 {
- width: 65.81196581200001%;
- *width: 65.7587743226383%;
- }
- .row-fluid .span7 {
- width: 57.264957265%;
- *width: 57.2117657756383%;
- }
- .row-fluid .span6 {
- width: 48.717948718%;
- *width: 48.6647572286383%;
- }
- .row-fluid .span5 {
- width: 40.170940171000005%;
- *width: 40.117748681638304%;
- }
- .row-fluid .span4 {
- width: 31.623931624%;
- *width: 31.5707401346383%;
- }
- .row-fluid .span3 {
- width: 23.076923077%;
- *width: 23.0237315876383%;
- }
- .row-fluid .span2 {
- width: 14.529914530000001%;
- *width: 14.4767230406383%;
- }
- .row-fluid .span1 {
- width: 5.982905983%;
- *width: 5.929714493638298%;
- }
- input,
- textarea,
- .uneditable-input {
- margin-left: 0;
- }
- input.span12,
- textarea.span12,
- .uneditable-input.span12 {
- width: 1160px;
- }
- input.span11,
- textarea.span11,
- .uneditable-input.span11 {
- width: 1060px;
- }
- input.span10,
- textarea.span10,
- .uneditable-input.span10 {
- width: 960px;
- }
- input.span9,
- textarea.span9,
- .uneditable-input.span9 {
- width: 860px;
- }
- input.span8,
- textarea.span8,
- .uneditable-input.span8 {
- width: 760px;
- }
- input.span7,
- textarea.span7,
- .uneditable-input.span7 {
- width: 660px;
- }
- input.span6,
- textarea.span6,
- .uneditable-input.span6 {
- width: 560px;
- }
- input.span5,
- textarea.span5,
- .uneditable-input.span5 {
- width: 460px;
- }
- input.span4,
- textarea.span4,
- .uneditable-input.span4 {
- width: 360px;
- }
- input.span3,
- textarea.span3,
- .uneditable-input.span3 {
- width: 260px;
- }
- input.span2,
- textarea.span2,
- .uneditable-input.span2 {
- width: 160px;
- }
- input.span1,
- textarea.span1,
- .uneditable-input.span1 {
- width: 60px;
- }
- .thumbnails {
- margin-left: -30px;
- }
- .thumbnails > li {
- margin-left: 30px;
- }
- .row-fluid .thumbnails {
- margin-left: 0;
- }
-}
-
-@media (max-width: 979px) {
- body {
- padding-top: 0;
- }
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- position: static;
- }
- .navbar-fixed-top {
- margin-bottom: 18px;
- }
- .navbar-fixed-bottom {
- margin-top: 18px;
- }
- .navbar-fixed-top .navbar-inner,
- .navbar-fixed-bottom .navbar-inner {
- padding: 5px;
- }
- .navbar .container {
- width: auto;
- padding: 0;
- }
- .navbar .brand {
- padding-right: 10px;
- padding-left: 10px;
- margin: 0 0 0 -5px;
- }
- .nav-collapse {
- clear: both;
- }
- .nav-collapse .nav {
- float: none;
- margin: 0 0 9px;
- }
- .nav-collapse .nav > li {
- float: none;
- }
- .nav-collapse .nav > li > a {
- margin-bottom: 2px;
- }
- .nav-collapse .nav > .divider-vertical {
- display: none;
- }
- .nav-collapse .nav .nav-header {
- color: #999999;
- text-shadow: none;
- }
- .nav-collapse .nav > li > a,
- .nav-collapse .dropdown-menu a {
- padding: 6px 15px;
- font-weight: bold;
- color: #999999;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- }
- .nav-collapse .btn {
- padding: 4px 10px 4px;
- font-weight: normal;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- }
- .nav-collapse .dropdown-menu li + li a {
- margin-bottom: 2px;
- }
- .nav-collapse .nav > li > a:hover,
- .nav-collapse .dropdown-menu a:hover {
- background-color: #222222;
- }
- .nav-collapse.in .btn-group {
- padding: 0;
- margin-top: 5px;
- }
- .nav-collapse .dropdown-menu {
- position: static;
- top: auto;
- left: auto;
- display: block;
- float: none;
- max-width: none;
- padding: 0;
- margin: 0 15px;
- background-color: transparent;
- border: none;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .nav-collapse .dropdown-menu:before,
- .nav-collapse .dropdown-menu:after {
- display: none;
- }
- .nav-collapse .dropdown-menu .divider {
- display: none;
- }
- .nav-collapse .navbar-form,
- .nav-collapse .navbar-search {
- float: none;
- padding: 9px 15px;
- margin: 9px 0;
- border-top: 1px solid #222222;
- border-bottom: 1px solid #222222;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
- }
- .navbar .nav-collapse .nav.pull-right {
- float: none;
- margin-left: 0;
- }
- .nav-collapse,
- .nav-collapse.collapse {
- height: 0;
- overflow: hidden;
- }
- .navbar .btn-navbar {
- display: block;
- }
- .navbar-static .navbar-inner {
- padding-right: 10px;
- padding-left: 10px;
- }
-}
-
-@media (min-width: 980px) {
- .nav-collapse.collapse {
- height: auto !important;
- overflow: visible !important;
- }
-}
diff --git a/main/css/bootstrap.css b/main/css/bootstrap.css
index cff5ff496a..c46af7dfbd 100755
--- a/main/css/bootstrap.css
+++ b/main/css/bootstrap.css
@@ -1,13 +1,18 @@
/*!
- * Bootstrap v2.0.4
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
+ * Bootstrap v3.3.2 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
+/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
+html {
+ font-family: sans-serif;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+body {
+ margin: 0;
+}
article,
aside,
details,
@@ -16,40 +21,56 @@ figure,
footer,
header,
hgroup,
+main,
+menu,
nav,
-section {
+section,
+summary {
display: block;
}
-
audio,
canvas,
+progress,
video {
display: inline-block;
- *display: inline;
- *zoom: 1;
+ vertical-align: baseline;
}
-
audio:not([controls]) {
display: none;
+ height: 0;
}
-
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
+[hidden],
+template {
+ display: none;
}
-
-a:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
+a {
+ background-color: transparent;
}
-
-a:hover,
-a:active {
+a:active,
+a:hover {
outline: 0;
}
-
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+b,
+strong {
+ font-weight: bold;
+}
+dfn {
+ font-style: italic;
+}
+h1 {
+ margin: .67em 0;
+ font-size: 2em;
+}
+mark {
+ color: #000;
+ background: #ff0;
+}
+small {
+ font-size: 80%;
+}
sub,
sup {
position: relative;
@@ -57,4925 +78,6489 @@ sup {
line-height: 0;
vertical-align: baseline;
}
-
sup {
- top: -0.5em;
+ top: -.5em;
}
-
sub {
- bottom: -0.25em;
+ bottom: -.25em;
}
-
img {
- max-width: 100%;
- vertical-align: middle;
border: 0;
- -ms-interpolation-mode: bicubic;
}
-
-#map_canvas img {
- max-width: none;
+svg:not(:root) {
+ overflow: hidden;
+}
+figure {
+ margin: 1em 40px;
+}
+hr {
+ height: 0;
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+}
+pre {
+ overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
}
-
button,
input,
+optgroup,
select,
textarea {
margin: 0;
- font-size: 100%;
- vertical-align: middle;
+ font: inherit;
+ color: inherit;
+}
+button {
+ overflow: visible;
}
-
button,
-input {
- *overflow: visible;
- line-height: normal;
+select {
+ text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button;
+ cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+ cursor: default;
}
-
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
-
-button,
-input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
+input {
+ line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+ height: auto;
}
-
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
-
-input[type="search"]::-webkit-search-decoration,
-input[type="search"]::-webkit-search-cancel-button {
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
-
+fieldset {
+ padding: .35em .625em .75em;
+ margin: 0 2px;
+ border: 1px solid #c0c0c0;
+}
+legend {
+ padding: 0;
+ border: 0;
+}
textarea {
overflow: auto;
- vertical-align: top;
}
-
-.clearfix {
- *zoom: 1;
+optgroup {
+ font-weight: bold;
}
-
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: "";
+table {
+ border-spacing: 0;
+ border-collapse: collapse;
}
-
-.clearfix:after {
- clear: both;
+td,
+th {
+ padding: 0;
}
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+ *,
+ *:before,
+ *:after {
+ color: #000 !important;
+ text-shadow: none !important;
+ background: transparent !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
+ }
+ a,
+ a:visited {
+ text-decoration: underline;
+ }
+ a[href]:after {
+ content: " (" attr(href) ")";
+ }
+ abbr[title]:after {
+ content: " (" attr(title) ")";
+ }
+ a[href^="#"]:after,
+ a[href^="javascript:"]:after {
+ content: "";
+ }
+ pre,
+ blockquote {
+ border: 1px solid #999;
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
+ page-break-inside: avoid;
+ }
+ thead {
+ display: table-header-group;
+ }
+ tr,
+ img {
+ page-break-inside: avoid;
+ }
+ img {
+ max-width: 100% !important;
+ }
+ p,
+ h2,
+ h3 {
+ orphans: 3;
+ widows: 3;
+ }
+ h2,
+ h3 {
+ page-break-after: avoid;
+ }
+ select {
+ background: #fff !important;
+ }
+ .navbar {
+ display: none;
+ }
+ .btn > .caret,
+ .dropup > .btn > .caret {
+ border-top-color: #000 !important;
+ }
+ .label {
+ border: 1px solid #000;
+ }
+ .table {
+ border-collapse: collapse !important;
+ }
+ .table td,
+ .table th {
+ background-color: #fff !important;
+ }
+ .table-bordered th,
+ .table-bordered td {
+ border: 1px solid #ddd !important;
+ }
}
+@font-face {
+ font-family: 'Glyphicons Halflings';
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
+ src: url('../fonts/glyphicons-halflings-regular.eot');
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
+.glyphicon {
+ position: relative;
+ top: 1px;
+ display: inline-block;
+ font-family: 'Glyphicons Halflings';
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
-body {
- margin: 0;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- line-height: 18px;
- color: #333333;
- background-color: #ffffff;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
}
-
-a {
- color: #0088cc;
- text-decoration: none;
+.glyphicon-asterisk:before {
+ content: "\2a";
}
-
-a:hover {
- color: #005580;
- text-decoration: underline;
+.glyphicon-plus:before {
+ content: "\2b";
}
-
-.row {
- margin-left: -20px;
- *zoom: 1;
+.glyphicon-euro:before,
+.glyphicon-eur:before {
+ content: "\20ac";
}
-
-.row:before,
-.row:after {
- display: table;
- content: "";
+.glyphicon-minus:before {
+ content: "\2212";
}
-
-.row:after {
- clear: both;
+.glyphicon-cloud:before {
+ content: "\2601";
}
-
-[class*="span"] {
- float: left;
- margin-left: 20px;
+.glyphicon-envelope:before {
+ content: "\2709";
}
-
-.container,
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
+.glyphicon-pencil:before {
+ content: "\270f";
}
-
-.span12 {
- width: 940px;
+.glyphicon-glass:before {
+ content: "\e001";
}
-
-.span11 {
- width: 860px;
+.glyphicon-music:before {
+ content: "\e002";
}
-
-.span10 {
- width: 780px;
+.glyphicon-search:before {
+ content: "\e003";
}
-
-.span9 {
- width: 700px;
+.glyphicon-heart:before {
+ content: "\e005";
}
-
-.span8 {
- width: 620px;
+.glyphicon-star:before {
+ content: "\e006";
}
-
-.span7 {
- width: 540px;
+.glyphicon-star-empty:before {
+ content: "\e007";
}
-
-.span6 {
- width: 460px;
+.glyphicon-user:before {
+ content: "\e008";
}
-
-.span5 {
- width: 380px;
+.glyphicon-film:before {
+ content: "\e009";
}
-
-.span4 {
- width: 300px;
+.glyphicon-th-large:before {
+ content: "\e010";
}
-
-.span3 {
- width: 220px;
+.glyphicon-th:before {
+ content: "\e011";
}
-
-.span2 {
- width: 140px;
+.glyphicon-th-list:before {
+ content: "\e012";
}
-
-.span1 {
- width: 60px;
+.glyphicon-ok:before {
+ content: "\e013";
}
-
-.offset12 {
- margin-left: 980px;
+.glyphicon-remove:before {
+ content: "\e014";
}
-
-.offset11 {
- margin-left: 900px;
+.glyphicon-zoom-in:before {
+ content: "\e015";
}
-
-.offset10 {
- margin-left: 820px;
+.glyphicon-zoom-out:before {
+ content: "\e016";
}
-
-.offset9 {
- margin-left: 740px;
+.glyphicon-off:before {
+ content: "\e017";
}
-
-.offset8 {
- margin-left: 660px;
+.glyphicon-signal:before {
+ content: "\e018";
}
-
-.offset7 {
- margin-left: 580px;
+.glyphicon-cog:before {
+ content: "\e019";
}
-
-.offset6 {
- margin-left: 500px;
+.glyphicon-trash:before {
+ content: "\e020";
}
-
-.offset5 {
- margin-left: 420px;
+.glyphicon-home:before {
+ content: "\e021";
}
-
-.offset4 {
- margin-left: 340px;
+.glyphicon-file:before {
+ content: "\e022";
}
-
-.offset3 {
- margin-left: 260px;
+.glyphicon-time:before {
+ content: "\e023";
}
-
-.offset2 {
- margin-left: 180px;
+.glyphicon-road:before {
+ content: "\e024";
}
-
-.offset1 {
- margin-left: 100px;
+.glyphicon-download-alt:before {
+ content: "\e025";
}
-
-.row-fluid {
- width: 100%;
- *zoom: 1;
+.glyphicon-download:before {
+ content: "\e026";
}
-
-.row-fluid:before,
-.row-fluid:after {
- display: table;
- content: "";
+.glyphicon-upload:before {
+ content: "\e027";
}
-
-.row-fluid:after {
- clear: both;
+.glyphicon-inbox:before {
+ content: "\e028";
}
-
-.row-fluid [class*="span"] {
- display: block;
- float: left;
- width: 100%;
- min-height: 28px;
- margin-left: 2.127659574%;
- *margin-left: 2.0744680846382977%;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
+.glyphicon-play-circle:before {
+ content: "\e029";
}
-
-.row-fluid [class*="span"]:first-child {
- margin-left: 0;
+.glyphicon-repeat:before {
+ content: "\e030";
}
-
-.row-fluid .span12 {
- width: 99.99999998999999%;
- *width: 99.94680850063828%;
+.glyphicon-refresh:before {
+ content: "\e031";
}
-
-.row-fluid .span11 {
- width: 91.489361693%;
- *width: 91.4361702036383%;
+.glyphicon-list-alt:before {
+ content: "\e032";
}
-
-.row-fluid .span10 {
- width: 82.97872339599999%;
- *width: 82.92553190663828%;
+.glyphicon-lock:before {
+ content: "\e033";
}
-
-.row-fluid .span9 {
- width: 74.468085099%;
- *width: 74.4148936096383%;
+.glyphicon-flag:before {
+ content: "\e034";
}
-
-.row-fluid .span8 {
- width: 65.95744680199999%;
- *width: 65.90425531263828%;
+.glyphicon-headphones:before {
+ content: "\e035";
}
-
-.row-fluid .span7 {
- width: 57.446808505%;
- *width: 57.3936170156383%;
+.glyphicon-volume-off:before {
+ content: "\e036";
}
-
-.row-fluid .span6 {
- width: 48.93617020799999%;
- *width: 48.88297871863829%;
+.glyphicon-volume-down:before {
+ content: "\e037";
}
-
-.row-fluid .span5 {
- width: 40.425531911%;
- *width: 40.3723404216383%;
+.glyphicon-volume-up:before {
+ content: "\e038";
}
-
-.row-fluid .span4 {
- width: 31.914893614%;
- *width: 31.8617021246383%;
+.glyphicon-qrcode:before {
+ content: "\e039";
}
-
-.row-fluid .span3 {
- width: 23.404255317%;
- *width: 23.3510638276383%;
+.glyphicon-barcode:before {
+ content: "\e040";
}
-
-.row-fluid .span2 {
- width: 14.89361702%;
- *width: 14.8404255306383%;
+.glyphicon-tag:before {
+ content: "\e041";
}
-
-.row-fluid .span1 {
- width: 6.382978723%;
- *width: 6.329787233638298%;
+.glyphicon-tags:before {
+ content: "\e042";
}
-
-.container {
- margin-right: auto;
- margin-left: auto;
- *zoom: 1;
+.glyphicon-book:before {
+ content: "\e043";
}
-
-.container:before,
-.container:after {
- display: table;
- content: "";
+.glyphicon-bookmark:before {
+ content: "\e044";
}
-
-.container:after {
- clear: both;
+.glyphicon-print:before {
+ content: "\e045";
}
-
-.container-fluid {
- padding-right: 20px;
- padding-left: 20px;
- *zoom: 1;
+.glyphicon-camera:before {
+ content: "\e046";
}
-
-.container-fluid:before,
-.container-fluid:after {
- display: table;
- content: "";
+.glyphicon-font:before {
+ content: "\e047";
}
-
-.container-fluid:after {
- clear: both;
+.glyphicon-bold:before {
+ content: "\e048";
}
-
-p {
- margin: 0 0 9px;
+.glyphicon-italic:before {
+ content: "\e049";
}
-
-p small {
- font-size: 11px;
- color: #999999;
+.glyphicon-text-height:before {
+ content: "\e050";
}
-
-.lead {
- margin-bottom: 18px;
- font-size: 20px;
- font-weight: 200;
- line-height: 27px;
+.glyphicon-text-width:before {
+ content: "\e051";
}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- margin: 0;
- font-family: inherit;
- font-weight: bold;
- color: inherit;
- text-rendering: optimizelegibility;
+.glyphicon-align-left:before {
+ content: "\e052";
}
-
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small {
- font-weight: normal;
- color: #999999;
+.glyphicon-align-center:before {
+ content: "\e053";
}
-
-h1 {
- font-size: 30px;
- line-height: 36px;
+.glyphicon-align-right:before {
+ content: "\e054";
}
-
-h1 small {
- font-size: 18px;
+.glyphicon-align-justify:before {
+ content: "\e055";
}
-
-h2 {
- font-size: 24px;
- line-height: 36px;
+.glyphicon-list:before {
+ content: "\e056";
}
-
-h2 small {
- font-size: 18px;
+.glyphicon-indent-left:before {
+ content: "\e057";
}
-
-h3 {
- font-size: 18px;
- line-height: 27px;
+.glyphicon-indent-right:before {
+ content: "\e058";
}
-
-h3 small {
- font-size: 14px;
+.glyphicon-facetime-video:before {
+ content: "\e059";
}
-
-h4,
-h5,
-h6 {
- line-height: 18px;
+.glyphicon-picture:before {
+ content: "\e060";
}
-
-h4 {
- font-size: 14px;
+.glyphicon-map-marker:before {
+ content: "\e062";
}
-
-h4 small {
- font-size: 12px;
+.glyphicon-adjust:before {
+ content: "\e063";
}
-
-h5 {
- font-size: 12px;
+.glyphicon-tint:before {
+ content: "\e064";
}
-
-h6 {
- font-size: 11px;
- color: #999999;
- text-transform: uppercase;
+.glyphicon-edit:before {
+ content: "\e065";
}
-
-.page-header {
- padding-bottom: 17px;
- margin: 18px 0;
- border-bottom: 1px solid #eeeeee;
+.glyphicon-share:before {
+ content: "\e066";
}
-
-.page-header h1 {
- line-height: 1;
+.glyphicon-check:before {
+ content: "\e067";
}
-
-ul,
-ol {
- padding: 0;
- margin: 0 0 9px 25px;
+.glyphicon-move:before {
+ content: "\e068";
}
-
-ul ul,
-ul ol,
-ol ol,
-ol ul {
- margin-bottom: 0;
+.glyphicon-step-backward:before {
+ content: "\e069";
}
-
-ul {
- list-style: disc;
+.glyphicon-fast-backward:before {
+ content: "\e070";
}
-
-ol {
- list-style: decimal;
+.glyphicon-backward:before {
+ content: "\e071";
}
-
-li {
- line-height: 18px;
+.glyphicon-play:before {
+ content: "\e072";
}
-
-ul.unstyled,
-ol.unstyled {
- margin-left: 0;
- list-style: none;
+.glyphicon-pause:before {
+ content: "\e073";
}
-
-dl {
- margin-bottom: 18px;
+.glyphicon-stop:before {
+ content: "\e074";
}
-
-dt,
-dd {
- line-height: 18px;
+.glyphicon-forward:before {
+ content: "\e075";
}
-
-dt {
- font-weight: bold;
- line-height: 17px;
+.glyphicon-fast-forward:before {
+ content: "\e076";
}
-
-dd {
- margin-left: 9px;
+.glyphicon-step-forward:before {
+ content: "\e077";
}
-
-.dl-horizontal dt {
- float: left;
- width: 120px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
+.glyphicon-eject:before {
+ content: "\e078";
}
-
-.dl-horizontal dd {
- margin-left: 130px;
+.glyphicon-chevron-left:before {
+ content: "\e079";
}
-
-hr {
- margin: 18px 0;
- border: 0;
- border-top: 1px solid #eeeeee;
- border-bottom: 1px solid #ffffff;
+.glyphicon-chevron-right:before {
+ content: "\e080";
}
-
-strong {
- font-weight: bold;
+.glyphicon-plus-sign:before {
+ content: "\e081";
}
-
-em {
- font-style: italic;
+.glyphicon-minus-sign:before {
+ content: "\e082";
}
-
-.muted {
- color: #999999;
+.glyphicon-remove-sign:before {
+ content: "\e083";
}
-
-abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #999999;
+.glyphicon-ok-sign:before {
+ content: "\e084";
}
-
-abbr.initialism {
- font-size: 90%;
- text-transform: uppercase;
+.glyphicon-question-sign:before {
+ content: "\e085";
}
-
-blockquote {
- padding: 0 0 0 15px;
- margin: 0 0 18px;
- border-left: 5px solid #eeeeee;
+.glyphicon-info-sign:before {
+ content: "\e086";
}
-
-blockquote p {
- margin-bottom: 0;
- font-size: 16px;
- font-weight: 300;
- line-height: 22.5px;
+.glyphicon-screenshot:before {
+ content: "\e087";
}
-
-blockquote small {
- display: block;
- line-height: 18px;
- color: #999999;
+.glyphicon-remove-circle:before {
+ content: "\e088";
}
-
-blockquote small:before {
- content: '\2014 \00A0';
+.glyphicon-ok-circle:before {
+ content: "\e089";
}
-
-blockquote.pull-right {
- float: right;
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #eeeeee;
- border-left: 0;
+.glyphicon-ban-circle:before {
+ content: "\e090";
}
-
-blockquote.pull-right p,
-blockquote.pull-right small {
- text-align: right;
+.glyphicon-arrow-left:before {
+ content: "\e091";
}
-
-q:before,
-q:after,
-blockquote:before,
-blockquote:after {
- content: "";
+.glyphicon-arrow-right:before {
+ content: "\e092";
}
-
-address {
- display: block;
- margin-bottom: 18px;
- font-style: normal;
- line-height: 18px;
+.glyphicon-arrow-up:before {
+ content: "\e093";
}
-
-small {
- font-size: 100%;
+.glyphicon-arrow-down:before {
+ content: "\e094";
}
-
-cite {
- font-style: normal;
+.glyphicon-share-alt:before {
+ content: "\e095";
}
-
-code,
-pre {
- padding: 0 3px 2px;
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 12px;
- color: #333333;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
+.glyphicon-resize-full:before {
+ content: "\e096";
}
-
-code {
- padding: 2px 4px;
- color: #d14;
- background-color: #f7f7f9;
- border: 1px solid #e1e1e8;
+.glyphicon-resize-small:before {
+ content: "\e097";
}
-
-pre {
- display: block;
- padding: 8.5px;
- margin: 0 0 9px;
- font-size: 12.025px;
- line-height: 18px;
- word-break: break-all;
- word-wrap: break-word;
- white-space: pre;
- white-space: pre-wrap;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.glyphicon-exclamation-sign:before {
+ content: "\e101";
}
-
-pre.prettyprint {
- margin-bottom: 18px;
+.glyphicon-gift:before {
+ content: "\e102";
}
-
-pre code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border: 0;
+.glyphicon-leaf:before {
+ content: "\e103";
}
-
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
+.glyphicon-fire:before {
+ content: "\e104";
}
-
-form {
- margin: 0 0 18px;
+.glyphicon-eye-open:before {
+ content: "\e105";
}
-
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
+.glyphicon-eye-close:before {
+ content: "\e106";
}
-
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 27px;
- font-size: 19.5px;
- line-height: 36px;
- color: #333333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
+.glyphicon-warning-sign:before {
+ content: "\e107";
}
-
-legend small {
- font-size: 13.5px;
- color: #999999;
+.glyphicon-plane:before {
+ content: "\e108";
}
-
-label,
-input,
-button,
-select,
-textarea {
- font-size: 13px;
- font-weight: normal;
- line-height: 18px;
+.glyphicon-calendar:before {
+ content: "\e109";
}
-
-input,
-button,
-select,
-textarea {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+.glyphicon-random:before {
+ content: "\e110";
}
-
-label {
- display: block;
- margin-bottom: 5px;
+.glyphicon-comment:before {
+ content: "\e111";
}
-
-select,
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- display: inline-block;
- height: 18px;
- padding: 4px;
- margin-bottom: 9px;
- font-size: 13px;
- line-height: 18px;
- color: #555555;
+.glyphicon-magnet:before {
+ content: "\e112";
}
-
-input,
-textarea {
- width: 210px;
+.glyphicon-chevron-up:before {
+ content: "\e113";
}
-
-textarea {
- height: auto;
+.glyphicon-chevron-down:before {
+ content: "\e114";
}
-
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- background-color: #ffffff;
- border: 1px solid #cccccc;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
- transition: border linear 0.2s, box-shadow linear 0.2s;
+.glyphicon-retweet:before {
+ content: "\e115";
}
-
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="datetime"]:focus,
-input[type="datetime-local"]:focus,
-input[type="date"]:focus,
-input[type="month"]:focus,
-input[type="time"]:focus,
-input[type="week"]:focus,
-input[type="number"]:focus,
-input[type="email"]:focus,
-input[type="url"]:focus,
-input[type="search"]:focus,
-input[type="tel"]:focus,
-input[type="color"]:focus,
-.uneditable-input:focus {
- border-color: rgba(82, 168, 236, 0.8);
- outline: 0;
- outline: thin dotted \9;
- /* IE6-9 */
-
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
+.glyphicon-shopping-cart:before {
+ content: "\e116";
}
-
-input[type="radio"],
-input[type="checkbox"] {
- margin: 3px 0;
- *margin-top: 0;
- /* IE7 */
-
- line-height: normal;
- cursor: pointer;
+.glyphicon-folder-close:before {
+ content: "\e117";
}
-
-input[type="submit"],
-input[type="reset"],
-input[type="button"],
-input[type="radio"],
-input[type="checkbox"] {
- width: auto;
+.glyphicon-folder-open:before {
+ content: "\e118";
}
-
-.uneditable-textarea {
- width: auto;
- height: auto;
+.glyphicon-resize-vertical:before {
+ content: "\e119";
}
-
-select,
-input[type="file"] {
- height: 28px;
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
-
- *margin-top: 4px;
- /* For IE7, add top margin to align select with labels */
-
- line-height: 28px;
+.glyphicon-resize-horizontal:before {
+ content: "\e120";
}
-
-select {
- width: 220px;
- border: 1px solid #bbb;
+.glyphicon-hdd:before {
+ content: "\e121";
}
-
-select[multiple],
-select[size] {
- height: auto;
+.glyphicon-bullhorn:before {
+ content: "\e122";
}
-
-select:focus,
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
+.glyphicon-bell:before {
+ content: "\e123";
}
-
-.radio,
-.checkbox {
- min-height: 18px;
- padding-left: 18px;
+.glyphicon-certificate:before {
+ content: "\e124";
}
-
-.radio input[type="radio"],
-.checkbox input[type="checkbox"] {
- float: left;
- margin-left: -18px;
+.glyphicon-thumbs-up:before {
+ content: "\e125";
}
-
-.controls > .radio:first-child,
-.controls > .checkbox:first-child {
- padding-top: 5px;
+.glyphicon-thumbs-down:before {
+ content: "\e126";
}
-
-.radio.inline,
-.checkbox.inline {
- display: inline-block;
- padding-top: 5px;
- margin-bottom: 0;
- vertical-align: middle;
+.glyphicon-hand-right:before {
+ content: "\e127";
}
-
-.radio.inline + .radio.inline,
-.checkbox.inline + .checkbox.inline {
- margin-left: 10px;
+.glyphicon-hand-left:before {
+ content: "\e128";
}
-
-.input-mini {
- width: 60px;
+.glyphicon-hand-up:before {
+ content: "\e129";
}
-
-.input-small {
- width: 90px;
+.glyphicon-hand-down:before {
+ content: "\e130";
}
-
-.input-medium {
- width: 150px;
+.glyphicon-circle-arrow-right:before {
+ content: "\e131";
}
-
-.input-large {
- width: 210px;
+.glyphicon-circle-arrow-left:before {
+ content: "\e132";
}
-
-.input-xlarge {
- width: 270px;
+.glyphicon-circle-arrow-up:before {
+ content: "\e133";
}
-
-.input-xxlarge {
- width: 530px;
+.glyphicon-circle-arrow-down:before {
+ content: "\e134";
}
-
-input[class*="span"],
-select[class*="span"],
-textarea[class*="span"],
-.uneditable-input[class*="span"],
-.row-fluid input[class*="span"],
-.row-fluid select[class*="span"],
-.row-fluid textarea[class*="span"],
-.row-fluid .uneditable-input[class*="span"] {
- float: none;
- margin-left: 0;
+.glyphicon-globe:before {
+ content: "\e135";
}
-
-.input-append input[class*="span"],
-.input-append .uneditable-input[class*="span"],
-.input-prepend input[class*="span"],
-.input-prepend .uneditable-input[class*="span"],
-.row-fluid .input-prepend [class*="span"],
-.row-fluid .input-append [class*="span"] {
- display: inline-block;
+.glyphicon-wrench:before {
+ content: "\e136";
}
-
-input,
-textarea,
-.uneditable-input {
- margin-left: 0;
+.glyphicon-tasks:before {
+ content: "\e137";
}
-
-input.span12,
-textarea.span12,
-.uneditable-input.span12 {
- width: 930px;
+.glyphicon-filter:before {
+ content: "\e138";
}
-
-input.span11,
-textarea.span11,
-.uneditable-input.span11 {
- width: 850px;
+.glyphicon-briefcase:before {
+ content: "\e139";
}
-
-input.span10,
-textarea.span10,
-.uneditable-input.span10 {
- width: 770px;
+.glyphicon-fullscreen:before {
+ content: "\e140";
}
-
-input.span9,
-textarea.span9,
-.uneditable-input.span9 {
- width: 690px;
+.glyphicon-dashboard:before {
+ content: "\e141";
}
-
-input.span8,
-textarea.span8,
-.uneditable-input.span8 {
- width: 610px;
+.glyphicon-paperclip:before {
+ content: "\e142";
}
-
-input.span7,
-textarea.span7,
-.uneditable-input.span7 {
- width: 530px;
+.glyphicon-heart-empty:before {
+ content: "\e143";
}
-
-input.span6,
-textarea.span6,
-.uneditable-input.span6 {
- width: 450px;
+.glyphicon-link:before {
+ content: "\e144";
}
-
-input.span5,
-textarea.span5,
-.uneditable-input.span5 {
- width: 370px;
+.glyphicon-phone:before {
+ content: "\e145";
}
-
-input.span4,
-textarea.span4,
-.uneditable-input.span4 {
- width: 290px;
+.glyphicon-pushpin:before {
+ content: "\e146";
}
-
-input.span3,
-textarea.span3,
-.uneditable-input.span3 {
- width: 210px;
+.glyphicon-usd:before {
+ content: "\e148";
}
-
-input.span2,
-textarea.span2,
-.uneditable-input.span2 {
- width: 130px;
+.glyphicon-gbp:before {
+ content: "\e149";
}
-
-input.span1,
-textarea.span1,
-.uneditable-input.span1 {
- width: 50px;
+.glyphicon-sort:before {
+ content: "\e150";
}
-
-input[disabled],
-select[disabled],
-textarea[disabled],
-input[readonly],
-select[readonly],
-textarea[readonly] {
- cursor: not-allowed;
- background-color: #eeeeee;
- border-color: #ddd;
+.glyphicon-sort-by-alphabet:before {
+ content: "\e151";
}
-
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"][readonly],
-input[type="checkbox"][readonly] {
- background-color: transparent;
+.glyphicon-sort-by-alphabet-alt:before {
+ content: "\e152";
}
-
-.control-group.warning > label,
-.control-group.warning .help-block,
-.control-group.warning .help-inline {
- color: #c09853;
+.glyphicon-sort-by-order:before {
+ content: "\e153";
}
-
-.control-group.warning .checkbox,
-.control-group.warning .radio,
-.control-group.warning input,
-.control-group.warning select,
-.control-group.warning textarea {
- color: #c09853;
- border-color: #c09853;
+.glyphicon-sort-by-order-alt:before {
+ content: "\e154";
}
-
-.control-group.warning .checkbox:focus,
-.control-group.warning .radio:focus,
-.control-group.warning input:focus,
-.control-group.warning select:focus,
-.control-group.warning textarea:focus {
- border-color: #a47e3c;
- -webkit-box-shadow: 0 0 6px #dbc59e;
- -moz-box-shadow: 0 0 6px #dbc59e;
- box-shadow: 0 0 6px #dbc59e;
+.glyphicon-sort-by-attributes:before {
+ content: "\e155";
}
-
-.control-group.warning .input-prepend .add-on,
-.control-group.warning .input-append .add-on {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #c09853;
+.glyphicon-sort-by-attributes-alt:before {
+ content: "\e156";
}
-
-.control-group.error > label,
-.control-group.error .help-block,
-.control-group.error .help-inline {
- color: #b94a48;
+.glyphicon-unchecked:before {
+ content: "\e157";
}
-
-.control-group.error .checkbox,
-.control-group.error .radio,
-.control-group.error input,
-.control-group.error select,
-.control-group.error textarea {
- color: #b94a48;
- border-color: #b94a48;
+.glyphicon-expand:before {
+ content: "\e158";
}
-
-.control-group.error .checkbox:focus,
-.control-group.error .radio:focus,
-.control-group.error input:focus,
-.control-group.error select:focus,
-.control-group.error textarea:focus {
- border-color: #953b39;
- -webkit-box-shadow: 0 0 6px #d59392;
- -moz-box-shadow: 0 0 6px #d59392;
- box-shadow: 0 0 6px #d59392;
+.glyphicon-collapse-down:before {
+ content: "\e159";
}
-
-.control-group.error .input-prepend .add-on,
-.control-group.error .input-append .add-on {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #b94a48;
+.glyphicon-collapse-up:before {
+ content: "\e160";
}
-
-.control-group.success > label,
-.control-group.success .help-block,
-.control-group.success .help-inline {
- color: #468847;
+.glyphicon-log-in:before {
+ content: "\e161";
}
-
-.control-group.success .checkbox,
-.control-group.success .radio,
-.control-group.success input,
-.control-group.success select,
-.control-group.success textarea {
- color: #468847;
- border-color: #468847;
+.glyphicon-flash:before {
+ content: "\e162";
}
-
-.control-group.success .checkbox:focus,
-.control-group.success .radio:focus,
-.control-group.success input:focus,
-.control-group.success select:focus,
-.control-group.success textarea:focus {
- border-color: #356635;
- -webkit-box-shadow: 0 0 6px #7aba7b;
- -moz-box-shadow: 0 0 6px #7aba7b;
- box-shadow: 0 0 6px #7aba7b;
+.glyphicon-log-out:before {
+ content: "\e163";
}
-
-.control-group.success .input-prepend .add-on,
-.control-group.success .input-append .add-on {
- color: #468847;
- background-color: #dff0d8;
- border-color: #468847;
+.glyphicon-new-window:before {
+ content: "\e164";
}
-
-input:focus:required:invalid,
-textarea:focus:required:invalid,
-select:focus:required:invalid {
- color: #b94a48;
- border-color: #ee5f5b;
+.glyphicon-record:before {
+ content: "\e165";
}
-
-input:focus:required:invalid:focus,
-textarea:focus:required:invalid:focus,
-select:focus:required:invalid:focus {
- border-color: #e9322d;
- -webkit-box-shadow: 0 0 6px #f8b9b7;
- -moz-box-shadow: 0 0 6px #f8b9b7;
- box-shadow: 0 0 6px #f8b9b7;
+.glyphicon-save:before {
+ content: "\e166";
}
-
-.form-actions {
- padding: 17px 20px 18px;
- margin-top: 18px;
- margin-bottom: 18px;
- background-color: #f5f5f5;
- border-top: 1px solid #e5e5e5;
- *zoom: 1;
+.glyphicon-open:before {
+ content: "\e167";
}
-
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: "";
+.glyphicon-saved:before {
+ content: "\e168";
}
-
-.form-actions:after {
- clear: both;
+.glyphicon-import:before {
+ content: "\e169";
}
-
-.uneditable-input {
- overflow: hidden;
- white-space: nowrap;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #eee;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+.glyphicon-export:before {
+ content: "\e170";
}
-
-:-moz-placeholder {
- color: #999999;
+.glyphicon-send:before {
+ content: "\e171";
}
-
-:-ms-input-placeholder {
- color: #999999;
+.glyphicon-floppy-disk:before {
+ content: "\e172";
}
-
-::-webkit-input-placeholder {
- color: #999999;
+.glyphicon-floppy-saved:before {
+ content: "\e173";
}
-
-.help-block,
-.help-inline {
- color: #555555;
+.glyphicon-floppy-remove:before {
+ content: "\e174";
}
-
-.help-block {
- display: block;
- margin-bottom: 9px;
+.glyphicon-floppy-save:before {
+ content: "\e175";
}
-
-.help-inline {
- display: inline-block;
- *display: inline;
- padding-left: 5px;
- vertical-align: middle;
- *zoom: 1;
+.glyphicon-floppy-open:before {
+ content: "\e176";
}
-
-.input-prepend,
-.input-append {
- margin-bottom: 5px;
+.glyphicon-credit-card:before {
+ content: "\e177";
}
-
-.input-prepend input,
-.input-append input,
-.input-prepend select,
-.input-append select,
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- position: relative;
- margin-bottom: 0;
- *margin-left: 0;
- vertical-align: middle;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+.glyphicon-transfer:before {
+ content: "\e178";
}
-
-.input-prepend input:focus,
-.input-append input:focus,
-.input-prepend select:focus,
-.input-append select:focus,
-.input-prepend .uneditable-input:focus,
-.input-append .uneditable-input:focus {
- z-index: 2;
+.glyphicon-cutlery:before {
+ content: "\e179";
}
-
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- border-left-color: #ccc;
+.glyphicon-header:before {
+ content: "\e180";
}
-
-.input-prepend .add-on,
-.input-append .add-on {
- display: inline-block;
- width: auto;
- height: 18px;
- min-width: 16px;
- padding: 4px 5px;
- font-weight: normal;
- line-height: 18px;
- text-align: center;
- text-shadow: 0 1px 0 #ffffff;
- vertical-align: middle;
- background-color: #eeeeee;
- border: 1px solid #ccc;
+.glyphicon-compressed:before {
+ content: "\e181";
}
-
-.input-prepend .add-on,
-.input-append .add-on,
-.input-prepend .btn,
-.input-append .btn {
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
+.glyphicon-earphone:before {
+ content: "\e182";
}
-
-.input-prepend .active,
-.input-append .active {
- background-color: #a9dba9;
- border-color: #46a546;
+.glyphicon-phone-alt:before {
+ content: "\e183";
}
-
-.input-prepend .add-on,
-.input-prepend .btn {
- margin-right: -1px;
+.glyphicon-tower:before {
+ content: "\e184";
}
-
-.input-prepend .add-on:first-child,
-.input-prepend .btn:first-child {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
+.glyphicon-stats:before {
+ content: "\e185";
}
-
-.input-append input,
-.input-append select,
-.input-append .uneditable-input {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
+.glyphicon-sd-video:before {
+ content: "\e186";
}
-
-.input-append .uneditable-input {
- border-right-color: #ccc;
- border-left-color: #eee;
+.glyphicon-hd-video:before {
+ content: "\e187";
}
-
-.input-append .add-on:last-child,
-.input-append .btn:last-child {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+.glyphicon-subtitles:before {
+ content: "\e188";
}
-
-.input-prepend.input-append input,
-.input-prepend.input-append select,
-.input-prepend.input-append .uneditable-input {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
+.glyphicon-sound-stereo:before {
+ content: "\e189";
}
-
-.input-prepend.input-append .add-on:first-child,
-.input-prepend.input-append .btn:first-child {
- margin-right: -1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
+.glyphicon-sound-dolby:before {
+ content: "\e190";
}
-
-.input-prepend.input-append .add-on:last-child,
-.input-prepend.input-append .btn:last-child {
- margin-left: -1px;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+.glyphicon-sound-5-1:before {
+ content: "\e191";
}
-
-.search-query {
- padding-right: 14px;
- padding-right: 4px \9;
- padding-left: 14px;
- padding-left: 4px \9;
- /* IE7-8 doesn't have border-radius, so don't indent the padding */
-
- margin-bottom: 0;
- -webkit-border-radius: 14px;
- -moz-border-radius: 14px;
- border-radius: 14px;
+.glyphicon-sound-6-1:before {
+ content: "\e192";
}
-
-.form-search input,
-.form-inline input,
-.form-horizontal input,
-.form-search textarea,
-.form-inline textarea,
-.form-horizontal textarea,
-.form-search select,
-.form-inline select,
-.form-horizontal select,
-.form-search .help-inline,
-.form-inline .help-inline,
-.form-horizontal .help-inline,
-.form-search .uneditable-input,
-.form-inline .uneditable-input,
-.form-horizontal .uneditable-input,
-.form-search .input-prepend,
-.form-inline .input-prepend,
-.form-horizontal .input-prepend,
-.form-search .input-append,
-.form-inline .input-append,
-.form-horizontal .input-append {
- display: inline-block;
- *display: inline;
- margin-bottom: 0;
- *zoom: 1;
+.glyphicon-sound-7-1:before {
+ content: "\e193";
}
-
-.form-search .hide,
-.form-inline .hide,
-.form-horizontal .hide {
- display: none;
+.glyphicon-copyright-mark:before {
+ content: "\e194";
}
-
-.form-search label,
-.form-inline label {
- display: inline-block;
+.glyphicon-registration-mark:before {
+ content: "\e195";
}
-
-.form-search .input-append,
-.form-inline .input-append,
-.form-search .input-prepend,
-.form-inline .input-prepend {
- margin-bottom: 0;
+.glyphicon-cloud-download:before {
+ content: "\e197";
}
-
-.form-search .radio,
-.form-search .checkbox,
-.form-inline .radio,
-.form-inline .checkbox {
- padding-left: 0;
- margin-bottom: 0;
- vertical-align: middle;
+.glyphicon-cloud-upload:before {
+ content: "\e198";
}
-
-.form-search .radio input[type="radio"],
-.form-search .checkbox input[type="checkbox"],
-.form-inline .radio input[type="radio"],
-.form-inline .checkbox input[type="checkbox"] {
- float: left;
- margin-right: 3px;
- margin-left: 0;
+.glyphicon-tree-conifer:before {
+ content: "\e199";
}
-
-.control-group {
- margin-bottom: 9px;
+.glyphicon-tree-deciduous:before {
+ content: "\e200";
}
-
-legend + .control-group {
- margin-top: 18px;
- -webkit-margin-top-collapse: separate;
+.glyphicon-cd:before {
+ content: "\e201";
}
-
-.form-horizontal .control-group {
- margin-bottom: 18px;
- *zoom: 1;
+.glyphicon-save-file:before {
+ content: "\e202";
}
-
-.form-horizontal .control-group:before,
-.form-horizontal .control-group:after {
- display: table;
- content: "";
+.glyphicon-open-file:before {
+ content: "\e203";
}
-
-.form-horizontal .control-group:after {
- clear: both;
+.glyphicon-level-up:before {
+ content: "\e204";
}
-
-.form-horizontal .control-label {
- float: left;
- width: 140px;
- padding-top: 5px;
- text-align: right;
+.glyphicon-copy:before {
+ content: "\e205";
}
-
-.form-horizontal .controls {
- *display: inline-block;
- *padding-left: 20px;
- margin-left: 160px;
- *margin-left: 0;
+.glyphicon-paste:before {
+ content: "\e206";
}
-
-.form-horizontal .controls:first-child {
- *padding-left: 160px;
+.glyphicon-alert:before {
+ content: "\e209";
}
-
-.form-horizontal .help-block {
- margin-top: 9px;
- margin-bottom: 0;
+.glyphicon-equalizer:before {
+ content: "\e210";
}
-
-.form-horizontal .form-actions {
- padding-left: 160px;
+.glyphicon-king:before {
+ content: "\e211";
}
-
-table {
- max-width: 100%;
- background-color: transparent;
- border-collapse: collapse;
- border-spacing: 0;
+.glyphicon-queen:before {
+ content: "\e212";
}
-
-.table {
- width: 100%;
- margin-bottom: 18px;
+.glyphicon-pawn:before {
+ content: "\e213";
}
-
-.table th,
-.table td {
- padding: 8px;
- line-height: 18px;
- text-align: left;
- vertical-align: top;
- border-top: 1px solid #dddddd;
+.glyphicon-bishop:before {
+ content: "\e214";
}
-
-.table th {
- font-weight: bold;
+.glyphicon-knight:before {
+ content: "\e215";
}
-
-.table thead th {
- vertical-align: bottom;
+.glyphicon-baby-formula:before {
+ content: "\e216";
}
-
-.table caption + thead tr:first-child th,
-.table caption + thead tr:first-child td,
-.table colgroup + thead tr:first-child th,
-.table colgroup + thead tr:first-child td,
-.table thead:first-child tr:first-child th,
-.table thead:first-child tr:first-child td {
- border-top: 0;
+.glyphicon-tent:before {
+ content: "\26fa";
}
-
-.table tbody + tbody {
- border-top: 2px solid #dddddd;
+.glyphicon-blackboard:before {
+ content: "\e218";
}
-
-.table-condensed th,
-.table-condensed td {
- padding: 4px 5px;
+.glyphicon-bed:before {
+ content: "\e219";
}
-
-.table-bordered {
- border: 1px solid #dddddd;
- border-collapse: separate;
- *border-collapse: collapsed;
- border-left: 0;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.glyphicon-apple:before {
+ content: "\f8ff";
}
-
-.table-bordered th,
-.table-bordered td {
- border-left: 1px solid #dddddd;
+.glyphicon-erase:before {
+ content: "\e221";
}
-
-.table-bordered caption + thead tr:first-child th,
-.table-bordered caption + tbody tr:first-child th,
-.table-bordered caption + tbody tr:first-child td,
-.table-bordered colgroup + thead tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child td,
-.table-bordered thead:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child td {
- border-top: 0;
+.glyphicon-hourglass:before {
+ content: "\231b";
}
-
-.table-bordered thead:first-child tr:first-child th:first-child,
-.table-bordered tbody:first-child tr:first-child td:first-child {
- -webkit-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
+.glyphicon-lamp:before {
+ content: "\e223";
}
-
-.table-bordered thead:first-child tr:first-child th:last-child,
-.table-bordered tbody:first-child tr:first-child td:last-child {
- -webkit-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
+.glyphicon-duplicate:before {
+ content: "\e224";
}
-
-.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
- -webkit-border-radius: 0 0 0 4px;
- -moz-border-radius: 0 0 0 4px;
- border-radius: 0 0 0 4px;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
+.glyphicon-piggy-bank:before {
+ content: "\e225";
}
-
-.table-bordered thead:last-child tr:last-child th:last-child,
-.table-bordered tbody:last-child tr:last-child td:last-child {
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
+.glyphicon-scissors:before {
+ content: "\e226";
}
-
-.table-striped tbody tr:nth-child(odd) td,
-.table-striped tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
+.glyphicon-bitcoin:before {
+ content: "\e227";
}
-
-.table tbody tr:hover td,
-.table tbody tr:hover th {
- background-color: #f5f5f5;
+.glyphicon-yen:before {
+ content: "\00a5";
}
-
-table .span1 {
- float: none;
- width: 44px;
- margin-left: 0;
+.glyphicon-ruble:before {
+ content: "\20bd";
}
-
-table .span2 {
- float: none;
- width: 124px;
- margin-left: 0;
+.glyphicon-scale:before {
+ content: "\e230";
}
-
-table .span3 {
- float: none;
- width: 204px;
- margin-left: 0;
+.glyphicon-ice-lolly:before {
+ content: "\e231";
}
-
-table .span4 {
- float: none;
- width: 284px;
- margin-left: 0;
+.glyphicon-ice-lolly-tasted:before {
+ content: "\e232";
}
-
-table .span5 {
- float: none;
- width: 364px;
- margin-left: 0;
+.glyphicon-education:before {
+ content: "\e233";
}
-
-table .span6 {
- float: none;
- width: 444px;
- margin-left: 0;
+.glyphicon-option-horizontal:before {
+ content: "\e234";
}
-
-table .span7 {
- float: none;
- width: 524px;
- margin-left: 0;
+.glyphicon-option-vertical:before {
+ content: "\e235";
}
-
-table .span8 {
- float: none;
- width: 604px;
- margin-left: 0;
+.glyphicon-menu-hamburger:before {
+ content: "\e236";
}
-
-table .span9 {
- float: none;
- width: 684px;
- margin-left: 0;
+.glyphicon-modal-window:before {
+ content: "\e237";
}
-
-table .span10 {
- float: none;
- width: 764px;
- margin-left: 0;
+.glyphicon-oil:before {
+ content: "\e238";
}
-
-table .span11 {
- float: none;
- width: 844px;
- margin-left: 0;
+.glyphicon-grain:before {
+ content: "\e239";
}
-
-table .span12 {
- float: none;
- width: 924px;
- margin-left: 0;
+.glyphicon-sunglasses:before {
+ content: "\e240";
}
-
-table .span13 {
- float: none;
- width: 1004px;
- margin-left: 0;
+.glyphicon-text-size:before {
+ content: "\e241";
}
-
-table .span14 {
- float: none;
- width: 1084px;
- margin-left: 0;
+.glyphicon-text-color:before {
+ content: "\e242";
}
-
-table .span15 {
- float: none;
- width: 1164px;
- margin-left: 0;
+.glyphicon-text-background:before {
+ content: "\e243";
}
-
-table .span16 {
- float: none;
- width: 1244px;
- margin-left: 0;
+.glyphicon-object-align-top:before {
+ content: "\e244";
}
-
-table .span17 {
- float: none;
- width: 1324px;
- margin-left: 0;
+.glyphicon-object-align-bottom:before {
+ content: "\e245";
}
-
-table .span18 {
- float: none;
- width: 1404px;
- margin-left: 0;
+.glyphicon-object-align-horizontal:before {
+ content: "\e246";
}
-
-table .span19 {
- float: none;
- width: 1484px;
- margin-left: 0;
+.glyphicon-object-align-left:before {
+ content: "\e247";
}
-
-table .span20 {
- float: none;
- width: 1564px;
- margin-left: 0;
+.glyphicon-object-align-vertical:before {
+ content: "\e248";
}
-
-table .span21 {
- float: none;
- width: 1644px;
- margin-left: 0;
+.glyphicon-object-align-right:before {
+ content: "\e249";
}
-
-table .span22 {
- float: none;
- width: 1724px;
- margin-left: 0;
+.glyphicon-triangle-right:before {
+ content: "\e250";
}
-
-table .span23 {
- float: none;
- width: 1804px;
- margin-left: 0;
+.glyphicon-triangle-left:before {
+ content: "\e251";
}
-
-table .span24 {
- float: none;
- width: 1884px;
- margin-left: 0;
+.glyphicon-triangle-bottom:before {
+ content: "\e252";
}
-
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline-block;
- width: 14px;
- height: 14px;
- *margin-right: .3em;
- line-height: 14px;
- vertical-align: text-top;
- background-position: 14px 14px;
- background-repeat: no-repeat;
+.glyphicon-triangle-top:before {
+ content: "\e253";
}
-
-[class^="icon-"]:last-child,
-[class*=" icon-"]:last-child {
- *margin-left: 0;
+.glyphicon-console:before {
+ content: "\e254";
}
-
-.icon-white {
+.glyphicon-superscript:before {
+ content: "\e255";
}
-
-.icon-glass {
- background-position: 0 0;
+.glyphicon-subscript:before {
+ content: "\e256";
}
-
-.icon-music {
- background-position: -24px 0;
+.glyphicon-menu-left:before {
+ content: "\e257";
}
-
-.icon-search {
- background-position: -48px 0;
+.glyphicon-menu-right:before {
+ content: "\e258";
}
-
-.icon-envelope {
- background-position: -72px 0;
+.glyphicon-menu-down:before {
+ content: "\e259";
}
-
-.icon-heart {
- background-position: -96px 0;
+.glyphicon-menu-up:before {
+ content: "\e260";
}
-
-.icon-star {
- background-position: -120px 0;
+* {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
}
-
-.icon-star-empty {
- background-position: -144px 0;
+*:before,
+*:after {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
}
+html {
+ font-size: 10px;
-.icon-user {
- background-position: -168px 0;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
-
-.icon-film {
- background-position: -192px 0;
+body {
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #333;
+ background-color: #fff;
}
-
-.icon-th-large {
- background-position: -216px 0;
+input,
+button,
+select,
+textarea {
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit;
}
-
-.icon-th {
- background-position: -240px 0;
+a {
+ color: #337ab7;
+ text-decoration: none;
}
-
-.icon-th-list {
- background-position: -264px 0;
+a:hover,
+a:focus {
+ color: #23527c;
+ text-decoration: underline;
}
-
-.icon-ok {
- background-position: -288px 0;
-}
-
-.icon-remove {
- background-position: -312px 0;
+a:focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
}
-
-.icon-zoom-in {
- background-position: -336px 0;
+figure {
+ margin: 0;
}
-
-.icon-zoom-out {
- background-position: -360px 0;
+img {
+ vertical-align: middle;
}
-
-.icon-off {
- background-position: -384px 0;
+.img-responsive,
+.thumbnail > img,
+.thumbnail a > img,
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+ display: block;
+ max-width: 100%;
+ height: auto;
}
-
-.icon-signal {
- background-position: -408px 0;
+.img-rounded {
+ border-radius: 6px;
}
-
-.icon-cog {
- background-position: -432px 0;
+.img-thumbnail {
+ display: inline-block;
+ max-width: 100%;
+ height: auto;
+ padding: 4px;
+ line-height: 1.42857143;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ -webkit-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out;
}
-
-.icon-trash {
- background-position: -456px 0;
+.img-circle {
+ border-radius: 50%;
}
-
-.icon-home {
- background-position: 0 -24px;
+hr {
+ margin-top: 20px;
+ margin-bottom: 20px;
+ border: 0;
+ border-top: 1px solid #eee;
}
-
-.icon-file {
- background-position: -24px -24px;
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
}
-
-.icon-time {
- background-position: -48px -24px;
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto;
}
-
-.icon-road {
- background-position: -72px -24px;
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6 {
+ font-family: inherit;
+ font-weight: 500;
+ line-height: 1.1;
+ color: inherit;
}
-
-.icon-download-alt {
- background-position: -96px -24px;
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small,
+.h1 small,
+.h2 small,
+.h3 small,
+.h4 small,
+.h5 small,
+.h6 small,
+h1 .small,
+h2 .small,
+h3 .small,
+h4 .small,
+h5 .small,
+h6 .small,
+.h1 .small,
+.h2 .small,
+.h3 .small,
+.h4 .small,
+.h5 .small,
+.h6 .small {
+ font-weight: normal;
+ line-height: 1;
+ color: #777;
}
-
-.icon-download {
- background-position: -120px -24px;
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3 {
+ margin-top: 20px;
+ margin-bottom: 10px;
}
-
-.icon-upload {
- background-position: -144px -24px;
+h1 small,
+.h1 small,
+h2 small,
+.h2 small,
+h3 small,
+.h3 small,
+h1 .small,
+.h1 .small,
+h2 .small,
+.h2 .small,
+h3 .small,
+.h3 .small {
+ font-size: 65%;
}
-
-.icon-inbox {
- background-position: -168px -24px;
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+ margin-top: 10px;
+ margin-bottom: 10px;
}
-
-.icon-play-circle {
- background-position: -192px -24px;
+h4 small,
+.h4 small,
+h5 small,
+.h5 small,
+h6 small,
+.h6 small,
+h4 .small,
+.h4 .small,
+h5 .small,
+.h5 .small,
+h6 .small,
+.h6 .small {
+ font-size: 75%;
}
-
-.icon-repeat {
- background-position: -216px -24px;
+h1,
+.h1 {
+ font-size: 36px;
}
-
-.icon-refresh {
- background-position: -240px -24px;
+h2,
+.h2 {
+ font-size: 30px;
}
-
-.icon-list-alt {
- background-position: -264px -24px;
+h3,
+.h3 {
+ font-size: 24px;
}
-
-.icon-lock {
- background-position: -287px -24px;
+h4,
+.h4 {
+ font-size: 18px;
}
-
-.icon-flag {
- background-position: -312px -24px;
+h5,
+.h5 {
+ font-size: 14px;
}
-
-.icon-headphones {
- background-position: -336px -24px;
+h6,
+.h6 {
+ font-size: 12px;
}
-
-.icon-volume-off {
- background-position: -360px -24px;
+p {
+ margin: 0 0 10px;
}
-
-.icon-volume-down {
- background-position: -384px -24px;
+.lead {
+ margin-bottom: 20px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.4;
}
-
-.icon-volume-up {
- background-position: -408px -24px;
+@media (min-width: 768px) {
+ .lead {
+ font-size: 21px;
+ }
}
-
-.icon-qrcode {
- background-position: -432px -24px;
+small,
+.small {
+ font-size: 85%;
}
-
-.icon-barcode {
- background-position: -456px -24px;
+mark,
+.mark {
+ padding: .2em;
+ background-color: #fcf8e3;
}
-
-.icon-tag {
- background-position: 0 -48px;
+.text-left {
+ text-align: left;
}
-
-.icon-tags {
- background-position: -25px -48px;
+.text-right {
+ text-align: right;
}
-
-.icon-book {
- background-position: -48px -48px;
+.text-center {
+ text-align: center;
}
-
-.icon-bookmark {
- background-position: -72px -48px;
+.text-justify {
+ text-align: justify;
}
-
-.icon-print {
- background-position: -96px -48px;
+.text-nowrap {
+ white-space: nowrap;
}
-
-.icon-camera {
- background-position: -120px -48px;
+.text-lowercase {
+ text-transform: lowercase;
}
-
-.icon-font {
- background-position: -144px -48px;
+.text-uppercase {
+ text-transform: uppercase;
}
-
-.icon-bold {
- background-position: -167px -48px;
+.text-capitalize {
+ text-transform: capitalize;
}
-
-.icon-italic {
- background-position: -192px -48px;
+.text-muted {
+ color: #777;
}
-
-.icon-text-height {
- background-position: -216px -48px;
+.text-primary {
+ color: #337ab7;
}
-
-.icon-text-width {
- background-position: -240px -48px;
+a.text-primary:hover {
+ color: #286090;
}
-
-.icon-align-left {
- background-position: -264px -48px;
+.text-success {
+ color: #3c763d;
}
-
-.icon-align-center {
- background-position: -288px -48px;
+a.text-success:hover {
+ color: #2b542c;
}
-
-.icon-align-right {
- background-position: -312px -48px;
+.text-info {
+ color: #31708f;
}
-
-.icon-align-justify {
- background-position: -336px -48px;
+a.text-info:hover {
+ color: #245269;
}
-
-.icon-list {
- background-position: -360px -48px;
+.text-warning {
+ color: #8a6d3b;
}
-
-.icon-indent-left {
- background-position: -384px -48px;
+a.text-warning:hover {
+ color: #66512c;
}
-
-.icon-indent-right {
- background-position: -408px -48px;
+.text-danger {
+ color: #a94442;
}
-
-.icon-facetime-video {
- background-position: -432px -48px;
+a.text-danger:hover {
+ color: #843534;
}
-
-.icon-picture {
- background-position: -456px -48px;
+.bg-primary {
+ color: #fff;
+ background-color: #337ab7;
}
-
-.icon-pencil {
- background-position: 0 -72px;
+a.bg-primary:hover {
+ background-color: #286090;
}
-
-.icon-map-marker {
- background-position: -24px -72px;
+.bg-success {
+ background-color: #dff0d8;
}
-
-.icon-adjust {
- background-position: -48px -72px;
+a.bg-success:hover {
+ background-color: #c1e2b3;
}
-
-.icon-tint {
- background-position: -72px -72px;
+.bg-info {
+ background-color: #d9edf7;
}
-
-.icon-edit {
- background-position: -96px -72px;
+a.bg-info:hover {
+ background-color: #afd9ee;
}
-
-.icon-share {
- background-position: -120px -72px;
+.bg-warning {
+ background-color: #fcf8e3;
}
-
-.icon-check {
- background-position: -144px -72px;
+a.bg-warning:hover {
+ background-color: #f7ecb5;
}
-
-.icon-move {
- background-position: -168px -72px;
+.bg-danger {
+ background-color: #f2dede;
}
-
-.icon-step-backward {
- background-position: -192px -72px;
+a.bg-danger:hover {
+ background-color: #e4b9b9;
}
-
-.icon-fast-backward {
- background-position: -216px -72px;
+.page-header {
+ padding-bottom: 9px;
+ margin: 40px 0 20px;
+ border-bottom: 1px solid #eee;
}
-
-.icon-backward {
- background-position: -240px -72px;
+ul,
+ol {
+ margin-top: 0;
+ margin-bottom: 10px;
}
-
-.icon-play {
- background-position: -264px -72px;
+ul ul,
+ol ul,
+ul ol,
+ol ol {
+ margin-bottom: 0;
}
-
-.icon-pause {
- background-position: -288px -72px;
+.list-unstyled {
+ padding-left: 0;
+ list-style: none;
}
-
-.icon-stop {
- background-position: -312px -72px;
+.list-inline {
+ padding-left: 0;
+ margin-left: -5px;
+ list-style: none;
}
-
-.icon-forward {
- background-position: -336px -72px;
+.list-inline > li {
+ display: inline-block;
+ padding-right: 5px;
+ padding-left: 5px;
}
-
-.icon-fast-forward {
- background-position: -360px -72px;
+dl {
+ margin-top: 0;
+ margin-bottom: 20px;
}
-
-.icon-step-forward {
- background-position: -384px -72px;
+dt,
+dd {
+ line-height: 1.42857143;
}
-
-.icon-eject {
- background-position: -408px -72px;
+dt {
+ font-weight: bold;
}
-
-.icon-chevron-left {
- background-position: -432px -72px;
+dd {
+ margin-left: 0;
}
-
-.icon-chevron-right {
- background-position: -456px -72px;
+@media (min-width: 768px) {
+ .dl-horizontal dt {
+ float: left;
+ width: 160px;
+ overflow: hidden;
+ clear: left;
+ text-align: right;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .dl-horizontal dd {
+ margin-left: 180px;
+ }
}
-
-.icon-plus-sign {
- background-position: 0 -96px;
+abbr[title],
+abbr[data-original-title] {
+ cursor: help;
+ border-bottom: 1px dotted #777;
}
-
-.icon-minus-sign {
- background-position: -24px -96px;
+.initialism {
+ font-size: 90%;
+ text-transform: uppercase;
}
-
-.icon-remove-sign {
- background-position: -48px -96px;
+blockquote {
+ padding: 10px 20px;
+ margin: 0 0 20px;
+ font-size: 17.5px;
+ border-left: 5px solid #eee;
+}
+blockquote p:last-child,
+blockquote ul:last-child,
+blockquote ol:last-child {
+ margin-bottom: 0;
}
-
-.icon-ok-sign {
- background-position: -72px -96px;
+blockquote footer,
+blockquote small,
+blockquote .small {
+ display: block;
+ font-size: 80%;
+ line-height: 1.42857143;
+ color: #777;
}
-
-.icon-question-sign {
- background-position: -96px -96px;
+blockquote footer:before,
+blockquote small:before,
+blockquote .small:before {
+ content: '\2014 \00A0';
}
-
-.icon-info-sign {
- background-position: -120px -96px;
+.blockquote-reverse,
+blockquote.pull-right {
+ padding-right: 15px;
+ padding-left: 0;
+ text-align: right;
+ border-right: 5px solid #eee;
+ border-left: 0;
}
-
-.icon-screenshot {
- background-position: -144px -96px;
+.blockquote-reverse footer:before,
+blockquote.pull-right footer:before,
+.blockquote-reverse small:before,
+blockquote.pull-right small:before,
+.blockquote-reverse .small:before,
+blockquote.pull-right .small:before {
+ content: '';
}
-
-.icon-remove-circle {
- background-position: -168px -96px;
+.blockquote-reverse footer:after,
+blockquote.pull-right footer:after,
+.blockquote-reverse small:after,
+blockquote.pull-right small:after,
+.blockquote-reverse .small:after,
+blockquote.pull-right .small:after {
+ content: '\00A0 \2014';
}
-
-.icon-ok-circle {
- background-position: -192px -96px;
+address {
+ margin-bottom: 20px;
+ font-style: normal;
+ line-height: 1.42857143;
}
-
-.icon-ban-circle {
- background-position: -216px -96px;
+code,
+kbd,
+pre,
+samp {
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
-
-.icon-arrow-left {
- background-position: -240px -96px;
+code {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #c7254e;
+ background-color: #f9f2f4;
+ border-radius: 4px;
}
-
-.icon-arrow-right {
- background-position: -264px -96px;
+kbd {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #fff;
+ background-color: #333;
+ border-radius: 3px;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
-
-.icon-arrow-up {
- background-position: -289px -96px;
+kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: bold;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
-
-.icon-arrow-down {
- background-position: -312px -96px;
+pre {
+ display: block;
+ padding: 9.5px;
+ margin: 0 0 10px;
+ font-size: 13px;
+ line-height: 1.42857143;
+ color: #333;
+ word-break: break-all;
+ word-wrap: break-word;
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ border-radius: 4px;
}
-
-.icon-share-alt {
- background-position: -336px -96px;
+pre code {
+ padding: 0;
+ font-size: inherit;
+ color: inherit;
+ white-space: pre-wrap;
+ background-color: transparent;
+ border-radius: 0;
}
-
-.icon-resize-full {
- background-position: -360px -96px;
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll;
}
-
-.icon-resize-small {
- background-position: -384px -96px;
+.container {
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto;
}
-
-.icon-plus {
- background-position: -408px -96px;
+@media (min-width: 768px) {
+ .container {
+ width: 750px;
+ }
}
-
-.icon-minus {
- background-position: -433px -96px;
+@media (min-width: 992px) {
+ .container {
+ width: 970px;
+ }
}
-
-.icon-asterisk {
- background-position: -456px -96px;
+@media (min-width: 1200px) {
+ .container {
+ width: 1170px;
+ }
}
-
-.icon-exclamation-sign {
- background-position: 0 -120px;
+.container-fluid {
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto;
}
-
-.icon-gift {
- background-position: -24px -120px;
+.row {
+ margin-right: -15px;
+ margin-left: -15px;
}
-
-.icon-leaf {
- background-position: -48px -120px;
-}
-
-.icon-fire {
- background-position: -72px -120px;
-}
-
-.icon-eye-open {
- background-position: -96px -120px;
-}
-
-.icon-eye-close {
- background-position: -120px -120px;
-}
-
-.icon-warning-sign {
- background-position: -144px -120px;
-}
-
-.icon-plane {
- background-position: -168px -120px;
-}
-
-.icon-calendar {
- background-position: -192px -120px;
+.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+ position: relative;
+ min-height: 1px;
+ padding-right: 15px;
+ padding-left: 15px;
}
-
-.icon-random {
- background-position: -216px -120px;
+.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
+ float: left;
}
-
-.icon-comment {
- background-position: -240px -120px;
+.col-xs-12 {
+ width: 100%;
}
-
-.icon-magnet {
- background-position: -264px -120px;
+.col-xs-11 {
+ width: 91.66666667%;
}
-
-.icon-chevron-up {
- background-position: -288px -120px;
+.col-xs-10 {
+ width: 83.33333333%;
}
-
-.icon-chevron-down {
- background-position: -313px -119px;
+.col-xs-9 {
+ width: 75%;
}
-
-.icon-retweet {
- background-position: -336px -120px;
+.col-xs-8 {
+ width: 66.66666667%;
}
-
-.icon-shopping-cart {
- background-position: -360px -120px;
+.col-xs-7 {
+ width: 58.33333333%;
}
-
-.icon-folder-close {
- background-position: -384px -120px;
+.col-xs-6 {
+ width: 50%;
}
-
-.icon-folder-open {
- background-position: -408px -120px;
+.col-xs-5 {
+ width: 41.66666667%;
}
-
-.icon-resize-vertical {
- background-position: -432px -119px;
+.col-xs-4 {
+ width: 33.33333333%;
}
-
-.icon-resize-horizontal {
- background-position: -456px -118px;
+.col-xs-3 {
+ width: 25%;
}
-
-.icon-hdd {
- background-position: 0 -144px;
+.col-xs-2 {
+ width: 16.66666667%;
}
-
-.icon-bullhorn {
- background-position: -24px -144px;
+.col-xs-1 {
+ width: 8.33333333%;
}
-
-.icon-bell {
- background-position: -48px -144px;
+.col-xs-pull-12 {
+ right: 100%;
}
-
-.icon-certificate {
- background-position: -72px -144px;
+.col-xs-pull-11 {
+ right: 91.66666667%;
}
-
-.icon-thumbs-up {
- background-position: -96px -144px;
+.col-xs-pull-10 {
+ right: 83.33333333%;
}
-
-.icon-thumbs-down {
- background-position: -120px -144px;
+.col-xs-pull-9 {
+ right: 75%;
}
-
-.icon-hand-right {
- background-position: -144px -144px;
+.col-xs-pull-8 {
+ right: 66.66666667%;
}
-
-.icon-hand-left {
- background-position: -168px -144px;
+.col-xs-pull-7 {
+ right: 58.33333333%;
}
-
-.icon-hand-up {
- background-position: -192px -144px;
+.col-xs-pull-6 {
+ right: 50%;
}
-
-.icon-hand-down {
- background-position: -216px -144px;
+.col-xs-pull-5 {
+ right: 41.66666667%;
}
-
-.icon-circle-arrow-right {
- background-position: -240px -144px;
+.col-xs-pull-4 {
+ right: 33.33333333%;
}
-
-.icon-circle-arrow-left {
- background-position: -264px -144px;
+.col-xs-pull-3 {
+ right: 25%;
}
-
-.icon-circle-arrow-up {
- background-position: -288px -144px;
+.col-xs-pull-2 {
+ right: 16.66666667%;
}
-
-.icon-circle-arrow-down {
- background-position: -312px -144px;
+.col-xs-pull-1 {
+ right: 8.33333333%;
}
-
-.icon-globe {
- background-position: -336px -144px;
+.col-xs-pull-0 {
+ right: auto;
}
-
-.icon-wrench {
- background-position: -360px -144px;
+.col-xs-push-12 {
+ left: 100%;
}
-
-.icon-tasks {
- background-position: -384px -144px;
+.col-xs-push-11 {
+ left: 91.66666667%;
}
-
-.icon-filter {
- background-position: -408px -144px;
+.col-xs-push-10 {
+ left: 83.33333333%;
}
-
-.icon-briefcase {
- background-position: -432px -144px;
+.col-xs-push-9 {
+ left: 75%;
}
-
-.icon-fullscreen {
- background-position: -456px -144px;
+.col-xs-push-8 {
+ left: 66.66666667%;
}
-
-.dropup,
-.dropdown {
- position: relative;
+.col-xs-push-7 {
+ left: 58.33333333%;
}
-
-.dropdown-toggle {
- *margin-bottom: -3px;
+.col-xs-push-6 {
+ left: 50%;
}
-
-.dropdown-toggle:active,
-.open .dropdown-toggle {
- outline: 0;
+.col-xs-push-5 {
+ left: 41.66666667%;
}
-
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- vertical-align: top;
- border-top: 4px solid #000000;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
- opacity: 0.3;
- filter: alpha(opacity=30);
+.col-xs-push-4 {
+ left: 33.33333333%;
}
-
-.dropdown .caret {
- margin-top: 8px;
- margin-left: 2px;
+.col-xs-push-3 {
+ left: 25%;
}
-
-.dropdown:hover .caret,
-.open .caret {
- opacity: 1;
- filter: alpha(opacity=100);
+.col-xs-push-2 {
+ left: 16.66666667%;
}
-
-.dropdown-menu {
- position: absolute;
- top: 33px;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 4px 0;
- margin: 1px 0 0;
- list-style: none;
- background-color: #ffffff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- *border-right-width: 2px;
- *border-bottom-width: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
+.col-xs-push-1 {
+ left: 8.33333333%;
}
-
-.dropdown-menu.pull-right {
- right: 0;
+.col-xs-push-0 {
left: auto;
}
-
-.dropdown-menu .divider {
- *width: 100%;
- height: 1px;
- margin: 8px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-
-.dropdown-menu a {
- display: block;
- padding: 3px 15px;
- clear: both;
- font-weight: normal;
- line-height: 18px;
- color: #333333;
- white-space: nowrap;
-}
-
-.dropdown-menu li > a:hover,
-.dropdown-menu .active > a,
-.dropdown-menu .active > a:hover {
- color: #ffffff;
- text-decoration: none;
- background-color: #0088cc;
+.col-xs-offset-12 {
+ margin-left: 100%;
}
-
-.open {
- *z-index: 1000;
+.col-xs-offset-11 {
+ margin-left: 91.66666667%;
}
-
-.open > .dropdown-menu {
- display: block;
+.col-xs-offset-10 {
+ margin-left: 83.33333333%;
}
-
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
+.col-xs-offset-9 {
+ margin-left: 75%;
}
-
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0;
- border-bottom: 4px solid #000000;
- content: "\2191";
+.col-xs-offset-8 {
+ margin-left: 66.66666667%;
}
-
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 1px;
+.col-xs-offset-7 {
+ margin-left: 58.33333333%;
}
-
-.typeahead {
- margin-top: 2px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.col-xs-offset-6 {
+ margin-left: 50%;
}
-
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #eee;
- border: 1px solid rgba(0, 0, 0, 0.05);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+.col-xs-offset-5 {
+ margin-left: 41.66666667%;
}
-
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
+.col-xs-offset-4 {
+ margin-left: 33.33333333%;
}
-
-.well-large {
- padding: 24px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
+.col-xs-offset-3 {
+ margin-left: 25%;
}
-
-.well-small {
- padding: 9px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
+.col-xs-offset-2 {
+ margin-left: 16.66666667%;
}
-
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- -moz-transition: opacity 0.15s linear;
- -ms-transition: opacity 0.15s linear;
- -o-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
+.col-xs-offset-1 {
+ margin-left: 8.33333333%;
}
-
-.fade.in {
- opacity: 1;
+.col-xs-offset-0 {
+ margin-left: 0;
}
-
-.collapse {
- position: relative;
- height: 0;
- overflow: hidden;
- -webkit-transition: height 0.35s ease;
- -moz-transition: height 0.35s ease;
- -ms-transition: height 0.35s ease;
- -o-transition: height 0.35s ease;
- transition: height 0.35s ease;
+@media (min-width: 768px) {
+ .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
+ float: left;
+ }
+ .col-sm-12 {
+ width: 100%;
+ }
+ .col-sm-11 {
+ width: 91.66666667%;
+ }
+ .col-sm-10 {
+ width: 83.33333333%;
+ }
+ .col-sm-9 {
+ width: 75%;
+ }
+ .col-sm-8 {
+ width: 66.66666667%;
+ }
+ .col-sm-7 {
+ width: 58.33333333%;
+ }
+ .col-sm-6 {
+ width: 50%;
+ }
+ .col-sm-5 {
+ width: 41.66666667%;
+ }
+ .col-sm-4 {
+ width: 33.33333333%;
+ }
+ .col-sm-3 {
+ width: 25%;
+ }
+ .col-sm-2 {
+ width: 16.66666667%;
+ }
+ .col-sm-1 {
+ width: 8.33333333%;
+ }
+ .col-sm-pull-12 {
+ right: 100%;
+ }
+ .col-sm-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-sm-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-sm-pull-9 {
+ right: 75%;
+ }
+ .col-sm-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-sm-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-sm-pull-6 {
+ right: 50%;
+ }
+ .col-sm-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-sm-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-sm-pull-3 {
+ right: 25%;
+ }
+ .col-sm-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-sm-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-sm-pull-0 {
+ right: auto;
+ }
+ .col-sm-push-12 {
+ left: 100%;
+ }
+ .col-sm-push-11 {
+ left: 91.66666667%;
+ }
+ .col-sm-push-10 {
+ left: 83.33333333%;
+ }
+ .col-sm-push-9 {
+ left: 75%;
+ }
+ .col-sm-push-8 {
+ left: 66.66666667%;
+ }
+ .col-sm-push-7 {
+ left: 58.33333333%;
+ }
+ .col-sm-push-6 {
+ left: 50%;
+ }
+ .col-sm-push-5 {
+ left: 41.66666667%;
+ }
+ .col-sm-push-4 {
+ left: 33.33333333%;
+ }
+ .col-sm-push-3 {
+ left: 25%;
+ }
+ .col-sm-push-2 {
+ left: 16.66666667%;
+ }
+ .col-sm-push-1 {
+ left: 8.33333333%;
+ }
+ .col-sm-push-0 {
+ left: auto;
+ }
+ .col-sm-offset-12 {
+ margin-left: 100%;
+ }
+ .col-sm-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-sm-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-sm-offset-9 {
+ margin-left: 75%;
+ }
+ .col-sm-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-sm-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-sm-offset-6 {
+ margin-left: 50%;
+ }
+ .col-sm-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-sm-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-sm-offset-3 {
+ margin-left: 25%;
+ }
+ .col-sm-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-sm-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-sm-offset-0 {
+ margin-left: 0;
+ }
}
-
-.collapse.in {
- height: auto;
+@media (min-width: 992px) {
+ .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
+ float: left;
+ }
+ .col-md-12 {
+ width: 100%;
+ }
+ .col-md-11 {
+ width: 91.66666667%;
+ }
+ .col-md-10 {
+ width: 83.33333333%;
+ }
+ .col-md-9 {
+ width: 75%;
+ }
+ .col-md-8 {
+ width: 66.66666667%;
+ }
+ .col-md-7 {
+ width: 58.33333333%;
+ }
+ .col-md-6 {
+ width: 50%;
+ }
+ .col-md-5 {
+ width: 41.66666667%;
+ }
+ .col-md-4 {
+ width: 33.33333333%;
+ }
+ .col-md-3 {
+ width: 25%;
+ }
+ .col-md-2 {
+ width: 16.66666667%;
+ }
+ .col-md-1 {
+ width: 8.33333333%;
+ }
+ .col-md-pull-12 {
+ right: 100%;
+ }
+ .col-md-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-md-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-md-pull-9 {
+ right: 75%;
+ }
+ .col-md-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-md-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-md-pull-6 {
+ right: 50%;
+ }
+ .col-md-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-md-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-md-pull-3 {
+ right: 25%;
+ }
+ .col-md-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-md-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-md-pull-0 {
+ right: auto;
+ }
+ .col-md-push-12 {
+ left: 100%;
+ }
+ .col-md-push-11 {
+ left: 91.66666667%;
+ }
+ .col-md-push-10 {
+ left: 83.33333333%;
+ }
+ .col-md-push-9 {
+ left: 75%;
+ }
+ .col-md-push-8 {
+ left: 66.66666667%;
+ }
+ .col-md-push-7 {
+ left: 58.33333333%;
+ }
+ .col-md-push-6 {
+ left: 50%;
+ }
+ .col-md-push-5 {
+ left: 41.66666667%;
+ }
+ .col-md-push-4 {
+ left: 33.33333333%;
+ }
+ .col-md-push-3 {
+ left: 25%;
+ }
+ .col-md-push-2 {
+ left: 16.66666667%;
+ }
+ .col-md-push-1 {
+ left: 8.33333333%;
+ }
+ .col-md-push-0 {
+ left: auto;
+ }
+ .col-md-offset-12 {
+ margin-left: 100%;
+ }
+ .col-md-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-md-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-md-offset-9 {
+ margin-left: 75%;
+ }
+ .col-md-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-md-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-md-offset-6 {
+ margin-left: 50%;
+ }
+ .col-md-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-md-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-md-offset-3 {
+ margin-left: 25%;
+ }
+ .col-md-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-md-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-md-offset-0 {
+ margin-left: 0;
+ }
}
-
-.close {
- float: right;
- font-size: 20px;
- font-weight: bold;
- line-height: 18px;
- color: #000000;
- text-shadow: 0 1px 0 #ffffff;
- opacity: 0.2;
- filter: alpha(opacity=20);
+@media (min-width: 1200px) {
+ .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
+ float: left;
+ }
+ .col-lg-12 {
+ width: 100%;
+ }
+ .col-lg-11 {
+ width: 91.66666667%;
+ }
+ .col-lg-10 {
+ width: 83.33333333%;
+ }
+ .col-lg-9 {
+ width: 75%;
+ }
+ .col-lg-8 {
+ width: 66.66666667%;
+ }
+ .col-lg-7 {
+ width: 58.33333333%;
+ }
+ .col-lg-6 {
+ width: 50%;
+ }
+ .col-lg-5 {
+ width: 41.66666667%;
+ }
+ .col-lg-4 {
+ width: 33.33333333%;
+ }
+ .col-lg-3 {
+ width: 25%;
+ }
+ .col-lg-2 {
+ width: 16.66666667%;
+ }
+ .col-lg-1 {
+ width: 8.33333333%;
+ }
+ .col-lg-pull-12 {
+ right: 100%;
+ }
+ .col-lg-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-lg-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-lg-pull-9 {
+ right: 75%;
+ }
+ .col-lg-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-lg-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-lg-pull-6 {
+ right: 50%;
+ }
+ .col-lg-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-lg-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-lg-pull-3 {
+ right: 25%;
+ }
+ .col-lg-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-lg-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-lg-pull-0 {
+ right: auto;
+ }
+ .col-lg-push-12 {
+ left: 100%;
+ }
+ .col-lg-push-11 {
+ left: 91.66666667%;
+ }
+ .col-lg-push-10 {
+ left: 83.33333333%;
+ }
+ .col-lg-push-9 {
+ left: 75%;
+ }
+ .col-lg-push-8 {
+ left: 66.66666667%;
+ }
+ .col-lg-push-7 {
+ left: 58.33333333%;
+ }
+ .col-lg-push-6 {
+ left: 50%;
+ }
+ .col-lg-push-5 {
+ left: 41.66666667%;
+ }
+ .col-lg-push-4 {
+ left: 33.33333333%;
+ }
+ .col-lg-push-3 {
+ left: 25%;
+ }
+ .col-lg-push-2 {
+ left: 16.66666667%;
+ }
+ .col-lg-push-1 {
+ left: 8.33333333%;
+ }
+ .col-lg-push-0 {
+ left: auto;
+ }
+ .col-lg-offset-12 {
+ margin-left: 100%;
+ }
+ .col-lg-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-lg-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-lg-offset-9 {
+ margin-left: 75%;
+ }
+ .col-lg-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-lg-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-lg-offset-6 {
+ margin-left: 50%;
+ }
+ .col-lg-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-lg-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-lg-offset-3 {
+ margin-left: 25%;
+ }
+ .col-lg-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-lg-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-lg-offset-0 {
+ margin-left: 0;
+ }
}
-
-.close:hover {
- color: #000000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.4;
- filter: alpha(opacity=40);
+table {
+ background-color: transparent;
}
-
-button.close {
+caption {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ color: #777;
+ text-align: left;
+}
+th {
+ text-align: left;
+}
+.table {
+ width: 100%;
+ max-width: 100%;
+ margin-bottom: 20px;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+ padding: 8px;
+ line-height: 1.42857143;
+ vertical-align: top;
+ border-top: 1px solid #ddd;
+}
+.table > thead > tr > th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #ddd;
+}
+.table > caption + thead > tr:first-child > th,
+.table > colgroup + thead > tr:first-child > th,
+.table > thead:first-child > tr:first-child > th,
+.table > caption + thead > tr:first-child > td,
+.table > colgroup + thead > tr:first-child > td,
+.table > thead:first-child > tr:first-child > td {
+ border-top: 0;
+}
+.table > tbody + tbody {
+ border-top: 2px solid #ddd;
+}
+.table .table {
+ background-color: #fff;
+}
+.table-condensed > thead > tr > th,
+.table-condensed > tbody > tr > th,
+.table-condensed > tfoot > tr > th,
+.table-condensed > thead > tr > td,
+.table-condensed > tbody > tr > td,
+.table-condensed > tfoot > tr > td {
+ padding: 5px;
+}
+.table-bordered {
+ border: 1px solid #ddd;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+ border: 1px solid #ddd;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+ border-bottom-width: 2px;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+ background-color: #f9f9f9;
+}
+.table-hover > tbody > tr:hover {
+ background-color: #f5f5f5;
+}
+table col[class*="col-"] {
+ position: static;
+ display: table-column;
+ float: none;
+}
+table td[class*="col-"],
+table th[class*="col-"] {
+ position: static;
+ display: table-cell;
+ float: none;
+}
+.table > thead > tr > td.active,
+.table > tbody > tr > td.active,
+.table > tfoot > tr > td.active,
+.table > thead > tr > th.active,
+.table > tbody > tr > th.active,
+.table > tfoot > tr > th.active,
+.table > thead > tr.active > td,
+.table > tbody > tr.active > td,
+.table > tfoot > tr.active > td,
+.table > thead > tr.active > th,
+.table > tbody > tr.active > th,
+.table > tfoot > tr.active > th {
+ background-color: #f5f5f5;
+}
+.table-hover > tbody > tr > td.active:hover,
+.table-hover > tbody > tr > th.active:hover,
+.table-hover > tbody > tr.active:hover > td,
+.table-hover > tbody > tr:hover > .active,
+.table-hover > tbody > tr.active:hover > th {
+ background-color: #e8e8e8;
+}
+.table > thead > tr > td.success,
+.table > tbody > tr > td.success,
+.table > tfoot > tr > td.success,
+.table > thead > tr > th.success,
+.table > tbody > tr > th.success,
+.table > tfoot > tr > th.success,
+.table > thead > tr.success > td,
+.table > tbody > tr.success > td,
+.table > tfoot > tr.success > td,
+.table > thead > tr.success > th,
+.table > tbody > tr.success > th,
+.table > tfoot > tr.success > th {
+ background-color: #dff0d8;
+}
+.table-hover > tbody > tr > td.success:hover,
+.table-hover > tbody > tr > th.success:hover,
+.table-hover > tbody > tr.success:hover > td,
+.table-hover > tbody > tr:hover > .success,
+.table-hover > tbody > tr.success:hover > th {
+ background-color: #d0e9c6;
+}
+.table > thead > tr > td.info,
+.table > tbody > tr > td.info,
+.table > tfoot > tr > td.info,
+.table > thead > tr > th.info,
+.table > tbody > tr > th.info,
+.table > tfoot > tr > th.info,
+.table > thead > tr.info > td,
+.table > tbody > tr.info > td,
+.table > tfoot > tr.info > td,
+.table > thead > tr.info > th,
+.table > tbody > tr.info > th,
+.table > tfoot > tr.info > th {
+ background-color: #d9edf7;
+}
+.table-hover > tbody > tr > td.info:hover,
+.table-hover > tbody > tr > th.info:hover,
+.table-hover > tbody > tr.info:hover > td,
+.table-hover > tbody > tr:hover > .info,
+.table-hover > tbody > tr.info:hover > th {
+ background-color: #c4e3f3;
+}
+.table > thead > tr > td.warning,
+.table > tbody > tr > td.warning,
+.table > tfoot > tr > td.warning,
+.table > thead > tr > th.warning,
+.table > tbody > tr > th.warning,
+.table > tfoot > tr > th.warning,
+.table > thead > tr.warning > td,
+.table > tbody > tr.warning > td,
+.table > tfoot > tr.warning > td,
+.table > thead > tr.warning > th,
+.table > tbody > tr.warning > th,
+.table > tfoot > tr.warning > th {
+ background-color: #fcf8e3;
+}
+.table-hover > tbody > tr > td.warning:hover,
+.table-hover > tbody > tr > th.warning:hover,
+.table-hover > tbody > tr.warning:hover > td,
+.table-hover > tbody > tr:hover > .warning,
+.table-hover > tbody > tr.warning:hover > th {
+ background-color: #faf2cc;
+}
+.table > thead > tr > td.danger,
+.table > tbody > tr > td.danger,
+.table > tfoot > tr > td.danger,
+.table > thead > tr > th.danger,
+.table > tbody > tr > th.danger,
+.table > tfoot > tr > th.danger,
+.table > thead > tr.danger > td,
+.table > tbody > tr.danger > td,
+.table > tfoot > tr.danger > td,
+.table > thead > tr.danger > th,
+.table > tbody > tr.danger > th,
+.table > tfoot > tr.danger > th {
+ background-color: #f2dede;
+}
+.table-hover > tbody > tr > td.danger:hover,
+.table-hover > tbody > tr > th.danger:hover,
+.table-hover > tbody > tr.danger:hover > td,
+.table-hover > tbody > tr:hover > .danger,
+.table-hover > tbody > tr.danger:hover > th {
+ background-color: #ebcccc;
+}
+.table-responsive {
+ min-height: .01%;
+ overflow-x: auto;
+}
+@media screen and (max-width: 767px) {
+ .table-responsive {
+ width: 100%;
+ margin-bottom: 15px;
+ overflow-y: hidden;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
+ border: 1px solid #ddd;
+ }
+ .table-responsive > .table {
+ margin-bottom: 0;
+ }
+ .table-responsive > .table > thead > tr > th,
+ .table-responsive > .table > tbody > tr > th,
+ .table-responsive > .table > tfoot > tr > th,
+ .table-responsive > .table > thead > tr > td,
+ .table-responsive > .table > tbody > tr > td,
+ .table-responsive > .table > tfoot > tr > td {
+ white-space: nowrap;
+ }
+ .table-responsive > .table-bordered {
+ border: 0;
+ }
+ .table-responsive > .table-bordered > thead > tr > th:first-child,
+ .table-responsive > .table-bordered > tbody > tr > th:first-child,
+ .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+ .table-responsive > .table-bordered > thead > tr > td:first-child,
+ .table-responsive > .table-bordered > tbody > tr > td:first-child,
+ .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+ border-left: 0;
+ }
+ .table-responsive > .table-bordered > thead > tr > th:last-child,
+ .table-responsive > .table-bordered > tbody > tr > th:last-child,
+ .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+ .table-responsive > .table-bordered > thead > tr > td:last-child,
+ .table-responsive > .table-bordered > tbody > tr > td:last-child,
+ .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+ border-right: 0;
+ }
+ .table-responsive > .table-bordered > tbody > tr:last-child > th,
+ .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+ .table-responsive > .table-bordered > tbody > tr:last-child > td,
+ .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+ border-bottom: 0;
+ }
+}
+fieldset {
+ min-width: 0;
padding: 0;
- cursor: pointer;
- background: transparent;
+ margin: 0;
border: 0;
+}
+legend {
+ display: block;
+ width: 100%;
+ padding: 0;
+ margin-bottom: 20px;
+ font-size: 21px;
+ line-height: inherit;
+ color: #333;
+ border: 0;
+ border-bottom: 1px solid #e5e5e5;
+}
+label {
+ display: inline-block;
+ max-width: 100%;
+ margin-bottom: 5px;
+ font-weight: bold;
+}
+input[type="search"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+input[type="radio"],
+input[type="checkbox"] {
+ margin: 4px 0 0;
+ margin-top: 1px \9;
+ line-height: normal;
+}
+input[type="file"] {
+ display: block;
+}
+input[type="range"] {
+ display: block;
+ width: 100%;
+}
+select[multiple],
+select[size] {
+ height: auto;
+}
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+output {
+ display: block;
+ padding-top: 7px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #555;
+}
+.form-control {
+ display: block;
+ width: 100%;
+ height: 34px;
+ padding: 6px 12px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #555;
+ background-color: #fff;
+ background-image: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+ -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.form-control:focus {
+ border-color: #66afe9;
+ outline: 0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
+}
+.form-control::-moz-placeholder {
+ color: #999;
+ opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+ color: #999;
+}
+.form-control::-webkit-input-placeholder {
+ color: #999;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+ cursor: not-allowed;
+ background-color: #eee;
+ opacity: 1;
+}
+textarea.form-control {
+ height: auto;
+}
+input[type="search"] {
-webkit-appearance: none;
}
-
-.btn {
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+ input[type="date"],
+ input[type="time"],
+ input[type="datetime-local"],
+ input[type="month"] {
+ line-height: 34px;
+ }
+ input[type="date"].input-sm,
+ input[type="time"].input-sm,
+ input[type="datetime-local"].input-sm,
+ input[type="month"].input-sm,
+ .input-group-sm input[type="date"],
+ .input-group-sm input[type="time"],
+ .input-group-sm input[type="datetime-local"],
+ .input-group-sm input[type="month"] {
+ line-height: 30px;
+ }
+ input[type="date"].input-lg,
+ input[type="time"].input-lg,
+ input[type="datetime-local"].input-lg,
+ input[type="month"].input-lg,
+ .input-group-lg input[type="date"],
+ .input-group-lg input[type="time"],
+ .input-group-lg input[type="datetime-local"],
+ .input-group-lg input[type="month"] {
+ line-height: 46px;
+ }
+}
+.form-group {
+ margin-bottom: 15px;
+}
+.radio,
+.checkbox {
+ position: relative;
+ display: block;
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+.radio label,
+.checkbox label {
+ min-height: 20px;
+ padding-left: 20px;
+ margin-bottom: 0;
+ font-weight: normal;
+ cursor: pointer;
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+ position: absolute;
+ margin-top: 4px \9;
+ margin-left: -20px;
+}
+.radio + .radio,
+.checkbox + .checkbox {
+ margin-top: -5px;
+}
+.radio-inline,
+.checkbox-inline {
display: inline-block;
- *display: inline;
- padding: 4px 10px 4px;
+ padding-left: 20px;
margin-bottom: 0;
- *margin-left: .3em;
- font-size: 13px;
- line-height: 18px;
- *line-height: 20px;
- color: #333333;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
+ font-weight: normal;
vertical-align: middle;
cursor: pointer;
- background-color: #f5f5f5;
- *background-color: #e6e6e6;
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- border: 1px solid #cccccc;
- *border: 0;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-bottom-color: #b3b3b3;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- *zoom: 1;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
-
-.btn:hover,
-.btn:active,
-.btn.active,
-.btn.disabled,
-.btn[disabled] {
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+ margin-top: 0;
+ margin-left: 10px;
}
-
-.btn:active,
-.btn.active {
- background-color: #cccccc \9;
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"].disabled,
+input[type="checkbox"].disabled,
+fieldset[disabled] input[type="radio"],
+fieldset[disabled] input[type="checkbox"] {
+ cursor: not-allowed;
}
-
-.btn:first-child {
- *margin-left: 0;
+.radio-inline.disabled,
+.checkbox-inline.disabled,
+fieldset[disabled] .radio-inline,
+fieldset[disabled] .checkbox-inline {
+ cursor: not-allowed;
+}
+.radio.disabled label,
+.checkbox.disabled label,
+fieldset[disabled] .radio label,
+fieldset[disabled] .checkbox label {
+ cursor: not-allowed;
+}
+.form-control-static {
+ padding-top: 7px;
+ padding-bottom: 7px;
+ margin-bottom: 0;
+}
+.form-control-static.input-lg,
+.form-control-static.input-sm {
+ padding-right: 0;
+ padding-left: 0;
+}
+.input-sm {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.input-sm {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.input-sm,
+select[multiple].input-sm {
+ height: auto;
+}
+.form-group-sm .form-control {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.form-group-sm .form-control {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.form-group-sm .form-control,
+select[multiple].form-group-sm .form-control {
+ height: auto;
+}
+.form-group-sm .form-control-static {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+}
+.input-lg {
+ height: 46px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.input-lg {
+ height: 46px;
+ line-height: 46px;
+}
+textarea.input-lg,
+select[multiple].input-lg {
+ height: auto;
+}
+.form-group-lg .form-control {
+ height: 46px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.form-group-lg .form-control {
+ height: 46px;
+ line-height: 46px;
+}
+textarea.form-group-lg .form-control,
+select[multiple].form-group-lg .form-control {
+ height: auto;
+}
+.form-group-lg .form-control-static {
+ height: 46px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+}
+.has-feedback {
+ position: relative;
+}
+.has-feedback .form-control {
+ padding-right: 42.5px;
+}
+.form-control-feedback {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 2;
+ display: block;
+ width: 34px;
+ height: 34px;
+ line-height: 34px;
+ text-align: center;
+ pointer-events: none;
+}
+.input-lg + .form-control-feedback {
+ width: 46px;
+ height: 46px;
+ line-height: 46px;
+}
+.input-sm + .form-control-feedback {
+ width: 30px;
+ height: 30px;
+ line-height: 30px;
+}
+.has-success .help-block,
+.has-success .control-label,
+.has-success .radio,
+.has-success .checkbox,
+.has-success .radio-inline,
+.has-success .checkbox-inline,
+.has-success.radio label,
+.has-success.checkbox label,
+.has-success.radio-inline label,
+.has-success.checkbox-inline label {
+ color: #3c763d;
+}
+.has-success .form-control {
+ border-color: #3c763d;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+}
+.has-success .form-control:focus {
+ border-color: #2b542c;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
+}
+.has-success .input-group-addon {
+ color: #3c763d;
+ background-color: #dff0d8;
+ border-color: #3c763d;
+}
+.has-success .form-control-feedback {
+ color: #3c763d;
+}
+.has-warning .help-block,
+.has-warning .control-label,
+.has-warning .radio,
+.has-warning .checkbox,
+.has-warning .radio-inline,
+.has-warning .checkbox-inline,
+.has-warning.radio label,
+.has-warning.checkbox label,
+.has-warning.radio-inline label,
+.has-warning.checkbox-inline label {
+ color: #8a6d3b;
+}
+.has-warning .form-control {
+ border-color: #8a6d3b;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+}
+.has-warning .form-control:focus {
+ border-color: #66512c;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
+}
+.has-warning .input-group-addon {
+ color: #8a6d3b;
+ background-color: #fcf8e3;
+ border-color: #8a6d3b;
+}
+.has-warning .form-control-feedback {
+ color: #8a6d3b;
+}
+.has-error .help-block,
+.has-error .control-label,
+.has-error .radio,
+.has-error .checkbox,
+.has-error .radio-inline,
+.has-error .checkbox-inline,
+.has-error.radio label,
+.has-error.checkbox label,
+.has-error.radio-inline label,
+.has-error.checkbox-inline label {
+ color: #a94442;
+}
+.has-error .form-control {
+ border-color: #a94442;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
+}
+.has-error .form-control:focus {
+ border-color: #843534;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
+}
+.has-error .input-group-addon {
+ color: #a94442;
+ background-color: #f2dede;
+ border-color: #a94442;
+}
+.has-error .form-control-feedback {
+ color: #a94442;
+}
+.has-feedback label ~ .form-control-feedback {
+ top: 25px;
+}
+.has-feedback label.sr-only ~ .form-control-feedback {
+ top: 0;
+}
+.help-block {
+ display: block;
+ margin-top: 5px;
+ margin-bottom: 10px;
+ color: #737373;
+}
+@media (min-width: 768px) {
+ .form-inline .form-group {
+ display: inline-block;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle;
+ }
+ .form-inline .form-control-static {
+ display: inline-block;
+ }
+ .form-inline .input-group {
+ display: inline-table;
+ vertical-align: middle;
+ }
+ .form-inline .input-group .input-group-addon,
+ .form-inline .input-group .input-group-btn,
+ .form-inline .input-group .form-control {
+ width: auto;
+ }
+ .form-inline .input-group > .form-control {
+ width: 100%;
+ }
+ .form-inline .control-label {
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .radio,
+ .form-inline .checkbox {
+ display: inline-block;
+ margin-top: 0;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .radio label,
+ .form-inline .checkbox label {
+ padding-left: 0;
+ }
+ .form-inline .radio input[type="radio"],
+ .form-inline .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0;
+ }
+ .form-inline .has-feedback .form-control-feedback {
+ top: 0;
+ }
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox,
+.form-horizontal .radio-inline,
+.form-horizontal .checkbox-inline {
+ padding-top: 7px;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox {
+ min-height: 27px;
+}
+.form-horizontal .form-group {
+ margin-right: -15px;
+ margin-left: -15px;
+}
+@media (min-width: 768px) {
+ .form-horizontal .control-label {
+ padding-top: 7px;
+ margin-bottom: 0;
+ text-align: right;
+ }
+}
+.form-horizontal .has-feedback .form-control-feedback {
+ right: 15px;
+}
+@media (min-width: 768px) {
+ .form-horizontal .form-group-lg .control-label {
+ padding-top: 14.333333px;
+ }
+}
+@media (min-width: 768px) {
+ .form-horizontal .form-group-sm .control-label {
+ padding-top: 6px;
+ }
+}
+.btn {
+ display: inline-block;
+ padding: 6px 12px;
+ margin-bottom: 0;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.42857143;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: middle;
+ -ms-touch-action: manipulation;
+ touch-action: manipulation;
+ cursor: pointer;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ background-image: none;
+ border: 1px solid transparent;
+ border-radius: 4px;
+}
+.btn:focus,
+.btn:active:focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn.active.focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+.btn:hover,
+.btn:focus,
+.btn.focus {
+ color: #333;
+ text-decoration: none;
+}
+.btn:active,
+.btn.active {
+ background-image: none;
+ outline: 0;
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+ pointer-events: none;
+ cursor: not-allowed;
+ filter: alpha(opacity=65);
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ opacity: .65;
+}
+.btn-default {
+ color: #333;
+ background-color: #fff;
+ border-color: #ccc;
+}
+.btn-default:hover,
+.btn-default:focus,
+.btn-default.focus,
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+ color: #333;
+ background-color: #e6e6e6;
+ border-color: #adadad;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+ background-image: none;
+}
+.btn-default.disabled,
+.btn-default[disabled],
+fieldset[disabled] .btn-default,
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled.focus,
+.btn-default[disabled].focus,
+fieldset[disabled] .btn-default.focus,
+.btn-default.disabled:active,
+.btn-default[disabled]:active,
+fieldset[disabled] .btn-default:active,
+.btn-default.disabled.active,
+.btn-default[disabled].active,
+fieldset[disabled] .btn-default.active {
+ background-color: #fff;
+ border-color: #ccc;
+}
+.btn-default .badge {
+ color: #fff;
+ background-color: #333;
+}
+.btn-primary {
+ color: #fff;
+ background-color: #337ab7;
+ border-color: #2e6da4;
+}
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary.focus,
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+ color: #fff;
+ background-color: #286090;
+ border-color: #204d74;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+ background-image: none;
+}
+.btn-primary.disabled,
+.btn-primary[disabled],
+fieldset[disabled] .btn-primary,
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled.focus,
+.btn-primary[disabled].focus,
+fieldset[disabled] .btn-primary.focus,
+.btn-primary.disabled:active,
+.btn-primary[disabled]:active,
+fieldset[disabled] .btn-primary:active,
+.btn-primary.disabled.active,
+.btn-primary[disabled].active,
+fieldset[disabled] .btn-primary.active {
+ background-color: #337ab7;
+ border-color: #2e6da4;
+}
+.btn-primary .badge {
+ color: #337ab7;
+ background-color: #fff;
+}
+.btn-success {
+ color: #fff;
+ background-color: #5cb85c;
+ border-color: #4cae4c;
+}
+.btn-success:hover,
+.btn-success:focus,
+.btn-success.focus,
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+ color: #fff;
+ background-color: #449d44;
+ border-color: #398439;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+ background-image: none;
+}
+.btn-success.disabled,
+.btn-success[disabled],
+fieldset[disabled] .btn-success,
+.btn-success.disabled:hover,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success:hover,
+.btn-success.disabled:focus,
+.btn-success[disabled]:focus,
+fieldset[disabled] .btn-success:focus,
+.btn-success.disabled.focus,
+.btn-success[disabled].focus,
+fieldset[disabled] .btn-success.focus,
+.btn-success.disabled:active,
+.btn-success[disabled]:active,
+fieldset[disabled] .btn-success:active,
+.btn-success.disabled.active,
+.btn-success[disabled].active,
+fieldset[disabled] .btn-success.active {
+ background-color: #5cb85c;
+ border-color: #4cae4c;
+}
+.btn-success .badge {
+ color: #5cb85c;
+ background-color: #fff;
+}
+.btn-info {
+ color: #fff;
+ background-color: #5bc0de;
+ border-color: #46b8da;
+}
+.btn-info:hover,
+.btn-info:focus,
+.btn-info.focus,
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+ color: #fff;
+ background-color: #31b0d5;
+ border-color: #269abc;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+ background-image: none;
+}
+.btn-info.disabled,
+.btn-info[disabled],
+fieldset[disabled] .btn-info,
+.btn-info.disabled:hover,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info:hover,
+.btn-info.disabled:focus,
+.btn-info[disabled]:focus,
+fieldset[disabled] .btn-info:focus,
+.btn-info.disabled.focus,
+.btn-info[disabled].focus,
+fieldset[disabled] .btn-info.focus,
+.btn-info.disabled:active,
+.btn-info[disabled]:active,
+fieldset[disabled] .btn-info:active,
+.btn-info.disabled.active,
+.btn-info[disabled].active,
+fieldset[disabled] .btn-info.active {
+ background-color: #5bc0de;
+ border-color: #46b8da;
+}
+.btn-info .badge {
+ color: #5bc0de;
+ background-color: #fff;
+}
+.btn-warning {
+ color: #fff;
+ background-color: #f0ad4e;
+ border-color: #eea236;
+}
+.btn-warning:hover,
+.btn-warning:focus,
+.btn-warning.focus,
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+ color: #fff;
+ background-color: #ec971f;
+ border-color: #d58512;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+ background-image: none;
+}
+.btn-warning.disabled,
+.btn-warning[disabled],
+fieldset[disabled] .btn-warning,
+.btn-warning.disabled:hover,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning:hover,
+.btn-warning.disabled:focus,
+.btn-warning[disabled]:focus,
+fieldset[disabled] .btn-warning:focus,
+.btn-warning.disabled.focus,
+.btn-warning[disabled].focus,
+fieldset[disabled] .btn-warning.focus,
+.btn-warning.disabled:active,
+.btn-warning[disabled]:active,
+fieldset[disabled] .btn-warning:active,
+.btn-warning.disabled.active,
+.btn-warning[disabled].active,
+fieldset[disabled] .btn-warning.active {
+ background-color: #f0ad4e;
+ border-color: #eea236;
+}
+.btn-warning .badge {
+ color: #f0ad4e;
+ background-color: #fff;
+}
+.btn-danger {
+ color: #fff;
+ background-color: #d9534f;
+ border-color: #d43f3a;
+}
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger.focus,
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+ color: #fff;
+ background-color: #c9302c;
+ border-color: #ac2925;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+ background-image: none;
+}
+.btn-danger.disabled,
+.btn-danger[disabled],
+fieldset[disabled] .btn-danger,
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled.focus,
+.btn-danger[disabled].focus,
+fieldset[disabled] .btn-danger.focus,
+.btn-danger.disabled:active,
+.btn-danger[disabled]:active,
+fieldset[disabled] .btn-danger:active,
+.btn-danger.disabled.active,
+.btn-danger[disabled].active,
+fieldset[disabled] .btn-danger.active {
+ background-color: #d9534f;
+ border-color: #d43f3a;
+}
+.btn-danger .badge {
+ color: #d9534f;
+ background-color: #fff;
+}
+.btn-link {
+ font-weight: normal;
+ color: #337ab7;
+ border-radius: 0;
+}
+.btn-link,
+.btn-link:active,
+.btn-link.active,
+.btn-link[disabled],
+fieldset[disabled] .btn-link {
+ background-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.btn-link,
+.btn-link:hover,
+.btn-link:focus,
+.btn-link:active {
+ border-color: transparent;
+}
+.btn-link:hover,
+.btn-link:focus {
+ color: #23527c;
+ text-decoration: underline;
+ background-color: transparent;
+}
+.btn-link[disabled]:hover,
+fieldset[disabled] .btn-link:hover,
+.btn-link[disabled]:focus,
+fieldset[disabled] .btn-link:focus {
+ color: #777;
+ text-decoration: none;
+}
+.btn-lg,
+.btn-group-lg > .btn {
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+.btn-sm,
+.btn-group-sm > .btn {
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+.btn-xs,
+.btn-group-xs > .btn {
+ padding: 1px 5px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+.btn-block {
+ display: block;
+ width: 100%;
+}
+.btn-block + .btn-block {
+ margin-top: 5px;
+}
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+ width: 100%;
+}
+.fade {
+ opacity: 0;
+ -webkit-transition: opacity .15s linear;
+ -o-transition: opacity .15s linear;
+ transition: opacity .15s linear;
+}
+.fade.in {
+ opacity: 1;
+}
+.collapse {
+ display: none;
+ visibility: hidden;
+}
+.collapse.in {
+ display: block;
+ visibility: visible;
+}
+tr.collapse.in {
+ display: table-row;
+}
+tbody.collapse.in {
+ display: table-row-group;
+}
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ -webkit-transition-timing-function: ease;
+ -o-transition-timing-function: ease;
+ transition-timing-function: ease;
+ -webkit-transition-duration: .35s;
+ -o-transition-duration: .35s;
+ transition-duration: .35s;
+ -webkit-transition-property: height, visibility;
+ -o-transition-property: height, visibility;
+ transition-property: height, visibility;
+}
+.caret {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: 2px;
+ vertical-align: middle;
+ border-top: 4px solid;
+ border-right: 4px solid transparent;
+ border-left: 4px solid transparent;
+}
+.dropup,
+.dropdown {
+ position: relative;
+}
+.dropdown-toggle:focus {
+ outline: 0;
+}
+.dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 160px;
+ padding: 5px 0;
+ margin: 2px 0 0;
+ font-size: 14px;
+ text-align: left;
+ list-style: none;
+ background-color: #fff;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, .15);
+ border-radius: 4px;
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
+}
+.dropdown-menu.pull-right {
+ right: 0;
+ left: auto;
+}
+.dropdown-menu .divider {
+ height: 1px;
+ margin: 9px 0;
+ overflow: hidden;
+ background-color: #e5e5e5;
+}
+.dropdown-menu > li > a {
+ display: block;
+ padding: 3px 20px;
+ clear: both;
+ font-weight: normal;
+ line-height: 1.42857143;
+ color: #333;
+ white-space: nowrap;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+ color: #262626;
+ text-decoration: none;
+ background-color: #f5f5f5;
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+ color: #fff;
+ text-decoration: none;
+ background-color: #337ab7;
+ outline: 0;
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ color: #777;
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ text-decoration: none;
+ cursor: not-allowed;
+ background-color: transparent;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.open > .dropdown-menu {
+ display: block;
+}
+.open > a {
+ outline: 0;
+}
+.dropdown-menu-right {
+ right: 0;
+ left: auto;
+}
+.dropdown-menu-left {
+ right: auto;
+ left: 0;
+}
+.dropdown-header {
+ display: block;
+ padding: 3px 20px;
+ font-size: 12px;
+ line-height: 1.42857143;
+ color: #777;
+ white-space: nowrap;
+}
+.dropdown-backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 990;
+}
+.pull-right > .dropdown-menu {
+ right: 0;
+ left: auto;
+}
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+ content: "";
+ border-top: 0;
+ border-bottom: 4px solid;
+}
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+ top: auto;
+ bottom: 100%;
+ margin-bottom: 2px;
+}
+@media (min-width: 768px) {
+ .navbar-right .dropdown-menu {
+ right: 0;
+ left: auto;
+ }
+ .navbar-right .dropdown-menu-left {
+ right: auto;
+ left: 0;
+ }
+}
+.btn-group,
+.btn-group-vertical {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+}
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+ position: relative;
+ float: left;
+}
+.btn-group > .btn:hover,
+.btn-group-vertical > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group-vertical > .btn:focus,
+.btn-group > .btn:active,
+.btn-group-vertical > .btn:active,
+.btn-group > .btn.active,
+.btn-group-vertical > .btn.active {
+ z-index: 2;
+}
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
+ margin-left: -1px;
+}
+.btn-toolbar {
+ margin-left: -5px;
+}
+.btn-toolbar .btn-group,
+.btn-toolbar .input-group {
+ float: left;
+}
+.btn-toolbar > .btn,
+.btn-toolbar > .btn-group,
+.btn-toolbar > .input-group {
+ margin-left: 5px;
+}
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+ border-radius: 0;
+}
+.btn-group > .btn:first-child {
+ margin-left: 0;
+}
+.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+}
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group > .btn-group {
+ float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+ border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+ outline: 0;
+}
+.btn-group > .btn + .dropdown-toggle {
+ padding-right: 8px;
+ padding-left: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+ padding-right: 12px;
+ padding-left: 12px;
+}
+.btn-group.open .dropdown-toggle {
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
+}
+.btn-group.open .dropdown-toggle.btn-link {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.btn .caret {
+ margin-left: 0;
+}
+.btn-lg .caret {
+ border-width: 5px 5px 0;
+ border-bottom-width: 0;
+}
+.dropup .btn-lg .caret {
+ border-width: 0 5px 5px;
+}
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group,
+.btn-group-vertical > .btn-group > .btn {
+ display: block;
+ float: none;
+ width: 100%;
+ max-width: 100%;
+}
+.btn-group-vertical > .btn-group > .btn {
+ float: none;
+}
+.btn-group-vertical > .btn + .btn,
+.btn-group-vertical > .btn + .btn-group,
+.btn-group-vertical > .btn-group + .btn,
+.btn-group-vertical > .btn-group + .btn-group {
+ margin-top: -1px;
+ margin-left: 0;
+}
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+ border-radius: 0;
+}
+.btn-group-vertical > .btn:first-child:not(:last-child) {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn:last-child:not(:first-child) {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ border-bottom-left-radius: 4px;
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+ border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+.btn-group-justified {
+ display: table;
+ width: 100%;
+ table-layout: fixed;
+ border-collapse: separate;
+}
+.btn-group-justified > .btn,
+.btn-group-justified > .btn-group {
+ display: table-cell;
+ float: none;
+ width: 1%;
+}
+.btn-group-justified > .btn-group .btn {
+ width: 100%;
+}
+.btn-group-justified > .btn-group .dropdown-menu {
+ left: auto;
+}
+[data-toggle="buttons"] > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn input[type="checkbox"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none;
+}
+.input-group {
+ position: relative;
+ display: table;
+ border-collapse: separate;
+}
+.input-group[class*="col-"] {
+ float: none;
+ padding-right: 0;
+ padding-left: 0;
+}
+.input-group .form-control {
+ position: relative;
+ z-index: 2;
+ float: left;
+ width: 100%;
+ margin-bottom: 0;
+}
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+ height: 46px;
+ padding: 10px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.input-group-lg > .form-control,
+select.input-group-lg > .input-group-addon,
+select.input-group-lg > .input-group-btn > .btn {
+ height: 46px;
+ line-height: 46px;
+}
+textarea.input-group-lg > .form-control,
+textarea.input-group-lg > .input-group-addon,
+textarea.input-group-lg > .input-group-btn > .btn,
+select[multiple].input-group-lg > .form-control,
+select[multiple].input-group-lg > .input-group-addon,
+select[multiple].input-group-lg > .input-group-btn > .btn {
+ height: auto;
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.input-group-sm > .form-control,
+select.input-group-sm > .input-group-addon,
+select.input-group-sm > .input-group-btn > .btn {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.input-group-sm > .form-control,
+textarea.input-group-sm > .input-group-addon,
+textarea.input-group-sm > .input-group-btn > .btn,
+select[multiple].input-group-sm > .form-control,
+select[multiple].input-group-sm > .input-group-addon,
+select[multiple].input-group-sm > .input-group-btn > .btn {
+ height: auto;
+}
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+ display: table-cell;
+}
+.input-group-addon:not(:first-child):not(:last-child),
+.input-group-btn:not(:first-child):not(:last-child),
+.input-group .form-control:not(:first-child):not(:last-child) {
+ border-radius: 0;
+}
+.input-group-addon,
+.input-group-btn {
+ width: 1%;
+ white-space: nowrap;
+ vertical-align: middle;
+}
+.input-group-addon {
+ padding: 6px 12px;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1;
+ color: #555;
+ text-align: center;
+ background-color: #eee;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+.input-group-addon.input-sm {
+ padding: 5px 10px;
+ font-size: 12px;
+ border-radius: 3px;
+}
+.input-group-addon.input-lg {
+ padding: 10px 16px;
+ font-size: 18px;
+ border-radius: 6px;
+}
+.input-group-addon input[type="radio"],
+.input-group-addon input[type="checkbox"] {
+ margin-top: 0;
+}
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+}
+.input-group-addon:first-child {
+ border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.input-group-addon:last-child {
+ border-left: 0;
+}
+.input-group-btn {
+ position: relative;
+ font-size: 0;
+ white-space: nowrap;
+}
+.input-group-btn > .btn {
+ position: relative;
+}
+.input-group-btn > .btn + .btn {
+ margin-left: -1px;
+}
+.input-group-btn > .btn:hover,
+.input-group-btn > .btn:focus,
+.input-group-btn > .btn:active {
+ z-index: 2;
+}
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group {
+ margin-right: -1px;
+}
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group {
+ margin-left: -1px;
+}
+.nav {
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none;
+}
+.nav > li {
+ position: relative;
+ display: block;
+}
+.nav > li > a {
+ position: relative;
+ display: block;
+ padding: 10px 15px;
+}
+.nav > li > a:hover,
+.nav > li > a:focus {
+ text-decoration: none;
+ background-color: #eee;
+}
+.nav > li.disabled > a {
+ color: #777;
+}
+.nav > li.disabled > a:hover,
+.nav > li.disabled > a:focus {
+ color: #777;
+ text-decoration: none;
+ cursor: not-allowed;
+ background-color: transparent;
+}
+.nav .open > a,
+.nav .open > a:hover,
+.nav .open > a:focus {
+ background-color: #eee;
+ border-color: #337ab7;
+}
+.nav .nav-divider {
+ height: 1px;
+ margin: 9px 0;
+ overflow: hidden;
+ background-color: #e5e5e5;
+}
+.nav > li > a > img {
+ max-width: none;
+}
+.nav-tabs {
+ border-bottom: 1px solid #ddd;
+}
+.nav-tabs > li {
+ float: left;
+ margin-bottom: -1px;
+}
+.nav-tabs > li > a {
+ margin-right: 2px;
+ line-height: 1.42857143;
+ border: 1px solid transparent;
+ border-radius: 4px 4px 0 0;
+}
+.nav-tabs > li > a:hover {
+ border-color: #eee #eee #ddd;
+}
+.nav-tabs > li.active > a,
+.nav-tabs > li.active > a:hover,
+.nav-tabs > li.active > a:focus {
+ color: #555;
+ cursor: default;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-bottom-color: transparent;
+}
+.nav-tabs.nav-justified {
+ width: 100%;
+ border-bottom: 0;
+}
+.nav-tabs.nav-justified > li {
+ float: none;
+}
+.nav-tabs.nav-justified > li > a {
+ margin-bottom: 5px;
+ text-align: center;
+}
+.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
+}
+@media (min-width: 768px) {
+ .nav-tabs.nav-justified > li {
+ display: table-cell;
+ width: 1%;
+ }
+ .nav-tabs.nav-justified > li > a {
+ margin-bottom: 0;
+ }
+}
+.nav-tabs.nav-justified > li > a {
+ margin-right: 0;
+ border-radius: 4px;
+}
+.nav-tabs.nav-justified > .active > a,
+.nav-tabs.nav-justified > .active > a:hover,
+.nav-tabs.nav-justified > .active > a:focus {
+ border: 1px solid #ddd;
+}
+@media (min-width: 768px) {
+ .nav-tabs.nav-justified > li > a {
+ border-bottom: 1px solid #ddd;
+ border-radius: 4px 4px 0 0;
+ }
+ .nav-tabs.nav-justified > .active > a,
+ .nav-tabs.nav-justified > .active > a:hover,
+ .nav-tabs.nav-justified > .active > a:focus {
+ border-bottom-color: #fff;
+ }
+}
+.nav-pills > li {
+ float: left;
+}
+.nav-pills > li > a {
+ border-radius: 4px;
+}
+.nav-pills > li + li {
+ margin-left: 2px;
}
-
-.btn:hover {
- color: #333333;
- text-decoration: none;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- /* Buttons in IE7 don't get borders, so darken on hover */
-
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -ms-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
+.nav-pills > li.active > a,
+.nav-pills > li.active > a:hover,
+.nav-pills > li.active > a:focus {
+ color: #fff;
+ background-color: #337ab7;
}
-
-.btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
+.nav-stacked > li {
+ float: none;
}
-
-.btn.active,
-.btn:active {
- background-color: #e6e6e6;
- background-color: #d9d9d9 \9;
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+.nav-stacked > li + li {
+ margin-top: 2px;
+ margin-left: 0;
}
-
-.btn.disabled,
-.btn[disabled] {
- cursor: default;
- background-color: #e6e6e6;
- background-image: none;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
+.nav-justified {
+ width: 100%;
}
-
-.btn-large {
- padding: 9px 14px;
- font-size: 15px;
- line-height: normal;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
+.nav-justified > li {
+ float: none;
}
-
-.btn-large [class^="icon-"] {
- margin-top: 1px;
+.nav-justified > li > a {
+ margin-bottom: 5px;
+ text-align: center;
}
-
-.btn-small {
- padding: 5px 9px;
- font-size: 11px;
- line-height: 16px;
+.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
}
-
-.btn-small [class^="icon-"] {
- margin-top: -1px;
+@media (min-width: 768px) {
+ .nav-justified > li {
+ display: table-cell;
+ width: 1%;
+ }
+ .nav-justified > li > a {
+ margin-bottom: 0;
+ }
}
-
-.btn-mini {
- padding: 2px 6px;
- font-size: 11px;
- line-height: 14px;
+.nav-tabs-justified {
+ border-bottom: 0;
}
-
-.btn-primary,
-.btn-primary:hover,
-.btn-warning,
-.btn-warning:hover,
-.btn-danger,
-.btn-danger:hover,
-.btn-success,
-.btn-success:hover,
-.btn-info,
-.btn-info:hover,
-.btn-inverse,
-.btn-inverse:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+.nav-tabs-justified > li > a {
+ margin-right: 0;
+ border-radius: 4px;
}
-
-.btn-primary.active,
-.btn-warning.active,
-.btn-danger.active,
-.btn-success.active,
-.btn-info.active,
-.btn-inverse.active {
- color: rgba(255, 255, 255, 0.75);
+.nav-tabs-justified > .active > a,
+.nav-tabs-justified > .active > a:hover,
+.nav-tabs-justified > .active > a:focus {
+ border: 1px solid #ddd;
}
-
-.btn {
- border-color: #ccc;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+@media (min-width: 768px) {
+ .nav-tabs-justified > li > a {
+ border-bottom: 1px solid #ddd;
+ border-radius: 4px 4px 0 0;
+ }
+ .nav-tabs-justified > .active > a,
+ .nav-tabs-justified > .active > a:hover,
+ .nav-tabs-justified > .active > a:focus {
+ border-bottom-color: #fff;
+ }
}
-
-.btn-primary {
- background-color: #0074cc;
- *background-color: #0055cc;
- background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
- background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
- background-image: -o-linear-gradient(top, #0088cc, #0055cc);
- background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
- background-image: linear-gradient(top, #0088cc, #0055cc);
- background-repeat: repeat-x;
- border-color: #0055cc #0055cc #003580;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+.tab-content > .tab-pane {
+ display: none;
+ visibility: hidden;
}
-
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #0055cc;
- *background-color: #004ab3;
+.tab-content > .active {
+ display: block;
+ visibility: visible;
}
-
-.btn-primary:active,
-.btn-primary.active {
- background-color: #004099 \9;
+.nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
}
-
-.btn-warning {
- background-color: #faa732;
- *background-color: #f89406;
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(top, #fbb450, #f89406);
- background-repeat: repeat-x;
- border-color: #f89406 #f89406 #ad6704;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+.navbar {
+ position: relative;
+ min-height: 50px;
+ margin-bottom: 20px;
+ border: 1px solid transparent;
}
-
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active,
-.btn-warning.disabled,
-.btn-warning[disabled] {
- background-color: #f89406;
- *background-color: #df8505;
+@media (min-width: 768px) {
+ .navbar {
+ border-radius: 4px;
+ }
}
-
-.btn-warning:active,
-.btn-warning.active {
- background-color: #c67605 \9;
+@media (min-width: 768px) {
+ .navbar-header {
+ float: left;
+ }
}
-
-.btn-danger {
- background-color: #da4f49;
- *background-color: #bd362f;
- background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: linear-gradient(top, #ee5f5b, #bd362f);
- background-repeat: repeat-x;
- border-color: #bd362f #bd362f #802420;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+.navbar-collapse {
+ padding-right: 15px;
+ padding-left: 15px;
+ overflow-x: visible;
+ -webkit-overflow-scrolling: touch;
+ border-top: 1px solid transparent;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
-
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active,
-.btn-danger.disabled,
-.btn-danger[disabled] {
- background-color: #bd362f;
- *background-color: #a9302a;
+.navbar-collapse.in {
+ overflow-y: auto;
}
-
-.btn-danger:active,
-.btn-danger.active {
- background-color: #942a25 \9;
+@media (min-width: 768px) {
+ .navbar-collapse {
+ width: auto;
+ border-top: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+ .navbar-collapse.collapse {
+ display: block !important;
+ height: auto !important;
+ padding-bottom: 0;
+ overflow: visible !important;
+ visibility: visible !important;
+ }
+ .navbar-collapse.in {
+ overflow-y: visible;
+ }
+ .navbar-fixed-top .navbar-collapse,
+ .navbar-static-top .navbar-collapse,
+ .navbar-fixed-bottom .navbar-collapse {
+ padding-right: 0;
+ padding-left: 0;
+ }
}
-
-.btn-success {
- background-color: #5bb75b;
- *background-color: #51a351;
- background-image: -ms-linear-gradient(top, #62c462, #51a351);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
- background-image: -o-linear-gradient(top, #62c462, #51a351);
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
- background-image: linear-gradient(top, #62c462, #51a351);
- background-repeat: repeat-x;
- border-color: #51a351 #51a351 #387038;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+.navbar-fixed-top .navbar-collapse,
+.navbar-fixed-bottom .navbar-collapse {
+ max-height: 340px;
}
-
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active,
-.btn-success.disabled,
-.btn-success[disabled] {
- background-color: #51a351;
- *background-color: #499249;
+@media (max-device-width: 480px) and (orientation: landscape) {
+ .navbar-fixed-top .navbar-collapse,
+ .navbar-fixed-bottom .navbar-collapse {
+ max-height: 200px;
+ }
}
-
-.btn-success:active,
-.btn-success.active {
- background-color: #408140 \9;
+.container > .navbar-header,
+.container-fluid > .navbar-header,
+.container > .navbar-collapse,
+.container-fluid > .navbar-collapse {
+ margin-right: -15px;
+ margin-left: -15px;
}
-
-.btn-info {
- background-color: #49afcd;
- *background-color: #2f96b4;
- background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: linear-gradient(top, #5bc0de, #2f96b4);
- background-repeat: repeat-x;
- border-color: #2f96b4 #2f96b4 #1f6377;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+@media (min-width: 768px) {
+ .container > .navbar-header,
+ .container-fluid > .navbar-header,
+ .container > .navbar-collapse,
+ .container-fluid > .navbar-collapse {
+ margin-right: 0;
+ margin-left: 0;
+ }
}
-
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active,
-.btn-info.disabled,
-.btn-info[disabled] {
- background-color: #2f96b4;
- *background-color: #2a85a0;
+.navbar-static-top {
+ z-index: 1000;
+ border-width: 0 0 1px;
}
-
-.btn-info:active,
-.btn-info.active {
- background-color: #24748c \9;
+@media (min-width: 768px) {
+ .navbar-static-top {
+ border-radius: 0;
+ }
}
-
-.btn-inverse {
- background-color: #414141;
- *background-color: #222222;
- background-image: -ms-linear-gradient(top, #555555, #222222);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
- background-image: -webkit-linear-gradient(top, #555555, #222222);
- background-image: -o-linear-gradient(top, #555555, #222222);
- background-image: -moz-linear-gradient(top, #555555, #222222);
- background-image: linear-gradient(top, #555555, #222222);
- background-repeat: repeat-x;
- border-color: #222222 #222222 #000000;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+ position: fixed;
+ right: 0;
+ left: 0;
+ z-index: 1030;
}
-
-.btn-inverse:hover,
-.btn-inverse:active,
-.btn-inverse.active,
-.btn-inverse.disabled,
-.btn-inverse[disabled] {
- background-color: #222222;
- *background-color: #151515;
+@media (min-width: 768px) {
+ .navbar-fixed-top,
+ .navbar-fixed-bottom {
+ border-radius: 0;
+ }
}
-
-.btn-inverse:active,
-.btn-inverse.active {
- background-color: #080808 \9;
+.navbar-fixed-top {
+ top: 0;
+ border-width: 0 0 1px;
}
-
-button.btn,
-input[type="submit"].btn {
- *padding-top: 2px;
- *padding-bottom: 2px;
+.navbar-fixed-bottom {
+ bottom: 0;
+ margin-bottom: 0;
+ border-width: 1px 0 0;
}
-
-button.btn::-moz-focus-inner,
-input[type="submit"].btn::-moz-focus-inner {
- padding: 0;
- border: 0;
+.navbar-brand {
+ float: left;
+ height: 50px;
+ padding: 15px 15px;
+ font-size: 18px;
+ line-height: 20px;
}
-
-button.btn.btn-large,
-input[type="submit"].btn.btn-large {
- *padding-top: 7px;
- *padding-bottom: 7px;
+.navbar-brand:hover,
+.navbar-brand:focus {
+ text-decoration: none;
}
-
-button.btn.btn-small,
-input[type="submit"].btn.btn-small {
- *padding-top: 3px;
- *padding-bottom: 3px;
+.navbar-brand > img {
+ display: block;
}
-
-button.btn.btn-mini,
-input[type="submit"].btn.btn-mini {
- *padding-top: 1px;
- *padding-bottom: 1px;
+@media (min-width: 768px) {
+ .navbar > .container .navbar-brand,
+ .navbar > .container-fluid .navbar-brand {
+ margin-left: -15px;
+ }
}
-
-.btn-group {
+.navbar-toggle {
position: relative;
- *margin-left: .3em;
- *zoom: 1;
-}
-
-.btn-group:before,
-.btn-group:after {
- display: table;
- content: "";
+ float: right;
+ padding: 9px 10px;
+ margin-top: 8px;
+ margin-right: 15px;
+ margin-bottom: 8px;
+ background-color: transparent;
+ background-image: none;
+ border: 1px solid transparent;
+ border-radius: 4px;
}
-
-.btn-group:after {
- clear: both;
+.navbar-toggle:focus {
+ outline: 0;
}
-
-.btn-group:first-child {
- *margin-left: 0;
+.navbar-toggle .icon-bar {
+ display: block;
+ width: 22px;
+ height: 2px;
+ border-radius: 1px;
}
-
-.btn-group + .btn-group {
- margin-left: 5px;
+.navbar-toggle .icon-bar + .icon-bar {
+ margin-top: 4px;
}
-
-.btn-toolbar {
- margin-top: 9px;
- margin-bottom: 9px;
+@media (min-width: 768px) {
+ .navbar-toggle {
+ display: none;
+ }
}
-
-.btn-toolbar .btn-group {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
+.navbar-nav {
+ margin: 7.5px -15px;
+}
+.navbar-nav > li > a {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ line-height: 20px;
+}
+@media (max-width: 767px) {
+ .navbar-nav .open .dropdown-menu {
+ position: static;
+ float: none;
+ width: auto;
+ margin-top: 0;
+ background-color: transparent;
+ border: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+ .navbar-nav .open .dropdown-menu > li > a,
+ .navbar-nav .open .dropdown-menu .dropdown-header {
+ padding: 5px 15px 5px 25px;
+ }
+ .navbar-nav .open .dropdown-menu > li > a {
+ line-height: 20px;
+ }
+ .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-nav .open .dropdown-menu > li > a:focus {
+ background-image: none;
+ }
}
-
-.btn-group > .btn {
- position: relative;
- float: left;
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
+@media (min-width: 768px) {
+ .navbar-nav {
+ float: left;
+ margin: 0;
+ }
+ .navbar-nav > li {
+ float: left;
+ }
+ .navbar-nav > li > a {
+ padding-top: 15px;
+ padding-bottom: 15px;
+ }
}
-
-.btn-group > .btn:first-child {
- margin-left: 0;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -webkit-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- -moz-border-radius-topleft: 4px;
+.navbar-form {
+ padding: 10px 15px;
+ margin-top: 8px;
+ margin-right: -15px;
+ margin-bottom: 8px;
+ margin-left: -15px;
+ border-top: 1px solid transparent;
+ border-bottom: 1px solid transparent;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
+}
+@media (min-width: 768px) {
+ .navbar-form .form-group {
+ display: inline-block;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle;
+ }
+ .navbar-form .form-control-static {
+ display: inline-block;
+ }
+ .navbar-form .input-group {
+ display: inline-table;
+ vertical-align: middle;
+ }
+ .navbar-form .input-group .input-group-addon,
+ .navbar-form .input-group .input-group-btn,
+ .navbar-form .input-group .form-control {
+ width: auto;
+ }
+ .navbar-form .input-group > .form-control {
+ width: 100%;
+ }
+ .navbar-form .control-label {
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .radio,
+ .navbar-form .checkbox {
+ display: inline-block;
+ margin-top: 0;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .radio label,
+ .navbar-form .checkbox label {
+ padding-left: 0;
+ }
+ .navbar-form .radio input[type="radio"],
+ .navbar-form .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0;
+ }
+ .navbar-form .has-feedback .form-control-feedback {
+ top: 0;
+ }
}
-
-.btn-group > .btn:last-child,
-.btn-group > .dropdown-toggle {
- -webkit-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- -moz-border-radius-bottomright: 4px;
+@media (max-width: 767px) {
+ .navbar-form .form-group {
+ margin-bottom: 5px;
+ }
+ .navbar-form .form-group:last-child {
+ margin-bottom: 0;
+ }
}
-
-.btn-group > .btn.large:first-child {
- margin-left: 0;
- -webkit-border-bottom-left-radius: 6px;
- border-bottom-left-radius: 6px;
- -webkit-border-top-left-radius: 6px;
- border-top-left-radius: 6px;
- -moz-border-radius-bottomleft: 6px;
- -moz-border-radius-topleft: 6px;
+@media (min-width: 768px) {
+ .navbar-form {
+ width: auto;
+ padding-top: 0;
+ padding-bottom: 0;
+ margin-right: 0;
+ margin-left: 0;
+ border: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
}
-
-.btn-group > .btn.large:last-child,
-.btn-group > .large.dropdown-toggle {
- -webkit-border-top-right-radius: 6px;
- border-top-right-radius: 6px;
- -webkit-border-bottom-right-radius: 6px;
- border-bottom-right-radius: 6px;
- -moz-border-radius-topright: 6px;
- -moz-border-radius-bottomright: 6px;
+.navbar-nav > li > .dropdown-menu {
+ margin-top: 0;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
}
-
-.btn-group > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group > .btn:active,
-.btn-group > .btn.active {
- z-index: 2;
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+ margin-bottom: 0;
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
}
-
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
+.navbar-btn {
+ margin-top: 8px;
+ margin-bottom: 8px;
}
-
-.btn-group > .dropdown-toggle {
- *padding-top: 4px;
- padding-right: 8px;
- *padding-bottom: 4px;
- padding-left: 8px;
- -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+.navbar-btn.btn-sm {
+ margin-top: 10px;
+ margin-bottom: 10px;
}
-
-.btn-group > .btn-mini.dropdown-toggle {
- padding-right: 5px;
- padding-left: 5px;
+.navbar-btn.btn-xs {
+ margin-top: 14px;
+ margin-bottom: 14px;
}
-
-.btn-group > .btn-small.dropdown-toggle {
- *padding-top: 4px;
- *padding-bottom: 4px;
+.navbar-text {
+ margin-top: 15px;
+ margin-bottom: 15px;
}
-
-.btn-group > .btn-large.dropdown-toggle {
- padding-right: 12px;
- padding-left: 12px;
+@media (min-width: 768px) {
+ .navbar-text {
+ float: left;
+ margin-right: 15px;
+ margin-left: 15px;
+ }
}
-
-.btn-group.open .dropdown-toggle {
- background-image: none;
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+@media (min-width: 768px) {
+ .navbar-left {
+ float: left !important;
+ }
+ .navbar-right {
+ float: right !important;
+ margin-right: -15px;
+ }
+ .navbar-right ~ .navbar-right {
+ margin-right: 0;
+ }
}
-
-.btn-group.open .btn.dropdown-toggle {
- background-color: #e6e6e6;
+.navbar-default {
+ background-color: #f8f8f8;
+ border-color: #e7e7e7;
}
-
-.btn-group.open .btn-primary.dropdown-toggle {
- background-color: #0055cc;
+.navbar-default .navbar-brand {
+ color: #777;
}
-
-.btn-group.open .btn-warning.dropdown-toggle {
- background-color: #f89406;
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+ color: #5e5e5e;
+ background-color: transparent;
}
-
-.btn-group.open .btn-danger.dropdown-toggle {
- background-color: #bd362f;
+.navbar-default .navbar-text {
+ color: #777;
}
-
-.btn-group.open .btn-success.dropdown-toggle {
- background-color: #51a351;
+.navbar-default .navbar-nav > li > a {
+ color: #777;
}
-
-.btn-group.open .btn-info.dropdown-toggle {
- background-color: #2f96b4;
+.navbar-default .navbar-nav > li > a:hover,
+.navbar-default .navbar-nav > li > a:focus {
+ color: #333;
+ background-color: transparent;
}
-
-.btn-group.open .btn-inverse.dropdown-toggle {
- background-color: #222222;
+.navbar-default .navbar-nav > .active > a,
+.navbar-default .navbar-nav > .active > a:hover,
+.navbar-default .navbar-nav > .active > a:focus {
+ color: #555;
+ background-color: #e7e7e7;
}
-
-.btn .caret {
- margin-top: 7px;
- margin-left: 0;
+.navbar-default .navbar-nav > .disabled > a,
+.navbar-default .navbar-nav > .disabled > a:hover,
+.navbar-default .navbar-nav > .disabled > a:focus {
+ color: #ccc;
+ background-color: transparent;
}
-
-.btn:hover .caret,
-.open.btn-group .caret {
- opacity: 1;
- filter: alpha(opacity=100);
+.navbar-default .navbar-toggle {
+ border-color: #ddd;
}
-
-.btn-mini .caret {
- margin-top: 5px;
+.navbar-default .navbar-toggle:hover,
+.navbar-default .navbar-toggle:focus {
+ background-color: #ddd;
}
-
-.btn-small .caret {
- margin-top: 6px;
+.navbar-default .navbar-toggle .icon-bar {
+ background-color: #888;
}
-
-.btn-large .caret {
- margin-top: 6px;
- border-top-width: 5px;
- border-right-width: 5px;
- border-left-width: 5px;
+.navbar-default .navbar-collapse,
+.navbar-default .navbar-form {
+ border-color: #e7e7e7;
}
-
-.dropup .btn-large .caret {
- border-top: 0;
- border-bottom: 5px solid #000000;
+.navbar-default .navbar-nav > .open > a,
+.navbar-default .navbar-nav > .open > a:hover,
+.navbar-default .navbar-nav > .open > a:focus {
+ color: #555;
+ background-color: #e7e7e7;
}
-
-.btn-primary .caret,
-.btn-warning .caret,
-.btn-danger .caret,
-.btn-info .caret,
-.btn-success .caret,
-.btn-inverse .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 0.75;
- filter: alpha(opacity=75);
+@media (max-width: 767px) {
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+ color: #777;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+ color: #333;
+ background-color: transparent;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+ color: #555;
+ background-color: #e7e7e7;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+ color: #ccc;
+ background-color: transparent;
+ }
}
-
-.alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 18px;
- color: #c09853;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- background-color: #fcf8e3;
- border: 1px solid #fbeed5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.navbar-default .navbar-link {
+ color: #777;
}
-
-.alert-heading {
- color: inherit;
+.navbar-default .navbar-link:hover {
+ color: #333;
}
-
-.alert .close {
- position: relative;
- top: -2px;
- right: -21px;
- line-height: 18px;
+.navbar-default .btn-link {
+ color: #777;
}
-
-.alert-success {
- color: #468847;
- background-color: #dff0d8;
- border-color: #d6e9c6;
+.navbar-default .btn-link:hover,
+.navbar-default .btn-link:focus {
+ color: #333;
}
-
-.alert-danger,
-.alert-error {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #eed3d7;
+.navbar-default .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-default .btn-link:hover,
+.navbar-default .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-default .btn-link:focus {
+ color: #ccc;
}
-
-.alert-info {
- color: #3a87ad;
- background-color: #d9edf7;
- border-color: #bce8f1;
+.navbar-inverse {
+ background-color: #222;
+ border-color: #080808;
}
-
-.alert-block {
- padding-top: 14px;
- padding-bottom: 14px;
+.navbar-inverse .navbar-brand {
+ color: #9d9d9d;
}
-
-.alert-block > p,
-.alert-block > ul {
- margin-bottom: 0;
+.navbar-inverse .navbar-brand:hover,
+.navbar-inverse .navbar-brand:focus {
+ color: #fff;
+ background-color: transparent;
}
-
-.alert-block p + p {
- margin-top: 5px;
+.navbar-inverse .navbar-text {
+ color: #9d9d9d;
}
-
-.nav {
- margin-bottom: 18px;
- margin-left: 0;
- list-style: none;
+.navbar-inverse .navbar-nav > li > a {
+ color: #9d9d9d;
}
-
-.nav > li > a {
- display: block;
+.navbar-inverse .navbar-nav > li > a:hover,
+.navbar-inverse .navbar-nav > li > a:focus {
+ color: #fff;
+ background-color: transparent;
}
-
-.nav > li > a:hover {
- text-decoration: none;
- background-color: #eeeeee;
+.navbar-inverse .navbar-nav > .active > a,
+.navbar-inverse .navbar-nav > .active > a:hover,
+.navbar-inverse .navbar-nav > .active > a:focus {
+ color: #fff;
+ background-color: #080808;
}
-
-.nav > .pull-right {
- float: right;
+.navbar-inverse .navbar-nav > .disabled > a,
+.navbar-inverse .navbar-nav > .disabled > a:hover,
+.navbar-inverse .navbar-nav > .disabled > a:focus {
+ color: #444;
+ background-color: transparent;
}
-
-.nav .nav-header {
- display: block;
- padding: 3px 15px;
- font-size: 11px;
- font-weight: bold;
- line-height: 18px;
- color: #999999;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
+.navbar-inverse .navbar-toggle {
+ border-color: #333;
}
-
-.nav li + .nav-header {
- margin-top: 9px;
+.navbar-inverse .navbar-toggle:hover,
+.navbar-inverse .navbar-toggle:focus {
+ background-color: #333;
}
-
-.nav-list {
- padding-right: 15px;
- padding-left: 15px;
- margin-bottom: 0;
+.navbar-inverse .navbar-toggle .icon-bar {
+ background-color: #fff;
}
-
-.nav-list > li > a,
-.nav-list .nav-header {
- margin-right: -15px;
- margin-left: -15px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+.navbar-inverse .navbar-collapse,
+.navbar-inverse .navbar-form {
+ border-color: #101010;
}
-
-.nav-list > li > a {
- padding: 3px 15px;
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .open > a:hover,
+.navbar-inverse .navbar-nav > .open > a:focus {
+ color: #fff;
+ background-color: #080808;
}
-
-.nav-list > .active > a,
-.nav-list > .active > a:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
- background-color: #0088cc;
+@media (max-width: 767px) {
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+ border-color: #080808;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+ background-color: #080808;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+ color: #9d9d9d;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+ color: #fff;
+ background-color: transparent;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+ color: #fff;
+ background-color: #080808;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+ color: #444;
+ background-color: transparent;
+ }
}
-
-.nav-list [class^="icon-"] {
- margin-right: 2px;
+.navbar-inverse .navbar-link {
+ color: #9d9d9d;
}
-
-.nav-list .divider {
- *width: 100%;
- height: 1px;
- margin: 8px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
+.navbar-inverse .navbar-link:hover {
+ color: #fff;
}
-
-.nav-tabs,
-.nav-pills {
- *zoom: 1;
+.navbar-inverse .btn-link {
+ color: #9d9d9d;
}
-
-.nav-tabs:before,
-.nav-pills:before,
-.nav-tabs:after,
-.nav-pills:after {
- display: table;
- content: "";
+.navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link:focus {
+ color: #fff;
}
-
-.nav-tabs:after,
-.nav-pills:after {
- clear: both;
+.navbar-inverse .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-inverse .btn-link:focus {
+ color: #444;
}
-
-.nav-tabs > li,
-.nav-pills > li {
- float: left;
+.breadcrumb {
+ padding: 8px 15px;
+ margin-bottom: 20px;
+ list-style: none;
+ background-color: #f5f5f5;
+ border-radius: 4px;
}
-
-.nav-tabs > li > a,
-.nav-pills > li > a {
- padding-right: 12px;
- padding-left: 12px;
- margin-right: 2px;
- line-height: 14px;
+.breadcrumb > li {
+ display: inline-block;
}
-
-.nav-tabs {
- border-bottom: 1px solid #ddd;
+.breadcrumb > li + li:before {
+ padding: 0 5px;
+ color: #ccc;
+ content: "/\00a0";
}
-
-.nav-tabs > li {
- margin-bottom: -1px;
+.breadcrumb > .active {
+ color: #777;
}
-
-.nav-tabs > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- line-height: 18px;
- border: 1px solid transparent;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
+.pagination {
+ display: inline-block;
+ padding-left: 0;
+ margin: 20px 0;
+ border-radius: 4px;
}
-
-.nav-tabs > li > a:hover {
- border-color: #eeeeee #eeeeee #dddddd;
+.pagination > li {
+ display: inline;
}
-
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover {
- color: #555555;
- cursor: default;
- background-color: #ffffff;
+.pagination > li > a,
+.pagination > li > span {
+ position: relative;
+ float: left;
+ padding: 6px 12px;
+ margin-left: -1px;
+ line-height: 1.42857143;
+ color: #337ab7;
+ text-decoration: none;
+ background-color: #fff;
border: 1px solid #ddd;
- border-bottom-color: transparent;
}
-
-.nav-pills > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- margin-top: 2px;
- margin-bottom: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
+.pagination > li:first-child > a,
+.pagination > li:first-child > span {
+ margin-left: 0;
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+}
+.pagination > li:last-child > a,
+.pagination > li:last-child > span {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus {
+ color: #23527c;
+ background-color: #eee;
+ border-color: #ddd;
}
-
-.nav-pills > .active > a,
-.nav-pills > .active > a:hover {
- color: #ffffff;
- background-color: #0088cc;
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+ z-index: 2;
+ color: #fff;
+ cursor: default;
+ background-color: #337ab7;
+ border-color: #337ab7;
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+ color: #777;
+ cursor: not-allowed;
+ background-color: #fff;
+ border-color: #ddd;
}
-
-.nav-stacked > li {
- float: none;
+.pagination-lg > li > a,
+.pagination-lg > li > span {
+ padding: 10px 16px;
+ font-size: 18px;
}
-
-.nav-stacked > li > a {
- margin-right: 0;
+.pagination-lg > li:first-child > a,
+.pagination-lg > li:first-child > span {
+ border-top-left-radius: 6px;
+ border-bottom-left-radius: 6px;
}
-
-.nav-tabs.nav-stacked {
- border-bottom: 0;
+.pagination-lg > li:last-child > a,
+.pagination-lg > li:last-child > span {
+ border-top-right-radius: 6px;
+ border-bottom-right-radius: 6px;
}
-
-.nav-tabs.nav-stacked > li > a {
- border: 1px solid #ddd;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+ padding: 5px 10px;
+ font-size: 12px;
}
-
-.nav-tabs.nav-stacked > li:first-child > a {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+ border-top-left-radius: 3px;
+ border-bottom-left-radius: 3px;
}
-
-.nav-tabs.nav-stacked > li:last-child > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+ border-top-right-radius: 3px;
+ border-bottom-right-radius: 3px;
}
-
-.nav-tabs.nav-stacked > li > a:hover {
- z-index: 2;
- border-color: #ddd;
+.pager {
+ padding-left: 0;
+ margin: 20px 0;
+ text-align: center;
+ list-style: none;
}
-
-.nav-pills.nav-stacked > li > a {
- margin-bottom: 3px;
+.pager li {
+ display: inline;
}
-
-.nav-pills.nav-stacked > li:last-child > a {
- margin-bottom: 1px;
+.pager li > a,
+.pager li > span {
+ display: inline-block;
+ padding: 5px 14px;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 15px;
}
-
-.nav-tabs .dropdown-menu {
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
+.pager li > a:hover,
+.pager li > a:focus {
+ text-decoration: none;
+ background-color: #eee;
}
-
-.nav-pills .dropdown-menu {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.pager .next > a,
+.pager .next > span {
+ float: right;
}
-
-.nav-tabs .dropdown-toggle .caret,
-.nav-pills .dropdown-toggle .caret {
- margin-top: 6px;
- border-top-color: #0088cc;
- border-bottom-color: #0088cc;
+.pager .previous > a,
+.pager .previous > span {
+ float: left;
}
-
-.nav-tabs .dropdown-toggle:hover .caret,
-.nav-pills .dropdown-toggle:hover .caret {
- border-top-color: #005580;
- border-bottom-color: #005580;
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > span {
+ color: #777;
+ cursor: not-allowed;
+ background-color: #fff;
}
-
-.nav-tabs .active .dropdown-toggle .caret,
-.nav-pills .active .dropdown-toggle .caret {
- border-top-color: #333333;
- border-bottom-color: #333333;
+.label {
+ display: inline;
+ padding: .2em .6em .3em;
+ font-size: 75%;
+ font-weight: bold;
+ line-height: 1;
+ color: #fff;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: .25em;
}
-
-.nav > .dropdown.active > a:hover {
- color: #000000;
+a.label:hover,
+a.label:focus {
+ color: #fff;
+ text-decoration: none;
cursor: pointer;
}
-
-.nav-tabs .open .dropdown-toggle,
-.nav-pills .open .dropdown-toggle,
-.nav > li.dropdown.open.active > a:hover {
- color: #ffffff;
- background-color: #999999;
- border-color: #999999;
-}
-
-.nav li.dropdown.open .caret,
-.nav li.dropdown.open.active .caret,
-.nav li.dropdown.open a:hover .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 1;
- filter: alpha(opacity=100);
+.label:empty {
+ display: none;
}
-
-.tabs-stacked .open > a:hover {
- border-color: #999999;
+.btn .label {
+ position: relative;
+ top: -1px;
}
-
-.tabbable {
- *zoom: 1;
+.label-default {
+ background-color: #777;
}
-
-.tabbable:before,
-.tabbable:after {
- display: table;
- content: "";
+.label-default[href]:hover,
+.label-default[href]:focus {
+ background-color: #5e5e5e;
}
-
-.tabbable:after {
- clear: both;
+.label-primary {
+ background-color: #337ab7;
}
-
-.tab-content {
- overflow: auto;
+.label-primary[href]:hover,
+.label-primary[href]:focus {
+ background-color: #286090;
}
-
-.tabs-below > .nav-tabs,
-.tabs-right > .nav-tabs,
-.tabs-left > .nav-tabs {
- border-bottom: 0;
+.label-success {
+ background-color: #5cb85c;
}
-
-.tab-content > .tab-pane,
-.pill-content > .pill-pane {
- display: none;
+.label-success[href]:hover,
+.label-success[href]:focus {
+ background-color: #449d44;
}
-
-.tab-content > .active,
-.pill-content > .active {
- display: block;
+.label-info {
+ background-color: #5bc0de;
}
-
-.tabs-below > .nav-tabs {
- border-top: 1px solid #ddd;
+.label-info[href]:hover,
+.label-info[href]:focus {
+ background-color: #31b0d5;
}
-
-.tabs-below > .nav-tabs > li {
- margin-top: -1px;
- margin-bottom: 0;
+.label-warning {
+ background-color: #f0ad4e;
}
-
-.tabs-below > .nav-tabs > li > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
+.label-warning[href]:hover,
+.label-warning[href]:focus {
+ background-color: #ec971f;
}
-
-.tabs-below > .nav-tabs > li > a:hover {
- border-top-color: #ddd;
- border-bottom-color: transparent;
+.label-danger {
+ background-color: #d9534f;
}
-
-.tabs-below > .nav-tabs > .active > a,
-.tabs-below > .nav-tabs > .active > a:hover {
- border-color: transparent #ddd #ddd #ddd;
+.label-danger[href]:hover,
+.label-danger[href]:focus {
+ background-color: #c9302c;
}
-
-.tabs-left > .nav-tabs > li,
-.tabs-right > .nav-tabs > li {
- float: none;
+.badge {
+ display: inline-block;
+ min-width: 10px;
+ padding: 3px 7px;
+ font-size: 12px;
+ font-weight: bold;
+ line-height: 1;
+ color: #fff;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ background-color: #777;
+ border-radius: 10px;
}
-
-.tabs-left > .nav-tabs > li > a,
-.tabs-right > .nav-tabs > li > a {
- min-width: 74px;
- margin-right: 0;
- margin-bottom: 3px;
+.badge:empty {
+ display: none;
}
-
-.tabs-left > .nav-tabs {
- float: left;
- margin-right: 19px;
- border-right: 1px solid #ddd;
+.btn .badge {
+ position: relative;
+ top: -1px;
}
-
-.tabs-left > .nav-tabs > li > a {
- margin-right: -1px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
+.btn-xs .badge {
+ top: 0;
+ padding: 1px 5px;
}
-
-.tabs-left > .nav-tabs > li > a:hover {
- border-color: #eeeeee #dddddd #eeeeee #eeeeee;
+a.badge:hover,
+a.badge:focus {
+ color: #fff;
+ text-decoration: none;
+ cursor: pointer;
}
-
-.tabs-left > .nav-tabs .active > a,
-.tabs-left > .nav-tabs .active > a:hover {
- border-color: #ddd transparent #ddd #ddd;
- *border-right-color: #ffffff;
+.list-group-item.active > .badge,
+.nav-pills > .active > a > .badge {
+ color: #337ab7;
+ background-color: #fff;
}
-
-.tabs-right > .nav-tabs {
+.list-group-item > .badge {
float: right;
- margin-left: 19px;
- border-left: 1px solid #ddd;
}
-
-.tabs-right > .nav-tabs > li > a {
- margin-left: -1px;
- -webkit-border-radius: 0 4px 4px 0;
- -moz-border-radius: 0 4px 4px 0;
- border-radius: 0 4px 4px 0;
+.list-group-item > .badge + .badge {
+ margin-right: 5px;
}
-
-.tabs-right > .nav-tabs > li > a:hover {
- border-color: #eeeeee #eeeeee #eeeeee #dddddd;
+.nav-pills > li > a > .badge {
+ margin-left: 3px;
}
-
-.tabs-right > .nav-tabs .active > a,
-.tabs-right > .nav-tabs .active > a:hover {
- border-color: #ddd #ddd #ddd transparent;
- *border-left-color: #ffffff;
+.jumbotron {
+ padding: 30px 15px;
+ margin-bottom: 30px;
+ color: inherit;
+ background-color: #eee;
}
-
-.navbar {
- *position: relative;
- *z-index: 2;
- margin-bottom: 18px;
- overflow: visible;
+.jumbotron h1,
+.jumbotron .h1 {
+ color: inherit;
}
-
-.navbar-inner {
- min-height: 40px;
- padding-right: 20px;
- padding-left: 20px;
- background-color: #2c2c2c;
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+.jumbotron p {
+ margin-bottom: 15px;
+ font-size: 21px;
+ font-weight: 200;
}
-
-.navbar .container {
- width: auto;
+.jumbotron > hr {
+ border-top-color: #d5d5d5;
}
-
-.nav-collapse.collapse {
- height: auto;
+.container .jumbotron,
+.container-fluid .jumbotron {
+ border-radius: 6px;
}
-
-.navbar {
- color: #999999;
+.jumbotron .container {
+ max-width: 100%;
}
-
-.navbar .brand:hover {
- text-decoration: none;
+@media screen and (min-width: 768px) {
+ .jumbotron {
+ padding: 48px 0;
+ }
+ .container .jumbotron,
+ .container-fluid .jumbotron {
+ padding-right: 60px;
+ padding-left: 60px;
+ }
+ .jumbotron h1,
+ .jumbotron .h1 {
+ font-size: 63px;
+ }
}
-
-.navbar .brand {
+.thumbnail {
display: block;
- float: left;
- padding: 8px 20px 12px;
- margin-left: -20px;
- font-size: 20px;
- font-weight: 200;
- line-height: 1;
- color: #999999;
+ padding: 4px;
+ margin-bottom: 20px;
+ line-height: 1.42857143;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ -webkit-transition: border .2s ease-in-out;
+ -o-transition: border .2s ease-in-out;
+ transition: border .2s ease-in-out;
}
-
-.navbar .navbar-text {
- margin-bottom: 0;
- line-height: 40px;
+.thumbnail > img,
+.thumbnail a > img {
+ margin-right: auto;
+ margin-left: auto;
}
-
-.navbar .navbar-link {
- color: #999999;
+a.thumbnail:hover,
+a.thumbnail:focus,
+a.thumbnail.active {
+ border-color: #337ab7;
}
-
-.navbar .navbar-link:hover {
- color: #ffffff;
+.thumbnail .caption {
+ padding: 9px;
+ color: #333;
}
-
-.navbar .btn,
-.navbar .btn-group {
- margin-top: 5px;
+.alert {
+ padding: 15px;
+ margin-bottom: 20px;
+ border: 1px solid transparent;
+ border-radius: 4px;
}
-
-.navbar .btn-group .btn {
- margin: 0;
+.alert h4 {
+ margin-top: 0;
+ color: inherit;
}
-
-.navbar-form {
+.alert .alert-link {
+ font-weight: bold;
+}
+.alert > p,
+.alert > ul {
margin-bottom: 0;
- *zoom: 1;
}
-
-.navbar-form:before,
-.navbar-form:after {
- display: table;
- content: "";
+.alert > p + p {
+ margin-top: 5px;
}
-
-.navbar-form:after {
- clear: both;
+.alert-dismissable,
+.alert-dismissible {
+ padding-right: 35px;
}
-
-.navbar-form input,
-.navbar-form select,
-.navbar-form .radio,
-.navbar-form .checkbox {
- margin-top: 5px;
+.alert-dismissable .close,
+.alert-dismissible .close {
+ position: relative;
+ top: -2px;
+ right: -21px;
+ color: inherit;
}
-
-.navbar-form input,
-.navbar-form select {
- display: inline-block;
- margin-bottom: 0;
+.alert-success {
+ color: #3c763d;
+ background-color: #dff0d8;
+ border-color: #d6e9c6;
}
-
-.navbar-form input[type="image"],
-.navbar-form input[type="checkbox"],
-.navbar-form input[type="radio"] {
- margin-top: 3px;
+.alert-success hr {
+ border-top-color: #c9e2b3;
}
-
-.navbar-form .input-append,
-.navbar-form .input-prepend {
- margin-top: 6px;
- white-space: nowrap;
+.alert-success .alert-link {
+ color: #2b542c;
}
-
-.navbar-form .input-append input,
-.navbar-form .input-prepend input {
- margin-top: 0;
+.alert-info {
+ color: #31708f;
+ background-color: #d9edf7;
+ border-color: #bce8f1;
}
-
-.navbar-search {
- position: relative;
- float: left;
- margin-top: 6px;
- margin-bottom: 0;
+.alert-info hr {
+ border-top-color: #a6e1ec;
}
-
-.navbar-search .search-query {
- padding: 4px 9px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- font-weight: normal;
- line-height: 1;
- color: #ffffff;
- background-color: #626262;
- border: 1px solid #151515;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
+.alert-info .alert-link {
+ color: #245269;
}
-
-.navbar-search .search-query:-moz-placeholder {
- color: #cccccc;
+.alert-warning {
+ color: #8a6d3b;
+ background-color: #fcf8e3;
+ border-color: #faebcc;
}
-
-.navbar-search .search-query:-ms-input-placeholder {
- color: #cccccc;
+.alert-warning hr {
+ border-top-color: #f7e1b5;
}
-
-.navbar-search .search-query::-webkit-input-placeholder {
- color: #cccccc;
+.alert-warning .alert-link {
+ color: #66512c;
}
-
-.navbar-search .search-query:focus,
-.navbar-search .search-query.focused {
- padding: 5px 10px;
- color: #333333;
- text-shadow: 0 1px 0 #ffffff;
- background-color: #ffffff;
- border: 0;
- outline: 0;
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
+.alert-danger {
+ color: #a94442;
+ background-color: #f2dede;
+ border-color: #ebccd1;
}
-
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
- margin-bottom: 0;
+.alert-danger hr {
+ border-top-color: #e4b9c0;
}
-
-.navbar-fixed-top .navbar-inner,
-.navbar-fixed-bottom .navbar-inner {
- padding-right: 0;
- padding-left: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
+.alert-danger .alert-link {
+ color: #843534;
}
-
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-
-.navbar-fixed-top {
- top: 0;
+@-o-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-
-.navbar-fixed-bottom {
- bottom: 0;
+@keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-
-.navbar .nav {
- position: relative;
- left: 0;
- display: block;
+.progress {
+ height: 20px;
+ margin-bottom: 20px;
+ overflow: hidden;
+ background-color: #f5f5f5;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
+}
+.progress-bar {
float: left;
- margin: 0 10px 0 0;
+ width: 0;
+ height: 100%;
+ font-size: 12px;
+ line-height: 20px;
+ color: #fff;
+ text-align: center;
+ background-color: #337ab7;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
+ -webkit-transition: width .6s ease;
+ -o-transition: width .6s ease;
+ transition: width .6s ease;
+}
+.progress-striped .progress-bar,
+.progress-bar-striped {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ -webkit-background-size: 40px 40px;
+ background-size: 40px 40px;
}
-
-.navbar .nav.pull-right {
- float: right;
+.progress.active .progress-bar,
+.progress-bar.active {
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
+ -o-animation: progress-bar-stripes 2s linear infinite;
+ animation: progress-bar-stripes 2s linear infinite;
}
-
-.navbar .nav > li {
- display: block;
- float: left;
+.progress-bar-success {
+ background-color: #5cb85c;
}
-
-.navbar .nav > li > a {
- float: none;
- padding: 9px 10px 11px;
- line-height: 19px;
- color: #999999;
- text-decoration: none;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+.progress-striped .progress-bar-success {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
-
-.navbar .btn {
- display: inline-block;
- padding: 4px 10px 4px;
- margin: 5px 5px 6px;
- line-height: 18px;
+.progress-bar-info {
+ background-color: #5bc0de;
}
-
-.navbar .btn-group {
- padding: 5px 5px 6px;
- margin: 0;
+.progress-striped .progress-bar-info {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
-
-.navbar .nav > li > a:hover {
- color: #ffffff;
- text-decoration: none;
- background-color: transparent;
+.progress-bar-warning {
+ background-color: #f0ad4e;
}
-
-.navbar .nav .active > a,
-.navbar .nav .active > a:hover {
- color: #ffffff;
- text-decoration: none;
- background-color: #222222;
+.progress-striped .progress-bar-warning {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
-
-.navbar .divider-vertical {
- width: 1px;
- height: 40px;
- margin: 0 9px;
+.progress-bar-danger {
+ background-color: #d9534f;
+}
+.progress-striped .progress-bar-danger {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+}
+.media {
+ margin-top: 15px;
+}
+.media:first-child {
+ margin-top: 0;
+}
+.media,
+.media-body {
overflow: hidden;
- background-color: #222222;
- border-right: 1px solid #333333;
+ zoom: 1;
}
-
-.navbar .nav.pull-right {
- margin-right: 0;
- margin-left: 10px;
+.media-body {
+ width: 10000px;
}
-
-.navbar .btn-navbar {
- display: none;
- float: right;
- padding: 7px 10px;
- margin-right: 5px;
- margin-left: 5px;
- background-color: #2c2c2c;
- *background-color: #222222;
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-repeat: repeat-x;
- border-color: #222222 #222222 #000000;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
+.media-object {
+ display: block;
}
-
-.navbar .btn-navbar:hover,
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active,
-.navbar .btn-navbar.disabled,
-.navbar .btn-navbar[disabled] {
- background-color: #222222;
- *background-color: #151515;
+.media-right,
+.media > .pull-right {
+ padding-left: 10px;
}
-
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active {
- background-color: #080808 \9;
+.media-left,
+.media > .pull-left {
+ padding-right: 10px;
}
-
-.navbar .btn-navbar .icon-bar {
+.media-left,
+.media-right,
+.media-body {
+ display: table-cell;
+ vertical-align: top;
+}
+.media-middle {
+ vertical-align: middle;
+}
+.media-bottom {
+ vertical-align: bottom;
+}
+.media-heading {
+ margin-top: 0;
+ margin-bottom: 5px;
+}
+.media-list {
+ padding-left: 0;
+ list-style: none;
+}
+.list-group {
+ padding-left: 0;
+ margin-bottom: 20px;
+}
+.list-group-item {
+ position: relative;
display: block;
- width: 18px;
- height: 2px;
- background-color: #f5f5f5;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
+ padding: 10px 15px;
+ margin-bottom: -1px;
+ background-color: #fff;
+ border: 1px solid #ddd;
}
-
-.btn-navbar .icon-bar + .icon-bar {
- margin-top: 3px;
+.list-group-item:first-child {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
}
-
-.navbar .dropdown-menu:before {
- position: absolute;
- top: -7px;
- left: 9px;
- display: inline-block;
- border-right: 7px solid transparent;
- border-bottom: 7px solid #ccc;
- border-left: 7px solid transparent;
- border-bottom-color: rgba(0, 0, 0, 0.2);
- content: '';
+.list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom-right-radius: 4px;
+ border-bottom-left-radius: 4px;
}
-
-.navbar .dropdown-menu:after {
- position: absolute;
- top: -6px;
- left: 10px;
- display: inline-block;
- border-right: 6px solid transparent;
- border-bottom: 6px solid #ffffff;
- border-left: 6px solid transparent;
- content: '';
+a.list-group-item {
+ color: #555;
}
-
-.navbar-fixed-bottom .dropdown-menu:before {
- top: auto;
- bottom: -7px;
- border-top: 7px solid #ccc;
- border-bottom: 0;
- border-top-color: rgba(0, 0, 0, 0.2);
+a.list-group-item .list-group-item-heading {
+ color: #333;
}
-
-.navbar-fixed-bottom .dropdown-menu:after {
- top: auto;
- bottom: -6px;
- border-top: 6px solid #ffffff;
- border-bottom: 0;
+a.list-group-item:hover,
+a.list-group-item:focus {
+ color: #555;
+ text-decoration: none;
+ background-color: #f5f5f5;
}
-
-.navbar .nav li.dropdown .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
+.list-group-item.disabled,
+.list-group-item.disabled:hover,
+.list-group-item.disabled:focus {
+ color: #777;
+ cursor: not-allowed;
+ background-color: #eee;
}
-
-.navbar .nav li.dropdown.active .caret {
- opacity: 1;
- filter: alpha(opacity=100);
+.list-group-item.disabled .list-group-item-heading,
+.list-group-item.disabled:hover .list-group-item-heading,
+.list-group-item.disabled:focus .list-group-item-heading {
+ color: inherit;
}
-
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active > .dropdown-toggle,
-.navbar .nav li.dropdown.open.active > .dropdown-toggle {
- background-color: transparent;
+.list-group-item.disabled .list-group-item-text,
+.list-group-item.disabled:hover .list-group-item-text,
+.list-group-item.disabled:focus .list-group-item-text {
+ color: #777;
}
-
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover {
- color: #ffffff;
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+ z-index: 2;
+ color: #fff;
+ background-color: #337ab7;
+ border-color: #337ab7;
+}
+.list-group-item.active .list-group-item-heading,
+.list-group-item.active:hover .list-group-item-heading,
+.list-group-item.active:focus .list-group-item-heading,
+.list-group-item.active .list-group-item-heading > small,
+.list-group-item.active:hover .list-group-item-heading > small,
+.list-group-item.active:focus .list-group-item-heading > small,
+.list-group-item.active .list-group-item-heading > .small,
+.list-group-item.active:hover .list-group-item-heading > .small,
+.list-group-item.active:focus .list-group-item-heading > .small {
+ color: inherit;
}
-
-.navbar .pull-right .dropdown-menu,
-.navbar .dropdown-menu.pull-right {
- right: 0;
- left: auto;
+.list-group-item.active .list-group-item-text,
+.list-group-item.active:hover .list-group-item-text,
+.list-group-item.active:focus .list-group-item-text {
+ color: #c7ddef;
}
-
-.navbar .pull-right .dropdown-menu:before,
-.navbar .dropdown-menu.pull-right:before {
- right: 12px;
- left: auto;
+.list-group-item-success {
+ color: #3c763d;
+ background-color: #dff0d8;
}
-
-.navbar .pull-right .dropdown-menu:after,
-.navbar .dropdown-menu.pull-right:after {
- right: 13px;
- left: auto;
+a.list-group-item-success {
+ color: #3c763d;
}
-
-.breadcrumb {
- padding: 7px 14px;
- margin: 0 0 18px;
- list-style: none;
- background-color: #fbfbfb;
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
- background-repeat: repeat-x;
- border: 1px solid #ddd;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
+a.list-group-item-success .list-group-item-heading {
+ color: inherit;
}
-
-.breadcrumb li {
- display: inline-block;
- *display: inline;
- text-shadow: 0 1px 0 #ffffff;
- *zoom: 1;
+a.list-group-item-success:hover,
+a.list-group-item-success:focus {
+ color: #3c763d;
+ background-color: #d0e9c6;
}
-
-.breadcrumb .divider {
- padding: 0 5px;
- color: #999999;
+a.list-group-item-success.active,
+a.list-group-item-success.active:hover,
+a.list-group-item-success.active:focus {
+ color: #fff;
+ background-color: #3c763d;
+ border-color: #3c763d;
}
-
-.breadcrumb .active a {
- color: #333333;
+.list-group-item-info {
+ color: #31708f;
+ background-color: #d9edf7;
}
-
-.pagination {
- height: 36px;
- margin: 18px 0;
+a.list-group-item-info {
+ color: #31708f;
}
-
-.pagination ul {
- display: inline-block;
- *display: inline;
- margin-bottom: 0;
- margin-left: 0;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- *zoom: 1;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
+a.list-group-item-info .list-group-item-heading {
+ color: inherit;
}
-
-.pagination li {
- display: inline;
+a.list-group-item-info:hover,
+a.list-group-item-info:focus {
+ color: #31708f;
+ background-color: #c4e3f3;
}
-
-.pagination a {
- float: left;
- padding: 0 14px;
- line-height: 34px;
- text-decoration: none;
- border: 1px solid #ddd;
- border-left-width: 0;
+a.list-group-item-info.active,
+a.list-group-item-info.active:hover,
+a.list-group-item-info.active:focus {
+ color: #fff;
+ background-color: #31708f;
+ border-color: #31708f;
}
-
-.pagination a:hover,
-.pagination .active a {
- background-color: #f5f5f5;
+.list-group-item-warning {
+ color: #8a6d3b;
+ background-color: #fcf8e3;
}
-
-.pagination .active a {
- color: #999999;
- cursor: default;
+a.list-group-item-warning {
+ color: #8a6d3b;
}
-
-.pagination .disabled span,
-.pagination .disabled a,
-.pagination .disabled a:hover {
- color: #999999;
- cursor: default;
- background-color: transparent;
+a.list-group-item-warning .list-group-item-heading {
+ color: inherit;
}
-
-.pagination li:first-child a {
- border-left-width: 1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
+a.list-group-item-warning:hover,
+a.list-group-item-warning:focus {
+ color: #8a6d3b;
+ background-color: #faf2cc;
}
-
-.pagination li:last-child a {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+a.list-group-item-warning.active,
+a.list-group-item-warning.active:hover,
+a.list-group-item-warning.active:focus {
+ color: #fff;
+ background-color: #8a6d3b;
+ border-color: #8a6d3b;
}
-
-.pagination-centered {
- text-align: center;
+.list-group-item-danger {
+ color: #a94442;
+ background-color: #f2dede;
}
-
-.pagination-right {
- text-align: right;
+a.list-group-item-danger {
+ color: #a94442;
}
-
-.pager {
- margin-bottom: 18px;
- margin-left: 0;
- text-align: center;
- list-style: none;
- *zoom: 1;
+a.list-group-item-danger .list-group-item-heading {
+ color: inherit;
}
-
-.pager:before,
-.pager:after {
- display: table;
- content: "";
+a.list-group-item-danger:hover,
+a.list-group-item-danger:focus {
+ color: #a94442;
+ background-color: #ebcccc;
}
-
-.pager:after {
- clear: both;
+a.list-group-item-danger.active,
+a.list-group-item-danger.active:hover,
+a.list-group-item-danger.active:focus {
+ color: #fff;
+ background-color: #a94442;
+ border-color: #a94442;
}
-
-.pager li {
- display: inline;
+.list-group-item-heading {
+ margin-top: 0;
+ margin-bottom: 5px;
}
-
-.pager a {
- display: inline-block;
- padding: 5px 14px;
+.list-group-item-text {
+ margin-bottom: 0;
+ line-height: 1.3;
+}
+.panel {
+ margin-bottom: 20px;
background-color: #fff;
- border: 1px solid #ddd;
- -webkit-border-radius: 15px;
- -moz-border-radius: 15px;
- border-radius: 15px;
+ border: 1px solid transparent;
+ border-radius: 4px;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
-
-.pager a:hover {
- text-decoration: none;
- background-color: #f5f5f5;
+.panel-body {
+ padding: 15px;
}
-
-.pager .next a {
- float: right;
+.panel-heading {
+ padding: 10px 15px;
+ border-bottom: 1px solid transparent;
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
}
-
-.pager .previous a {
- float: left;
+.panel-heading > .dropdown .dropdown-toggle {
+ color: inherit;
}
-
-.pager .disabled a,
-.pager .disabled a:hover {
- color: #999999;
- cursor: default;
- background-color: #fff;
+.panel-title {
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 16px;
+ color: inherit;
}
-
-.modal-open .dropdown-menu {
- z-index: 2050;
+.panel-title > a,
+.panel-title > small,
+.panel-title > .small,
+.panel-title > small > a,
+.panel-title > .small > a {
+ color: inherit;
}
-
-.modal-open .dropdown.open {
- *z-index: 2050;
+.panel-footer {
+ padding: 10px 15px;
+ background-color: #f5f5f5;
+ border-top: 1px solid #ddd;
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
}
-
-.modal-open .popover {
- z-index: 2060;
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
+ margin-bottom: 0;
}
-
-.modal-open .tooltip {
- z-index: 2070;
+.panel > .list-group .list-group-item,
+.panel > .panel-collapse > .list-group .list-group-item {
+ border-width: 1px 0;
+ border-radius: 0;
}
-
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000000;
+.panel > .list-group:first-child .list-group-item:first-child,
+.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
+ border-top: 0;
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
}
-
-.modal-backdrop.fade {
- opacity: 0;
+.panel > .list-group:last-child .list-group-item:last-child,
+.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
+ border-bottom: 0;
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
}
-
-.modal-backdrop,
-.modal-backdrop.fade.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
+.panel-heading + .list-group .list-group-item:first-child {
+ border-top-width: 0;
}
-
-.modal {
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 1050;
- width: 560px;
- margin: -250px 0 0 -280px;
- overflow: auto;
- background-color: #ffffff;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.3);
- *border: 1px solid #999;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
+.list-group + .panel-footer {
+ border-top-width: 0;
}
-
-.modal.fade {
- top: -25%;
- -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
- -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
- -ms-transition: opacity 0.3s linear, top 0.3s ease-out;
- -o-transition: opacity 0.3s linear, top 0.3s ease-out;
- transition: opacity 0.3s linear, top 0.3s ease-out;
+.panel > .table,
+.panel > .table-responsive > .table,
+.panel > .panel-collapse > .table {
+ margin-bottom: 0;
}
-
-.modal.fade.in {
- top: 50%;
+.panel > .table caption,
+.panel > .table-responsive > .table caption,
+.panel > .panel-collapse > .table caption {
+ padding-right: 15px;
+ padding-left: 15px;
}
-
-.modal-header {
- padding: 9px 15px;
- border-bottom: 1px solid #eee;
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
+ border-top-left-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
+ border-top-right-radius: 3px;
+}
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table:last-child {
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
+ border-bottom-left-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
+ border-bottom-right-radius: 3px;
+}
+.panel > .panel-body + .table,
+.panel > .panel-body + .table-responsive,
+.panel > .table + .panel-body,
+.panel > .table-responsive + .panel-body {
+ border-top: 1px solid #ddd;
}
-
-.modal-header .close {
- margin-top: 2px;
+.panel > .table > tbody:first-child > tr:first-child th,
+.panel > .table > tbody:first-child > tr:first-child td {
+ border-top: 0;
}
-
-.modal-body {
- max-height: 400px;
- padding: 15px;
- overflow-y: auto;
+.panel > .table-bordered,
+.panel > .table-responsive > .table-bordered {
+ border: 0;
}
-
-.modal-form {
+.panel > .table-bordered > thead > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+.panel > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-bordered > thead > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+.panel > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-bordered > tfoot > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+ border-left: 0;
+}
+.panel > .table-bordered > thead > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+.panel > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-bordered > thead > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+.panel > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-bordered > tfoot > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+ border-right: 0;
+}
+.panel > .table-bordered > thead > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
+.panel > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-bordered > thead > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
+.panel > .table-bordered > tbody > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
+ border-bottom: 0;
+}
+.panel > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-bordered > tfoot > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
+ border-bottom: 0;
+}
+.panel > .table-responsive {
margin-bottom: 0;
+ border: 0;
}
-
-.modal-footer {
- padding: 14px 15px 15px;
+.panel-group {
+ margin-bottom: 20px;
+}
+.panel-group .panel {
margin-bottom: 0;
- text-align: right;
- background-color: #f5f5f5;
- border-top: 1px solid #ddd;
- -webkit-border-radius: 0 0 6px 6px;
- -moz-border-radius: 0 0 6px 6px;
- border-radius: 0 0 6px 6px;
- *zoom: 1;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
+ border-radius: 4px;
}
-
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: "";
+.panel-group .panel + .panel {
+ margin-top: 5px;
}
-
-.modal-footer:after {
- clear: both;
+.panel-group .panel-heading {
+ border-bottom: 0;
}
-
-.modal-footer .btn + .btn {
- margin-bottom: 0;
- margin-left: 5px;
+.panel-group .panel-heading + .panel-collapse > .panel-body,
+.panel-group .panel-heading + .panel-collapse > .list-group {
+ border-top: 1px solid #ddd;
}
-
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
+.panel-group .panel-footer {
+ border-top: 0;
}
-
-.tooltip {
- position: absolute;
- z-index: 1020;
- display: block;
- padding: 5px;
- font-size: 11px;
- opacity: 0;
- filter: alpha(opacity=0);
- visibility: visible;
+.panel-group .panel-footer + .panel-collapse .panel-body {
+ border-bottom: 1px solid #ddd;
}
-
-.tooltip.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
+.panel-default {
+ border-color: #ddd;
}
-
-.tooltip.top {
- margin-top: -2px;
+.panel-default > .panel-heading {
+ color: #333;
+ background-color: #f5f5f5;
+ border-color: #ddd;
}
-
-.tooltip.right {
- margin-left: 2px;
+.panel-default > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #ddd;
}
-
-.tooltip.bottom {
- margin-top: 2px;
+.panel-default > .panel-heading .badge {
+ color: #f5f5f5;
+ background-color: #333;
}
-
-.tooltip.left {
- margin-left: -2px;
+.panel-default > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #ddd;
}
-
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-top: 5px solid #000000;
- border-right: 5px solid transparent;
- border-left: 5px solid transparent;
+.panel-primary {
+ border-color: #337ab7;
}
-
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
+.panel-primary > .panel-heading {
+ color: #fff;
+ background-color: #337ab7;
+ border-color: #337ab7;
}
-
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
- border-left: 5px solid transparent;
+.panel-primary > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #337ab7;
}
-
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-right: 5px solid #000000;
- border-bottom: 5px solid transparent;
+.panel-primary > .panel-heading .badge {
+ color: #337ab7;
+ background-color: #fff;
}
-
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #ffffff;
- text-align: center;
- text-decoration: none;
- background-color: #000000;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.panel-primary > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #337ab7;
}
-
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
+.panel-success {
+ border-color: #d6e9c6;
}
-
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: none;
- padding: 5px;
+.panel-success > .panel-heading {
+ color: #3c763d;
+ background-color: #dff0d8;
+ border-color: #d6e9c6;
}
-
-.popover.top {
- margin-top: -5px;
+.panel-success > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #d6e9c6;
}
-
-.popover.right {
- margin-left: 5px;
+.panel-success > .panel-heading .badge {
+ color: #dff0d8;
+ background-color: #3c763d;
}
-
-.popover.bottom {
- margin-top: 5px;
+.panel-success > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #d6e9c6;
}
-
-.popover.left {
- margin-left: -5px;
+.panel-info {
+ border-color: #bce8f1;
}
-
-.popover.top .arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-top: 5px solid #000000;
- border-right: 5px solid transparent;
- border-left: 5px solid transparent;
+.panel-info > .panel-heading {
+ color: #31708f;
+ background-color: #d9edf7;
+ border-color: #bce8f1;
}
-
-.popover.right .arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-right: 5px solid #000000;
- border-bottom: 5px solid transparent;
+.panel-info > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #bce8f1;
}
-
-.popover.bottom .arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
- border-left: 5px solid transparent;
+.panel-info > .panel-heading .badge {
+ color: #d9edf7;
+ background-color: #31708f;
}
-
-.popover.left .arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
+.panel-info > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #bce8f1;
}
-
-.popover .arrow {
- position: absolute;
- width: 0;
- height: 0;
+.panel-warning {
+ border-color: #faebcc;
}
-
-.popover-inner {
- width: 280px;
- padding: 3px;
- overflow: hidden;
- background: #000000;
- background: rgba(0, 0, 0, 0.8);
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
+.panel-warning > .panel-heading {
+ color: #8a6d3b;
+ background-color: #fcf8e3;
+ border-color: #faebcc;
}
-
-.popover-title {
- padding: 9px 15px;
- line-height: 1;
- background-color: #f5f5f5;
- border-bottom: 1px solid #eee;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
+.panel-warning > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #faebcc;
}
-
-.popover-content {
- padding: 14px;
- background-color: #ffffff;
- -webkit-border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- border-radius: 0 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
+.panel-warning > .panel-heading .badge {
+ color: #fcf8e3;
+ background-color: #8a6d3b;
}
-
-.popover-content p,
-.popover-content ul,
-.popover-content ol {
- margin-bottom: 0;
+.panel-warning > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #faebcc;
}
-
-.thumbnails {
- margin-left: -20px;
- list-style: none;
- *zoom: 1;
+.panel-danger {
+ border-color: #ebccd1;
}
-
-.thumbnails:before,
-.thumbnails:after {
- display: table;
- content: "";
+.panel-danger > .panel-heading {
+ color: #a94442;
+ background-color: #f2dede;
+ border-color: #ebccd1;
}
-
-.thumbnails:after {
- clear: both;
+.panel-danger > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #ebccd1;
}
-
-.row-fluid .thumbnails {
- margin-left: 0;
+.panel-danger > .panel-heading .badge {
+ color: #f2dede;
+ background-color: #a94442;
}
-
-.thumbnails > li {
- float: left;
- margin-bottom: 18px;
- margin-left: 20px;
+.panel-danger > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #ebccd1;
}
-
-.thumbnail {
+.embed-responsive {
+ position: relative;
display: block;
- padding: 4px;
- line-height: 1;
- border: 1px solid #ddd;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
+ height: 0;
+ padding: 0;
+ overflow: hidden;
}
-
-a.thumbnail:hover {
- border-color: #0088cc;
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
+.embed-responsive .embed-responsive-item,
+.embed-responsive iframe,
+.embed-responsive embed,
+.embed-responsive object,
+.embed-responsive video {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 0;
}
-
-.thumbnail > img {
- display: block;
- max-width: 100%;
- margin-right: auto;
- margin-left: auto;
+.embed-responsive.embed-responsive-16by9 {
+ padding-bottom: 56.25%;
}
-
-.thumbnail .caption {
- padding: 9px;
+.embed-responsive.embed-responsive-4by3 {
+ padding-bottom: 75%;
}
-
-.label,
-.badge {
- font-size: 10.998px;
- font-weight: bold;
- line-height: 14px;
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- white-space: nowrap;
- vertical-align: baseline;
- background-color: #999999;
+.well {
+ min-height: 20px;
+ padding: 19px;
+ margin-bottom: 20px;
+ background-color: #f5f5f5;
+ border: 1px solid #e3e3e3;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
-
-.label {
- padding: 1px 4px 2px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
+.well blockquote {
+ border-color: #ddd;
+ border-color: rgba(0, 0, 0, .15);
}
-
-.badge {
- padding: 1px 9px 2px;
- -webkit-border-radius: 9px;
- -moz-border-radius: 9px;
- border-radius: 9px;
+.well-lg {
+ padding: 24px;
+ border-radius: 6px;
}
-
-a.label:hover,
-a.badge:hover {
- color: #ffffff;
+.well-sm {
+ padding: 9px;
+ border-radius: 3px;
+}
+.close {
+ float: right;
+ font-size: 21px;
+ font-weight: bold;
+ line-height: 1;
+ color: #000;
+ text-shadow: 0 1px 0 #fff;
+ filter: alpha(opacity=20);
+ opacity: .2;
+}
+.close:hover,
+.close:focus {
+ color: #000;
text-decoration: none;
cursor: pointer;
+ filter: alpha(opacity=50);
+ opacity: .5;
}
-
-.label-important,
-.badge-important {
- background-color: #b94a48;
+button.close {
+ -webkit-appearance: none;
+ padding: 0;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
}
-
-.label-important[href],
-.badge-important[href] {
- background-color: #953b39;
+.modal-open {
+ overflow: hidden;
}
-
-.label-warning,
-.badge-warning {
- background-color: #f89406;
+.modal {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1040;
+ display: none;
+ overflow: hidden;
+ -webkit-overflow-scrolling: touch;
+ outline: 0;
}
-
-.label-warning[href],
-.badge-warning[href] {
- background-color: #c67605;
+.modal.fade .modal-dialog {
+ -webkit-transition: -webkit-transform .3s ease-out;
+ -o-transition: -o-transform .3s ease-out;
+ transition: transform .3s ease-out;
+ -webkit-transform: translate(0, -25%);
+ -ms-transform: translate(0, -25%);
+ -o-transform: translate(0, -25%);
+ transform: translate(0, -25%);
+}
+.modal.in .modal-dialog {
+ -webkit-transform: translate(0, 0);
+ -ms-transform: translate(0, 0);
+ -o-transform: translate(0, 0);
+ transform: translate(0, 0);
+}
+.modal-open .modal {
+ overflow-x: hidden;
+ overflow-y: auto;
}
-
-.label-success,
-.badge-success {
- background-color: #468847;
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: 10px;
}
-
-.label-success[href],
-.badge-success[href] {
- background-color: #356635;
+.modal-content {
+ position: relative;
+ background-color: #fff;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ border: 1px solid #999;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: 6px;
+ outline: 0;
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
+ box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
-
-.label-info,
-.badge-info {
- background-color: #3a87ad;
+.modal-backdrop {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ background-color: #000;
}
-
-.label-info[href],
-.badge-info[href] {
- background-color: #2d6987;
+.modal-backdrop.fade {
+ filter: alpha(opacity=0);
+ opacity: 0;
}
-
-.label-inverse,
-.badge-inverse {
- background-color: #333333;
+.modal-backdrop.in {
+ filter: alpha(opacity=50);
+ opacity: .5;
}
-
-.label-inverse[href],
-.badge-inverse[href] {
- background-color: #1a1a1a;
+.modal-header {
+ min-height: 16.42857143px;
+ padding: 15px;
+ border-bottom: 1px solid #e5e5e5;
}
-
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
+.modal-header .close {
+ margin-top: -2px;
}
-
-@-moz-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
+.modal-title {
+ margin: 0;
+ line-height: 1.42857143;
}
-
-@-ms-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
+.modal-body {
+ position: relative;
+ padding: 15px;
}
-
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 40px 0;
- }
+.modal-footer {
+ padding: 15px;
+ text-align: right;
+ border-top: 1px solid #e5e5e5;
}
-
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
+.modal-footer .btn + .btn {
+ margin-bottom: 0;
+ margin-left: 5px;
+}
+.modal-footer .btn-group .btn + .btn {
+ margin-left: -1px;
+}
+.modal-footer .btn-block + .btn-block {
+ margin-left: 0;
+}
+.modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll;
+}
+@media (min-width: 768px) {
+ .modal-dialog {
+ width: 600px;
+ margin: 30px auto;
}
- to {
- background-position: 0 0;
+ .modal-content {
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
+ }
+ .modal-sm {
+ width: 300px;
}
}
-
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+@media (min-width: 992px) {
+ .modal-lg {
+ width: 900px;
+ }
}
-
-.progress .bar {
- width: 0;
- height: 18px;
+.tooltip {
+ position: absolute;
+ z-index: 1070;
+ display: block;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
- color: #ffffff;
+ font-weight: normal;
+ line-height: 1.4;
+ visibility: visible;
+ filter: alpha(opacity=0);
+ opacity: 0;
+}
+.tooltip.in {
+ filter: alpha(opacity=90);
+ opacity: .9;
+}
+.tooltip.top {
+ padding: 5px 0;
+ margin-top: -3px;
+}
+.tooltip.right {
+ padding: 0 5px;
+ margin-left: 3px;
+}
+.tooltip.bottom {
+ padding: 5px 0;
+ margin-top: 3px;
+}
+.tooltip.left {
+ padding: 0 5px;
+ margin-left: -3px;
+}
+.tooltip-inner {
+ max-width: 200px;
+ padding: 3px 8px;
+ color: #fff;
text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #0e90d2;
- background-image: -moz-linear-gradient(top, #149bdf, #0480be);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
- background-image: -o-linear-gradient(top, #149bdf, #0480be);
- background-image: linear-gradient(top, #149bdf, #0480be);
- background-image: -ms-linear-gradient(top, #149bdf, #0480be);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-transition: width 0.6s ease;
- -moz-transition: width 0.6s ease;
- -ms-transition: width 0.6s ease;
- -o-transition: width 0.6s ease;
- transition: width 0.6s ease;
+ text-decoration: none;
+ background-color: #000;
+ border-radius: 4px;
}
-
-.progress-striped .bar {
- background-color: #149bdf;
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-background-size: 40px 40px;
- -moz-background-size: 40px 40px;
- -o-background-size: 40px 40px;
- background-size: 40px 40px;
+.tooltip-arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
+}
+.tooltip.top .tooltip-arrow {
+ bottom: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000;
+}
+.tooltip.top-left .tooltip-arrow {
+ right: 5px;
+ bottom: 0;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000;
}
-
-.progress.active .bar {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- -moz-animation: progress-bar-stripes 2s linear infinite;
- -ms-animation: progress-bar-stripes 2s linear infinite;
- -o-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
+.tooltip.top-right .tooltip-arrow {
+ bottom: 0;
+ left: 5px;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000;
}
-
-.progress-danger .bar {
- background-color: #dd514c;
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
+.tooltip.right .tooltip-arrow {
+ top: 50%;
+ left: 0;
+ margin-top: -5px;
+ border-width: 5px 5px 5px 0;
+ border-right-color: #000;
}
-
-.progress-danger.progress-striped .bar {
- background-color: #ee5f5b;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+.tooltip.left .tooltip-arrow {
+ top: 50%;
+ right: 0;
+ margin-top: -5px;
+ border-width: 5px 0 5px 5px;
+ border-left-color: #000;
}
-
-.progress-success .bar {
- background-color: #5eb95e;
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
- background-image: -o-linear-gradient(top, #62c462, #57a957);
- background-image: linear-gradient(top, #62c462, #57a957);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
+.tooltip.bottom .tooltip-arrow {
+ top: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000;
}
-
-.progress-success.progress-striped .bar {
- background-color: #62c462;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+.tooltip.bottom-left .tooltip-arrow {
+ top: 0;
+ right: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000;
}
-
-.progress-info .bar {
- background-color: #4bb1cf;
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
- background-image: linear-gradient(top, #5bc0de, #339bb9);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
+.tooltip.bottom-right .tooltip-arrow {
+ top: 0;
+ left: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000;
}
-
-.progress-info.progress-striped .bar {
- background-color: #5bc0de;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: none;
+ max-width: 276px;
+ padding: 1px;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.42857143;
+ text-align: left;
+ white-space: normal;
+ background-color: #fff;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: 6px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
-
-.progress-warning .bar {
- background-color: #faa732;
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(top, #fbb450, #f89406);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
+.popover.top {
+ margin-top: -10px;
}
-
-.progress-warning.progress-striped .bar {
- background-color: #fbb450;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+.popover.right {
+ margin-left: 10px;
}
-
-.accordion {
- margin-bottom: 18px;
+.popover.bottom {
+ margin-top: 10px;
}
-
-.accordion-group {
- margin-bottom: 2px;
- border: 1px solid #e5e5e5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
+.popover.left {
+ margin-left: -10px;
}
-
-.accordion-heading {
- border-bottom: 0;
+.popover-title {
+ padding: 8px 14px;
+ margin: 0;
+ font-size: 14px;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-radius: 5px 5px 0 0;
}
-
-.accordion-heading .accordion-toggle {
+.popover-content {
+ padding: 9px 14px;
+}
+.popover > .arrow,
+.popover > .arrow:after {
+ position: absolute;
display: block;
- padding: 8px 15px;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
}
-
-.accordion-toggle {
- cursor: pointer;
+.popover > .arrow {
+ border-width: 11px;
}
-
-.accordion-inner {
- padding: 9px 15px;
- border-top: 1px solid #e5e5e5;
+.popover > .arrow:after {
+ content: "";
+ border-width: 10px;
+}
+.popover.top > .arrow {
+ bottom: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-top-color: #999;
+ border-top-color: rgba(0, 0, 0, .25);
+ border-bottom-width: 0;
+}
+.popover.top > .arrow:after {
+ bottom: 1px;
+ margin-left: -10px;
+ content: " ";
+ border-top-color: #fff;
+ border-bottom-width: 0;
+}
+.popover.right > .arrow {
+ top: 50%;
+ left: -11px;
+ margin-top: -11px;
+ border-right-color: #999;
+ border-right-color: rgba(0, 0, 0, .25);
+ border-left-width: 0;
+}
+.popover.right > .arrow:after {
+ bottom: -10px;
+ left: 1px;
+ content: " ";
+ border-right-color: #fff;
+ border-left-width: 0;
+}
+.popover.bottom > .arrow {
+ top: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-top-width: 0;
+ border-bottom-color: #999;
+ border-bottom-color: rgba(0, 0, 0, .25);
+}
+.popover.bottom > .arrow:after {
+ top: 1px;
+ margin-left: -10px;
+ content: " ";
+ border-top-width: 0;
+ border-bottom-color: #fff;
+}
+.popover.left > .arrow {
+ top: 50%;
+ right: -11px;
+ margin-top: -11px;
+ border-right-width: 0;
+ border-left-color: #999;
+ border-left-color: rgba(0, 0, 0, .25);
+}
+.popover.left > .arrow:after {
+ right: 1px;
+ bottom: -10px;
+ content: " ";
+ border-right-width: 0;
+ border-left-color: #fff;
}
-
.carousel {
position: relative;
- margin-bottom: 18px;
- line-height: 1;
}
-
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
-
-.carousel .item {
+.carousel-inner > .item {
position: relative;
display: none;
- -webkit-transition: 0.6s ease-in-out left;
- -moz-transition: 0.6s ease-in-out left;
- -ms-transition: 0.6s ease-in-out left;
- -o-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
+ -webkit-transition: .6s ease-in-out left;
+ -o-transition: .6s ease-in-out left;
+ transition: .6s ease-in-out left;
}
-
-.carousel .item > img {
- display: block;
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
line-height: 1;
}
+@media all and (transform-3d), (-webkit-transform-3d) {
+ .carousel-inner > .item {
+ -webkit-transition: -webkit-transform .6s ease-in-out;
+ -o-transition: -o-transform .6s ease-in-out;
+ transition: transform .6s ease-in-out;
-.carousel .active,
-.carousel .next,
-.carousel .prev {
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-perspective: 1000;
+ perspective: 1000;
+ }
+ .carousel-inner > .item.next,
+ .carousel-inner > .item.active.right {
+ left: 0;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+ .carousel-inner > .item.prev,
+ .carousel-inner > .item.active.left {
+ left: 0;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+ .carousel-inner > .item.next.left,
+ .carousel-inner > .item.prev.right,
+ .carousel-inner > .item.active {
+ left: 0;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+.carousel-inner > .active,
+.carousel-inner > .next,
+.carousel-inner > .prev {
display: block;
}
-
-.carousel .active {
+.carousel-inner > .active {
left: 0;
}
-
-.carousel .next,
-.carousel .prev {
+.carousel-inner > .next,
+.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
-
-.carousel .next {
+.carousel-inner > .next {
left: 100%;
}
-
-.carousel .prev {
+.carousel-inner > .prev {
left: -100%;
}
-
-.carousel .next.left,
-.carousel .prev.right {
+.carousel-inner > .next.left,
+.carousel-inner > .prev.right {
left: 0;
}
-
-.carousel .active.left {
+.carousel-inner > .active.left {
left: -100%;
}
-
-.carousel .active.right {
+.carousel-inner > .active.right {
left: 100%;
}
-
.carousel-control {
position: absolute;
- top: 40%;
- left: 15px;
- width: 40px;
- height: 40px;
- margin-top: -20px;
- font-size: 60px;
- font-weight: 100;
- line-height: 30px;
- color: #ffffff;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 15%;
+ font-size: 20px;
+ color: #fff;
text-align: center;
- background: #222222;
- border: 3px solid #ffffff;
- -webkit-border-radius: 23px;
- -moz-border-radius: 23px;
- border-radius: 23px;
- opacity: 0.5;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
filter: alpha(opacity=50);
+ opacity: .5;
+}
+.carousel-control.left {
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
+ background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
+ background-repeat: repeat-x;
}
-
.carousel-control.right {
- right: 15px;
+ right: 0;
left: auto;
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
+ background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
+ background-repeat: repeat-x;
}
-
-.carousel-control:hover {
- color: #ffffff;
+.carousel-control:hover,
+.carousel-control:focus {
+ color: #fff;
text-decoration: none;
- opacity: 0.9;
filter: alpha(opacity=90);
+ outline: 0;
+ opacity: .9;
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-left,
+.carousel-control .glyphicon-chevron-right {
+ position: absolute;
+ top: 50%;
+ z-index: 5;
+ display: inline-block;
+}
+.carousel-control .icon-prev,
+.carousel-control .glyphicon-chevron-left {
+ left: 50%;
+ margin-left: -10px;
+}
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-right {
+ right: 50%;
+ margin-right: -10px;
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next {
+ width: 20px;
+ height: 20px;
+ margin-top: -10px;
+ font-family: serif;
+ line-height: 1;
+}
+.carousel-control .icon-prev:before {
+ content: '\2039';
+}
+.carousel-control .icon-next:before {
+ content: '\203a';
+}
+.carousel-indicators {
+ position: absolute;
+ bottom: 10px;
+ left: 50%;
+ z-index: 15;
+ width: 60%;
+ padding-left: 0;
+ margin-left: -30%;
+ text-align: center;
+ list-style: none;
+}
+.carousel-indicators li {
+ display: inline-block;
+ width: 10px;
+ height: 10px;
+ margin: 1px;
+ text-indent: -999px;
+ cursor: pointer;
+ background-color: #000 \9;
+ background-color: rgba(0, 0, 0, 0);
+ border: 1px solid #fff;
+ border-radius: 10px;
+}
+.carousel-indicators .active {
+ width: 12px;
+ height: 12px;
+ margin: 0;
+ background-color: #fff;
}
-
.carousel-caption {
position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 10px 15px 5px;
- background: #333333;
- background: rgba(0, 0, 0, 0.75);
+ right: 15%;
+ bottom: 20px;
+ left: 15%;
+ z-index: 10;
+ padding-top: 20px;
+ padding-bottom: 20px;
+ color: #fff;
+ text-align: center;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
-
-.carousel-caption h4,
-.carousel-caption p {
- color: #ffffff;
+.carousel-caption .btn {
+ text-shadow: none;
}
-
-.hero-unit {
- padding: 60px;
- margin-bottom: 30px;
- background-color: #eeeeee;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
+@media screen and (min-width: 768px) {
+ .carousel-control .glyphicon-chevron-left,
+ .carousel-control .glyphicon-chevron-right,
+ .carousel-control .icon-prev,
+ .carousel-control .icon-next {
+ width: 30px;
+ height: 30px;
+ margin-top: -15px;
+ font-size: 30px;
+ }
+ .carousel-control .glyphicon-chevron-left,
+ .carousel-control .icon-prev {
+ margin-left: -15px;
+ }
+ .carousel-control .glyphicon-chevron-right,
+ .carousel-control .icon-next {
+ margin-right: -15px;
+ }
+ .carousel-caption {
+ right: 20%;
+ left: 20%;
+ padding-bottom: 30px;
+ }
+ .carousel-indicators {
+ bottom: 20px;
+ }
}
-
-.hero-unit h1 {
- margin-bottom: 0;
- font-size: 60px;
- line-height: 1;
- letter-spacing: -1px;
- color: inherit;
+.clearfix:before,
+.clearfix:after,
+.dl-horizontal dd:before,
+.dl-horizontal dd:after,
+.container:before,
+.container:after,
+.container-fluid:before,
+.container-fluid:after,
+.row:before,
+.row:after,
+.form-horizontal .form-group:before,
+.form-horizontal .form-group:after,
+.btn-toolbar:before,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:before,
+.btn-group-vertical > .btn-group:after,
+.nav:before,
+.nav:after,
+.navbar:before,
+.navbar:after,
+.navbar-header:before,
+.navbar-header:after,
+.navbar-collapse:before,
+.navbar-collapse:after,
+.pager:before,
+.pager:after,
+.panel-body:before,
+.panel-body:after,
+.modal-footer:before,
+.modal-footer:after {
+ display: table;
+ content: " ";
+}
+.clearfix:after,
+.dl-horizontal dd:after,
+.container:after,
+.container-fluid:after,
+.row:after,
+.form-horizontal .form-group:after,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:after,
+.nav:after,
+.navbar:after,
+.navbar-header:after,
+.navbar-collapse:after,
+.pager:after,
+.panel-body:after,
+.modal-footer:after {
+ clear: both;
}
-
-.hero-unit p {
- font-size: 18px;
- font-weight: 200;
- line-height: 27px;
- color: inherit;
+.center-block {
+ display: block;
+ margin-right: auto;
+ margin-left: auto;
}
-
.pull-right {
- float: right;
+ float: right !important;
}
-
.pull-left {
- float: left;
+ float: left !important;
}
-
.hide {
- display: none;
+ display: none !important;
}
-
.show {
- display: block;
+ display: block !important;
}
-
.invisible {
visibility: hidden;
}
+.text-hide {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+}
+.hidden {
+ display: none !important;
+ visibility: hidden !important;
+}
+.affix {
+ position: fixed;
+}
+@-ms-viewport {
+ width: device-width;
+}
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+ display: none !important;
+}
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+ display: none !important;
+}
+@media (max-width: 767px) {
+ .visible-xs {
+ display: block !important;
+ }
+ table.visible-xs {
+ display: table;
+ }
+ tr.visible-xs {
+ display: table-row !important;
+ }
+ th.visible-xs,
+ td.visible-xs {
+ display: table-cell !important;
+ }
+}
+@media (max-width: 767px) {
+ .visible-xs-block {
+ display: block !important;
+ }
+}
+@media (max-width: 767px) {
+ .visible-xs-inline {
+ display: inline !important;
+ }
+}
+@media (max-width: 767px) {
+ .visible-xs-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm {
+ display: block !important;
+ }
+ table.visible-sm {
+ display: table;
+ }
+ tr.visible-sm {
+ display: table-row !important;
+ }
+ th.visible-sm,
+ td.visible-sm {
+ display: table-cell !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-block {
+ display: block !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-inline {
+ display: inline !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md {
+ display: block !important;
+ }
+ table.visible-md {
+ display: table;
+ }
+ tr.visible-md {
+ display: table-row !important;
+ }
+ th.visible-md,
+ td.visible-md {
+ display: table-cell !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-block {
+ display: block !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-inline {
+ display: inline !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg {
+ display: block !important;
+ }
+ table.visible-lg {
+ display: table;
+ }
+ tr.visible-lg {
+ display: table-row !important;
+ }
+ th.visible-lg,
+ td.visible-lg {
+ display: table-cell !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-block {
+ display: block !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-inline {
+ display: inline !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (max-width: 767px) {
+ .hidden-xs {
+ display: none !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .hidden-sm {
+ display: none !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .hidden-md {
+ display: none !important;
+ }
+}
+@media (min-width: 1200px) {
+ .hidden-lg {
+ display: none !important;
+ }
+}
+.visible-print {
+ display: none !important;
+}
+@media print {
+ .visible-print {
+ display: block !important;
+ }
+ table.visible-print {
+ display: table;
+ }
+ tr.visible-print {
+ display: table-row !important;
+ }
+ th.visible-print,
+ td.visible-print {
+ display: table-cell !important;
+ }
+}
+.visible-print-block {
+ display: none !important;
+}
+@media print {
+ .visible-print-block {
+ display: block !important;
+ }
+}
+.visible-print-inline {
+ display: none !important;
+}
+@media print {
+ .visible-print-inline {
+ display: inline !important;
+ }
+}
+.visible-print-inline-block {
+ display: none !important;
+}
+@media print {
+ .visible-print-inline-block {
+ display: inline-block !important;
+ }
+}
+@media print {
+ .hidden-print {
+ display: none !important;
+ }
+}
+/*# sourceMappingURL=bootstrap.css.map */
diff --git a/main/css/chamilo/default.css b/main/css/chamilo/default.css
index 8d0aaa3488..2dc9c80a88 100755
--- a/main/css/chamilo/default.css
+++ b/main/css/chamilo/default.css
@@ -1,1132 +1,6570 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-body {
- line-height: 25px;
+@import url("//fonts.googleapis.com/css?family=Ubuntu");
+/*!
+ * bootswatch v3.3.2
+ * Homepage: http://bootswatch.com
+ * Copyright 2012-2015 Thomas Park
+ * Licensed under MIT
+ * Based on Bootstrap
+*/
+/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
+html {
+ font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
+body {
+ margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+ display: block;
+}
+audio,
+canvas,
+progress,
+video {
+ display: inline-block;
+ vertical-align: baseline;
+}
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+[hidden],
+template {
+ display: none;
+}
a {
- text-decoration: none;
- color :#666666;
+ background-color: transparent;
+}
+a:active,
+a:hover {
+ outline: 0;
+}
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+b,
+strong {
+ font-weight: bold;
+}
+dfn {
+ font-style: italic;
+}
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+mark {
+ background: #ff0;
+ color: #000;
+}
+small {
+ font-size: 80%;
+}
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+sup {
+ top: -0.5em;
+}
+sub {
+ bottom: -0.25em;
+}
+img {
+ border: 0;
+}
+svg:not(:root) {
+ overflow: hidden;
+}
+figure {
+ margin: 1em 40px;
+}
+hr {
+ -moz-box-sizing: content-box;
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+}
+pre {
+ overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+ color: inherit;
+ font: inherit;
+ margin: 0;
+}
+button {
+ overflow: visible;
+}
+button,
+select {
+ text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button;
+ cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+ cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+input {
+ line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+input[type="search"] {
+ -webkit-appearance: textfield;
+ -moz-box-sizing: content-box;
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+fieldset {
+ border: 1px solid #c0c0c0;
+ margin: 0 2px;
+ padding: 0.35em 0.625em 0.75em;
+}
+legend {
+ border: 0;
+ padding: 0;
+}
+textarea {
+ overflow: auto;
+}
+optgroup {
+ font-weight: bold;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+td,
+th {
+ padding: 0;
+}
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+ *,
+ *:before,
+ *:after {
+ background: transparent !important;
+ color: #000 !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
+ text-shadow: none !important;
+ }
+ a,
+ a:visited {
+ text-decoration: underline;
+ }
+ a[href]:after {
+ content: " (" attr(href) ")";
+ }
+ abbr[title]:after {
+ content: " (" attr(title) ")";
+ }
+ a[href^="#"]:after,
+ a[href^="javascript:"]:after {
+ content: "";
+ }
+ pre,
+ blockquote {
+ border: 1px solid #999;
+ page-break-inside: avoid;
+ }
+ thead {
+ display: table-header-group;
+ }
+ tr,
+ img {
+ page-break-inside: avoid;
+ }
+ img {
+ max-width: 100% !important;
+ }
+ p,
+ h2,
+ h3 {
+ orphans: 3;
+ widows: 3;
+ }
+ h2,
+ h3 {
+ page-break-after: avoid;
+ }
+ select {
+ background: #fff !important;
+ }
+ .navbar {
+ display: none;
+ }
+ .btn > .caret,
+ .dropup > .btn > .caret {
+ border-top-color: #000 !important;
+ }
+ .label {
+ border: 1px solid #000;
+ }
+ .table {
+ border-collapse: collapse !important;
+ }
+ .table td,
+ .table th {
+ background-color: #fff !important;
+ }
+ .table-bordered th,
+ .table-bordered td {
+ border: 1px solid #ddd !important;
+ }
+}
+@font-face {
+ font-family: 'Glyphicons Halflings';
+ src: url('../fonts/glyphicons-halflings-regular.eot');
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
+}
+.glyphicon {
+ position: relative;
+ top: 1px;
+ display: inline-block;
+ font-family: 'Glyphicons Halflings';
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+.glyphicon-asterisk:before {
+ content: "\2a";
+}
+.glyphicon-plus:before {
+ content: "\2b";
+}
+.glyphicon-euro:before,
+.glyphicon-eur:before {
+ content: "\20ac";
+}
+.glyphicon-minus:before {
+ content: "\2212";
+}
+.glyphicon-cloud:before {
+ content: "\2601";
+}
+.glyphicon-envelope:before {
+ content: "\2709";
+}
+.glyphicon-pencil:before {
+ content: "\270f";
+}
+.glyphicon-glass:before {
+ content: "\e001";
+}
+.glyphicon-music:before {
+ content: "\e002";
+}
+.glyphicon-search:before {
+ content: "\e003";
+}
+.glyphicon-heart:before {
+ content: "\e005";
+}
+.glyphicon-star:before {
+ content: "\e006";
+}
+.glyphicon-star-empty:before {
+ content: "\e007";
+}
+.glyphicon-user:before {
+ content: "\e008";
+}
+.glyphicon-film:before {
+ content: "\e009";
+}
+.glyphicon-th-large:before {
+ content: "\e010";
+}
+.glyphicon-th:before {
+ content: "\e011";
+}
+.glyphicon-th-list:before {
+ content: "\e012";
+}
+.glyphicon-ok:before {
+ content: "\e013";
+}
+.glyphicon-remove:before {
+ content: "\e014";
+}
+.glyphicon-zoom-in:before {
+ content: "\e015";
+}
+.glyphicon-zoom-out:before {
+ content: "\e016";
+}
+.glyphicon-off:before {
+ content: "\e017";
+}
+.glyphicon-signal:before {
+ content: "\e018";
+}
+.glyphicon-cog:before {
+ content: "\e019";
+}
+.glyphicon-trash:before {
+ content: "\e020";
+}
+.glyphicon-home:before {
+ content: "\e021";
+}
+.glyphicon-file:before {
+ content: "\e022";
+}
+.glyphicon-time:before {
+ content: "\e023";
+}
+.glyphicon-road:before {
+ content: "\e024";
+}
+.glyphicon-download-alt:before {
+ content: "\e025";
+}
+.glyphicon-download:before {
+ content: "\e026";
+}
+.glyphicon-upload:before {
+ content: "\e027";
+}
+.glyphicon-inbox:before {
+ content: "\e028";
+}
+.glyphicon-play-circle:before {
+ content: "\e029";
+}
+.glyphicon-repeat:before {
+ content: "\e030";
+}
+.glyphicon-refresh:before {
+ content: "\e031";
+}
+.glyphicon-list-alt:before {
+ content: "\e032";
+}
+.glyphicon-lock:before {
+ content: "\e033";
+}
+.glyphicon-flag:before {
+ content: "\e034";
+}
+.glyphicon-headphones:before {
+ content: "\e035";
+}
+.glyphicon-volume-off:before {
+ content: "\e036";
+}
+.glyphicon-volume-down:before {
+ content: "\e037";
+}
+.glyphicon-volume-up:before {
+ content: "\e038";
+}
+.glyphicon-qrcode:before {
+ content: "\e039";
+}
+.glyphicon-barcode:before {
+ content: "\e040";
+}
+.glyphicon-tag:before {
+ content: "\e041";
+}
+.glyphicon-tags:before {
+ content: "\e042";
+}
+.glyphicon-book:before {
+ content: "\e043";
+}
+.glyphicon-bookmark:before {
+ content: "\e044";
+}
+.glyphicon-print:before {
+ content: "\e045";
+}
+.glyphicon-camera:before {
+ content: "\e046";
+}
+.glyphicon-font:before {
+ content: "\e047";
+}
+.glyphicon-bold:before {
+ content: "\e048";
+}
+.glyphicon-italic:before {
+ content: "\e049";
+}
+.glyphicon-text-height:before {
+ content: "\e050";
+}
+.glyphicon-text-width:before {
+ content: "\e051";
+}
+.glyphicon-align-left:before {
+ content: "\e052";
+}
+.glyphicon-align-center:before {
+ content: "\e053";
+}
+.glyphicon-align-right:before {
+ content: "\e054";
+}
+.glyphicon-align-justify:before {
+ content: "\e055";
+}
+.glyphicon-list:before {
+ content: "\e056";
+}
+.glyphicon-indent-left:before {
+ content: "\e057";
+}
+.glyphicon-indent-right:before {
+ content: "\e058";
+}
+.glyphicon-facetime-video:before {
+ content: "\e059";
+}
+.glyphicon-picture:before {
+ content: "\e060";
+}
+.glyphicon-map-marker:before {
+ content: "\e062";
+}
+.glyphicon-adjust:before {
+ content: "\e063";
+}
+.glyphicon-tint:before {
+ content: "\e064";
+}
+.glyphicon-edit:before {
+ content: "\e065";
+}
+.glyphicon-share:before {
+ content: "\e066";
+}
+.glyphicon-check:before {
+ content: "\e067";
+}
+.glyphicon-move:before {
+ content: "\e068";
+}
+.glyphicon-step-backward:before {
+ content: "\e069";
+}
+.glyphicon-fast-backward:before {
+ content: "\e070";
+}
+.glyphicon-backward:before {
+ content: "\e071";
+}
+.glyphicon-play:before {
+ content: "\e072";
+}
+.glyphicon-pause:before {
+ content: "\e073";
+}
+.glyphicon-stop:before {
+ content: "\e074";
+}
+.glyphicon-forward:before {
+ content: "\e075";
+}
+.glyphicon-fast-forward:before {
+ content: "\e076";
+}
+.glyphicon-step-forward:before {
+ content: "\e077";
+}
+.glyphicon-eject:before {
+ content: "\e078";
+}
+.glyphicon-chevron-left:before {
+ content: "\e079";
+}
+.glyphicon-chevron-right:before {
+ content: "\e080";
+}
+.glyphicon-plus-sign:before {
+ content: "\e081";
+}
+.glyphicon-minus-sign:before {
+ content: "\e082";
+}
+.glyphicon-remove-sign:before {
+ content: "\e083";
+}
+.glyphicon-ok-sign:before {
+ content: "\e084";
+}
+.glyphicon-question-sign:before {
+ content: "\e085";
+}
+.glyphicon-info-sign:before {
+ content: "\e086";
+}
+.glyphicon-screenshot:before {
+ content: "\e087";
+}
+.glyphicon-remove-circle:before {
+ content: "\e088";
+}
+.glyphicon-ok-circle:before {
+ content: "\e089";
+}
+.glyphicon-ban-circle:before {
+ content: "\e090";
+}
+.glyphicon-arrow-left:before {
+ content: "\e091";
+}
+.glyphicon-arrow-right:before {
+ content: "\e092";
+}
+.glyphicon-arrow-up:before {
+ content: "\e093";
+}
+.glyphicon-arrow-down:before {
+ content: "\e094";
+}
+.glyphicon-share-alt:before {
+ content: "\e095";
+}
+.glyphicon-resize-full:before {
+ content: "\e096";
+}
+.glyphicon-resize-small:before {
+ content: "\e097";
+}
+.glyphicon-exclamation-sign:before {
+ content: "\e101";
+}
+.glyphicon-gift:before {
+ content: "\e102";
+}
+.glyphicon-leaf:before {
+ content: "\e103";
+}
+.glyphicon-fire:before {
+ content: "\e104";
+}
+.glyphicon-eye-open:before {
+ content: "\e105";
+}
+.glyphicon-eye-close:before {
+ content: "\e106";
+}
+.glyphicon-warning-sign:before {
+ content: "\e107";
+}
+.glyphicon-plane:before {
+ content: "\e108";
+}
+.glyphicon-calendar:before {
+ content: "\e109";
+}
+.glyphicon-random:before {
+ content: "\e110";
+}
+.glyphicon-comment:before {
+ content: "\e111";
+}
+.glyphicon-magnet:before {
+ content: "\e112";
+}
+.glyphicon-chevron-up:before {
+ content: "\e113";
+}
+.glyphicon-chevron-down:before {
+ content: "\e114";
+}
+.glyphicon-retweet:before {
+ content: "\e115";
+}
+.glyphicon-shopping-cart:before {
+ content: "\e116";
+}
+.glyphicon-folder-close:before {
+ content: "\e117";
+}
+.glyphicon-folder-open:before {
+ content: "\e118";
+}
+.glyphicon-resize-vertical:before {
+ content: "\e119";
+}
+.glyphicon-resize-horizontal:before {
+ content: "\e120";
+}
+.glyphicon-hdd:before {
+ content: "\e121";
+}
+.glyphicon-bullhorn:before {
+ content: "\e122";
+}
+.glyphicon-bell:before {
+ content: "\e123";
+}
+.glyphicon-certificate:before {
+ content: "\e124";
+}
+.glyphicon-thumbs-up:before {
+ content: "\e125";
+}
+.glyphicon-thumbs-down:before {
+ content: "\e126";
+}
+.glyphicon-hand-right:before {
+ content: "\e127";
+}
+.glyphicon-hand-left:before {
+ content: "\e128";
+}
+.glyphicon-hand-up:before {
+ content: "\e129";
+}
+.glyphicon-hand-down:before {
+ content: "\e130";
+}
+.glyphicon-circle-arrow-right:before {
+ content: "\e131";
+}
+.glyphicon-circle-arrow-left:before {
+ content: "\e132";
+}
+.glyphicon-circle-arrow-up:before {
+ content: "\e133";
+}
+.glyphicon-circle-arrow-down:before {
+ content: "\e134";
+}
+.glyphicon-globe:before {
+ content: "\e135";
+}
+.glyphicon-wrench:before {
+ content: "\e136";
+}
+.glyphicon-tasks:before {
+ content: "\e137";
+}
+.glyphicon-filter:before {
+ content: "\e138";
+}
+.glyphicon-briefcase:before {
+ content: "\e139";
+}
+.glyphicon-fullscreen:before {
+ content: "\e140";
+}
+.glyphicon-dashboard:before {
+ content: "\e141";
+}
+.glyphicon-paperclip:before {
+ content: "\e142";
+}
+.glyphicon-heart-empty:before {
+ content: "\e143";
+}
+.glyphicon-link:before {
+ content: "\e144";
+}
+.glyphicon-phone:before {
+ content: "\e145";
+}
+.glyphicon-pushpin:before {
+ content: "\e146";
+}
+.glyphicon-usd:before {
+ content: "\e148";
+}
+.glyphicon-gbp:before {
+ content: "\e149";
+}
+.glyphicon-sort:before {
+ content: "\e150";
+}
+.glyphicon-sort-by-alphabet:before {
+ content: "\e151";
+}
+.glyphicon-sort-by-alphabet-alt:before {
+ content: "\e152";
+}
+.glyphicon-sort-by-order:before {
+ content: "\e153";
+}
+.glyphicon-sort-by-order-alt:before {
+ content: "\e154";
+}
+.glyphicon-sort-by-attributes:before {
+ content: "\e155";
+}
+.glyphicon-sort-by-attributes-alt:before {
+ content: "\e156";
+}
+.glyphicon-unchecked:before {
+ content: "\e157";
+}
+.glyphicon-expand:before {
+ content: "\e158";
+}
+.glyphicon-collapse-down:before {
+ content: "\e159";
+}
+.glyphicon-collapse-up:before {
+ content: "\e160";
+}
+.glyphicon-log-in:before {
+ content: "\e161";
+}
+.glyphicon-flash:before {
+ content: "\e162";
+}
+.glyphicon-log-out:before {
+ content: "\e163";
+}
+.glyphicon-new-window:before {
+ content: "\e164";
+}
+.glyphicon-record:before {
+ content: "\e165";
+}
+.glyphicon-save:before {
+ content: "\e166";
+}
+.glyphicon-open:before {
+ content: "\e167";
+}
+.glyphicon-saved:before {
+ content: "\e168";
+}
+.glyphicon-import:before {
+ content: "\e169";
+}
+.glyphicon-export:before {
+ content: "\e170";
+}
+.glyphicon-send:before {
+ content: "\e171";
+}
+.glyphicon-floppy-disk:before {
+ content: "\e172";
+}
+.glyphicon-floppy-saved:before {
+ content: "\e173";
+}
+.glyphicon-floppy-remove:before {
+ content: "\e174";
+}
+.glyphicon-floppy-save:before {
+ content: "\e175";
+}
+.glyphicon-floppy-open:before {
+ content: "\e176";
+}
+.glyphicon-credit-card:before {
+ content: "\e177";
+}
+.glyphicon-transfer:before {
+ content: "\e178";
+}
+.glyphicon-cutlery:before {
+ content: "\e179";
+}
+.glyphicon-header:before {
+ content: "\e180";
+}
+.glyphicon-compressed:before {
+ content: "\e181";
+}
+.glyphicon-earphone:before {
+ content: "\e182";
+}
+.glyphicon-phone-alt:before {
+ content: "\e183";
+}
+.glyphicon-tower:before {
+ content: "\e184";
+}
+.glyphicon-stats:before {
+ content: "\e185";
+}
+.glyphicon-sd-video:before {
+ content: "\e186";
+}
+.glyphicon-hd-video:before {
+ content: "\e187";
+}
+.glyphicon-subtitles:before {
+ content: "\e188";
+}
+.glyphicon-sound-stereo:before {
+ content: "\e189";
+}
+.glyphicon-sound-dolby:before {
+ content: "\e190";
+}
+.glyphicon-sound-5-1:before {
+ content: "\e191";
+}
+.glyphicon-sound-6-1:before {
+ content: "\e192";
+}
+.glyphicon-sound-7-1:before {
+ content: "\e193";
+}
+.glyphicon-copyright-mark:before {
+ content: "\e194";
+}
+.glyphicon-registration-mark:before {
+ content: "\e195";
+}
+.glyphicon-cloud-download:before {
+ content: "\e197";
+}
+.glyphicon-cloud-upload:before {
+ content: "\e198";
+}
+.glyphicon-tree-conifer:before {
+ content: "\e199";
+}
+.glyphicon-tree-deciduous:before {
+ content: "\e200";
+}
+.glyphicon-cd:before {
+ content: "\e201";
+}
+.glyphicon-save-file:before {
+ content: "\e202";
+}
+.glyphicon-open-file:before {
+ content: "\e203";
+}
+.glyphicon-level-up:before {
+ content: "\e204";
+}
+.glyphicon-copy:before {
+ content: "\e205";
+}
+.glyphicon-paste:before {
+ content: "\e206";
+}
+.glyphicon-alert:before {
+ content: "\e209";
+}
+.glyphicon-equalizer:before {
+ content: "\e210";
+}
+.glyphicon-king:before {
+ content: "\e211";
+}
+.glyphicon-queen:before {
+ content: "\e212";
+}
+.glyphicon-pawn:before {
+ content: "\e213";
+}
+.glyphicon-bishop:before {
+ content: "\e214";
+}
+.glyphicon-knight:before {
+ content: "\e215";
+}
+.glyphicon-baby-formula:before {
+ content: "\e216";
+}
+.glyphicon-tent:before {
+ content: "\26fa";
+}
+.glyphicon-blackboard:before {
+ content: "\e218";
+}
+.glyphicon-bed:before {
+ content: "\e219";
+}
+.glyphicon-apple:before {
+ content: "\f8ff";
+}
+.glyphicon-erase:before {
+ content: "\e221";
+}
+.glyphicon-hourglass:before {
+ content: "\231b";
+}
+.glyphicon-lamp:before {
+ content: "\e223";
+}
+.glyphicon-duplicate:before {
+ content: "\e224";
+}
+.glyphicon-piggy-bank:before {
+ content: "\e225";
+}
+.glyphicon-scissors:before {
+ content: "\e226";
+}
+.glyphicon-bitcoin:before {
+ content: "\e227";
+}
+.glyphicon-yen:before {
+ content: "\00a5";
+}
+.glyphicon-ruble:before {
+ content: "\20bd";
+}
+.glyphicon-scale:before {
+ content: "\e230";
+}
+.glyphicon-ice-lolly:before {
+ content: "\e231";
+}
+.glyphicon-ice-lolly-tasted:before {
+ content: "\e232";
+}
+.glyphicon-education:before {
+ content: "\e233";
+}
+.glyphicon-option-horizontal:before {
+ content: "\e234";
+}
+.glyphicon-option-vertical:before {
+ content: "\e235";
+}
+.glyphicon-menu-hamburger:before {
+ content: "\e236";
+}
+.glyphicon-modal-window:before {
+ content: "\e237";
+}
+.glyphicon-oil:before {
+ content: "\e238";
+}
+.glyphicon-grain:before {
+ content: "\e239";
+}
+.glyphicon-sunglasses:before {
+ content: "\e240";
+}
+.glyphicon-text-size:before {
+ content: "\e241";
+}
+.glyphicon-text-color:before {
+ content: "\e242";
+}
+.glyphicon-text-background:before {
+ content: "\e243";
+}
+.glyphicon-object-align-top:before {
+ content: "\e244";
+}
+.glyphicon-object-align-bottom:before {
+ content: "\e245";
+}
+.glyphicon-object-align-horizontal:before {
+ content: "\e246";
+}
+.glyphicon-object-align-left:before {
+ content: "\e247";
+}
+.glyphicon-object-align-vertical:before {
+ content: "\e248";
+}
+.glyphicon-object-align-right:before {
+ content: "\e249";
+}
+.glyphicon-triangle-right:before {
+ content: "\e250";
+}
+.glyphicon-triangle-left:before {
+ content: "\e251";
+}
+.glyphicon-triangle-bottom:before {
+ content: "\e252";
+}
+.glyphicon-triangle-top:before {
+ content: "\e253";
+}
+.glyphicon-console:before {
+ content: "\e254";
+}
+.glyphicon-superscript:before {
+ content: "\e255";
+}
+.glyphicon-subscript:before {
+ content: "\e256";
+}
+.glyphicon-menu-left:before {
+ content: "\e257";
+}
+.glyphicon-menu-right:before {
+ content: "\e258";
+}
+.glyphicon-menu-down:before {
+ content: "\e259";
+}
+.glyphicon-menu-up:before {
+ content: "\e260";
+}
+* {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+*:before,
+*:after {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+html {
+ font-size: 10px;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+}
+body {
+ font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #333333;
+ background-color: #ffffff;
+}
+input,
+button,
+select,
+textarea {
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit;
+}
+a {
+ color: #dd4814;
+ text-decoration: none;
+}
+a:hover,
+a:focus {
+ color: #97310e;
+ text-decoration: underline;
+}
+a:focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+figure {
+ margin: 0;
+}
+img {
+ vertical-align: middle;
+}
+.img-responsive,
+.thumbnail > img,
+.thumbnail a > img,
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+ display: block;
+ max-width: 100%;
+ height: auto;
+}
+.img-rounded {
+ border-radius: 6px;
+}
+.img-thumbnail {
+ padding: 4px;
+ line-height: 1.42857143;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ border-radius: 4px;
+ -webkit-transition: all 0.2s ease-in-out;
+ -o-transition: all 0.2s ease-in-out;
+ transition: all 0.2s ease-in-out;
+ display: inline-block;
+ max-width: 100%;
+ height: auto;
+}
+.img-circle {
+ border-radius: 50%;
+}
+hr {
+ margin-top: 20px;
+ margin-bottom: 20px;
+ border: 0;
+ border-top: 1px solid #eeeeee;
+}
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6 {
+ font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-weight: 500;
+ line-height: 1.1;
+ color: inherit;
+}
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small,
+.h1 small,
+.h2 small,
+.h3 small,
+.h4 small,
+.h5 small,
+.h6 small,
+h1 .small,
+h2 .small,
+h3 .small,
+h4 .small,
+h5 .small,
+h6 .small,
+.h1 .small,
+.h2 .small,
+.h3 .small,
+.h4 .small,
+.h5 .small,
+.h6 .small {
+ font-weight: normal;
+ line-height: 1;
+ color: #aea79f;
+}
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3 {
+ margin-top: 20px;
+ margin-bottom: 10px;
+}
+h1 small,
+.h1 small,
+h2 small,
+.h2 small,
+h3 small,
+.h3 small,
+h1 .small,
+.h1 .small,
+h2 .small,
+.h2 .small,
+h3 .small,
+.h3 .small {
+ font-size: 65%;
+}
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+h4 small,
+.h4 small,
+h5 small,
+.h5 small,
+h6 small,
+.h6 small,
+h4 .small,
+.h4 .small,
+h5 .small,
+.h5 .small,
+h6 .small,
+.h6 .small {
+ font-size: 75%;
+}
+h1,
+.h1 {
+ font-size: 36px;
+}
+h2,
+.h2 {
+ font-size: 30px;
+}
+h3,
+.h3 {
+ font-size: 24px;
+}
+h4,
+.h4 {
+ font-size: 18px;
+}
+h5,
+.h5 {
+ font-size: 14px;
+}
+h6,
+.h6 {
+ font-size: 12px;
+}
+p {
+ margin: 0 0 10px;
+}
+.lead {
+ margin-bottom: 20px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.4;
+}
+@media (min-width: 768px) {
+ .lead {
+ font-size: 21px;
+ }
+}
+small,
+.small {
+ font-size: 85%;
+}
+mark,
+.mark {
+ background-color: #fcf8e3;
+ padding: .2em;
+}
+.text-left {
+ text-align: left;
+}
+.text-right {
+ text-align: right;
+}
+.text-center {
+ text-align: center;
+}
+.text-justify {
+ text-align: justify;
+}
+.text-nowrap {
+ white-space: nowrap;
+}
+.text-lowercase {
+ text-transform: lowercase;
+}
+.text-uppercase {
+ text-transform: uppercase;
+}
+.text-capitalize {
+ text-transform: capitalize;
+}
+.text-muted {
+ color: #aea79f;
+}
+.text-primary {
+ color: #dd4814;
+}
+a.text-primary:hover {
+ color: #ae3910;
+}
+.text-success {
+ color: #468847;
+}
+a.text-success:hover {
+ color: #356635;
+}
+.text-info {
+ color: #3a87ad;
+}
+a.text-info:hover {
+ color: #2d6987;
+}
+.text-warning {
+ color: #c09853;
+}
+a.text-warning:hover {
+ color: #a47e3c;
+}
+.text-danger {
+ color: #b94a48;
+}
+a.text-danger:hover {
+ color: #953b39;
+}
+.bg-primary {
+ color: #fff;
+ background-color: #dd4814;
+}
+a.bg-primary:hover {
+ background-color: #ae3910;
+}
+.bg-success {
+ background-color: #dff0d8;
+}
+a.bg-success:hover {
+ background-color: #c1e2b3;
+}
+.bg-info {
+ background-color: #d9edf7;
+}
+a.bg-info:hover {
+ background-color: #afd9ee;
+}
+.bg-warning {
+ background-color: #fcf8e3;
+}
+a.bg-warning:hover {
+ background-color: #f7ecb5;
+}
+.bg-danger {
+ background-color: #f2dede;
+}
+a.bg-danger:hover {
+ background-color: #e4b9b9;
+}
+.page-header {
+ padding-bottom: 9px;
+ margin: 40px 0 20px;
+ border-bottom: 1px solid #eeeeee;
+}
+ul,
+ol {
+ margin-top: 0;
+ margin-bottom: 10px;
+}
+ul ul,
+ol ul,
+ul ol,
+ol ol {
+ margin-bottom: 0;
+}
+.list-unstyled {
+ padding-left: 0;
+ list-style: none;
+}
+.list-inline {
+ padding-left: 0;
+ list-style: none;
+ margin-left: -5px;
+}
+.list-inline > li {
+ display: inline-block;
+ padding-left: 5px;
+ padding-right: 5px;
+}
+dl {
+ margin-top: 0;
+ margin-bottom: 20px;
+}
+dt,
+dd {
+ line-height: 1.42857143;
+}
+dt {
+ font-weight: bold;
+}
+dd {
+ margin-left: 0;
+}
+@media (min-width: 768px) {
+ .dl-horizontal dt {
+ float: left;
+ width: 160px;
+ clear: left;
+ text-align: right;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .dl-horizontal dd {
+ margin-left: 180px;
+ }
+}
+abbr[title],
+abbr[data-original-title] {
+ cursor: help;
+ border-bottom: 1px dotted #aea79f;
+}
+.initialism {
+ font-size: 90%;
+ text-transform: uppercase;
+}
+blockquote {
+ padding: 10px 20px;
+ margin: 0 0 20px;
+ font-size: 17.5px;
+ border-left: 5px solid #eeeeee;
+}
+blockquote p:last-child,
+blockquote ul:last-child,
+blockquote ol:last-child {
+ margin-bottom: 0;
+}
+blockquote footer,
+blockquote small,
+blockquote .small {
+ display: block;
+ font-size: 80%;
+ line-height: 1.42857143;
+ color: #aea79f;
+}
+blockquote footer:before,
+blockquote small:before,
+blockquote .small:before {
+ content: '\2014 \00A0';
+}
+.blockquote-reverse,
+blockquote.pull-right {
+ padding-right: 15px;
+ padding-left: 0;
+ border-right: 5px solid #eeeeee;
+ border-left: 0;
+ text-align: right;
+}
+.blockquote-reverse footer:before,
+blockquote.pull-right footer:before,
+.blockquote-reverse small:before,
+blockquote.pull-right small:before,
+.blockquote-reverse .small:before,
+blockquote.pull-right .small:before {
+ content: '';
+}
+.blockquote-reverse footer:after,
+blockquote.pull-right footer:after,
+.blockquote-reverse small:after,
+blockquote.pull-right small:after,
+.blockquote-reverse .small:after,
+blockquote.pull-right .small:after {
+ content: '\00A0 \2014';
+}
+address {
+ margin-bottom: 20px;
+ font-style: normal;
+ line-height: 1.42857143;
+}
+code,
+kbd,
+pre,
+samp {
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
+}
+code {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #c7254e;
+ background-color: #f9f2f4;
+ border-radius: 4px;
+}
+kbd {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: #ffffff;
+ background-color: #333333;
+ border-radius: 3px;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: bold;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+pre {
+ display: block;
+ padding: 9.5px;
+ margin: 0 0 10px;
+ font-size: 13px;
+ line-height: 1.42857143;
+ word-break: break-all;
+ word-wrap: break-word;
+ color: #333333;
+ background-color: #f5f5f5;
+ border: 1px solid #cccccc;
+ border-radius: 4px;
+}
+pre code {
+ padding: 0;
+ font-size: inherit;
+ color: inherit;
+ white-space: pre-wrap;
+ background-color: transparent;
+ border-radius: 0;
+}
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll;
+}
+.container {
+ margin-right: auto;
+ margin-left: auto;
+ padding-left: 15px;
+ padding-right: 15px;
+}
+@media (min-width: 768px) {
+ .container {
+ width: 750px;
+ }
+}
+@media (min-width: 992px) {
+ .container {
+ width: 970px;
+ }
+}
+@media (min-width: 1200px) {
+ .container {
+ width: 1170px;
+ }
+}
+.container-fluid {
+ margin-right: auto;
+ margin-left: auto;
+ padding-left: 15px;
+ padding-right: 15px;
+}
+.row {
+ margin-left: -15px;
+ margin-right: -15px;
+}
+.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+ position: relative;
+ min-height: 1px;
+ padding-left: 15px;
+ padding-right: 15px;
+}
+.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
+ float: left;
+}
+.col-xs-12 {
+ width: 100%;
+}
+.col-xs-11 {
+ width: 91.66666667%;
+}
+.col-xs-10 {
+ width: 83.33333333%;
+}
+.col-xs-9 {
+ width: 75%;
+}
+.col-xs-8 {
+ width: 66.66666667%;
+}
+.col-xs-7 {
+ width: 58.33333333%;
+}
+.col-xs-6 {
+ width: 50%;
+}
+.col-xs-5 {
+ width: 41.66666667%;
+}
+.col-xs-4 {
+ width: 33.33333333%;
+}
+.col-xs-3 {
+ width: 25%;
+}
+.col-xs-2 {
+ width: 16.66666667%;
+}
+.col-xs-1 {
+ width: 8.33333333%;
+}
+.col-xs-pull-12 {
+ right: 100%;
+}
+.col-xs-pull-11 {
+ right: 91.66666667%;
+}
+.col-xs-pull-10 {
+ right: 83.33333333%;
+}
+.col-xs-pull-9 {
+ right: 75%;
+}
+.col-xs-pull-8 {
+ right: 66.66666667%;
+}
+.col-xs-pull-7 {
+ right: 58.33333333%;
+}
+.col-xs-pull-6 {
+ right: 50%;
+}
+.col-xs-pull-5 {
+ right: 41.66666667%;
+}
+.col-xs-pull-4 {
+ right: 33.33333333%;
+}
+.col-xs-pull-3 {
+ right: 25%;
+}
+.col-xs-pull-2 {
+ right: 16.66666667%;
+}
+.col-xs-pull-1 {
+ right: 8.33333333%;
+}
+.col-xs-pull-0 {
+ right: auto;
+}
+.col-xs-push-12 {
+ left: 100%;
+}
+.col-xs-push-11 {
+ left: 91.66666667%;
+}
+.col-xs-push-10 {
+ left: 83.33333333%;
+}
+.col-xs-push-9 {
+ left: 75%;
+}
+.col-xs-push-8 {
+ left: 66.66666667%;
+}
+.col-xs-push-7 {
+ left: 58.33333333%;
+}
+.col-xs-push-6 {
+ left: 50%;
+}
+.col-xs-push-5 {
+ left: 41.66666667%;
+}
+.col-xs-push-4 {
+ left: 33.33333333%;
+}
+.col-xs-push-3 {
+ left: 25%;
+}
+.col-xs-push-2 {
+ left: 16.66666667%;
+}
+.col-xs-push-1 {
+ left: 8.33333333%;
+}
+.col-xs-push-0 {
+ left: auto;
+}
+.col-xs-offset-12 {
+ margin-left: 100%;
+}
+.col-xs-offset-11 {
+ margin-left: 91.66666667%;
+}
+.col-xs-offset-10 {
+ margin-left: 83.33333333%;
+}
+.col-xs-offset-9 {
+ margin-left: 75%;
+}
+.col-xs-offset-8 {
+ margin-left: 66.66666667%;
+}
+.col-xs-offset-7 {
+ margin-left: 58.33333333%;
+}
+.col-xs-offset-6 {
+ margin-left: 50%;
+}
+.col-xs-offset-5 {
+ margin-left: 41.66666667%;
+}
+.col-xs-offset-4 {
+ margin-left: 33.33333333%;
+}
+.col-xs-offset-3 {
+ margin-left: 25%;
+}
+.col-xs-offset-2 {
+ margin-left: 16.66666667%;
+}
+.col-xs-offset-1 {
+ margin-left: 8.33333333%;
+}
+.col-xs-offset-0 {
+ margin-left: 0%;
+}
+@media (min-width: 768px) {
+ .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
+ float: left;
+ }
+ .col-sm-12 {
+ width: 100%;
+ }
+ .col-sm-11 {
+ width: 91.66666667%;
+ }
+ .col-sm-10 {
+ width: 83.33333333%;
+ }
+ .col-sm-9 {
+ width: 75%;
+ }
+ .col-sm-8 {
+ width: 66.66666667%;
+ }
+ .col-sm-7 {
+ width: 58.33333333%;
+ }
+ .col-sm-6 {
+ width: 50%;
+ }
+ .col-sm-5 {
+ width: 41.66666667%;
+ }
+ .col-sm-4 {
+ width: 33.33333333%;
+ }
+ .col-sm-3 {
+ width: 25%;
+ }
+ .col-sm-2 {
+ width: 16.66666667%;
+ }
+ .col-sm-1 {
+ width: 8.33333333%;
+ }
+ .col-sm-pull-12 {
+ right: 100%;
+ }
+ .col-sm-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-sm-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-sm-pull-9 {
+ right: 75%;
+ }
+ .col-sm-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-sm-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-sm-pull-6 {
+ right: 50%;
+ }
+ .col-sm-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-sm-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-sm-pull-3 {
+ right: 25%;
+ }
+ .col-sm-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-sm-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-sm-pull-0 {
+ right: auto;
+ }
+ .col-sm-push-12 {
+ left: 100%;
+ }
+ .col-sm-push-11 {
+ left: 91.66666667%;
+ }
+ .col-sm-push-10 {
+ left: 83.33333333%;
+ }
+ .col-sm-push-9 {
+ left: 75%;
+ }
+ .col-sm-push-8 {
+ left: 66.66666667%;
+ }
+ .col-sm-push-7 {
+ left: 58.33333333%;
+ }
+ .col-sm-push-6 {
+ left: 50%;
+ }
+ .col-sm-push-5 {
+ left: 41.66666667%;
+ }
+ .col-sm-push-4 {
+ left: 33.33333333%;
+ }
+ .col-sm-push-3 {
+ left: 25%;
+ }
+ .col-sm-push-2 {
+ left: 16.66666667%;
+ }
+ .col-sm-push-1 {
+ left: 8.33333333%;
+ }
+ .col-sm-push-0 {
+ left: auto;
+ }
+ .col-sm-offset-12 {
+ margin-left: 100%;
+ }
+ .col-sm-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-sm-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-sm-offset-9 {
+ margin-left: 75%;
+ }
+ .col-sm-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-sm-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-sm-offset-6 {
+ margin-left: 50%;
+ }
+ .col-sm-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-sm-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-sm-offset-3 {
+ margin-left: 25%;
+ }
+ .col-sm-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-sm-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-sm-offset-0 {
+ margin-left: 0%;
+ }
+}
+@media (min-width: 992px) {
+ .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
+ float: left;
+ }
+ .col-md-12 {
+ width: 100%;
+ }
+ .col-md-11 {
+ width: 91.66666667%;
+ }
+ .col-md-10 {
+ width: 83.33333333%;
+ }
+ .col-md-9 {
+ width: 75%;
+ }
+ .col-md-8 {
+ width: 66.66666667%;
+ }
+ .col-md-7 {
+ width: 58.33333333%;
+ }
+ .col-md-6 {
+ width: 50%;
+ }
+ .col-md-5 {
+ width: 41.66666667%;
+ }
+ .col-md-4 {
+ width: 33.33333333%;
+ }
+ .col-md-3 {
+ width: 25%;
+ }
+ .col-md-2 {
+ width: 16.66666667%;
+ }
+ .col-md-1 {
+ width: 8.33333333%;
+ }
+ .col-md-pull-12 {
+ right: 100%;
+ }
+ .col-md-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-md-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-md-pull-9 {
+ right: 75%;
+ }
+ .col-md-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-md-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-md-pull-6 {
+ right: 50%;
+ }
+ .col-md-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-md-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-md-pull-3 {
+ right: 25%;
+ }
+ .col-md-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-md-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-md-pull-0 {
+ right: auto;
+ }
+ .col-md-push-12 {
+ left: 100%;
+ }
+ .col-md-push-11 {
+ left: 91.66666667%;
+ }
+ .col-md-push-10 {
+ left: 83.33333333%;
+ }
+ .col-md-push-9 {
+ left: 75%;
+ }
+ .col-md-push-8 {
+ left: 66.66666667%;
+ }
+ .col-md-push-7 {
+ left: 58.33333333%;
+ }
+ .col-md-push-6 {
+ left: 50%;
+ }
+ .col-md-push-5 {
+ left: 41.66666667%;
+ }
+ .col-md-push-4 {
+ left: 33.33333333%;
+ }
+ .col-md-push-3 {
+ left: 25%;
+ }
+ .col-md-push-2 {
+ left: 16.66666667%;
+ }
+ .col-md-push-1 {
+ left: 8.33333333%;
+ }
+ .col-md-push-0 {
+ left: auto;
+ }
+ .col-md-offset-12 {
+ margin-left: 100%;
+ }
+ .col-md-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-md-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-md-offset-9 {
+ margin-left: 75%;
+ }
+ .col-md-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-md-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-md-offset-6 {
+ margin-left: 50%;
+ }
+ .col-md-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-md-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-md-offset-3 {
+ margin-left: 25%;
+ }
+ .col-md-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-md-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-md-offset-0 {
+ margin-left: 0%;
+ }
+}
+@media (min-width: 1200px) {
+ .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
+ float: left;
+ }
+ .col-lg-12 {
+ width: 100%;
+ }
+ .col-lg-11 {
+ width: 91.66666667%;
+ }
+ .col-lg-10 {
+ width: 83.33333333%;
+ }
+ .col-lg-9 {
+ width: 75%;
+ }
+ .col-lg-8 {
+ width: 66.66666667%;
+ }
+ .col-lg-7 {
+ width: 58.33333333%;
+ }
+ .col-lg-6 {
+ width: 50%;
+ }
+ .col-lg-5 {
+ width: 41.66666667%;
+ }
+ .col-lg-4 {
+ width: 33.33333333%;
+ }
+ .col-lg-3 {
+ width: 25%;
+ }
+ .col-lg-2 {
+ width: 16.66666667%;
+ }
+ .col-lg-1 {
+ width: 8.33333333%;
+ }
+ .col-lg-pull-12 {
+ right: 100%;
+ }
+ .col-lg-pull-11 {
+ right: 91.66666667%;
+ }
+ .col-lg-pull-10 {
+ right: 83.33333333%;
+ }
+ .col-lg-pull-9 {
+ right: 75%;
+ }
+ .col-lg-pull-8 {
+ right: 66.66666667%;
+ }
+ .col-lg-pull-7 {
+ right: 58.33333333%;
+ }
+ .col-lg-pull-6 {
+ right: 50%;
+ }
+ .col-lg-pull-5 {
+ right: 41.66666667%;
+ }
+ .col-lg-pull-4 {
+ right: 33.33333333%;
+ }
+ .col-lg-pull-3 {
+ right: 25%;
+ }
+ .col-lg-pull-2 {
+ right: 16.66666667%;
+ }
+ .col-lg-pull-1 {
+ right: 8.33333333%;
+ }
+ .col-lg-pull-0 {
+ right: auto;
+ }
+ .col-lg-push-12 {
+ left: 100%;
+ }
+ .col-lg-push-11 {
+ left: 91.66666667%;
+ }
+ .col-lg-push-10 {
+ left: 83.33333333%;
+ }
+ .col-lg-push-9 {
+ left: 75%;
+ }
+ .col-lg-push-8 {
+ left: 66.66666667%;
+ }
+ .col-lg-push-7 {
+ left: 58.33333333%;
+ }
+ .col-lg-push-6 {
+ left: 50%;
+ }
+ .col-lg-push-5 {
+ left: 41.66666667%;
+ }
+ .col-lg-push-4 {
+ left: 33.33333333%;
+ }
+ .col-lg-push-3 {
+ left: 25%;
+ }
+ .col-lg-push-2 {
+ left: 16.66666667%;
+ }
+ .col-lg-push-1 {
+ left: 8.33333333%;
+ }
+ .col-lg-push-0 {
+ left: auto;
+ }
+ .col-lg-offset-12 {
+ margin-left: 100%;
+ }
+ .col-lg-offset-11 {
+ margin-left: 91.66666667%;
+ }
+ .col-lg-offset-10 {
+ margin-left: 83.33333333%;
+ }
+ .col-lg-offset-9 {
+ margin-left: 75%;
+ }
+ .col-lg-offset-8 {
+ margin-left: 66.66666667%;
+ }
+ .col-lg-offset-7 {
+ margin-left: 58.33333333%;
+ }
+ .col-lg-offset-6 {
+ margin-left: 50%;
+ }
+ .col-lg-offset-5 {
+ margin-left: 41.66666667%;
+ }
+ .col-lg-offset-4 {
+ margin-left: 33.33333333%;
+ }
+ .col-lg-offset-3 {
+ margin-left: 25%;
+ }
+ .col-lg-offset-2 {
+ margin-left: 16.66666667%;
+ }
+ .col-lg-offset-1 {
+ margin-left: 8.33333333%;
+ }
+ .col-lg-offset-0 {
+ margin-left: 0%;
+ }
+}
+table {
+ background-color: transparent;
+}
+caption {
+ padding-top: 8px;
+ padding-bottom: 8px;
+ color: #aea79f;
+ text-align: left;
+}
+th {
+ text-align: left;
+}
+.table {
+ width: 100%;
+ max-width: 100%;
+ margin-bottom: 20px;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+ padding: 8px;
+ line-height: 1.42857143;
+ vertical-align: top;
+ border-top: 1px solid #dddddd;
+}
+.table > thead > tr > th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #dddddd;
+}
+.table > caption + thead > tr:first-child > th,
+.table > colgroup + thead > tr:first-child > th,
+.table > thead:first-child > tr:first-child > th,
+.table > caption + thead > tr:first-child > td,
+.table > colgroup + thead > tr:first-child > td,
+.table > thead:first-child > tr:first-child > td {
+ border-top: 0;
+}
+.table > tbody + tbody {
+ border-top: 2px solid #dddddd;
+}
+.table .table {
+ background-color: #ffffff;
+}
+.table-condensed > thead > tr > th,
+.table-condensed > tbody > tr > th,
+.table-condensed > tfoot > tr > th,
+.table-condensed > thead > tr > td,
+.table-condensed > tbody > tr > td,
+.table-condensed > tfoot > tr > td {
+ padding: 5px;
+}
+.table-bordered {
+ border: 1px solid #dddddd;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+ border: 1px solid #dddddd;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+ border-bottom-width: 2px;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+ background-color: #f9f9f9;
+}
+.table-hover > tbody > tr:hover {
+ background-color: #f5f5f5;
+}
+table col[class*="col-"] {
+ position: static;
+ float: none;
+ display: table-column;
+}
+table td[class*="col-"],
+table th[class*="col-"] {
+ position: static;
+ float: none;
+ display: table-cell;
+}
+.table > thead > tr > td.active,
+.table > tbody > tr > td.active,
+.table > tfoot > tr > td.active,
+.table > thead > tr > th.active,
+.table > tbody > tr > th.active,
+.table > tfoot > tr > th.active,
+.table > thead > tr.active > td,
+.table > tbody > tr.active > td,
+.table > tfoot > tr.active > td,
+.table > thead > tr.active > th,
+.table > tbody > tr.active > th,
+.table > tfoot > tr.active > th {
+ background-color: #f5f5f5;
+}
+.table-hover > tbody > tr > td.active:hover,
+.table-hover > tbody > tr > th.active:hover,
+.table-hover > tbody > tr.active:hover > td,
+.table-hover > tbody > tr:hover > .active,
+.table-hover > tbody > tr.active:hover > th {
+ background-color: #e8e8e8;
+}
+.table > thead > tr > td.success,
+.table > tbody > tr > td.success,
+.table > tfoot > tr > td.success,
+.table > thead > tr > th.success,
+.table > tbody > tr > th.success,
+.table > tfoot > tr > th.success,
+.table > thead > tr.success > td,
+.table > tbody > tr.success > td,
+.table > tfoot > tr.success > td,
+.table > thead > tr.success > th,
+.table > tbody > tr.success > th,
+.table > tfoot > tr.success > th {
+ background-color: #dff0d8;
+}
+.table-hover > tbody > tr > td.success:hover,
+.table-hover > tbody > tr > th.success:hover,
+.table-hover > tbody > tr.success:hover > td,
+.table-hover > tbody > tr:hover > .success,
+.table-hover > tbody > tr.success:hover > th {
+ background-color: #d0e9c6;
+}
+.table > thead > tr > td.info,
+.table > tbody > tr > td.info,
+.table > tfoot > tr > td.info,
+.table > thead > tr > th.info,
+.table > tbody > tr > th.info,
+.table > tfoot > tr > th.info,
+.table > thead > tr.info > td,
+.table > tbody > tr.info > td,
+.table > tfoot > tr.info > td,
+.table > thead > tr.info > th,
+.table > tbody > tr.info > th,
+.table > tfoot > tr.info > th {
+ background-color: #d9edf7;
+}
+.table-hover > tbody > tr > td.info:hover,
+.table-hover > tbody > tr > th.info:hover,
+.table-hover > tbody > tr.info:hover > td,
+.table-hover > tbody > tr:hover > .info,
+.table-hover > tbody > tr.info:hover > th {
+ background-color: #c4e3f3;
+}
+.table > thead > tr > td.warning,
+.table > tbody > tr > td.warning,
+.table > tfoot > tr > td.warning,
+.table > thead > tr > th.warning,
+.table > tbody > tr > th.warning,
+.table > tfoot > tr > th.warning,
+.table > thead > tr.warning > td,
+.table > tbody > tr.warning > td,
+.table > tfoot > tr.warning > td,
+.table > thead > tr.warning > th,
+.table > tbody > tr.warning > th,
+.table > tfoot > tr.warning > th {
+ background-color: #fcf8e3;
+}
+.table-hover > tbody > tr > td.warning:hover,
+.table-hover > tbody > tr > th.warning:hover,
+.table-hover > tbody > tr.warning:hover > td,
+.table-hover > tbody > tr:hover > .warning,
+.table-hover > tbody > tr.warning:hover > th {
+ background-color: #faf2cc;
+}
+.table > thead > tr > td.danger,
+.table > tbody > tr > td.danger,
+.table > tfoot > tr > td.danger,
+.table > thead > tr > th.danger,
+.table > tbody > tr > th.danger,
+.table > tfoot > tr > th.danger,
+.table > thead > tr.danger > td,
+.table > tbody > tr.danger > td,
+.table > tfoot > tr.danger > td,
+.table > thead > tr.danger > th,
+.table > tbody > tr.danger > th,
+.table > tfoot > tr.danger > th {
+ background-color: #f2dede;
+}
+.table-hover > tbody > tr > td.danger:hover,
+.table-hover > tbody > tr > th.danger:hover,
+.table-hover > tbody > tr.danger:hover > td,
+.table-hover > tbody > tr:hover > .danger,
+.table-hover > tbody > tr.danger:hover > th {
+ background-color: #ebcccc;
+}
+.table-responsive {
+ overflow-x: auto;
+ min-height: 0.01%;
+}
+@media screen and (max-width: 767px) {
+ .table-responsive {
+ width: 100%;
+ margin-bottom: 15px;
+ overflow-y: hidden;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
+ border: 1px solid #dddddd;
+ }
+ .table-responsive > .table {
+ margin-bottom: 0;
+ }
+ .table-responsive > .table > thead > tr > th,
+ .table-responsive > .table > tbody > tr > th,
+ .table-responsive > .table > tfoot > tr > th,
+ .table-responsive > .table > thead > tr > td,
+ .table-responsive > .table > tbody > tr > td,
+ .table-responsive > .table > tfoot > tr > td {
+ white-space: nowrap;
+ }
+ .table-responsive > .table-bordered {
+ border: 0;
+ }
+ .table-responsive > .table-bordered > thead > tr > th:first-child,
+ .table-responsive > .table-bordered > tbody > tr > th:first-child,
+ .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+ .table-responsive > .table-bordered > thead > tr > td:first-child,
+ .table-responsive > .table-bordered > tbody > tr > td:first-child,
+ .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+ border-left: 0;
+ }
+ .table-responsive > .table-bordered > thead > tr > th:last-child,
+ .table-responsive > .table-bordered > tbody > tr > th:last-child,
+ .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+ .table-responsive > .table-bordered > thead > tr > td:last-child,
+ .table-responsive > .table-bordered > tbody > tr > td:last-child,
+ .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+ border-right: 0;
+ }
+ .table-responsive > .table-bordered > tbody > tr:last-child > th,
+ .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+ .table-responsive > .table-bordered > tbody > tr:last-child > td,
+ .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+ border-bottom: 0;
+ }
+}
+fieldset {
+ padding: 0;
+ margin: 0;
+ border: 0;
+ min-width: 0;
+}
+legend {
+ display: block;
+ width: 100%;
+ padding: 0;
+ margin-bottom: 20px;
+ font-size: 21px;
+ line-height: inherit;
+ color: #333333;
+ border: 0;
+ border-bottom: 1px solid #e5e5e5;
+}
+label {
+ display: inline-block;
+ max-width: 100%;
+ margin-bottom: 5px;
+ font-weight: bold;
+}
+input[type="search"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+input[type="radio"],
+input[type="checkbox"] {
+ margin: 4px 0 0;
+ margin-top: 1px \9;
+ line-height: normal;
+}
+input[type="file"] {
+ display: block;
+}
+input[type="range"] {
+ display: block;
+ width: 100%;
+}
+select[multiple],
+select[size] {
+ height: auto;
+}
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+output {
+ display: block;
+ padding-top: 9px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #333333;
+}
+.form-control {
+ display: block;
+ width: 100%;
+ height: 38px;
+ padding: 8px 12px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ color: #333333;
+ background-color: #ffffff;
+ background-image: none;
+ border: 1px solid #cccccc;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.form-control:focus {
+ border-color: #66afe9;
+ outline: 0;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
+}
+.form-control::-moz-placeholder {
+ color: #aea79f;
+ opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+ color: #aea79f;
+}
+.form-control::-webkit-input-placeholder {
+ color: #aea79f;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+ cursor: not-allowed;
+ background-color: #eeeeee;
+ opacity: 1;
+}
+textarea.form-control {
+ height: auto;
+}
+input[type="search"] {
+ -webkit-appearance: none;
+}
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+ input[type="date"],
+ input[type="time"],
+ input[type="datetime-local"],
+ input[type="month"] {
+ line-height: 38px;
+ }
+ input[type="date"].input-sm,
+ input[type="time"].input-sm,
+ input[type="datetime-local"].input-sm,
+ input[type="month"].input-sm,
+ .input-group-sm input[type="date"],
+ .input-group-sm input[type="time"],
+ .input-group-sm input[type="datetime-local"],
+ .input-group-sm input[type="month"] {
+ line-height: 30px;
+ }
+ input[type="date"].input-lg,
+ input[type="time"].input-lg,
+ input[type="datetime-local"].input-lg,
+ input[type="month"].input-lg,
+ .input-group-lg input[type="date"],
+ .input-group-lg input[type="time"],
+ .input-group-lg input[type="datetime-local"],
+ .input-group-lg input[type="month"] {
+ line-height: 54px;
+ }
+}
+.form-group {
+ margin-bottom: 15px;
+}
+.radio,
+.checkbox {
+ position: relative;
+ display: block;
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+.radio label,
+.checkbox label {
+ min-height: 20px;
+ padding-left: 20px;
+ margin-bottom: 0;
+ font-weight: normal;
+ cursor: pointer;
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+ position: absolute;
+ margin-left: -20px;
+ margin-top: 4px \9;
+}
+.radio + .radio,
+.checkbox + .checkbox {
+ margin-top: -5px;
+}
+.radio-inline,
+.checkbox-inline {
+ display: inline-block;
+ padding-left: 20px;
+ margin-bottom: 0;
+ vertical-align: middle;
+ font-weight: normal;
+ cursor: pointer;
+}
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+ margin-top: 0;
+ margin-left: 10px;
+}
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"].disabled,
+input[type="checkbox"].disabled,
+fieldset[disabled] input[type="radio"],
+fieldset[disabled] input[type="checkbox"] {
+ cursor: not-allowed;
+}
+.radio-inline.disabled,
+.checkbox-inline.disabled,
+fieldset[disabled] .radio-inline,
+fieldset[disabled] .checkbox-inline {
+ cursor: not-allowed;
+}
+.radio.disabled label,
+.checkbox.disabled label,
+fieldset[disabled] .radio label,
+fieldset[disabled] .checkbox label {
+ cursor: not-allowed;
+}
+.form-control-static {
+ padding-top: 9px;
+ padding-bottom: 9px;
+ margin-bottom: 0;
+}
+.form-control-static.input-lg,
+.form-control-static.input-sm {
+ padding-left: 0;
+ padding-right: 0;
+}
+.input-sm {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.input-sm {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.input-sm,
+select[multiple].input-sm {
+ height: auto;
+}
+.form-group-sm .form-control {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.form-group-sm .form-control {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.form-group-sm .form-control,
+select[multiple].form-group-sm .form-control {
+ height: auto;
+}
+.form-group-sm .form-control-static {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+}
+.input-lg {
+ height: 54px;
+ padding: 14px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.input-lg {
+ height: 54px;
+ line-height: 54px;
+}
+textarea.input-lg,
+select[multiple].input-lg {
+ height: auto;
+}
+.form-group-lg .form-control {
+ height: 54px;
+ padding: 14px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.form-group-lg .form-control {
+ height: 54px;
+ line-height: 54px;
+}
+textarea.form-group-lg .form-control,
+select[multiple].form-group-lg .form-control {
+ height: auto;
+}
+.form-group-lg .form-control-static {
+ height: 54px;
+ padding: 14px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+}
+.has-feedback {
+ position: relative;
+}
+.has-feedback .form-control {
+ padding-right: 47.5px;
+}
+.form-control-feedback {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 2;
+ display: block;
+ width: 38px;
+ height: 38px;
+ line-height: 38px;
+ text-align: center;
+ pointer-events: none;
+}
+.input-lg + .form-control-feedback {
+ width: 54px;
+ height: 54px;
+ line-height: 54px;
+}
+.input-sm + .form-control-feedback {
+ width: 30px;
+ height: 30px;
+ line-height: 30px;
+}
+.has-success .help-block,
+.has-success .control-label,
+.has-success .radio,
+.has-success .checkbox,
+.has-success .radio-inline,
+.has-success .checkbox-inline,
+.has-success.radio label,
+.has-success.checkbox label,
+.has-success.radio-inline label,
+.has-success.checkbox-inline label {
+ color: #468847;
+}
+.has-success .form-control {
+ border-color: #468847;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-success .form-control:focus {
+ border-color: #356635;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
+}
+.has-success .input-group-addon {
+ color: #468847;
+ border-color: #468847;
+ background-color: #dff0d8;
+}
+.has-success .form-control-feedback {
+ color: #468847;
+}
+.has-warning .help-block,
+.has-warning .control-label,
+.has-warning .radio,
+.has-warning .checkbox,
+.has-warning .radio-inline,
+.has-warning .checkbox-inline,
+.has-warning.radio label,
+.has-warning.checkbox label,
+.has-warning.radio-inline label,
+.has-warning.checkbox-inline label {
+ color: #c09853;
+}
+.has-warning .form-control {
+ border-color: #c09853;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-warning .form-control:focus {
+ border-color: #a47e3c;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
+}
+.has-warning .input-group-addon {
+ color: #c09853;
+ border-color: #c09853;
+ background-color: #fcf8e3;
+}
+.has-warning .form-control-feedback {
+ color: #c09853;
+}
+.has-error .help-block,
+.has-error .control-label,
+.has-error .radio,
+.has-error .checkbox,
+.has-error .radio-inline,
+.has-error .checkbox-inline,
+.has-error.radio label,
+.has-error.checkbox label,
+.has-error.radio-inline label,
+.has-error.checkbox-inline label {
+ color: #b94a48;
+}
+.has-error .form-control {
+ border-color: #b94a48;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-error .form-control:focus {
+ border-color: #953b39;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
+}
+.has-error .input-group-addon {
+ color: #b94a48;
+ border-color: #b94a48;
+ background-color: #f2dede;
+}
+.has-error .form-control-feedback {
+ color: #b94a48;
+}
+.has-feedback label ~ .form-control-feedback {
+ top: 25px;
+}
+.has-feedback label.sr-only ~ .form-control-feedback {
+ top: 0;
+}
+.help-block {
+ display: block;
+ margin-top: 5px;
+ margin-bottom: 10px;
+ color: #737373;
+}
+@media (min-width: 768px) {
+ .form-inline .form-group {
+ display: inline-block;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle;
+ }
+ .form-inline .form-control-static {
+ display: inline-block;
+ }
+ .form-inline .input-group {
+ display: inline-table;
+ vertical-align: middle;
+ }
+ .form-inline .input-group .input-group-addon,
+ .form-inline .input-group .input-group-btn,
+ .form-inline .input-group .form-control {
+ width: auto;
+ }
+ .form-inline .input-group > .form-control {
+ width: 100%;
+ }
+ .form-inline .control-label {
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .radio,
+ .form-inline .checkbox {
+ display: inline-block;
+ margin-top: 0;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .form-inline .radio label,
+ .form-inline .checkbox label {
+ padding-left: 0;
+ }
+ .form-inline .radio input[type="radio"],
+ .form-inline .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0;
+ }
+ .form-inline .has-feedback .form-control-feedback {
+ top: 0;
+ }
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox,
+.form-horizontal .radio-inline,
+.form-horizontal .checkbox-inline {
+ margin-top: 0;
+ margin-bottom: 0;
+ padding-top: 9px;
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox {
+ min-height: 29px;
+}
+.form-horizontal .form-group {
+ margin-left: -15px;
+ margin-right: -15px;
+}
+@media (min-width: 768px) {
+ .form-horizontal .control-label {
+ text-align: right;
+ margin-bottom: 0;
+ padding-top: 9px;
+ }
+}
+.form-horizontal .has-feedback .form-control-feedback {
+ right: 15px;
+}
+@media (min-width: 768px) {
+ .form-horizontal .form-group-lg .control-label {
+ padding-top: 19.6666662px;
+ }
+}
+@media (min-width: 768px) {
+ .form-horizontal .form-group-sm .control-label {
+ padding-top: 6px;
+ }
+}
+.btn {
+ display: inline-block;
+ margin-bottom: 0;
+ font-weight: normal;
+ text-align: center;
+ vertical-align: middle;
+ -ms-touch-action: manipulation;
+ touch-action: manipulation;
+ cursor: pointer;
+ background-image: none;
+ border: 1px solid transparent;
+ white-space: nowrap;
+ padding: 8px 12px;
+ font-size: 14px;
+ line-height: 1.42857143;
+ border-radius: 4px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.btn:focus,
+.btn:active:focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn.active.focus {
+ outline: thin dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+ outline-offset: -2px;
+}
+.btn:hover,
+.btn:focus,
+.btn.focus {
+ color: #ffffff;
+ text-decoration: none;
+}
+.btn:active,
+.btn.active {
+ outline: 0;
+ background-image: none;
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+ cursor: not-allowed;
+ pointer-events: none;
+ opacity: 0.65;
+ filter: alpha(opacity=65);
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.btn-default {
+ color: #ffffff;
+ background-color: #aea79f;
+ border-color: #aea79f;
+}
+.btn-default:hover,
+.btn-default:focus,
+.btn-default.focus,
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+ color: #ffffff;
+ background-color: #978e83;
+ border-color: #92897e;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+ background-image: none;
+}
+.btn-default.disabled,
+.btn-default[disabled],
+fieldset[disabled] .btn-default,
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled.focus,
+.btn-default[disabled].focus,
+fieldset[disabled] .btn-default.focus,
+.btn-default.disabled:active,
+.btn-default[disabled]:active,
+fieldset[disabled] .btn-default:active,
+.btn-default.disabled.active,
+.btn-default[disabled].active,
+fieldset[disabled] .btn-default.active {
+ background-color: #aea79f;
+ border-color: #aea79f;
+}
+.btn-default .badge {
+ color: #aea79f;
+ background-color: #ffffff;
+}
+.btn-primary {
+ color: #ffffff;
+ background-color: #dd4814;
+ border-color: #dd4814;
+}
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary.focus,
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+ color: #ffffff;
+ background-color: #ae3910;
+ border-color: #a5360f;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+ background-image: none;
+}
+.btn-primary.disabled,
+.btn-primary[disabled],
+fieldset[disabled] .btn-primary,
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled.focus,
+.btn-primary[disabled].focus,
+fieldset[disabled] .btn-primary.focus,
+.btn-primary.disabled:active,
+.btn-primary[disabled]:active,
+fieldset[disabled] .btn-primary:active,
+.btn-primary.disabled.active,
+.btn-primary[disabled].active,
+fieldset[disabled] .btn-primary.active {
+ background-color: #dd4814;
+ border-color: #dd4814;
+}
+.btn-primary .badge {
+ color: #dd4814;
+ background-color: #ffffff;
+}
+.btn-success {
+ color: #ffffff;
+ background-color: #38b44a;
+ border-color: #38b44a;
+}
+.btn-success:hover,
+.btn-success:focus,
+.btn-success.focus,
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+ color: #ffffff;
+ background-color: #2c8d3a;
+ border-color: #298537;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+ background-image: none;
+}
+.btn-success.disabled,
+.btn-success[disabled],
+fieldset[disabled] .btn-success,
+.btn-success.disabled:hover,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success:hover,
+.btn-success.disabled:focus,
+.btn-success[disabled]:focus,
+fieldset[disabled] .btn-success:focus,
+.btn-success.disabled.focus,
+.btn-success[disabled].focus,
+fieldset[disabled] .btn-success.focus,
+.btn-success.disabled:active,
+.btn-success[disabled]:active,
+fieldset[disabled] .btn-success:active,
+.btn-success.disabled.active,
+.btn-success[disabled].active,
+fieldset[disabled] .btn-success.active {
+ background-color: #38b44a;
+ border-color: #38b44a;
+}
+.btn-success .badge {
+ color: #38b44a;
+ background-color: #ffffff;
+}
+.btn-info {
+ color: #ffffff;
+ background-color: #772953;
+ border-color: #772953;
+}
+.btn-info:hover,
+.btn-info:focus,
+.btn-info.focus,
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+ color: #ffffff;
+ background-color: #511c39;
+ border-color: #491933;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+ background-image: none;
+}
+.btn-info.disabled,
+.btn-info[disabled],
+fieldset[disabled] .btn-info,
+.btn-info.disabled:hover,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info:hover,
+.btn-info.disabled:focus,
+.btn-info[disabled]:focus,
+fieldset[disabled] .btn-info:focus,
+.btn-info.disabled.focus,
+.btn-info[disabled].focus,
+fieldset[disabled] .btn-info.focus,
+.btn-info.disabled:active,
+.btn-info[disabled]:active,
+fieldset[disabled] .btn-info:active,
+.btn-info.disabled.active,
+.btn-info[disabled].active,
+fieldset[disabled] .btn-info.active {
+ background-color: #772953;
+ border-color: #772953;
+}
+.btn-info .badge {
+ color: #772953;
+ background-color: #ffffff;
+}
+.btn-warning {
+ color: #ffffff;
+ background-color: #efb73e;
+ border-color: #efb73e;
+}
+.btn-warning:hover,
+.btn-warning:focus,
+.btn-warning.focus,
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+ color: #ffffff;
+ background-color: #e7a413;
+ border-color: #dd9d12;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+ background-image: none;
+}
+.btn-warning.disabled,
+.btn-warning[disabled],
+fieldset[disabled] .btn-warning,
+.btn-warning.disabled:hover,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning:hover,
+.btn-warning.disabled:focus,
+.btn-warning[disabled]:focus,
+fieldset[disabled] .btn-warning:focus,
+.btn-warning.disabled.focus,
+.btn-warning[disabled].focus,
+fieldset[disabled] .btn-warning.focus,
+.btn-warning.disabled:active,
+.btn-warning[disabled]:active,
+fieldset[disabled] .btn-warning:active,
+.btn-warning.disabled.active,
+.btn-warning[disabled].active,
+fieldset[disabled] .btn-warning.active {
+ background-color: #efb73e;
+ border-color: #efb73e;
+}
+.btn-warning .badge {
+ color: #efb73e;
+ background-color: #ffffff;
+}
+.btn-danger {
+ color: #ffffff;
+ background-color: #df382c;
+ border-color: #df382c;
+}
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger.focus,
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+ color: #ffffff;
+ background-color: #bc271c;
+ border-color: #b3251b;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+ background-image: none;
+}
+.btn-danger.disabled,
+.btn-danger[disabled],
+fieldset[disabled] .btn-danger,
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled.focus,
+.btn-danger[disabled].focus,
+fieldset[disabled] .btn-danger.focus,
+.btn-danger.disabled:active,
+.btn-danger[disabled]:active,
+fieldset[disabled] .btn-danger:active,
+.btn-danger.disabled.active,
+.btn-danger[disabled].active,
+fieldset[disabled] .btn-danger.active {
+ background-color: #df382c;
+ border-color: #df382c;
+}
+.btn-danger .badge {
+ color: #df382c;
+ background-color: #ffffff;
+}
+.btn-link {
+ color: #dd4814;
+ font-weight: normal;
+ border-radius: 0;
+}
+.btn-link,
+.btn-link:active,
+.btn-link.active,
+.btn-link[disabled],
+fieldset[disabled] .btn-link {
+ background-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.btn-link,
+.btn-link:hover,
+.btn-link:focus,
+.btn-link:active {
+ border-color: transparent;
+}
+.btn-link:hover,
+.btn-link:focus {
+ color: #97310e;
+ text-decoration: underline;
+ background-color: transparent;
+}
+.btn-link[disabled]:hover,
+fieldset[disabled] .btn-link:hover,
+.btn-link[disabled]:focus,
+fieldset[disabled] .btn-link:focus {
+ color: #aea79f;
+ text-decoration: none;
+}
+.btn-lg,
+.btn-group-lg > .btn {
+ padding: 14px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+.btn-sm,
+.btn-group-sm > .btn {
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+.btn-xs,
+.btn-group-xs > .btn {
+ padding: 1px 5px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+.btn-block {
+ display: block;
+ width: 100%;
+}
+.btn-block + .btn-block {
+ margin-top: 5px;
+}
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+ width: 100%;
+}
+.fade {
+ opacity: 0;
+ -webkit-transition: opacity 0.15s linear;
+ -o-transition: opacity 0.15s linear;
+ transition: opacity 0.15s linear;
+}
+.fade.in {
+ opacity: 1;
+}
+.collapse {
+ display: none;
+ visibility: hidden;
+}
+.collapse.in {
+ display: block;
+ visibility: visible;
+}
+tr.collapse.in {
+ display: table-row;
+}
+tbody.collapse.in {
+ display: table-row-group;
+}
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ -webkit-transition-property: height, visibility;
+ -o-transition-property: height, visibility;
+ transition-property: height, visibility;
+ -webkit-transition-duration: 0.35s;
+ -o-transition-duration: 0.35s;
+ transition-duration: 0.35s;
+ -webkit-transition-timing-function: ease;
+ -o-transition-timing-function: ease;
+ transition-timing-function: ease;
+}
+.caret {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: 2px;
+ vertical-align: middle;
+ border-top: 4px solid;
+ border-right: 4px solid transparent;
+ border-left: 4px solid transparent;
+}
+.dropup,
+.dropdown {
+ position: relative;
+}
+.dropdown-toggle:focus {
+ outline: 0;
+}
+.dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 160px;
+ padding: 5px 0;
+ margin: 2px 0 0;
+ list-style: none;
+ font-size: 14px;
+ text-align: left;
+ background-color: #ffffff;
+ border: 1px solid #cccccc;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 4px;
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+}
+.dropdown-menu.pull-right {
+ right: 0;
+ left: auto;
+}
+.dropdown-menu .divider {
+ height: 1px;
+ margin: 9px 0;
+ overflow: hidden;
+ background-color: #e5e5e5;
+}
+.dropdown-menu > li > a {
+ display: block;
+ padding: 3px 20px;
+ clear: both;
+ font-weight: normal;
+ line-height: 1.42857143;
+ color: #333333;
+ white-space: nowrap;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+ text-decoration: none;
+ color: #ffffff;
+ background-color: #dd4814;
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+ color: #ffffff;
+ text-decoration: none;
+ outline: 0;
+ background-color: #dd4814;
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ color: #aea79f;
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ text-decoration: none;
+ background-color: transparent;
+ background-image: none;
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+ cursor: not-allowed;
+}
+.open > .dropdown-menu {
+ display: block;
+}
+.open > a {
+ outline: 0;
+}
+.dropdown-menu-right {
+ left: auto;
+ right: 0;
+}
+.dropdown-menu-left {
+ left: 0;
+ right: auto;
+}
+.dropdown-header {
+ display: block;
+ padding: 3px 20px;
+ font-size: 12px;
+ line-height: 1.42857143;
+ color: #aea79f;
+ white-space: nowrap;
+}
+.dropdown-backdrop {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ z-index: 990;
+}
+.pull-right > .dropdown-menu {
+ right: 0;
+ left: auto;
+}
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+ border-top: 0;
+ border-bottom: 4px solid;
+ content: "";
+}
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+ top: auto;
+ bottom: 100%;
+ margin-bottom: 2px;
+}
+@media (min-width: 768px) {
+ .navbar-right .dropdown-menu {
+ left: auto;
+ right: 0;
+ }
+ .navbar-right .dropdown-menu-left {
+ left: 0;
+ right: auto;
+ }
+}
+.btn-group,
+.btn-group-vertical {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+}
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+ position: relative;
+ float: left;
+}
+.btn-group > .btn:hover,
+.btn-group-vertical > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group-vertical > .btn:focus,
+.btn-group > .btn:active,
+.btn-group-vertical > .btn:active,
+.btn-group > .btn.active,
+.btn-group-vertical > .btn.active {
+ z-index: 2;
+}
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
+ margin-left: -1px;
+}
+.btn-toolbar {
+ margin-left: -5px;
+}
+.btn-toolbar .btn-group,
+.btn-toolbar .input-group {
+ float: left;
+}
+.btn-toolbar > .btn,
+.btn-toolbar > .btn-group,
+.btn-toolbar > .input-group {
+ margin-left: 5px;
+}
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+ border-radius: 0;
+}
+.btn-group > .btn:first-child {
+ margin-left: 0;
+}
+.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0;
+}
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0;
+}
+.btn-group > .btn-group {
+ float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+ border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0;
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0;
+}
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+ outline: 0;
+}
+.btn-group > .btn + .dropdown-toggle {
+ padding-left: 8px;
+ padding-right: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+ padding-left: 12px;
+ padding-right: 12px;
+}
+.btn-group.open .dropdown-toggle {
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn-group.open .dropdown-toggle.btn-link {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+.btn .caret {
+ margin-left: 0;
+}
+.btn-lg .caret {
+ border-width: 5px 5px 0;
+ border-bottom-width: 0;
+}
+.dropup .btn-lg .caret {
+ border-width: 0 5px 5px;
+}
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group,
+.btn-group-vertical > .btn-group > .btn {
+ display: block;
+ float: none;
+ width: 100%;
+ max-width: 100%;
+}
+.btn-group-vertical > .btn-group > .btn {
+ float: none;
+}
+.btn-group-vertical > .btn + .btn,
+.btn-group-vertical > .btn + .btn-group,
+.btn-group-vertical > .btn-group + .btn,
+.btn-group-vertical > .btn-group + .btn-group {
+ margin-top: -1px;
+ margin-left: 0;
+}
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+ border-radius: 0;
+}
+.btn-group-vertical > .btn:first-child:not(:last-child) {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn:last-child:not(:first-child) {
+ border-bottom-left-radius: 4px;
+ border-top-right-radius: 0;
+ border-top-left-radius: 0;
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+ border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+ border-top-right-radius: 0;
+ border-top-left-radius: 0;
+}
+.btn-group-justified {
+ display: table;
+ width: 100%;
+ table-layout: fixed;
+ border-collapse: separate;
+}
+.btn-group-justified > .btn,
+.btn-group-justified > .btn-group {
+ float: none;
+ display: table-cell;
+ width: 1%;
+}
+.btn-group-justified > .btn-group .btn {
+ width: 100%;
+}
+.btn-group-justified > .btn-group .dropdown-menu {
+ left: auto;
+}
+[data-toggle="buttons"] > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn input[type="checkbox"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none;
+}
+.input-group {
+ position: relative;
+ display: table;
+ border-collapse: separate;
+}
+.input-group[class*="col-"] {
+ float: none;
+ padding-left: 0;
+ padding-right: 0;
+}
+.input-group .form-control {
+ position: relative;
+ z-index: 2;
+ float: left;
+ width: 100%;
+ margin-bottom: 0;
+}
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+ height: 54px;
+ padding: 14px 16px;
+ font-size: 18px;
+ line-height: 1.3333333;
+ border-radius: 6px;
+}
+select.input-group-lg > .form-control,
+select.input-group-lg > .input-group-addon,
+select.input-group-lg > .input-group-btn > .btn {
+ height: 54px;
+ line-height: 54px;
+}
+textarea.input-group-lg > .form-control,
+textarea.input-group-lg > .input-group-addon,
+textarea.input-group-lg > .input-group-btn > .btn,
+select[multiple].input-group-lg > .form-control,
+select[multiple].input-group-lg > .input-group-addon,
+select[multiple].input-group-lg > .input-group-btn > .btn {
+ height: auto;
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+ height: 30px;
+ padding: 5px 10px;
+ font-size: 12px;
+ line-height: 1.5;
+ border-radius: 3px;
+}
+select.input-group-sm > .form-control,
+select.input-group-sm > .input-group-addon,
+select.input-group-sm > .input-group-btn > .btn {
+ height: 30px;
+ line-height: 30px;
+}
+textarea.input-group-sm > .form-control,
+textarea.input-group-sm > .input-group-addon,
+textarea.input-group-sm > .input-group-btn > .btn,
+select[multiple].input-group-sm > .form-control,
+select[multiple].input-group-sm > .input-group-addon,
+select[multiple].input-group-sm > .input-group-btn > .btn {
+ height: auto;
+}
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+ display: table-cell;
+}
+.input-group-addon:not(:first-child):not(:last-child),
+.input-group-btn:not(:first-child):not(:last-child),
+.input-group .form-control:not(:first-child):not(:last-child) {
+ border-radius: 0;
+}
+.input-group-addon,
+.input-group-btn {
+ width: 1%;
+ white-space: nowrap;
+ vertical-align: middle;
+}
+.input-group-addon {
+ padding: 8px 12px;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1;
+ color: #333333;
+ text-align: center;
+ background-color: #eeeeee;
+ border: 1px solid #cccccc;
+ border-radius: 4px;
+}
+.input-group-addon.input-sm {
+ padding: 5px 10px;
+ font-size: 12px;
+ border-radius: 3px;
+}
+.input-group-addon.input-lg {
+ padding: 14px 16px;
+ font-size: 18px;
+ border-radius: 6px;
+}
+.input-group-addon input[type="radio"],
+.input-group-addon input[type="checkbox"] {
+ margin-top: 0;
+}
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+ border-bottom-right-radius: 0;
+ border-top-right-radius: 0;
+}
+.input-group-addon:first-child {
+ border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+ border-bottom-left-radius: 0;
+ border-top-left-radius: 0;
+}
+.input-group-addon:last-child {
+ border-left: 0;
+}
+.input-group-btn {
+ position: relative;
+ font-size: 0;
+ white-space: nowrap;
+}
+.input-group-btn > .btn {
+ position: relative;
+}
+.input-group-btn > .btn + .btn {
+ margin-left: -1px;
+}
+.input-group-btn > .btn:hover,
+.input-group-btn > .btn:focus,
+.input-group-btn > .btn:active {
+ z-index: 2;
+}
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group {
+ margin-right: -1px;
+}
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group {
+ margin-left: -1px;
+}
+.nav {
+ margin-bottom: 0;
+ padding-left: 0;
+ list-style: none;
+}
+.nav > li {
+ position: relative;
+ display: block;
+}
+.nav > li > a {
+ position: relative;
+ display: block;
+ padding: 10px 15px;
+}
+.nav > li > a:hover,
+.nav > li > a:focus {
+ text-decoration: none;
+ background-color: #eeeeee;
+}
+.nav > li.disabled > a {
+ color: #aea79f;
+}
+.nav > li.disabled > a:hover,
+.nav > li.disabled > a:focus {
+ color: #aea79f;
+ text-decoration: none;
+ background-color: transparent;
+ cursor: not-allowed;
+}
+.nav .open > a,
+.nav .open > a:hover,
+.nav .open > a:focus {
+ background-color: #eeeeee;
+ border-color: #dd4814;
+}
+.nav .nav-divider {
+ height: 1px;
+ margin: 9px 0;
+ overflow: hidden;
+ background-color: #e5e5e5;
+}
+.nav > li > a > img {
+ max-width: none;
+}
+.nav-tabs {
+ border-bottom: 1px solid #dddddd;
+}
+.nav-tabs > li {
+ float: left;
+ margin-bottom: -1px;
+}
+.nav-tabs > li > a {
+ margin-right: 2px;
+ line-height: 1.42857143;
+ border: 1px solid transparent;
+ border-radius: 4px 4px 0 0;
+}
+.nav-tabs > li > a:hover {
+ border-color: #eeeeee #eeeeee #dddddd;
+}
+.nav-tabs > li.active > a,
+.nav-tabs > li.active > a:hover,
+.nav-tabs > li.active > a:focus {
+ color: #777777;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ border-bottom-color: transparent;
+ cursor: default;
+}
+.nav-tabs.nav-justified {
+ width: 100%;
+ border-bottom: 0;
+}
+.nav-tabs.nav-justified > li {
+ float: none;
+}
+.nav-tabs.nav-justified > li > a {
+ text-align: center;
+ margin-bottom: 5px;
+}
+.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
+}
+@media (min-width: 768px) {
+ .nav-tabs.nav-justified > li {
+ display: table-cell;
+ width: 1%;
+ }
+ .nav-tabs.nav-justified > li > a {
+ margin-bottom: 0;
+ }
+}
+.nav-tabs.nav-justified > li > a {
+ margin-right: 0;
+ border-radius: 4px;
+}
+.nav-tabs.nav-justified > .active > a,
+.nav-tabs.nav-justified > .active > a:hover,
+.nav-tabs.nav-justified > .active > a:focus {
+ border: 1px solid #dddddd;
+}
+@media (min-width: 768px) {
+ .nav-tabs.nav-justified > li > a {
+ border-bottom: 1px solid #dddddd;
+ border-radius: 4px 4px 0 0;
+ }
+ .nav-tabs.nav-justified > .active > a,
+ .nav-tabs.nav-justified > .active > a:hover,
+ .nav-tabs.nav-justified > .active > a:focus {
+ border-bottom-color: #ffffff;
+ }
+}
+.nav-pills > li {
+ float: left;
+}
+.nav-pills > li > a {
+ border-radius: 4px;
+}
+.nav-pills > li + li {
+ margin-left: 2px;
+}
+.nav-pills > li.active > a,
+.nav-pills > li.active > a:hover,
+.nav-pills > li.active > a:focus {
+ color: #ffffff;
+ background-color: #dd4814;
+}
+.nav-stacked > li {
+ float: none;
+}
+.nav-stacked > li + li {
+ margin-top: 2px;
+ margin-left: 0;
+}
+.nav-justified {
+ width: 100%;
+}
+.nav-justified > li {
+ float: none;
+}
+.nav-justified > li > a {
+ text-align: center;
+ margin-bottom: 5px;
+}
+.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
+}
+@media (min-width: 768px) {
+ .nav-justified > li {
+ display: table-cell;
+ width: 1%;
+ }
+ .nav-justified > li > a {
+ margin-bottom: 0;
+ }
+}
+.nav-tabs-justified {
+ border-bottom: 0;
+}
+.nav-tabs-justified > li > a {
+ margin-right: 0;
+ border-radius: 4px;
+}
+.nav-tabs-justified > .active > a,
+.nav-tabs-justified > .active > a:hover,
+.nav-tabs-justified > .active > a:focus {
+ border: 1px solid #dddddd;
+}
+@media (min-width: 768px) {
+ .nav-tabs-justified > li > a {
+ border-bottom: 1px solid #dddddd;
+ border-radius: 4px 4px 0 0;
+ }
+ .nav-tabs-justified > .active > a,
+ .nav-tabs-justified > .active > a:hover,
+ .nav-tabs-justified > .active > a:focus {
+ border-bottom-color: #ffffff;
+ }
+}
+.tab-content > .tab-pane {
+ display: none;
+ visibility: hidden;
+}
+.tab-content > .active {
+ display: block;
+ visibility: visible;
+}
+.nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-right-radius: 0;
+ border-top-left-radius: 0;
+}
+.navbar {
+ position: relative;
+ min-height: 50px;
+ margin-bottom: 20px;
+ border: 1px solid transparent;
+}
+@media (min-width: 768px) {
+ .navbar {
+ border-radius: 4px;
+ }
+}
+@media (min-width: 768px) {
+ .navbar-header {
+ float: left;
+ }
+}
+.navbar-collapse {
+ overflow-x: visible;
+ padding-right: 15px;
+ padding-left: 15px;
+ border-top: 1px solid transparent;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+ -webkit-overflow-scrolling: touch;
+}
+.navbar-collapse.in {
+ overflow-y: auto;
+}
+@media (min-width: 768px) {
+ .navbar-collapse {
+ width: auto;
+ border-top: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+ .navbar-collapse.collapse {
+ display: block !important;
+ visibility: visible !important;
+ height: auto !important;
+ padding-bottom: 0;
+ overflow: visible !important;
+ }
+ .navbar-collapse.in {
+ overflow-y: visible;
+ }
+ .navbar-fixed-top .navbar-collapse,
+ .navbar-static-top .navbar-collapse,
+ .navbar-fixed-bottom .navbar-collapse {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+.navbar-fixed-top .navbar-collapse,
+.navbar-fixed-bottom .navbar-collapse {
+ max-height: 340px;
+}
+@media (max-device-width: 480px) and (orientation: landscape) {
+ .navbar-fixed-top .navbar-collapse,
+ .navbar-fixed-bottom .navbar-collapse {
+ max-height: 200px;
+ }
+}
+.container > .navbar-header,
+.container-fluid > .navbar-header,
+.container > .navbar-collapse,
+.container-fluid > .navbar-collapse {
+ margin-right: -15px;
+ margin-left: -15px;
+}
+@media (min-width: 768px) {
+ .container > .navbar-header,
+ .container-fluid > .navbar-header,
+ .container > .navbar-collapse,
+ .container-fluid > .navbar-collapse {
+ margin-right: 0;
+ margin-left: 0;
+ }
+}
+.navbar-static-top {
+ z-index: 1000;
+ border-width: 0 0 1px;
+}
+@media (min-width: 768px) {
+ .navbar-static-top {
+ border-radius: 0;
+ }
+}
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+ position: fixed;
+ right: 0;
+ left: 0;
+ z-index: 1030;
+}
+@media (min-width: 768px) {
+ .navbar-fixed-top,
+ .navbar-fixed-bottom {
+ border-radius: 0;
+ }
+}
+.navbar-fixed-top {
+ top: 0;
+ border-width: 0 0 1px;
+}
+.navbar-fixed-bottom {
+ bottom: 0;
+ margin-bottom: 0;
+ border-width: 1px 0 0;
+}
+.navbar-brand {
+ float: left;
+ padding: 15px 15px;
+ font-size: 18px;
+ line-height: 20px;
+ height: 50px;
+}
+.navbar-brand:hover,
+.navbar-brand:focus {
+ text-decoration: none;
+}
+.navbar-brand > img {
+ display: block;
+}
+@media (min-width: 768px) {
+ .navbar > .container .navbar-brand,
+ .navbar > .container-fluid .navbar-brand {
+ margin-left: -15px;
+ }
+}
+.navbar-toggle {
+ position: relative;
+ float: right;
+ margin-right: 15px;
+ padding: 9px 10px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+ background-color: transparent;
+ background-image: none;
+ border: 1px solid transparent;
+ border-radius: 4px;
+}
+.navbar-toggle:focus {
+ outline: 0;
+}
+.navbar-toggle .icon-bar {
+ display: block;
+ width: 22px;
+ height: 2px;
+ border-radius: 1px;
+}
+.navbar-toggle .icon-bar + .icon-bar {
+ margin-top: 4px;
+}
+@media (min-width: 768px) {
+ .navbar-toggle {
+ display: none;
+ }
+}
+.navbar-nav {
+ margin: 7.5px -15px;
+}
+.navbar-nav > li > a {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ line-height: 20px;
+}
+@media (max-width: 767px) {
+ .navbar-nav .open .dropdown-menu {
+ position: static;
+ float: none;
+ width: auto;
+ margin-top: 0;
+ background-color: transparent;
+ border: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+ .navbar-nav .open .dropdown-menu > li > a,
+ .navbar-nav .open .dropdown-menu .dropdown-header {
+ padding: 5px 15px 5px 25px;
+ }
+ .navbar-nav .open .dropdown-menu > li > a {
+ line-height: 20px;
+ }
+ .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-nav .open .dropdown-menu > li > a:focus {
+ background-image: none;
+ }
+}
+@media (min-width: 768px) {
+ .navbar-nav {
+ float: left;
+ margin: 0;
+ }
+ .navbar-nav > li {
+ float: left;
+ }
+ .navbar-nav > li > a {
+ padding-top: 15px;
+ padding-bottom: 15px;
+ }
+}
+.navbar-form {
+ margin-left: -15px;
+ margin-right: -15px;
+ padding: 10px 15px;
+ border-top: 1px solid transparent;
+ border-bottom: 1px solid transparent;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+ margin-top: 6px;
+ margin-bottom: 6px;
+}
+@media (min-width: 768px) {
+ .navbar-form .form-group {
+ display: inline-block;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle;
+ }
+ .navbar-form .form-control-static {
+ display: inline-block;
+ }
+ .navbar-form .input-group {
+ display: inline-table;
+ vertical-align: middle;
+ }
+ .navbar-form .input-group .input-group-addon,
+ .navbar-form .input-group .input-group-btn,
+ .navbar-form .input-group .form-control {
+ width: auto;
+ }
+ .navbar-form .input-group > .form-control {
+ width: 100%;
+ }
+ .navbar-form .control-label {
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .radio,
+ .navbar-form .checkbox {
+ display: inline-block;
+ margin-top: 0;
+ margin-bottom: 0;
+ vertical-align: middle;
+ }
+ .navbar-form .radio label,
+ .navbar-form .checkbox label {
+ padding-left: 0;
+ }
+ .navbar-form .radio input[type="radio"],
+ .navbar-form .checkbox input[type="checkbox"] {
+ position: relative;
+ margin-left: 0;
+ }
+ .navbar-form .has-feedback .form-control-feedback {
+ top: 0;
+ }
+}
+@media (max-width: 767px) {
+ .navbar-form .form-group {
+ margin-bottom: 5px;
+ }
+ .navbar-form .form-group:last-child {
+ margin-bottom: 0;
+ }
+}
+@media (min-width: 768px) {
+ .navbar-form {
+ width: auto;
+ border: 0;
+ margin-left: 0;
+ margin-right: 0;
+ padding-top: 0;
+ padding-bottom: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+}
+.navbar-nav > li > .dropdown-menu {
+ margin-top: 0;
+ border-top-right-radius: 0;
+ border-top-left-radius: 0;
+}
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+ margin-bottom: 0;
+ border-top-right-radius: 4px;
+ border-top-left-radius: 4px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.navbar-btn {
+ margin-top: 6px;
+ margin-bottom: 6px;
+}
+.navbar-btn.btn-sm {
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+.navbar-btn.btn-xs {
+ margin-top: 14px;
+ margin-bottom: 14px;
+}
+.navbar-text {
+ margin-top: 15px;
+ margin-bottom: 15px;
+}
+@media (min-width: 768px) {
+ .navbar-text {
+ float: left;
+ margin-left: 15px;
+ margin-right: 15px;
+ }
+}
+@media (min-width: 768px) {
+ .navbar-left {
+ float: left !important;
+ }
+ .navbar-right {
+ float: right !important;
+ margin-right: -15px;
+ }
+ .navbar-right ~ .navbar-right {
+ margin-right: 0;
+ }
+}
+.navbar-default {
+ background-color: #dd4814;
+ border-color: #bf3e11;
+}
+.navbar-default .navbar-brand {
+ color: #ffffff;
+}
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+ color: #ffffff;
+ background-color: none;
+}
+.navbar-default .navbar-text {
+ color: #ffffff;
+}
+.navbar-default .navbar-nav > li > a {
+ color: #ffffff;
+}
+.navbar-default .navbar-nav > li > a:hover,
+.navbar-default .navbar-nav > li > a:focus {
+ color: #ffffff;
+ background-color: #97310e;
+}
+.navbar-default .navbar-nav > .active > a,
+.navbar-default .navbar-nav > .active > a:hover,
+.navbar-default .navbar-nav > .active > a:focus {
+ color: #ffffff;
+ background-color: #ae3910;
+}
+.navbar-default .navbar-nav > .disabled > a,
+.navbar-default .navbar-nav > .disabled > a:hover,
+.navbar-default .navbar-nav > .disabled > a:focus {
+ color: #cccccc;
+ background-color: transparent;
+}
+.navbar-default .navbar-toggle {
+ border-color: #97310e;
+}
+.navbar-default .navbar-toggle:hover,
+.navbar-default .navbar-toggle:focus {
+ background-color: #97310e;
+}
+.navbar-default .navbar-toggle .icon-bar {
+ background-color: #ffffff;
+}
+.navbar-default .navbar-collapse,
+.navbar-default .navbar-form {
+ border-color: #bf3e11;
+}
+.navbar-default .navbar-nav > .open > a,
+.navbar-default .navbar-nav > .open > a:hover,
+.navbar-default .navbar-nav > .open > a:focus {
+ background-color: #ae3910;
+ color: #ffffff;
+}
+@media (max-width: 767px) {
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+ color: #ffffff;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+ color: #ffffff;
+ background-color: #97310e;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+ color: #ffffff;
+ background-color: #ae3910;
+ }
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+ color: #cccccc;
+ background-color: transparent;
+ }
+}
+.navbar-default .navbar-link {
+ color: #ffffff;
+}
+.navbar-default .navbar-link:hover {
+ color: #ffffff;
+}
+.navbar-default .btn-link {
+ color: #ffffff;
+}
+.navbar-default .btn-link:hover,
+.navbar-default .btn-link:focus {
+ color: #ffffff;
+}
+.navbar-default .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-default .btn-link:hover,
+.navbar-default .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-default .btn-link:focus {
+ color: #cccccc;
+}
+.navbar-inverse {
+ background-color: #772953;
+ border-color: #511c39;
+}
+.navbar-inverse .navbar-brand {
+ color: #ffffff;
+}
+.navbar-inverse .navbar-brand:hover,
+.navbar-inverse .navbar-brand:focus {
+ color: #ffffff;
+ background-color: none;
+}
+.navbar-inverse .navbar-text {
+ color: #ffffff;
+}
+.navbar-inverse .navbar-nav > li > a {
+ color: #ffffff;
+}
+.navbar-inverse .navbar-nav > li > a:hover,
+.navbar-inverse .navbar-nav > li > a:focus {
+ color: #ffffff;
+ background-color: #3e152b;
+}
+.navbar-inverse .navbar-nav > .active > a,
+.navbar-inverse .navbar-nav > .active > a:hover,
+.navbar-inverse .navbar-nav > .active > a:focus {
+ color: #ffffff;
+ background-color: #511c39;
+}
+.navbar-inverse .navbar-nav > .disabled > a,
+.navbar-inverse .navbar-nav > .disabled > a:hover,
+.navbar-inverse .navbar-nav > .disabled > a:focus {
+ color: #cccccc;
+ background-color: transparent;
+}
+.navbar-inverse .navbar-toggle {
+ border-color: #3e152b;
+}
+.navbar-inverse .navbar-toggle:hover,
+.navbar-inverse .navbar-toggle:focus {
+ background-color: #3e152b;
+}
+.navbar-inverse .navbar-toggle .icon-bar {
+ background-color: #ffffff;
+}
+.navbar-inverse .navbar-collapse,
+.navbar-inverse .navbar-form {
+ border-color: #5c2040;
+}
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .open > a:hover,
+.navbar-inverse .navbar-nav > .open > a:focus {
+ background-color: #511c39;
+ color: #ffffff;
+}
+@media (max-width: 767px) {
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+ border-color: #511c39;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+ background-color: #511c39;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+ color: #ffffff;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+ color: #ffffff;
+ background-color: #3e152b;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+ color: #ffffff;
+ background-color: #511c39;
+ }
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+ color: #cccccc;
+ background-color: transparent;
+ }
+}
+.navbar-inverse .navbar-link {
+ color: #ffffff;
+}
+.navbar-inverse .navbar-link:hover {
+ color: #ffffff;
+}
+.navbar-inverse .btn-link {
+ color: #ffffff;
+}
+.navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link:focus {
+ color: #ffffff;
+}
+.navbar-inverse .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-inverse .btn-link:focus {
+ color: #cccccc;
+}
+.breadcrumb {
+ padding: 8px 15px;
+ margin-bottom: 20px;
+ list-style: none;
+ background-color: #f5f5f5;
+ border-radius: 4px;
+}
+.breadcrumb > li {
+ display: inline-block;
+}
+.breadcrumb > li + li:before {
+ content: "/\00a0";
+ padding: 0 5px;
+ color: #cccccc;
+}
+.breadcrumb > .active {
+ color: #aea79f;
+}
+.pagination {
+ display: inline-block;
+ padding-left: 0;
+ margin: 20px 0;
+ border-radius: 4px;
+}
+.pagination > li {
+ display: inline;
+}
+.pagination > li > a,
+.pagination > li > span {
+ position: relative;
+ float: left;
+ padding: 8px 12px;
+ line-height: 1.42857143;
+ text-decoration: none;
+ color: #dd4814;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ margin-left: -1px;
+}
+.pagination > li:first-child > a,
+.pagination > li:first-child > span {
+ margin-left: 0;
+ border-bottom-left-radius: 4px;
+ border-top-left-radius: 4px;
+}
+.pagination > li:last-child > a,
+.pagination > li:last-child > span {
+ border-bottom-right-radius: 4px;
+ border-top-right-radius: 4px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus {
+ color: #97310e;
+ background-color: #eeeeee;
+ border-color: #dddddd;
+}
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+ z-index: 2;
+ color: #aea79f;
+ background-color: #f5f5f5;
+ border-color: #dddddd;
+ cursor: default;
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+ color: #aea79f;
+ background-color: #ffffff;
+ border-color: #dddddd;
+ cursor: not-allowed;
+}
+.pagination-lg > li > a,
+.pagination-lg > li > span {
+ padding: 14px 16px;
+ font-size: 18px;
+}
+.pagination-lg > li:first-child > a,
+.pagination-lg > li:first-child > span {
+ border-bottom-left-radius: 6px;
+ border-top-left-radius: 6px;
+}
+.pagination-lg > li:last-child > a,
+.pagination-lg > li:last-child > span {
+ border-bottom-right-radius: 6px;
+ border-top-right-radius: 6px;
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+ padding: 5px 10px;
+ font-size: 12px;
+}
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+ border-bottom-left-radius: 3px;
+ border-top-left-radius: 3px;
+}
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+ border-bottom-right-radius: 3px;
+ border-top-right-radius: 3px;
+}
+.pager {
+ padding-left: 0;
+ margin: 20px 0;
+ list-style: none;
+ text-align: center;
+}
+.pager li {
+ display: inline;
+}
+.pager li > a,
+.pager li > span {
+ display: inline-block;
+ padding: 5px 14px;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ border-radius: 15px;
+}
+.pager li > a:hover,
+.pager li > a:focus {
+ text-decoration: none;
+ background-color: #eeeeee;
+}
+.pager .next > a,
+.pager .next > span {
+ float: right;
+}
+.pager .previous > a,
+.pager .previous > span {
+ float: left;
+}
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > span {
+ color: #aea79f;
+ background-color: #ffffff;
+ cursor: not-allowed;
+}
+.label {
+ display: inline;
+ padding: .2em .6em .3em;
+ font-size: 75%;
+ font-weight: bold;
+ line-height: 1;
+ color: #ffffff;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: .25em;
+}
+a.label:hover,
+a.label:focus {
+ color: #ffffff;
+ text-decoration: none;
+ cursor: pointer;
+}
+.label:empty {
+ display: none;
+}
+.btn .label {
+ position: relative;
+ top: -1px;
+}
+.label-default {
+ background-color: #aea79f;
+}
+.label-default[href]:hover,
+.label-default[href]:focus {
+ background-color: #978e83;
+}
+.label-primary {
+ background-color: #dd4814;
+}
+.label-primary[href]:hover,
+.label-primary[href]:focus {
+ background-color: #ae3910;
+}
+.label-success {
+ background-color: #38b44a;
+}
+.label-success[href]:hover,
+.label-success[href]:focus {
+ background-color: #2c8d3a;
+}
+.label-info {
+ background-color: #772953;
+}
+.label-info[href]:hover,
+.label-info[href]:focus {
+ background-color: #511c39;
+}
+.label-warning {
+ background-color: #efb73e;
+}
+.label-warning[href]:hover,
+.label-warning[href]:focus {
+ background-color: #e7a413;
+}
+.label-danger {
+ background-color: #df382c;
+}
+.label-danger[href]:hover,
+.label-danger[href]:focus {
+ background-color: #bc271c;
+}
+.badge {
+ display: inline-block;
+ min-width: 10px;
+ padding: 3px 7px;
+ font-size: 12px;
+ font-weight: bold;
+ color: #ffffff;
+ line-height: 1;
+ vertical-align: baseline;
+ white-space: nowrap;
+ text-align: center;
+ background-color: #aea79f;
+ border-radius: 10px;
+}
+.badge:empty {
+ display: none;
+}
+.btn .badge {
+ position: relative;
+ top: -1px;
+}
+.btn-xs .badge {
+ top: 0;
+ padding: 1px 5px;
+}
+a.badge:hover,
+a.badge:focus {
+ color: #ffffff;
+ text-decoration: none;
+ cursor: pointer;
+}
+.list-group-item.active > .badge,
+.nav-pills > .active > a > .badge {
+ color: #dd4814;
+ background-color: #ffffff;
+}
+.list-group-item > .badge {
+ float: right;
+}
+.list-group-item > .badge + .badge {
+ margin-right: 5px;
+}
+.nav-pills > li > a > .badge {
+ margin-left: 3px;
+}
+.jumbotron {
+ padding: 30px 15px;
+ margin-bottom: 30px;
+ color: inherit;
+ background-color: #eeeeee;
+}
+.jumbotron h1,
+.jumbotron .h1 {
+ color: inherit;
+}
+.jumbotron p {
+ margin-bottom: 15px;
+ font-size: 21px;
+ font-weight: 200;
+}
+.jumbotron > hr {
+ border-top-color: #d5d5d5;
+}
+.container .jumbotron,
+.container-fluid .jumbotron {
+ border-radius: 6px;
+}
+.jumbotron .container {
+ max-width: 100%;
+}
+@media screen and (min-width: 768px) {
+ .jumbotron {
+ padding: 48px 0;
+ }
+ .container .jumbotron,
+ .container-fluid .jumbotron {
+ padding-left: 60px;
+ padding-right: 60px;
+ }
+ .jumbotron h1,
+ .jumbotron .h1 {
+ font-size: 63px;
+ }
+}
+.thumbnail {
+ display: block;
+ padding: 4px;
+ margin-bottom: 20px;
+ line-height: 1.42857143;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
+ border-radius: 4px;
+ -webkit-transition: border 0.2s ease-in-out;
+ -o-transition: border 0.2s ease-in-out;
+ transition: border 0.2s ease-in-out;
+}
+.thumbnail > img,
+.thumbnail a > img {
+ margin-left: auto;
+ margin-right: auto;
+}
+a.thumbnail:hover,
+a.thumbnail:focus,
+a.thumbnail.active {
+ border-color: #dd4814;
+}
+.thumbnail .caption {
+ padding: 9px;
+ color: #333333;
+}
+.alert {
+ padding: 15px;
+ margin-bottom: 20px;
+ border: 1px solid transparent;
+ border-radius: 4px;
+}
+.alert h4 {
+ margin-top: 0;
+ color: inherit;
+}
+.alert .alert-link {
+ font-weight: bold;
+}
+.alert > p,
+.alert > ul {
+ margin-bottom: 0;
+}
+.alert > p + p {
+ margin-top: 5px;
+}
+.alert-dismissable,
+.alert-dismissible {
+ padding-right: 35px;
+}
+.alert-dismissable .close,
+.alert-dismissible .close {
+ position: relative;
+ top: -2px;
+ right: -21px;
+ color: inherit;
}
-a:visited {
- text-decoration: none;
+.alert-success {
+ background-color: #dff0d8;
+ border-color: #d6e9c6;
+ color: #468847;
}
-a:hover {
- text-decoration: none;
- color: #FD6600;
+.alert-success hr {
+ border-top-color: #c9e2b3;
}
-a:active {
- text-decoration: none;
- color : #3757f7;
+.alert-success .alert-link {
+ color: #356635;
}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- -webkit-border-radius: 0px;
- -moz-border-radius: 02px;
- border-radius: 0px;
- border: none;
- background: #00a9e0; /* Old browsers */
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #178ACC;
- border-right-color: #178ACC;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: #178ACC;
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-.dropdown-menu{
- top: 50px;
-}
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
+.alert-info {
+ background-color: #d9edf7;
+ border-color: #bce8f1;
+ color: #3a87ad;
}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
+.alert-info hr {
+ border-top-color: #a6e1ec;
}
-.logout img{
- padding-top: 7px;
+.alert-info .alert-link {
+ color: #2d6987;
}
-.form-actions {
- background:transparent;
+.alert-warning {
+ background-color: #fcf8e3;
+ border-color: #fbeed5;
+ color: #c09853;
}
-
-.breadcrumb a{
- text-transform: none;
+.alert-warning hr {
+ border-top-color: #f8e5be;
}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
+.alert-warning .alert-link {
+ color: #a47e3c;
}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
+.alert-danger {
+ background-color: #f2dede;
+ border-color: #eed3d7;
+ color: #b94a48;
}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
+.alert-danger hr {
+ border-top-color: #e6c1c7;
}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
+.alert-danger .alert-link {
+ color: #953b39;
}
-#top_main_content #announcements .span6 {
- width: 800px;
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-
-.fc-header-title h2{
- color: #0191C7;
+@-o-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
+@keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+ to {
+ background-position: 0 0;
+ }
}
-
-.well {
- background-color: rgba(255,255,255, 0.1);
- border: 1px solid #EAEAEA;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09) inset;
+.progress {
+ overflow: hidden;
+ height: 20px;
margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
+ background-color: #f5f5f5;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+}
+.progress-bar {
+ float: left;
+ width: 0%;
+ height: 100%;
+ font-size: 12px;
+ line-height: 20px;
+ color: #ffffff;
+ text-align: center;
+ background-color: #dd4814;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+ -webkit-transition: width 0.6s ease;
+ -o-transition: width 0.6s ease;
+ transition: width 0.6s ease;
+}
+.progress-striped .progress-bar,
+.progress-bar-striped {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ -webkit-background-size: 40px 40px;
+ background-size: 40px 40px;
+}
+.progress.active .progress-bar,
+.progress-bar.active {
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
+ -o-animation: progress-bar-stripes 2s linear infinite;
+ animation: progress-bar-stripes 2s linear infinite;
+}
+.progress-bar-success {
+ background-color: #38b44a;
+}
+.progress-striped .progress-bar-success {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+.progress-bar-info {
+ background-color: #772953;
+}
+.progress-striped .progress-bar-info {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+.progress-bar-warning {
+ background-color: #efb73e;
+}
+.progress-striped .progress-bar-warning {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+.progress-bar-danger {
+ background-color: #df382c;
+}
+.progress-striped .progress-bar-danger {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+}
+.media {
+ margin-top: 15px;
+}
+.media:first-child {
+ margin-top: 0;
}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
+.media,
+.media-body {
+ zoom: 1;
+ overflow: hidden;
}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
+.media-body {
+ width: 10000px;
}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
+.media-object {
+ display: block;
}
-#homepage .row .span9 a{
- color: #0F466A;
+.media-right,
+.media > .pull-right {
+ padding-left: 10px;
}
-#homepage .row .span9 a:hover{
- color: #FD6600;
+.media-left,
+.media > .pull-left {
+ padding-right: 10px;
}
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
+.media-left,
+.media-right,
+.media-body {
+ display: table-cell;
+ vertical-align: top;
}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
+.media-middle {
+ vertical-align: middle;
}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
+.media-bottom {
+ vertical-align: bottom;
}
-.well_border{
- background-color: rgba(255,255,255, 0.1);
- border: 1px solid #EAEAEA;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
+.media-heading {
+ margin-top: 0;
+ margin-bottom: 5px;
+}
+.media-list {
+ padding-left: 0;
+ list-style: none;
+}
+.list-group {
margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
+ padding-left: 0;
+}
+.list-group-item {
+ position: relative;
+ display: block;
+ padding: 10px 15px;
+ margin-bottom: -1px;
+ background-color: #ffffff;
+ border: 1px solid #dddddd;
}
-.well_border .row .span2 {
- width: 98px;
+.list-group-item:first-child {
+ border-top-right-radius: 4px;
+ border-top-left-radius: 4px;
}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
+.list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom-right-radius: 4px;
+ border-bottom-left-radius: 4px;
}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
+a.list-group-item {
+ color: #555555;
}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
+a.list-group-item .list-group-item-heading {
+ color: #333333;
}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
+a.list-group-item:hover,
+a.list-group-item:focus {
+ text-decoration: none;
+ color: #555555;
+ background-color: #f5f5f5;
+}
+.list-group-item.disabled,
+.list-group-item.disabled:hover,
+.list-group-item.disabled:focus {
+ background-color: #eeeeee;
+ color: #aea79f;
+ cursor: not-allowed;
+}
+.list-group-item.disabled .list-group-item-heading,
+.list-group-item.disabled:hover .list-group-item-heading,
+.list-group-item.disabled:focus .list-group-item-heading {
+ color: inherit;
+}
+.list-group-item.disabled .list-group-item-text,
+.list-group-item.disabled:hover .list-group-item-text,
+.list-group-item.disabled:focus .list-group-item-text {
+ color: #aea79f;
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+ z-index: 2;
+ color: #ffffff;
+ background-color: #dd4814;
+ border-color: #dd4814;
+}
+.list-group-item.active .list-group-item-heading,
+.list-group-item.active:hover .list-group-item-heading,
+.list-group-item.active:focus .list-group-item-heading,
+.list-group-item.active .list-group-item-heading > small,
+.list-group-item.active:hover .list-group-item-heading > small,
+.list-group-item.active:focus .list-group-item-heading > small,
+.list-group-item.active .list-group-item-heading > .small,
+.list-group-item.active:hover .list-group-item-heading > .small,
+.list-group-item.active:focus .list-group-item-heading > .small {
+ color: inherit;
+}
+.list-group-item.active .list-group-item-text,
+.list-group-item.active:hover .list-group-item-text,
+.list-group-item.active:focus .list-group-item-text {
+ color: #fad1c3;
+}
+.list-group-item-success {
+ color: #468847;
+ background-color: #dff0d8;
}
-#main_content .course-box .row .span7{
- width: 730px;
+a.list-group-item-success {
+ color: #468847;
}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
+a.list-group-item-success .list-group-item-heading {
+ color: inherit;
}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
+a.list-group-item-success:hover,
+a.list-group-item-success:focus {
+ color: #468847;
+ background-color: #d0e9c6;
+}
+a.list-group-item-success.active,
+a.list-group-item-success.active:hover,
+a.list-group-item-success.active:focus {
+ color: #fff;
+ background-color: #468847;
+ border-color: #468847;
+}
+.list-group-item-info {
+ color: #3a87ad;
+ background-color: #d9edf7;
+}
+a.list-group-item-info {
+ color: #3a87ad;
+}
+a.list-group-item-info .list-group-item-heading {
+ color: inherit;
+}
+a.list-group-item-info:hover,
+a.list-group-item-info:focus {
+ color: #3a87ad;
+ background-color: #c4e3f3;
+}
+a.list-group-item-info.active,
+a.list-group-item-info.active:hover,
+a.list-group-item-info.active:focus {
+ color: #fff;
+ background-color: #3a87ad;
+ border-color: #3a87ad;
+}
+.list-group-item-warning {
+ color: #c09853;
+ background-color: #fcf8e3;
+}
+a.list-group-item-warning {
+ color: #c09853;
+}
+a.list-group-item-warning .list-group-item-heading {
+ color: inherit;
+}
+a.list-group-item-warning:hover,
+a.list-group-item-warning:focus {
+ color: #c09853;
+ background-color: #faf2cc;
+}
+a.list-group-item-warning.active,
+a.list-group-item-warning.active:hover,
+a.list-group-item-warning.active:focus {
+ color: #fff;
+ background-color: #c09853;
+ border-color: #c09853;
+}
+.list-group-item-danger {
+ color: #b94a48;
+ background-color: #f2dede;
+}
+a.list-group-item-danger {
+ color: #b94a48;
+}
+a.list-group-item-danger .list-group-item-heading {
+ color: inherit;
+}
+a.list-group-item-danger:hover,
+a.list-group-item-danger:focus {
+ color: #b94a48;
+ background-color: #ebcccc;
+}
+a.list-group-item-danger.active,
+a.list-group-item-danger.active:hover,
+a.list-group-item-danger.active:focus {
+ color: #fff;
+ background-color: #b94a48;
+ border-color: #b94a48;
+}
+.list-group-item-heading {
+ margin-top: 0;
+ margin-bottom: 5px;
}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
+.list-group-item-text {
+ margin-bottom: 0;
+ line-height: 1.3;
}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
+.panel {
+ margin-bottom: 20px;
+ background-color: #ffffff;
+ border: 1px solid transparent;
+ border-radius: 4px;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
-
-#settings .span6 .well_border {
- min-height: 300px;
+.panel-body {
+ padding: 15px;
}
-
-.breadcrumb a{
- padding-top: 0;
- text-transform: none;
+.panel-heading {
+ padding: 10px 15px;
+ border-bottom: 1px solid transparent;
+ border-top-right-radius: 3px;
+ border-top-left-radius: 3px;
}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
+.panel-heading > .dropdown .dropdown-toggle {
+ color: inherit;
+}
+.panel-title {
+ margin-top: 0;
+ margin-bottom: 0;
+ font-size: 16px;
+ color: inherit;
+}
+.panel-title > a,
+.panel-title > small,
+.panel-title > .small,
+.panel-title > small > a,
+.panel-title > .small > a {
+ color: inherit;
+}
+.panel-footer {
+ padding: 10px 15px;
+ background-color: #f5f5f5;
+ border-top: 1px solid #dddddd;
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
+ margin-bottom: 0;
+}
+.panel > .list-group .list-group-item,
+.panel > .panel-collapse > .list-group .list-group-item {
+ border-width: 1px 0;
+ border-radius: 0;
}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
+.panel > .list-group:first-child .list-group-item:first-child,
+.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
+ border-top: 0;
+ border-top-right-radius: 3px;
+ border-top-left-radius: 3px;
}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
+.panel > .list-group:last-child .list-group-item:last-child,
+.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
+ border-bottom: 0;
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
}
-.star-rating a.one-star{
- left: 0px;
+.panel-heading + .list-group .list-group-item:first-child {
+ border-top-width: 0;
}
-.star-rating a.one-star:hover{
- width:25px;
+.list-group + .panel-footer {
+ border-top-width: 0;
}
-.star-rating a.two-stars{
- left:25px;
+.panel > .table,
+.panel > .table-responsive > .table,
+.panel > .panel-collapse > .table {
+ margin-bottom: 0;
+}
+.panel > .table caption,
+.panel > .table-responsive > .table caption,
+.panel > .panel-collapse > .table caption {
+ padding-left: 15px;
+ padding-right: 15px;
+}
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table:first-child {
+ border-top-right-radius: 3px;
+ border-top-left-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
+ border-top-left-radius: 3px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
+ border-top-right-radius: 3px;
+}
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table:last-child {
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+ border-bottom-left-radius: 3px;
+ border-bottom-right-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
+ border-bottom-left-radius: 3px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
+ border-bottom-right-radius: 3px;
+}
+.panel > .panel-body + .table,
+.panel > .panel-body + .table-responsive,
+.panel > .table + .panel-body,
+.panel > .table-responsive + .panel-body {
+ border-top: 1px solid #dddddd;
+}
+.panel > .table > tbody:first-child > tr:first-child th,
+.panel > .table > tbody:first-child > tr:first-child td {
+ border-top: 0;
+}
+.panel > .table-bordered,
+.panel > .table-responsive > .table-bordered {
+ border: 0;
+}
+.panel > .table-bordered > thead > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+.panel > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-bordered > thead > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+.panel > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-bordered > tfoot > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+ border-left: 0;
+}
+.panel > .table-bordered > thead > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+.panel > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-bordered > thead > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+.panel > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-bordered > tfoot > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+ border-right: 0;
+}
+.panel > .table-bordered > thead > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
+.panel > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-bordered > thead > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
+.panel > .table-bordered > tbody > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
+ border-bottom: 0;
+}
+.panel > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-bordered > tfoot > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
+ border-bottom: 0;
+}
+.panel > .table-responsive {
+ border: 0;
+ margin-bottom: 0;
}
-.star-rating a.two-stars:hover{
- width: 50px;
+.panel-group {
+ margin-bottom: 20px;
}
-.star-rating a.three-stars{
- left: 50px;
+.panel-group .panel {
+ margin-bottom: 0;
+ border-radius: 4px;
}
-.star-rating a.three-stars:hover{
- width: 75px;
+.panel-group .panel + .panel {
+ margin-top: 5px;
}
-.star-rating a.four-stars{
- left: 75px;
+.panel-group .panel-heading {
+ border-bottom: 0;
}
-.star-rating a.four-stars:hover{
- width: 100px;
+.panel-group .panel-heading + .panel-collapse > .panel-body,
+.panel-group .panel-heading + .panel-collapse > .list-group {
+ border-top: 1px solid #dddddd;
}
-.star-rating a.five-stars{
- left: 100px;
+.panel-group .panel-footer {
+ border-top: 0;
}
-.star-rating a.five-stars:hover{
- width: 125px;
+.panel-group .panel-footer + .panel-collapse .panel-body {
+ border-bottom: 1px solid #dddddd;
}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
+.panel-default {
+ border-color: #dddddd;
}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
+.panel-default > .panel-heading {
color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #E6E6E6;
- color: #666666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
+ background-color: #f5f5f5;
+ border-color: #dddddd;
}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 5px;
- border: none;
- /*-webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;*/
- margin-bottom: 5px;
+.panel-default > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #dddddd;
}
-.thumbnail > img {
- display: block;
- margin-left: auto;
- margin-right: auto;
- max-width: 100%;
- height: auto;
+.panel-default > .panel-heading .badge {
+ color: #f5f5f5;
+ background-color: #333333;
}
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
+.panel-default > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #dddddd;
}
-.page-course-intro a{
- color: #FD6600;
+.panel-primary {
+ border-color: #dd4814;
}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
+.panel-primary > .panel-heading {
+ color: #ffffff;
+ background-color: #dd4814;
+ border-color: #dd4814;
}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2, .page-header h1{
- color: #0191C7;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
+.panel-primary > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #dd4814;
}
-.page-header {
- border:none;
+.panel-primary > .panel-heading .badge {
+ color: #dd4814;
+ background-color: #ffffff;
}
-
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
+.panel-primary > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #dd4814;
}
-.categories-course-description h3{
- color: #0F466A;
+.panel-success {
+ border-color: #d6e9c6;
}
-.categories-course-description .text-h3{
- color: #0F466A;
+.panel-success > .panel-heading {
+ color: #468847;
+ background-color: #dff0d8;
+ border-color: #d6e9c6;
}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
+.panel-success > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #d6e9c6;
}
-#main_content .course-box .row .span7{
- width: 730px;
+.panel-success > .panel-heading .badge {
+ color: #dff0d8;
+ background-color: #468847;
}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
+.panel-success > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #d6e9c6;
}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
+.panel-info {
+ border-color: #bce8f1;
}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
+.panel-info > .panel-heading {
+ color: #3a87ad;
+ background-color: #d9edf7;
+ border-color: #bce8f1;
}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: auto;
- background: #00a9e0; /* Old browsers */
- color:#ffffff;
- border-top: none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
+.panel-info > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #bce8f1;
}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
+.panel-info > .panel-heading .badge {
+ color: #d9edf7;
+ background-color: #3a87ad;
}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
+.panel-info > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #bce8f1;
}
-.error-message strong{
- font-weight: normal;
+.panel-warning {
+ border-color: #fbeed5;
+}
+.panel-warning > .panel-heading {
+ color: #c09853;
+ background-color: #fcf8e3;
+ border-color: #fbeed5;
+}
+.panel-warning > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #fbeed5;
}
-.social-menu-title {
- background-color:#00AAE3;
+.panel-warning > .panel-heading .badge {
+ color: #fcf8e3;
+ background-color: #c09853;
}
-
-#social-content-online {
- background-color:#00AAE3;
+.panel-warning > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #fbeed5;
}
-.admin_section li {
- background-image:url(images/bullet.gif);
+.panel-danger {
+ border-color: #eed3d7;
}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
+.panel-danger > .panel-heading {
+ color: #b94a48;
+ background-color: #f2dede;
+ border-color: #eed3d7;
}
-
-.user_login_icon{
- background: url(images/user_icon.png) no-repeat 5px center;
+.panel-danger > .panel-heading + .panel-collapse > .panel-body {
+ border-top-color: #eed3d7;
+}
+.panel-danger > .panel-heading .badge {
+ color: #f2dede;
+ background-color: #b94a48;
+}
+.panel-danger > .panel-footer + .panel-collapse > .panel-body {
+ border-bottom-color: #eed3d7;
+}
+.embed-responsive {
+ position: relative;
+ display: block;
+ height: 0;
+ padding: 0;
+ overflow: hidden;
+}
+.embed-responsive .embed-responsive-item,
+.embed-responsive iframe,
+.embed-responsive embed,
+.embed-responsive object,
+.embed-responsive video {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ height: 100%;
+ width: 100%;
+ border: 0;
+}
+.embed-responsive.embed-responsive-16by9 {
+ padding-bottom: 56.25%;
+}
+.embed-responsive.embed-responsive-4by3 {
+ padding-bottom: 75%;
+}
+.well {
+ min-height: 20px;
+ padding: 19px;
+ margin-bottom: 20px;
+ background-color: #f5f5f5;
+ border: 1px solid #e3e3e3;
+ border-radius: 4px;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
-.user_password_icon{
- background: url(images/user_password.png) no-repeat 5px center;
+.well blockquote {
+ border-color: #ddd;
+ border-color: rgba(0, 0, 0, 0.15);
}
-.form-vertical .controls input.span2{
- padding-left: 25px;
+.well-lg {
+ padding: 24px;
+ border-radius: 6px;
}
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
+.well-sm {
+ padding: 9px;
+ border-radius: 3px;
}
-
-button.login:hover {
+.close {
+ float: right;
+ font-size: 21px;
+ font-weight: bold;
+ line-height: 1;
+ color: #000000;
+ text-shadow: 0 1px 0 #ffffff;
+ opacity: 0.2;
+ filter: alpha(opacity=20);
+}
+.close:hover,
+.close:focus {
+ color: #000000;
+ text-decoration: none;
+ cursor: pointer;
+ opacity: 0.5;
+ filter: alpha(opacity=50);
}
-
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.png);
+button.close {
+ padding: 0;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
}
-/*including "add" image*/
-.controls .btn.add {
- background-image:url(images/button_plus_green.png);
- padding-left: 36px;
+.modal-open {
+ overflow: hidden;
}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
+.modal {
+ display: none;
+ overflow: hidden;
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1040;
+ -webkit-overflow-scrolling: touch;
+ outline: 0;
+}
+.modal.fade .modal-dialog {
+ -webkit-transform: translate(0, -25%);
+ -ms-transform: translate(0, -25%);
+ -o-transform: translate(0, -25%);
+ transform: translate(0, -25%);
+ -webkit-transition: -webkit-transform 0.3s ease-out;
+ -o-transition: -o-transform 0.3s ease-out;
+ transition: transform 0.3s ease-out;
+}
+.modal.in .modal-dialog {
+ -webkit-transform: translate(0, 0);
+ -ms-transform: translate(0, 0);
+ -o-transform: translate(0, 0);
+ transform: translate(0, 0);
+}
+.modal-open .modal {
+ overflow-x: hidden;
+ overflow-y: auto;
+}
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: 10px;
}
-/*including "search" image*/
-button.search {
- background-image:url(images/bg-button.png);
+.modal-content {
+ position: relative;
+ background-color: #ffffff;
+ border: 1px solid #999999;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 6px;
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ outline: 0;
+}
+.modal-backdrop {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ background-color: #000000;
+}
+.modal-backdrop.fade {
+ opacity: 0;
+ filter: alpha(opacity=0);
+}
+.modal-backdrop.in {
+ opacity: 0.5;
+ filter: alpha(opacity=50);
+}
+.modal-header {
+ padding: 15px;
+ border-bottom: 1px solid #e5e5e5;
+ min-height: 16.42857143px;
+}
+.modal-header .close {
+ margin-top: -2px;
+}
+.modal-title {
+ margin: 0;
+ line-height: 1.42857143;
+}
+.modal-body {
+ position: relative;
+ padding: 20px;
}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus_blue.png);
+.modal-footer {
+ padding: 20px;
+ text-align: right;
+ border-top: 1px solid #e5e5e5;
}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.png);
+.modal-footer .btn + .btn {
+ margin-left: 5px;
+ margin-bottom: 0;
}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
+.modal-footer .btn-group .btn + .btn {
+ margin-left: -1px;
}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
+.modal-footer .btn-block + .btn-block {
+ margin-left: 0;
}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
+.modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll;
}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
+@media (min-width: 768px) {
+ .modal-dialog {
+ width: 600px;
+ margin: 30px auto;
+ }
+ .modal-content {
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+ }
+ .modal-sm {
+ width: 300px;
+ }
}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
+@media (min-width: 992px) {
+ .modal-lg {
+ width: 900px;
+ }
}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
+.tooltip {
+ position: absolute;
+ z-index: 1070;
+ display: block;
+ visibility: visible;
+ font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 12px;
+ font-weight: normal;
+ line-height: 1.4;
+ opacity: 0;
+ filter: alpha(opacity=0);
}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
+.tooltip.in {
+ opacity: 0.9;
+ filter: alpha(opacity=90);
}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
+.tooltip.top {
+ margin-top: -3px;
+ padding: 5px 0;
}
-.refresh {
- background-image:url(images/refresh.png);
+.tooltip.right {
+ margin-left: 3px;
+ padding: 0 5px;
}
-
-.portal {
- background-image:url(images/portal.png);
+.tooltip.bottom {
+ margin-top: 3px;
+ padding: 5px 0;
}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
+.tooltip.left {
+ margin-left: -3px;
+ padding: 0 5px;
}
-.install-chamilo .navbar{
+.tooltip-inner {
+ max-width: 200px;
+ padding: 3px 8px;
+ color: #ffffff;
+ text-align: center;
+ text-decoration: none;
+ background-color: #000000;
+ border-radius: 4px;
+}
+.tooltip-arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
+}
+.tooltip.top .tooltip-arrow {
+ bottom: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000000;
+}
+.tooltip.top-left .tooltip-arrow {
+ bottom: 0;
+ right: 5px;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000000;
+}
+.tooltip.top-right .tooltip-arrow {
+ bottom: 0;
+ left: 5px;
+ margin-bottom: -5px;
+ border-width: 5px 5px 0;
+ border-top-color: #000000;
+}
+.tooltip.right .tooltip-arrow {
+ top: 50%;
+ left: 0;
+ margin-top: -5px;
+ border-width: 5px 5px 5px 0;
+ border-right-color: #000000;
+}
+.tooltip.left .tooltip-arrow {
+ top: 50%;
+ right: 0;
+ margin-top: -5px;
+ border-width: 5px 0 5px 5px;
+ border-left-color: #000000;
+}
+.tooltip.bottom .tooltip-arrow {
+ top: 0;
+ left: 50%;
+ margin-left: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000000;
+}
+.tooltip.bottom-left .tooltip-arrow {
+ top: 0;
+ right: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000000;
+}
+.tooltip.bottom-right .tooltip-arrow {
+ top: 0;
+ left: 5px;
+ margin-top: -5px;
+ border-width: 0 5px 5px;
+ border-bottom-color: #000000;
+}
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
display: none;
+ max-width: 276px;
+ padding: 1px;
+ font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.42857143;
+ text-align: left;
+ background-color: #ffffff;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ border: 1px solid #cccccc;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 6px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ white-space: normal;
+}
+.popover.top {
+ margin-top: -10px;
+}
+.popover.right {
+ margin-left: 10px;
+}
+.popover.bottom {
+ margin-top: 10px;
+}
+.popover.left {
+ margin-left: -10px;
+}
+.popover-title {
+ margin: 0;
+ padding: 8px 14px;
+ font-size: 14px;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-radius: 5px 5px 0 0;
+}
+.popover-content {
+ padding: 9px 14px;
+}
+.popover > .arrow,
+.popover > .arrow:after {
+ position: absolute;
+ display: block;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
+}
+.popover > .arrow {
+ border-width: 11px;
+}
+.popover > .arrow:after {
+ border-width: 10px;
+ content: "";
+}
+.popover.top > .arrow {
+ left: 50%;
+ margin-left: -11px;
+ border-bottom-width: 0;
+ border-top-color: #999999;
+ border-top-color: rgba(0, 0, 0, 0.25);
+ bottom: -11px;
+}
+.popover.top > .arrow:after {
+ content: " ";
+ bottom: 1px;
+ margin-left: -10px;
+ border-bottom-width: 0;
+ border-top-color: #ffffff;
+}
+.popover.right > .arrow {
+ top: 50%;
+ left: -11px;
+ margin-top: -11px;
+ border-left-width: 0;
+ border-right-color: #999999;
+ border-right-color: rgba(0, 0, 0, 0.25);
+}
+.popover.right > .arrow:after {
+ content: " ";
+ left: 1px;
+ bottom: -10px;
+ border-left-width: 0;
+ border-right-color: #ffffff;
+}
+.popover.bottom > .arrow {
+ left: 50%;
+ margin-left: -11px;
+ border-top-width: 0;
+ border-bottom-color: #999999;
+ border-bottom-color: rgba(0, 0, 0, 0.25);
+ top: -11px;
+}
+.popover.bottom > .arrow:after {
+ content: " ";
+ top: 1px;
+ margin-left: -10px;
+ border-top-width: 0;
+ border-bottom-color: #ffffff;
+}
+.popover.left > .arrow {
+ top: 50%;
+ right: -11px;
+ margin-top: -11px;
+ border-right-width: 0;
+ border-left-color: #999999;
+ border-left-color: rgba(0, 0, 0, 0.25);
+}
+.popover.left > .arrow:after {
+ content: " ";
+ right: 1px;
+ border-right-width: 0;
+ border-left-color: #ffffff;
+ bottom: -10px;
+}
+.carousel {
+ position: relative;
}
-.install-chamilo footer{
+.carousel-inner {
+ position: relative;
+ overflow: hidden;
+ width: 100%;
+}
+.carousel-inner > .item {
display: none;
+ position: relative;
+ -webkit-transition: 0.6s ease-in-out left;
+ -o-transition: 0.6s ease-in-out left;
+ transition: 0.6s ease-in-out left;
+}
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+ line-height: 1;
+}
+@media all and (transform-3d), (-webkit-transform-3d) {
+ .carousel-inner > .item {
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
+ -o-transition: -o-transform 0.6s ease-in-out;
+ transition: transform 0.6s ease-in-out;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-perspective: 1000;
+ perspective: 1000;
+ }
+ .carousel-inner > .item.next,
+ .carousel-inner > .item.active.right {
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ left: 0;
+ }
+ .carousel-inner > .item.prev,
+ .carousel-inner > .item.active.left {
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ left: 0;
+ }
+ .carousel-inner > .item.next.left,
+ .carousel-inner > .item.prev.right,
+ .carousel-inner > .item.active {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ left: 0;
+ }
}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
+.carousel-inner > .active,
+.carousel-inner > .next,
+.carousel-inner > .prev {
+ display: block;
}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
+.carousel-inner > .active {
+ left: 0;
}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
+.carousel-inner > .next,
+.carousel-inner > .prev {
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+.carousel-inner > .next {
+ left: 100%;
+}
+.carousel-inner > .prev {
+ left: -100%;
+}
+.carousel-inner > .next.left,
+.carousel-inner > .prev.right {
+ left: 0;
}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
+.carousel-inner > .active.left {
+ left: -100%;
}
-.install-chamilo .page-header h2 {
- color: #FD6600;
+.carousel-inner > .active.right {
+ left: 100%;
+}
+.carousel-control {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 15%;
+ opacity: 0.5;
+ filter: alpha(opacity=50);
font-size: 20px;
- font-weight: bold;
+ color: #ffffff;
+ text-align: center;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+}
+.carousel-control.left {
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
+}
+.carousel-control.right {
+ left: auto;
+ right: 0;
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
+}
+.carousel-control:hover,
+.carousel-control:focus {
+ outline: 0;
+ color: #ffffff;
+ text-decoration: none;
+ opacity: 0.9;
+ filter: alpha(opacity=90);
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-left,
+.carousel-control .glyphicon-chevron-right {
+ position: absolute;
+ top: 50%;
+ z-index: 5;
+ display: inline-block;
+}
+.carousel-control .icon-prev,
+.carousel-control .glyphicon-chevron-left {
+ left: 50%;
+ margin-left: -10px;
+}
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-right {
+ right: 50%;
+ margin-right: -10px;
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next {
+ width: 20px;
+ height: 20px;
+ margin-top: -10px;
+ line-height: 1;
+ font-family: serif;
+}
+.carousel-control .icon-prev:before {
+ content: '\2039';
+}
+.carousel-control .icon-next:before {
+ content: '\203a';
+}
+.carousel-indicators {
+ position: absolute;
+ bottom: 10px;
+ left: 50%;
+ z-index: 15;
+ width: 60%;
+ margin-left: -30%;
padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
+ list-style: none;
+ text-align: center;
+}
+.carousel-indicators li {
+ display: inline-block;
+ width: 10px;
+ height: 10px;
+ margin: 1px;
+ text-indent: -999px;
+ border: 1px solid #ffffff;
+ border-radius: 10px;
+ cursor: pointer;
+ background-color: #000 \9;
+ background-color: rgba(0, 0, 0, 0);
+}
+.carousel-indicators .active {
+ margin: 0;
+ width: 12px;
+ height: 12px;
+ background-color: #ffffff;
+}
+.carousel-caption {
+ position: absolute;
+ left: 15%;
+ right: 15%;
+ bottom: 20px;
+ z-index: 10;
+ padding-top: 20px;
+ padding-bottom: 20px;
+ color: #ffffff;
+ text-align: center;
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+}
+.carousel-caption .btn {
+ text-shadow: none;
+}
+@media screen and (min-width: 768px) {
+ .carousel-control .glyphicon-chevron-left,
+ .carousel-control .glyphicon-chevron-right,
+ .carousel-control .icon-prev,
+ .carousel-control .icon-next {
+ width: 30px;
+ height: 30px;
+ margin-top: -15px;
+ font-size: 30px;
+ }
+ .carousel-control .glyphicon-chevron-left,
+ .carousel-control .icon-prev {
+ margin-left: -15px;
+ }
+ .carousel-control .glyphicon-chevron-right,
+ .carousel-control .icon-next {
+ margin-right: -15px;
+ }
+ .carousel-caption {
+ left: 20%;
+ right: 20%;
+ padding-bottom: 30px;
+ }
+ .carousel-indicators {
+ bottom: 20px;
+ }
}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
+.clearfix:before,
+.clearfix:after,
+.dl-horizontal dd:before,
+.dl-horizontal dd:after,
+.container:before,
+.container:after,
+.container-fluid:before,
+.container-fluid:after,
+.row:before,
+.row:after,
+.form-horizontal .form-group:before,
+.form-horizontal .form-group:after,
+.btn-toolbar:before,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:before,
+.btn-group-vertical > .btn-group:after,
+.nav:before,
+.nav:after,
+.navbar:before,
+.navbar:after,
+.navbar-header:before,
+.navbar-header:after,
+.navbar-collapse:before,
+.navbar-collapse:after,
+.pager:before,
+.pager:after,
+.panel-body:before,
+.panel-body:after,
+.modal-footer:before,
+.modal-footer:after {
+ content: " ";
+ display: table;
+}
+.clearfix:after,
+.dl-horizontal dd:after,
+.container:after,
+.container-fluid:after,
+.row:after,
+.form-horizontal .form-group:after,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:after,
+.nav:after,
+.navbar:after,
+.navbar-header:after,
+.navbar-collapse:after,
+.pager:after,
+.panel-body:after,
+.modal-footer:after {
+ clear: both;
+}
+.center-block {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #2bb8ef; /* Old browsers */
- background: -moz-linear-gradient(top, #2bb8ef 0%, #0191c7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2bb8ef), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2bb8ef 0%,#0191c7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2bb8ef', endColorstr='#0191c7',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .myfiles-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -287px;
- padding-left: 40px;
- }
-
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
+.pull-right {
+ float: right !important;
+}
+.pull-left {
+ float: left !important;
+}
+.hide {
+ display: none !important;
+}
+.show {
+ display: block !important;
+}
+.invisible {
+ visibility: hidden;
+}
+.text-hide {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+}
+.hidden {
+ display: none !important;
+ visibility: hidden !important;
+}
+.affix {
+ position: fixed;
+}
+@-ms-viewport {
+ width: device-width;
+}
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+ display: none !important;
+}
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+ display: none !important;
+}
+@media (max-width: 767px) {
+ .visible-xs {
+ display: block !important;
+ }
+ table.visible-xs {
+ display: table;
+ }
+ tr.visible-xs {
+ display: table-row !important;
+ }
+ th.visible-xs,
+ td.visible-xs {
+ display: table-cell !important;
+ }
}
-.navbar-inner{
- background: #00A9E0; /* Old browsers */
+@media (max-width: 767px) {
+ .visible-xs-block {
+ display: block !important;
+ }
}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
+@media (max-width: 767px) {
+ .visible-xs-inline {
+ display: inline !important;
+ }
}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
+@media (max-width: 767px) {
+ .visible-xs-inline-block {
+ display: inline-block !important;
+ }
}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm {
+ display: block !important;
+ }
+ table.visible-sm {
+ display: table;
+ }
+ tr.visible-sm {
+ display: table-row !important;
+ }
+ th.visible-sm,
+ td.visible-sm {
+ display: table-cell !important;
+ }
}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 10px;
- padding-top: 10px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
- .navbar .nav > li > a {
- float: none;
- line-height: 20px;
- padding-bottom: 7px;
- padding-right: 10px;
- padding-top: 7px;
- color: #FFFFFF;
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-block {
+ display: block !important;
+ }
}
-
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-inline {
+ display: inline !important;
+ }
}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
+@media (min-width: 768px) and (max-width: 991px) {
+ .visible-sm-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md {
+ display: block !important;
+ }
+ table.visible-md {
+ display: table;
+ }
+ tr.visible-md {
+ display: table-row !important;
+ }
+ th.visible-md,
+ td.visible-md {
+ display: table-cell !important;
+ }
}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-block {
+ display: block !important;
+ }
}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-inline {
+ display: inline !important;
+ }
}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .myfiles-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -240px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
+@media (min-width: 992px) and (max-width: 1199px) {
+ .visible-md-inline-block {
+ display: inline-block !important;
+ }
}
-#announcements{
- display: none;
+@media (min-width: 1200px) {
+ .visible-lg {
+ display: block !important;
+ }
+ table.visible-lg {
+ display: table;
+ }
+ tr.visible-lg {
+ display: table-row !important;
+ }
+ th.visible-lg,
+ td.visible-lg {
+ display: table-cell !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-block {
+ display: block !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-inline {
+ display: inline !important;
+ }
+}
+@media (min-width: 1200px) {
+ .visible-lg-inline-block {
+ display: inline-block !important;
+ }
+}
+@media (max-width: 767px) {
+ .hidden-xs {
+ display: none !important;
+ }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+ .hidden-sm {
+ display: none !important;
+ }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+ .hidden-md {
+ display: none !important;
+ }
+}
+@media (min-width: 1200px) {
+ .hidden-lg {
+ display: none !important;
+ }
+}
+.visible-print {
+ display: none !important;
+}
+@media print {
+ .visible-print {
+ display: block !important;
+ }
+ table.visible-print {
+ display: table;
+ }
+ tr.visible-print {
+ display: table-row !important;
+ }
+ th.visible-print,
+ td.visible-print {
+ display: table-cell !important;
+ }
+}
+.visible-print-block {
+ display: none !important;
+}
+@media print {
+ .visible-print-block {
+ display: block !important;
+ }
+}
+.visible-print-inline {
+ display: none !important;
+}
+@media print {
+ .visible-print-inline {
+ display: inline !important;
+ }
+}
+.visible-print-inline-block {
+ display: none !important;
+}
+@media print {
+ .visible-print-inline-block {
+ display: inline-block !important;
+ }
+}
+@media print {
+ .hidden-print {
+ display: none !important;
+ }
+}
+.navbar-default .badge {
+ background-color: #fff;
+ color: #dd4814;
}
-
-
+.navbar-inverse .badge {
+ background-color: #fff;
+ color: #772953;
}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/chamilo_electric_blue/dataTable.css b/main/css/chamilo_electric_blue/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/chamilo_electric_blue/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/chamilo_electric_blue/default.css b/main/css/chamilo_electric_blue/default.css
deleted file mode 100755
index 88b8949de8..0000000000
--- a/main/css/chamilo_electric_blue/default.css
+++ /dev/null
@@ -1,764 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #476BD6;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-
-.navbar .nav > li > a {
- float: none;
- line-height: 20px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
-}
-.subnav .navbar-inner {
- background: #175ae2; /* Old browsers */
- background: -moz-linear-gradient(top, #175ae2 0%, #133aac 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#175ae2), color-stop(100%,#133aac)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #175ae2 0%,#133aac 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #175ae2 0%,#133aac 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #175ae2 0%,#133aac 100%); /* IE10+ */
- background: linear-gradient(to bottom, #175ae2 0%,#133aac 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#175ae2', endColorstr='#133aac',GradientType=0 ); /* IE6-9 */
- border: none;
-}
-
-.subnav .nav > li > a {
- border-left: 1px solid #133CB0;
- border-right: 1px solid #133CB0;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background: #2b4181; /* Old browsers */
- background: -moz-linear-gradient(top, #2b4181 0%, #133aac 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b4181), color-stop(100%,#133aac)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2b4181 0%,#133aac 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2b4181 0%,#133aac 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2b4181 0%,#133aac 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2b4181 0%,#133aac 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b4181', endColorstr='#133aac',GradientType=0 ); /* IE6-9 */
- border-right-color: #2B4181;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: #2b4181; /* Old browsers */
- background: -moz-linear-gradient(top, #2b4181 0%, #133aac 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b4181), color-stop(100%,#133aac)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2b4181 0%,#133aac 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2b4181 0%,#133aac 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2b4181 0%,#133aac 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2b4181 0%,#133aac 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b4181', endColorstr='#133aac',GradientType=0 ); /* IE6-9 */
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background-color: #E6E6E6;
- background-image: none;
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #E6E6E6;
- box-shadow: none;
-}
-.breadcrumb a{
- color: #333;
- font-size: 13px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
- font-size: 14px;
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 17px;
- text-transform: none;
-}
-.breadcrumb a.btn-success {
- background-color: #FD6600;
- background-image: none;
- border: 1px solid #FD6600;
- color: #FFFFFF;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- font-weight: normal;
- background-color: #D8D8D8;
- color: #666666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #2B4181;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-.well {
- background-color: rgba(96, 165, 209, 0.1);
- border: 1px solid rgba(96, 165, 209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #133AAC;
-}
-#homepage .row .span9 a:hover{
- color: #476BD6;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #133AAC;
- font-weight: normal;
-}
-.well_border{
- background-color: rgba(243,226,169, 0.1);
- border: 1px solid rgba(243,226,169, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-.page-header h2{
- color: #666666;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background: #133aac; /* Old browsers */
- background: -moz-linear-gradient(top, #133aac 0%, #0119a0 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#133aac), color-stop(100%,#0119a0)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #133aac 0%,#0119a0 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #133aac 0%,#0119a0 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #133aac 0%,#0119a0 100%); /* IE10+ */
- background: linear-gradient(to bottom, #133aac 0%,#0119a0 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#133aac', endColorstr='#0119a0',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- color: #00407F;
- border: 1px solid #CDE6F5;
- background: url("images/background_message.png") repeat-x scroll 0 0 #EAF8FE;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background: url("images/background_message.png") repeat-x scroll 0 0 #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color:#1F8323;
- background: url("images/background_message.png") repeat-x scroll 0 0 #CAF0C7;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #440000;
- background: url("images/background_message.png") repeat-x scroll 0 0 #FFD1D1;
-}
-
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/bg-button.gif);
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background-image:url(images/button_next.gif) !important;
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 8px;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/chamilo_electric_blue/frames.css b/main/css/chamilo_electric_blue/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/chamilo_electric_blue/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/chamilo_electric_blue/images/2leftarrow.gif b/main/css/chamilo_electric_blue/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/chamilo_electric_blue/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/2rightarrow.gif b/main/css/chamilo_electric_blue/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/chamilo_electric_blue/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/accept.png b/main/css/chamilo_electric_blue/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_electric_blue/images/accept.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/accept_data.png b/main/css/chamilo_electric_blue/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_electric_blue/images/accept_data.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/add.png b/main/css/chamilo_electric_blue/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/chamilo_electric_blue/images/add.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/bg-button.gif b/main/css/chamilo_electric_blue/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/chamilo_electric_blue/images/bg-button.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/bg-main.png b/main/css/chamilo_electric_blue/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/chamilo_electric_blue/images/bg-main.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/blue_arrow.png b/main/css/chamilo_electric_blue/images/blue_arrow.png
deleted file mode 100755
index 9aa75cf05a..0000000000
Binary files a/main/css/chamilo_electric_blue/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/bullet.gif b/main/css/chamilo_electric_blue/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/chamilo_electric_blue/images/bullet.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/buttom.png b/main/css/chamilo_electric_blue/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/chamilo_electric_blue/images/buttom.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/button_accept.gif b/main/css/chamilo_electric_blue/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/chamilo_electric_blue/images/button_accept.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/button_add.gif b/main/css/chamilo_electric_blue/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/chamilo_electric_blue/images/button_add.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/button_refresh.gif b/main/css/chamilo_electric_blue/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/chamilo_electric_blue/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/button_search.gif b/main/css/chamilo_electric_blue/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/chamilo_electric_blue/images/button_search.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/button_upload.gif b/main/css/chamilo_electric_blue/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/chamilo_electric_blue/images/button_upload.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/chamilo-welcome.png b/main/css/chamilo_electric_blue/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/chamilo_electric_blue/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/Sorting icons.psd b/main/css/chamilo_electric_blue/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/back_disabled.jpg b/main/css/chamilo_electric_blue/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/back_enabled.jpg b/main/css/chamilo_electric_blue/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/favicon.ico b/main/css/chamilo_electric_blue/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/forward_disabled.jpg b/main/css/chamilo_electric_blue/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/forward_enabled.jpg b/main/css/chamilo_electric_blue/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/sort_asc.png b/main/css/chamilo_electric_blue/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/sort_asc_disabled.png b/main/css/chamilo_electric_blue/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/sort_both.png b/main/css/chamilo_electric_blue/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/sort_desc.png b/main/css/chamilo_electric_blue/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/dataTable/sort_desc_disabled.png b/main/css/chamilo_electric_blue/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/chamilo_electric_blue/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/header-logo.png b/main/css/chamilo_electric_blue/images/header-logo.png
deleted file mode 100755
index 351e956c2d..0000000000
Binary files a/main/css/chamilo_electric_blue/images/header-logo.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/help2.png b/main/css/chamilo_electric_blue/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/chamilo_electric_blue/images/help2.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/icon-chamilo.png b/main/css/chamilo_electric_blue/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/chamilo_electric_blue/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/loading.gif b/main/css/chamilo_electric_blue/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/chamilo_electric_blue/images/loading.gif and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/next.png b/main/css/chamilo_electric_blue/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/chamilo_electric_blue/images/next.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/portal.png b/main/css/chamilo_electric_blue/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/chamilo_electric_blue/images/portal.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/previus.png b/main/css/chamilo_electric_blue/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/chamilo_electric_blue/images/previus.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/refresh.png b/main/css/chamilo_electric_blue/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/chamilo_electric_blue/images/refresh.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/sprite-icon-social.png b/main/css/chamilo_electric_blue/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/chamilo_electric_blue/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/sprite-icon.png b/main/css/chamilo_electric_blue/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/chamilo_electric_blue/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/start-level.png b/main/css/chamilo_electric_blue/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/chamilo_electric_blue/images/start-level.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/vineta.png b/main/css/chamilo_electric_blue/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/chamilo_electric_blue/images/vineta.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/images/white_arrow.png b/main/css/chamilo_electric_blue/images/white_arrow.png
deleted file mode 100755
index aacdfe3b63..0000000000
Binary files a/main/css/chamilo_electric_blue/images/white_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_electric_blue/learnpath.css b/main/css/chamilo_electric_blue/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/chamilo_electric_blue/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/chamilo_electric_blue/print.css b/main/css/chamilo_electric_blue/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/chamilo_electric_blue/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/chamilo_electric_blue/scorm.css b/main/css/chamilo_electric_blue/scorm.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/chamilo_electric_blue/scormfs.css b/main/css/chamilo_electric_blue/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/chamilo_electric_blue/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/chamilo_green/dataTable.css b/main/css/chamilo_green/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/chamilo_green/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/chamilo_green/default.css b/main/css/chamilo_green/default.css
deleted file mode 100755
index ed5be8b371..0000000000
--- a/main/css/chamilo_green/default.css
+++ /dev/null
@@ -1,1217 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#666666;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #9ABF00;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
- border: 1px solid #59B800;
- background: #a0c400; /* Old browsers */
- background: -moz-linear-gradient(top, #a0c400 0%, #73a000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a0c400), color-stop(100%,#73a000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a0c400 0%,#73a000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a0c400 0%,#73a000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a0c400 0%,#73a000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a0c400 0%,#73a000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0c400', endColorstr='#73a000',GradientType=0 ); /* IE6-9 */
-}
-
-.subnav .nav > li > a {
- border-left: 1px solid #84AE00;
- border-right: 1px solid #78A400;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background: #77A300;
- border-right-color: #78A400;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: #77A300;
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-
-.breadcrumb a{
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- line-height: 25px;
- text-transform: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/* COURSE INTRO CONTENT */
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/* END OF COURSE INTRO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
- width: 250px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-#settings .span6 .well_border {
- min-height: 300px;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #e0ff99; /* Old browsers */
- background: -moz-linear-gradient(top, #e0ff99 0%, #b7df2d 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0ff99), color-stop(100%,#b7df2d)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #e0ff99 0%,#b7df2d 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #e0ff99 0%,#b7df2d 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #e0ff99 0%,#b7df2d 100%); /* IE10+ */
- background: linear-gradient(to bottom, #e0ff99 0%,#b7df2d 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0ff99', endColorstr='#b7df2d',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- margin-top: 5px;
- border: 1px solid #BDE43E;
- box-shadow: none;
-}
-.breadcrumb a{
-
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #E6E6E6;
- color: #666666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #77A300;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-.well {
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
-
- font-weight: bold;
- color: #77A300;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #666666;
-}
-#homepage .row .span9 a{
- color: #666666;
-}
-#homepage .row .span9 a:hover{
- color: #9ABF00;
-}
-.page-header h2{
- color: #666;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #79A500;
- font-weight: bold;
-}
-.page-header {
- border:none;
- background:none;
- margin-top: 0px;
- margin-bottom: 10px;
-}
-.well_border{
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-
-.categories-course-description .text-h3{
- color: #75A200;
- font-weight: bold;
- padding-bottom: 5px;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 7em;
- background: #9bc000; /* Old browsers */
- background: -moz-linear-gradient(top, #9bc000 0%, #74a100 68%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9bc000), color-stop(68%,#74a100)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #9bc000 0%,#74a100 68%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #9bc000 0%,#74a100 68%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #9bc000 0%,#74a100 68%); /* IE10+ */
- background: linear-gradient(to bottom, #9bc000 0%,#74a100 68%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bc000', endColorstr='#74a100',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: 1px solid #74A100;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #a0c400; /* Old browsers */
- background: -moz-linear-gradient(top, #a0c400 0%, #73a000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a0c400), color-stop(100%,#73a000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a0c400 0%,#73a000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a0c400 0%,#73a000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a0c400 0%,#73a000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a0c400 0%,#73a000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0c400', endColorstr='#73a000',GradientType=0 ); /* IE6-9 */
- border: 1px solid #77A300;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
-
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: #7d7e7d; /* Old browsers */
-background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* IE10+ */
-background: linear-gradient(to bottom, #7d7e7d 0%,#0e0e0e 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #77A300;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/chamilo_green/frames.css b/main/css/chamilo_green/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/chamilo_green/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/chamilo_green/images/2leftarrow.gif b/main/css/chamilo_green/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/chamilo_green/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/2rightarrow.gif b/main/css/chamilo_green/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/chamilo_green/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/accept.png b/main/css/chamilo_green/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_green/images/accept.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/accept_data.png b/main/css/chamilo_green/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_green/images/accept_data.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/add.png b/main/css/chamilo_green/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/chamilo_green/images/add.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/bg-button.gif b/main/css/chamilo_green/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/chamilo_green/images/bg-button.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/bg-main.png b/main/css/chamilo_green/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/chamilo_green/images/bg-main.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/blue_arrow.png b/main/css/chamilo_green/images/blue_arrow.png
deleted file mode 100755
index aacdfe3b63..0000000000
Binary files a/main/css/chamilo_green/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/bullet.gif b/main/css/chamilo_green/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/chamilo_green/images/bullet.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/buttom.png b/main/css/chamilo_green/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/chamilo_green/images/buttom.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_accept.gif b/main/css/chamilo_green/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/chamilo_green/images/button_accept.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_add.gif b/main/css/chamilo_green/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/chamilo_green/images/button_add.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_back.gif b/main/css/chamilo_green/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/chamilo_green/images/button_back.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_delete.gif b/main/css/chamilo_green/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/chamilo_green/images/button_delete.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_login.gif b/main/css/chamilo_green/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/chamilo_green/images/button_login.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_minus.gif b/main/css/chamilo_green/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/chamilo_green/images/button_minus.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_next.gif b/main/css/chamilo_green/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/chamilo_green/images/button_next.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_refresh.gif b/main/css/chamilo_green/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/chamilo_green/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_search.gif b/main/css/chamilo_green/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/chamilo_green/images/button_search.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/button_upload.gif b/main/css/chamilo_green/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/chamilo_green/images/button_upload.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/chamilo-welcome.png b/main/css/chamilo_green/images/chamilo-welcome.png
deleted file mode 100755
index ce5049257a..0000000000
Binary files a/main/css/chamilo_green/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/Sorting icons.psd b/main/css/chamilo_green/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/back_disabled.jpg b/main/css/chamilo_green/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/back_enabled.jpg b/main/css/chamilo_green/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/favicon.ico b/main/css/chamilo_green/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/forward_disabled.jpg b/main/css/chamilo_green/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/forward_enabled.jpg b/main/css/chamilo_green/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/sort_asc.png b/main/css/chamilo_green/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/sort_asc_disabled.png b/main/css/chamilo_green/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/sort_both.png b/main/css/chamilo_green/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/sort_desc.png b/main/css/chamilo_green/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/dataTable/sort_desc_disabled.png b/main/css/chamilo_green/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/chamilo_green/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/header-logo.png b/main/css/chamilo_green/images/header-logo.png
deleted file mode 100755
index c69e87a9a3..0000000000
Binary files a/main/css/chamilo_green/images/header-logo.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/help2.png b/main/css/chamilo_green/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/chamilo_green/images/help2.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/icon-chamilo.png b/main/css/chamilo_green/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/chamilo_green/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/loading.gif b/main/css/chamilo_green/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/chamilo_green/images/loading.gif and /dev/null differ
diff --git a/main/css/chamilo_green/images/next.png b/main/css/chamilo_green/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/chamilo_green/images/next.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/portal.png b/main/css/chamilo_green/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/chamilo_green/images/portal.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/previus.png b/main/css/chamilo_green/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/chamilo_green/images/previus.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/refresh.png b/main/css/chamilo_green/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/chamilo_green/images/refresh.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/sprite-icon-social.png b/main/css/chamilo_green/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/chamilo_green/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/sprite-icon.png b/main/css/chamilo_green/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/chamilo_green/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/start-level.png b/main/css/chamilo_green/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/chamilo_green/images/start-level.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/vineta.png b/main/css/chamilo_green/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/chamilo_green/images/vineta.png and /dev/null differ
diff --git a/main/css/chamilo_green/images/white_arrow.png b/main/css/chamilo_green/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/chamilo_green/images/white_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_green/learnpath.css b/main/css/chamilo_green/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/chamilo_green/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/chamilo_green/print.css b/main/css/chamilo_green/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/chamilo_green/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/chamilo_green/scorm.css b/main/css/chamilo_green/scorm.css
deleted file mode 100755
index c2f9056380..0000000000
--- a/main/css/chamilo_green/scorm.css
+++ /dev/null
@@ -1,3 +0,0 @@
-/* copy of default_scorm.css */
-
-/*STYLES PROCESS LESSION*/
diff --git a/main/css/chamilo_green/scormfs.css b/main/css/chamilo_green/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/chamilo_green/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/chamilo_orange/dataTable.css b/main/css/chamilo_orange/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/chamilo_orange/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/chamilo_orange/default.css b/main/css/chamilo_orange/default.css
deleted file mode 100755
index b82bf1f244..0000000000
--- a/main/css/chamilo_orange/default.css
+++ /dev/null
@@ -1,1235 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-body {
-
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
-}
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FD6600;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
- border: 1px solid #DF3A01;
- background: #ff7400; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7400 0%, #df3a01 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7400), color-stop(100%,#df3a01)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7400 0%,#df3a01 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7400', endColorstr='#df3a01',GradientType=0 ); /* IE6-9 */
-}
-.subnav-fixed .navbar-inner{
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- border-radius: 0px;
-}
-.subnav .nav > li > a {
- border-right:1px solid #DF3A01;
- border-left:1px solid #F35E00;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- border-right:1px solid #DF3A01;
- border-left:1px solid #DF3A01;
- background: #fd6600; /* Old browsers */
- background: -moz-linear-gradient(top, #fd6600 2%, #f90000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#fd6600), color-stop(100%,#f90000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fd6600 2%,#f90000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fd6600 2%,#f90000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6600', endColorstr='#f90000',GradientType=0 ); /* IE6-9 */
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: #fd6600; /* Old browsers */
- background: -moz-linear-gradient(top, #fd6600 2%, #f90000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#fd6600), color-stop(100%,#f90000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fd6600 2%,#f90000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fd6600 2%,#f90000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6600', endColorstr='#f90000',GradientType=0 ); /* IE6-9 */
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #E34100;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-
-.breadcrumb a{
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- line-height: 25px;
- text-transform: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/* COURSE INTRO CONTENT */
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/* END OF COURSE INTRO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
- width: 250px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-
-.well_border{
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-#settings .span6 .well_border {
- min-height: 300px;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #ffffbc; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffbc 0%, #ffff88 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffbc), color-stop(100%,#ffff88)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffbc 0%,#ffff88 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffbc', endColorstr='#ffff88',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- margin-top: 5px;
- border: 1px solid #FCCA35;
- box-shadow: none;
-}
-.breadcrumb a{
-
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #E6E6E6;
- color: #666666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #E24000;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2, .page-header h1{
- color: #E34100;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #E24000;
- font-weight: bold;
-}
-.page-header {
- border: none;
- margin-top: 0px;
-}
-.well_border{
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666666;
-}
-.categories-course-description .text-h3{
- color: #666666;
- font-weight: bold;
- margin-bottom: 5px;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 7em;
- background: #ff7400; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7400 0%, #df3a01 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7400), color-stop(100%,#df3a01)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7400 0%,#df3a01 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7400', endColorstr='#df3a01',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: 1px solid #DF3A01;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EEF5FAD3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #ff7400; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7400 0%, #df3a01 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7400), color-stop(100%,#df3a01)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7400 0%,#df3a01 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7400', endColorstr='#df3a01',GradientType=0 ); /* IE6-9 */
- border: 2px solid #E13E00;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
-
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: #7d7e7d; /* Old browsers */
-background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* IE10+ */
-background: linear-gradient(to bottom, #7d7e7d 0%,#0e0e0e 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/chamilo_orange/frames.css b/main/css/chamilo_orange/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/chamilo_orange/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/chamilo_orange/images/2leftarrow.gif b/main/css/chamilo_orange/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/chamilo_orange/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/2rightarrow.gif b/main/css/chamilo_orange/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/chamilo_orange/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/accept.png b/main/css/chamilo_orange/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_orange/images/accept.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/accept_data.png b/main/css/chamilo_orange/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_orange/images/accept_data.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/add.png b/main/css/chamilo_orange/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/chamilo_orange/images/add.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/bg-button.gif b/main/css/chamilo_orange/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/chamilo_orange/images/bg-button.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/bg-main.png b/main/css/chamilo_orange/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/chamilo_orange/images/bg-main.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/blue_arrow.png b/main/css/chamilo_orange/images/blue_arrow.png
deleted file mode 100755
index 15a30377a2..0000000000
Binary files a/main/css/chamilo_orange/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/bullet.gif b/main/css/chamilo_orange/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/chamilo_orange/images/bullet.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/buttom.png b/main/css/chamilo_orange/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/chamilo_orange/images/buttom.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_accept.gif b/main/css/chamilo_orange/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/chamilo_orange/images/button_accept.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_add.gif b/main/css/chamilo_orange/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/chamilo_orange/images/button_add.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_back.gif b/main/css/chamilo_orange/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/chamilo_orange/images/button_back.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_delete.gif b/main/css/chamilo_orange/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/chamilo_orange/images/button_delete.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_login.gif b/main/css/chamilo_orange/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/chamilo_orange/images/button_login.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_minus.gif b/main/css/chamilo_orange/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/chamilo_orange/images/button_minus.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_next.gif b/main/css/chamilo_orange/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/chamilo_orange/images/button_next.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_refresh.gif b/main/css/chamilo_orange/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/chamilo_orange/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_search.gif b/main/css/chamilo_orange/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/chamilo_orange/images/button_search.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/button_upload.gif b/main/css/chamilo_orange/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/chamilo_orange/images/button_upload.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/chamilo-welcome.png b/main/css/chamilo_orange/images/chamilo-welcome.png
deleted file mode 100755
index 7dfc66ea88..0000000000
Binary files a/main/css/chamilo_orange/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/Sorting icons.psd b/main/css/chamilo_orange/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/back_disabled.jpg b/main/css/chamilo_orange/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/back_enabled.jpg b/main/css/chamilo_orange/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/favicon.ico b/main/css/chamilo_orange/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/forward_disabled.jpg b/main/css/chamilo_orange/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/forward_enabled.jpg b/main/css/chamilo_orange/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/sort_asc.png b/main/css/chamilo_orange/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/sort_asc_disabled.png b/main/css/chamilo_orange/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/sort_both.png b/main/css/chamilo_orange/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/sort_desc.png b/main/css/chamilo_orange/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/dataTable/sort_desc_disabled.png b/main/css/chamilo_orange/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/chamilo_orange/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/header-logo.png b/main/css/chamilo_orange/images/header-logo.png
deleted file mode 100755
index c4676a073a..0000000000
Binary files a/main/css/chamilo_orange/images/header-logo.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/help2.png b/main/css/chamilo_orange/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/chamilo_orange/images/help2.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/icon-chamilo.png b/main/css/chamilo_orange/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/chamilo_orange/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/loading.gif b/main/css/chamilo_orange/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/chamilo_orange/images/loading.gif and /dev/null differ
diff --git a/main/css/chamilo_orange/images/next.png b/main/css/chamilo_orange/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/chamilo_orange/images/next.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/portal.png b/main/css/chamilo_orange/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/chamilo_orange/images/portal.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/previus.png b/main/css/chamilo_orange/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/chamilo_orange/images/previus.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/refresh.png b/main/css/chamilo_orange/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/chamilo_orange/images/refresh.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/sprite-icon-social.png b/main/css/chamilo_orange/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/chamilo_orange/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/sprite-icon.png b/main/css/chamilo_orange/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/chamilo_orange/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/start-level.png b/main/css/chamilo_orange/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/chamilo_orange/images/start-level.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/vineta.png b/main/css/chamilo_orange/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/chamilo_orange/images/vineta.png and /dev/null differ
diff --git a/main/css/chamilo_orange/images/white_arrow.png b/main/css/chamilo_orange/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/chamilo_orange/images/white_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_orange/learnpath.css b/main/css/chamilo_orange/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/chamilo_orange/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/chamilo_orange/print.css b/main/css/chamilo_orange/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/chamilo_orange/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/chamilo_orange/scorm.css b/main/css/chamilo_orange/scorm.css
deleted file mode 100755
index bade27fdf7..0000000000
--- a/main/css/chamilo_orange/scorm.css
+++ /dev/null
@@ -1,48 +0,0 @@
-/* copy of default_scorm.css */
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #ff7400; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7400 0%, #df3a01 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7400), color-stop(100%,#df3a01)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7400 0%,#df3a01 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7400 0%,#df3a01 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7400', endColorstr='#df3a01',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #e34200;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
\ No newline at end of file
diff --git a/main/css/chamilo_orange/scormfs.css b/main/css/chamilo_orange/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/chamilo_orange/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/chamilo_red/dataTable.css b/main/css/chamilo_red/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/chamilo_red/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/chamilo_red/default.css b/main/css/chamilo_red/default.css
deleted file mode 100755
index 5773e41a2c..0000000000
--- a/main/css/chamilo_red/default.css
+++ /dev/null
@@ -1,1241 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-body {
-
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
-}
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #F20000;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
- border: 1px solid #C40000;
- background: #ff0000; /* Old browsers */
- background: -moz-linear-gradient(top, #ff0000 0%, #8a0808 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#8a0808)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff0000 0%,#8a0808 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#8a0808',GradientType=0 ); /* IE6-9 */
-}
-.subnav-fixed .navbar-inner{
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- border-radius: 0px;
-}
-.subnav .nav > li > a {
- border-right:1px solid #970707;
- border-left:1px solid #EF0000;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- border-right:1px solid #DF3A01;
- border-left:1px solid #DF3A01;
- background: #fd6600; /* Old browsers */
- background: -moz-linear-gradient(top, #fd6600 2%, #f90000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#fd6600), color-stop(100%,#f90000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fd6600 2%,#f90000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fd6600 2%,#f90000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6600', endColorstr='#f90000',GradientType=0 ); /* IE6-9 */
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: #fd6600; /* Old browsers */
- background: -moz-linear-gradient(top, #fd6600 2%, #f90000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#fd6600), color-stop(100%,#f90000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fd6600 2%,#f90000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fd6600 2%,#f90000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fd6600 2%,#f90000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6600', endColorstr='#f90000',GradientType=0 ); /* IE6-9 */
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #DF0202;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-
-.breadcrumb a{
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- line-height: 25px;
- text-transform: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/* COURSE INTRO CONTENT */
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/* END OF COURSE INTRO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
- width: 250px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-#settings .span6 .well_border {
- min-height: 300px;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #ffffbc; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffbc 0%, #ffff88 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffbc), color-stop(100%,#ffff88)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffbc 0%,#ffff88 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffbc 0%,#ffff88 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffbc', endColorstr='#ffff88',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- margin-top: 5px;
- border: 1px solid #FCCA35;
- box-shadow: none;
-}
-.breadcrumb a{
-
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #E6E6E6;
- color: #666666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #B00505;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2, .page-header h1{
- color: #DF0202;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #DF0202;
- font-weight: bold;
-}
-.page-header {
- border: none;
- margin-top: 0px;
-}
-.well_border{
- background-color: rgba(199,199,199, 0.2);
- border: 1px solid rgba(96,165,209, 0.2);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666666;
-}
-.categories-course-description .text-h3{
- color: #666666;
- font-weight: bold;
- margin-bottom: 5px;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 7em;
- background: #ff0000; /* Old browsers */
- background: -moz-linear-gradient(top, #ff0000 0%, #8a0808 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#8a0808)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff0000 0%,#8a0808 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#8a0808',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: 1px solid #DF3A01;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EEF5FAD3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #ff0000; /* Old browsers */
- background: -moz-linear-gradient(top, #ff0000 0%, #8a0808 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#8a0808)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff0000 0%,#8a0808 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff0000 0%,#8a0808 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#8a0808',GradientType=0 ); /* IE6-9 */
- border-top: 2px solid #8F0707;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
-
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: #141616; /* Old browsers */
-background: -moz-linear-gradient(top, #141616 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#141616), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #141616 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #141616 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #141616 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #141616 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141616', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/chamilo_red/frames.css b/main/css/chamilo_red/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/chamilo_red/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/chamilo_red/images/2leftarrow.gif b/main/css/chamilo_red/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/chamilo_red/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/2rightarrow.gif b/main/css/chamilo_red/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/chamilo_red/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/accept.png b/main/css/chamilo_red/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_red/images/accept.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/accept_data.png b/main/css/chamilo_red/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/chamilo_red/images/accept_data.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/add.png b/main/css/chamilo_red/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/chamilo_red/images/add.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/bg-button.gif b/main/css/chamilo_red/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/chamilo_red/images/bg-button.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/bg-main.png b/main/css/chamilo_red/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/chamilo_red/images/bg-main.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/blue_arrow.png b/main/css/chamilo_red/images/blue_arrow.png
deleted file mode 100755
index cb39f30766..0000000000
Binary files a/main/css/chamilo_red/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/bullet.gif b/main/css/chamilo_red/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/chamilo_red/images/bullet.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/buttom.png b/main/css/chamilo_red/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/chamilo_red/images/buttom.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_accept.gif b/main/css/chamilo_red/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/chamilo_red/images/button_accept.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_add.gif b/main/css/chamilo_red/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/chamilo_red/images/button_add.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_back.gif b/main/css/chamilo_red/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/chamilo_red/images/button_back.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_delete.gif b/main/css/chamilo_red/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/chamilo_red/images/button_delete.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_login.gif b/main/css/chamilo_red/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/chamilo_red/images/button_login.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_minus.gif b/main/css/chamilo_red/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/chamilo_red/images/button_minus.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_next.gif b/main/css/chamilo_red/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/chamilo_red/images/button_next.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_refresh.gif b/main/css/chamilo_red/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/chamilo_red/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_search.gif b/main/css/chamilo_red/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/chamilo_red/images/button_search.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/button_upload.gif b/main/css/chamilo_red/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/chamilo_red/images/button_upload.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/chamilo-welcome.png b/main/css/chamilo_red/images/chamilo-welcome.png
deleted file mode 100755
index 0937c10058..0000000000
Binary files a/main/css/chamilo_red/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/Sorting icons.psd b/main/css/chamilo_red/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/back_disabled.jpg b/main/css/chamilo_red/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/back_enabled.jpg b/main/css/chamilo_red/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/favicon.ico b/main/css/chamilo_red/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/forward_disabled.jpg b/main/css/chamilo_red/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/forward_enabled.jpg b/main/css/chamilo_red/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/sort_asc.png b/main/css/chamilo_red/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/sort_asc_disabled.png b/main/css/chamilo_red/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/sort_both.png b/main/css/chamilo_red/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/sort_desc.png b/main/css/chamilo_red/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/dataTable/sort_desc_disabled.png b/main/css/chamilo_red/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/chamilo_red/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/header-logo.png b/main/css/chamilo_red/images/header-logo.png
deleted file mode 100755
index 9582b04b3f..0000000000
Binary files a/main/css/chamilo_red/images/header-logo.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/help2.png b/main/css/chamilo_red/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/chamilo_red/images/help2.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/icon-chamilo.png b/main/css/chamilo_red/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/chamilo_red/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/loading.gif b/main/css/chamilo_red/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/chamilo_red/images/loading.gif and /dev/null differ
diff --git a/main/css/chamilo_red/images/next.png b/main/css/chamilo_red/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/chamilo_red/images/next.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/portal.png b/main/css/chamilo_red/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/chamilo_red/images/portal.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/previus.png b/main/css/chamilo_red/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/chamilo_red/images/previus.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/refresh.png b/main/css/chamilo_red/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/chamilo_red/images/refresh.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/sprite-icon-social.png b/main/css/chamilo_red/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/chamilo_red/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/sprite-icon.png b/main/css/chamilo_red/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/chamilo_red/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/start-level.png b/main/css/chamilo_red/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/chamilo_red/images/start-level.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/vineta.png b/main/css/chamilo_red/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/chamilo_red/images/vineta.png and /dev/null differ
diff --git a/main/css/chamilo_red/images/white_arrow.png b/main/css/chamilo_red/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/chamilo_red/images/white_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_red/learnpath.css b/main/css/chamilo_red/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/chamilo_red/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/chamilo_red/print.css b/main/css/chamilo_red/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/chamilo_red/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/chamilo_red/scorm.css b/main/css/chamilo_red/scorm.css
deleted file mode 100755
index 7ed28f73e3..0000000000
--- a/main/css/chamilo_red/scorm.css
+++ /dev/null
@@ -1,34 +0,0 @@
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #ff3019; /* Old browsers */
- background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff3019 0%,#cf0404 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #cf0404;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-
-}
diff --git a/main/css/chamilo_red/scormfs.css b/main/css/chamilo_red/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/chamilo_red/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/chamilo_sport_red/dataTable.css b/main/css/chamilo_sport_red/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/chamilo_sport_red/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/chamilo_sport_red/default.css b/main/css/chamilo_sport_red/default.css
deleted file mode 100755
index 66aabf273f..0000000000
--- a/main/css/chamilo_sport_red/default.css
+++ /dev/null
@@ -1,810 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#666;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #E2001A;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
-}
-.subnav .navbar-inner {
- background-color: #000000; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: none;
- border-bottom: 4px solid #FF0000;
- text-transform: uppercase;
- border-left: none;
- border-right: none;
- border-top: none;
-}
-
-.subnav .nav > li > a {
- border-left: 1px solid #000000;
- border-right: 1px solid #000000;
- color: white;
- font-weight: bold;
- font-size: 11px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #FFCC00;
- background-color: #000;
- border-right-color: #000;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: none repeat scroll 0 0 #BA0303;
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-
-.page-section{
- background:url(images/bg-header.png) repeat-x 0 -10px;
- margin-top: -5px;
-}
-.section-mycampus .page-section{
- background:url(images/bg-header.png) repeat-x 0 -30px;
- margin-top: -5px;
-}
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-.nav-pills > li > a {
- color: #FFFFFF;
-}
-.nav-pills > li > a:hover {
- color: #FF0000;
-}
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.subnav .dropdown-menu li a {
- color: #333333;
- text-transform: none;
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #ffffff; /* Old browsers */
-background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
-background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- border: none;
- box-shadow: none;
-}
-.breadcrumb a{
- color: #333;
- font-size: 13px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
- font-size: 14px;
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 17px;
- text-transform: none;
-}
-.breadcrumb a.btn-success {
- background-color: #FD6600;
- background-image: none;
- border: 1px solid #FD6600;
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background: #ffffff; /* Old browsers */
-background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
-background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- color: #666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-.new_actions-fixed{
- top: 50px;
-}
-.bottom_actions_fixed{
- background: #fc0000; /* Old browsers */
- background: -moz-linear-gradient(top, #fc0000 0%, #560000 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fc0000), color-stop(100%,#560000)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fc0000 0%,#560000 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fc0000 0%,#560000 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fc0000 0%,#560000 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fc0000 0%,#560000 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc0000', endColorstr='#560000',GradientType=0 ); /* IE6-9 */
-}
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #666;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
-
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
- border: 1px solid #e5e5e5;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #666;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #666;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom: 1px solid #666;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
- border: 1px solid #e5e5e5;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background-color: #000;
- border-bottom: 5px solid #FF0000;
- background-image: none;
- background-repeat:repeat-x;
- color:#ffffff;
- border-top: none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- color: #00407F;
- border: 1px solid #CDE6F5;
- background: url("images/background_message.png") repeat-x scroll 0 0 #EAF8FE;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background: url("images/background_message.png") repeat-x scroll 0 0 #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color:#1F8323;
- background: url("images/background_message.png") repeat-x scroll 0 0 #CAF0C7;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #440000;
- background: url("images/background_message.png") repeat-x scroll 0 0 #FFD1D1;
-}
-
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/bg-button.gif);
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background-image:url(images/button_next.gif) !important;
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 8px;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/chamilo_sport_red/frames.css b/main/css/chamilo_sport_red/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/chamilo_sport_red/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/chamilo_sport_red/images/2leftarrow.gif b/main/css/chamilo_sport_red/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/chamilo_sport_red/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/2rightarrow.gif b/main/css/chamilo_sport_red/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/chamilo_sport_red/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/bg-button.gif b/main/css/chamilo_sport_red/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/chamilo_sport_red/images/bg-button.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/bg-header.png b/main/css/chamilo_sport_red/images/bg-header.png
deleted file mode 100755
index dc984adab2..0000000000
Binary files a/main/css/chamilo_sport_red/images/bg-header.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/bg-main.png b/main/css/chamilo_sport_red/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/chamilo_sport_red/images/bg-main.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/blue_arrow.png b/main/css/chamilo_sport_red/images/blue_arrow.png
deleted file mode 100755
index 34e662eb0e..0000000000
Binary files a/main/css/chamilo_sport_red/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/bullet.gif b/main/css/chamilo_sport_red/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/chamilo_sport_red/images/bullet.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/button_accept.gif b/main/css/chamilo_sport_red/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/chamilo_sport_red/images/button_accept.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/button_add.gif b/main/css/chamilo_sport_red/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/chamilo_sport_red/images/button_add.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/button_refresh.gif b/main/css/chamilo_sport_red/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/chamilo_sport_red/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/button_search.gif b/main/css/chamilo_sport_red/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/chamilo_sport_red/images/button_search.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/button_upload.gif b/main/css/chamilo_sport_red/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/chamilo_sport_red/images/button_upload.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/chamilo-welcome.png b/main/css/chamilo_sport_red/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/chamilo_sport_red/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/header-logo.png b/main/css/chamilo_sport_red/images/header-logo.png
deleted file mode 100755
index 6eda562a8b..0000000000
Binary files a/main/css/chamilo_sport_red/images/header-logo.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/help2.png b/main/css/chamilo_sport_red/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/chamilo_sport_red/images/help2.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/icon-chamilo.png b/main/css/chamilo_sport_red/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/chamilo_sport_red/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/loading.gif b/main/css/chamilo_sport_red/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/chamilo_sport_red/images/loading.gif and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/portal.png b/main/css/chamilo_sport_red/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/chamilo_sport_red/images/portal.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/refresh.png b/main/css/chamilo_sport_red/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/chamilo_sport_red/images/refresh.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/sprite-icon-social.png b/main/css/chamilo_sport_red/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/chamilo_sport_red/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/sprite-icon.png b/main/css/chamilo_sport_red/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/chamilo_sport_red/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/start-level.png b/main/css/chamilo_sport_red/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/chamilo_sport_red/images/start-level.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/vineta.png b/main/css/chamilo_sport_red/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/chamilo_sport_red/images/vineta.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/images/white_arrow.png b/main/css/chamilo_sport_red/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/chamilo_sport_red/images/white_arrow.png and /dev/null differ
diff --git a/main/css/chamilo_sport_red/learnpath.css b/main/css/chamilo_sport_red/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/chamilo_sport_red/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/chamilo_sport_red/print.css b/main/css/chamilo_sport_red/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/chamilo_sport_red/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/chamilo_sport_red/scorm.css b/main/css/chamilo_sport_red/scorm.css
deleted file mode 100755
index 3d034b5c91..0000000000
--- a/main/css/chamilo_sport_red/scorm.css
+++ /dev/null
@@ -1,62 +0,0 @@
-/* copy of default_scorm.css */
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #ff7400; /* Old browsers */
- background: url(images/bg-header.png) repeat-x 0 -32px;
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #980000;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #e60000;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
\ No newline at end of file
diff --git a/main/css/chamilo_sport_red/scormfs.css b/main/css/chamilo_sport_red/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/chamilo_sport_red/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/chat.png b/main/css/chat.png
deleted file mode 100755
index 0f94e1ed7b..0000000000
Binary files a/main/css/chat.png and /dev/null differ
diff --git a/main/css/cool_blue/dataTable.css b/main/css/cool_blue/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/cool_blue/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/cool_blue/default.css b/main/css/cool_blue/default.css
deleted file mode 100755
index 431a59538f..0000000000
--- a/main/css/cool_blue/default.css
+++ /dev/null
@@ -1,1051 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FD6600;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.page-section{
- background: url(images/home-bg.png) repeat-x 0 -168px;
-}
-#topbar_push {
- height: 50px;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background: rgb(4,105,142); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(4,105,142,1) 0%, rgba(4,20,87,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(4,105,142,1)), color-stop(100%,rgba(4,20,87,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04698e', endColorstr='#041457',GradientType=0 ); /* IE6-9 */
- border: none;
-}
-
-.subnav .nav > li > a {
- border:none;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background: rgb(4,111,160); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(4,111,160,1) 0%, rgba(2,14,40,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(4,111,160,1)), color-stop(100%,rgba(2,14,40,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(4,111,160,1) 0%,rgba(2,14,40,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(4,111,160,1) 0%,rgba(2,14,40,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(4,111,160,1) 0%,rgba(2,14,40,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(4,111,160,1) 0%,rgba(2,14,40,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#046fa0', endColorstr='#020e28',GradientType=0 ); /* IE6-9 */
- border:none;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: rgb(255,153,0); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(255,153,0,1) 0%, rgba(253,102,0,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,153,0,1)), color-stop(100%,rgba(253,102,0,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(255,153,0,1) 0%,rgba(253,102,0,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(255,153,0,1) 0%,rgba(253,102,0,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(255,153,0,1) 0%,rgba(253,102,0,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(255,153,0,1) 0%,rgba(253,102,0,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.controls .btn{
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.controls .btn:hover{
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-
-}
-
-.btn-primary{
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border-radius: 4px;
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn-primary:hover{
- background: #0167ba; /* Old browsers */
- background: -moz-linear-gradient(top, #0167ba 0%, #0f466a 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0167ba), color-stop(100%,#0f466a)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #0167ba 0%,#0f466a 100%); /* IE10+ */
- background: linear-gradient(to bottom, #0167ba 0%,#0f466a 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0167ba', endColorstr='#0f466a',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: rgb(249,252,247); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,252,247,1)), color-stop(100%,rgba(245,249,240,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- padding-top: 5px;
- padding-bottom: 5px;
- border: none;
- margin-top: 5px;
- font-size: 12px;
-}
-.breadcrumb a{
- color: #333;
- font-size: 12px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
-
- line-height: 17px;
- text-transform: none;
-}
-.breadcrumb a.btn-success {
- background-color: #FD6600;
- background-image: none;
- border: 1px solid #FD6600;
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color:#045F87;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background: rgb(249,252,247); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,252,247,1)), color-stop(100%,rgba(245,249,240,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */
- border: none;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #042E68;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #042E68;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background: rgb(249,252,247); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,252,247,1)), color-stop(100%,rgba(245,249,240,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- border: none;
- border-radius: 8px;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #6E6E6E;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background: rgb(4,105,142); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(4,105,142,1) 0%, rgba(4,20,87,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(4,105,142,1)), color-stop(100%,rgba(4,20,87,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04698e', endColorstr='#041457',GradientType=0 ); /* IE6-9 */
- color:#ffffff;
- border-top: none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat #FD6600;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat #FF9900;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: rgb(4,105,142); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(4,105,142,1) 0%, rgba(4,20,87,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(4,105,142,1)), color-stop(100%,rgba(4,20,87,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04698e', endColorstr='#041457',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: rgb(4,105,142); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(4,105,142,1) 0%, rgba(4,20,87,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(4,105,142,1)), color-stop(100%,rgba(4,20,87,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(4,105,142,1) 0%,rgba(4,20,87,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04698e', endColorstr='#041457',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/cool_blue/frames.css b/main/css/cool_blue/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/cool_blue/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/cool_blue/images/2leftarrow.gif b/main/css/cool_blue/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/cool_blue/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/2rightarrow.gif b/main/css/cool_blue/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/cool_blue/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/accept.png b/main/css/cool_blue/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/cool_blue/images/accept.png and /dev/null differ
diff --git a/main/css/cool_blue/images/accept_data.png b/main/css/cool_blue/images/accept_data.png
deleted file mode 100755
index 75e3437758..0000000000
Binary files a/main/css/cool_blue/images/accept_data.png and /dev/null differ
diff --git a/main/css/cool_blue/images/add.png b/main/css/cool_blue/images/add.png
deleted file mode 100755
index 3d578ca80b..0000000000
Binary files a/main/css/cool_blue/images/add.png and /dev/null differ
diff --git a/main/css/cool_blue/images/bg-button.gif b/main/css/cool_blue/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/cool_blue/images/bg-button.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/bg-main.png b/main/css/cool_blue/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/cool_blue/images/bg-main.png and /dev/null differ
diff --git a/main/css/cool_blue/images/blue_arrow.png b/main/css/cool_blue/images/blue_arrow.png
deleted file mode 100755
index 12c641ae99..0000000000
Binary files a/main/css/cool_blue/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/cool_blue/images/bullet.gif b/main/css/cool_blue/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/cool_blue/images/bullet.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/buttom.png b/main/css/cool_blue/images/buttom.png
deleted file mode 100755
index d675c3d77f..0000000000
Binary files a/main/css/cool_blue/images/buttom.png and /dev/null differ
diff --git a/main/css/cool_blue/images/button_accept.gif b/main/css/cool_blue/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/cool_blue/images/button_accept.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_add.gif b/main/css/cool_blue/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/cool_blue/images/button_add.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_back.gif b/main/css/cool_blue/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/cool_blue/images/button_back.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_delete.gif b/main/css/cool_blue/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/cool_blue/images/button_delete.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_login.gif b/main/css/cool_blue/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/cool_blue/images/button_login.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_minus.gif b/main/css/cool_blue/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/cool_blue/images/button_minus.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_next.gif b/main/css/cool_blue/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/cool_blue/images/button_next.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_refresh.gif b/main/css/cool_blue/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/cool_blue/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_search.gif b/main/css/cool_blue/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/cool_blue/images/button_search.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/button_upload.gif b/main/css/cool_blue/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/cool_blue/images/button_upload.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/chamilo-welcome.png b/main/css/cool_blue/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/cool_blue/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/Sorting icons.psd b/main/css/cool_blue/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/cool_blue/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/back_disabled.jpg b/main/css/cool_blue/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/cool_blue/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/back_enabled.jpg b/main/css/cool_blue/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/cool_blue/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/favicon.ico b/main/css/cool_blue/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/cool_blue/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/forward_disabled.jpg b/main/css/cool_blue/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/cool_blue/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/forward_enabled.jpg b/main/css/cool_blue/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/cool_blue/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/sort_asc.png b/main/css/cool_blue/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/cool_blue/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/sort_asc_disabled.png b/main/css/cool_blue/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/cool_blue/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/sort_both.png b/main/css/cool_blue/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/cool_blue/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/sort_desc.png b/main/css/cool_blue/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/cool_blue/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/cool_blue/images/dataTable/sort_desc_disabled.png b/main/css/cool_blue/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/cool_blue/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/cool_blue/images/error.png b/main/css/cool_blue/images/error.png
deleted file mode 100755
index 965d44d7eb..0000000000
Binary files a/main/css/cool_blue/images/error.png and /dev/null differ
diff --git a/main/css/cool_blue/images/header-logo.png b/main/css/cool_blue/images/header-logo.png
deleted file mode 100755
index 35d2e92c83..0000000000
Binary files a/main/css/cool_blue/images/header-logo.png and /dev/null differ
diff --git a/main/css/cool_blue/images/help2.png b/main/css/cool_blue/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/cool_blue/images/help2.png and /dev/null differ
diff --git a/main/css/cool_blue/images/home-bg.png b/main/css/cool_blue/images/home-bg.png
deleted file mode 100755
index a31574a305..0000000000
Binary files a/main/css/cool_blue/images/home-bg.png and /dev/null differ
diff --git a/main/css/cool_blue/images/icon-chamilo.png b/main/css/cool_blue/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/cool_blue/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/cool_blue/images/install.png b/main/css/cool_blue/images/install.png
deleted file mode 100755
index e95b7c7192..0000000000
Binary files a/main/css/cool_blue/images/install.png and /dev/null differ
diff --git a/main/css/cool_blue/images/loading.gif b/main/css/cool_blue/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/cool_blue/images/loading.gif and /dev/null differ
diff --git a/main/css/cool_blue/images/next.png b/main/css/cool_blue/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/cool_blue/images/next.png and /dev/null differ
diff --git a/main/css/cool_blue/images/portal.png b/main/css/cool_blue/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/cool_blue/images/portal.png and /dev/null differ
diff --git a/main/css/cool_blue/images/previus.png b/main/css/cool_blue/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/cool_blue/images/previus.png and /dev/null differ
diff --git a/main/css/cool_blue/images/refresh.png b/main/css/cool_blue/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/cool_blue/images/refresh.png and /dev/null differ
diff --git a/main/css/cool_blue/images/sprite-icon-social.png b/main/css/cool_blue/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/cool_blue/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/cool_blue/images/sprite-icon.png b/main/css/cool_blue/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/cool_blue/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/cool_blue/images/start-level.png b/main/css/cool_blue/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/cool_blue/images/start-level.png and /dev/null differ
diff --git a/main/css/cool_blue/images/vineta.png b/main/css/cool_blue/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/cool_blue/images/vineta.png and /dev/null differ
diff --git a/main/css/cool_blue/images/white_arrow.png b/main/css/cool_blue/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/cool_blue/images/white_arrow.png and /dev/null differ
diff --git a/main/css/cool_blue/learnpath.css b/main/css/cool_blue/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/cool_blue/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/cool_blue/print.css b/main/css/cool_blue/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/cool_blue/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/cool_blue/scorm.css b/main/css/cool_blue/scorm.css
deleted file mode 100755
index 87e9b91e4f..0000000000
--- a/main/css/cool_blue/scorm.css
+++ /dev/null
@@ -1,17 +0,0 @@
-/* copy of default_scorm.css */
-#learning_path_breadcrumb_zone .breadcrumb{
- background: rgb(4,105,142); /* Old browsers */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
\ No newline at end of file
diff --git a/main/css/cool_blue/scormfs.css b/main/css/cool_blue/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/cool_blue/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/corporate/dataTable.css b/main/css/corporate/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/corporate/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/corporate/default.css b/main/css/corporate/default.css
deleted file mode 100755
index b029cb088b..0000000000
--- a/main/css/corporate/default.css
+++ /dev/null
@@ -1,832 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FE9A2E;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background: #248792; /* Old browsers */
- background: -moz-linear-gradient(top, #2fafbc 0%, #248792 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#248792), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2fafbc 0%,#248792 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2fafbc 0%,#248792 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2fafbc', endColorstr='#248792',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
- border: none;
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
- color: white;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #505457;
- border-right:none;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: none repeat scroll 0 0 #FE9A2E;
- color: #fff;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
- .page-section{
- background:url(images/bg-header.png) repeat-x;
- margin-top: -5px;
- }
-.navbar-inner{
- background: #248792; /* Old browsers */
- background: -moz-linear-gradient(top, #2fafbc 0%, #248792 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#248792), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2fafbc 0%,#248792 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2fafbc 0%,#248792 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2fafbc', endColorstr='#248792',GradientType=0 ); /* IE6-9 */
- border: none;
-}
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FE9A2E;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background-color: #E1E1E0;
- background-image: none;
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #E1E1E0;
- box-shadow: none;
-}
-.breadcrumb a{
- color: #333;
- font-size: 13px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
- font-size: 14px;
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 25px;
- text-transform: none;
-}
-.breadcrumb a.btn-success {
- background-color: #FD6600;
- background-image: none;
- border: 1px solid #FD6600;
- color: #FFFFFF;
-}
-.breadcrumb a.btn-success:hover{
- opacity: 0.8;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- font-weight: normal;
- background: #E6E6E6;
- color: #666;
- padding-left: 15px;
-}
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #FD6600;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- /*background-color: rgba(243,226,169, 0.1);*/
- background:#F2F2F2;
- border: 1px solid rgba(243,226,169, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- /*color: #DE3A01;*/
-}
-#homepage .row .span9 a:hover{
- /*color: #DE3A01;*/
-}
-.page-header h2{
- color: #FF7622;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #FF7622;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #CCCCCC;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: rgba(243,226,169, 0.1);
- border: 1px solid rgba(243,226,169, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background-color: #2FAFBC;
- background-image: none;
- background-repeat:repeat-x;
- color:#ffffff;
- border-top: 5px solid #B0BEBC;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-
-.social-menu-title {
- background-color:#00AAE3;
-}.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.bottom_actions_fixed{
- background: #248792; /* Old browsers */
- background: -moz-linear-gradient(top, #2fafbc 0%, #248792 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#248792), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2fafbc 0%,#248792 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2fafbc 0%,#248792 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2fafbc 0%,#248792 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2fafbc', endColorstr='#248792',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed{
- top: 50px;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/bg-button.gif);
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background-image:url(images/button_next.gif) !important;
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 15px;
- color: #FFFFFF;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/corporate/frames.css b/main/css/corporate/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/corporate/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/corporate/images/2leftarrow.gif b/main/css/corporate/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/corporate/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/corporate/images/2rightarrow.gif b/main/css/corporate/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/corporate/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/corporate/images/bg-button.gif b/main/css/corporate/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/corporate/images/bg-button.gif and /dev/null differ
diff --git a/main/css/corporate/images/bg-header.png b/main/css/corporate/images/bg-header.png
deleted file mode 100755
index 3fe96e6e0d..0000000000
Binary files a/main/css/corporate/images/bg-header.png and /dev/null differ
diff --git a/main/css/corporate/images/bg-main.png b/main/css/corporate/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/corporate/images/bg-main.png and /dev/null differ
diff --git a/main/css/corporate/images/blue_arrow.png b/main/css/corporate/images/blue_arrow.png
deleted file mode 100755
index 7a4830357c..0000000000
Binary files a/main/css/corporate/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/corporate/images/bullet.gif b/main/css/corporate/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/corporate/images/bullet.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_accept.gif b/main/css/corporate/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/corporate/images/button_accept.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_add.gif b/main/css/corporate/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/corporate/images/button_add.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_back.gif b/main/css/corporate/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/corporate/images/button_back.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_delete.gif b/main/css/corporate/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/corporate/images/button_delete.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_login.gif b/main/css/corporate/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/corporate/images/button_login.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_minus.gif b/main/css/corporate/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/corporate/images/button_minus.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_next.gif b/main/css/corporate/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/corporate/images/button_next.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_refresh.gif b/main/css/corporate/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/corporate/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_search.gif b/main/css/corporate/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/corporate/images/button_search.gif and /dev/null differ
diff --git a/main/css/corporate/images/button_upload.gif b/main/css/corporate/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/corporate/images/button_upload.gif and /dev/null differ
diff --git a/main/css/corporate/images/chamilo-welcome.png b/main/css/corporate/images/chamilo-welcome.png
deleted file mode 100755
index 7dfc66ea88..0000000000
Binary files a/main/css/corporate/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/Sorting icons.psd b/main/css/corporate/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/corporate/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/back_disabled.jpg b/main/css/corporate/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/corporate/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/back_enabled.jpg b/main/css/corporate/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/corporate/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/favicon.ico b/main/css/corporate/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/corporate/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/forward_disabled.jpg b/main/css/corporate/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/corporate/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/forward_enabled.jpg b/main/css/corporate/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/corporate/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/sort_asc.png b/main/css/corporate/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/corporate/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/sort_asc_disabled.png b/main/css/corporate/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/corporate/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/sort_both.png b/main/css/corporate/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/corporate/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/sort_desc.png b/main/css/corporate/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/corporate/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/corporate/images/dataTable/sort_desc_disabled.png b/main/css/corporate/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/corporate/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/corporate/images/header-logo.png b/main/css/corporate/images/header-logo.png
deleted file mode 100755
index ed64bdb840..0000000000
Binary files a/main/css/corporate/images/header-logo.png and /dev/null differ
diff --git a/main/css/corporate/images/help2.png b/main/css/corporate/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/corporate/images/help2.png and /dev/null differ
diff --git a/main/css/corporate/images/icon-chamilo.png b/main/css/corporate/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/corporate/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/corporate/images/loading.gif b/main/css/corporate/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/corporate/images/loading.gif and /dev/null differ
diff --git a/main/css/corporate/images/portal.png b/main/css/corporate/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/corporate/images/portal.png and /dev/null differ
diff --git a/main/css/corporate/images/refresh.png b/main/css/corporate/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/corporate/images/refresh.png and /dev/null differ
diff --git a/main/css/corporate/images/sprite-icon-social.png b/main/css/corporate/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/corporate/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/corporate/images/sprite-icon.png b/main/css/corporate/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/corporate/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/corporate/images/start-level.png b/main/css/corporate/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/corporate/images/start-level.png and /dev/null differ
diff --git a/main/css/corporate/images/vineta.png b/main/css/corporate/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/corporate/images/vineta.png and /dev/null differ
diff --git a/main/css/corporate/images/white_arrow.png b/main/css/corporate/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/corporate/images/white_arrow.png and /dev/null differ
diff --git a/main/css/corporate/learnpath.css b/main/css/corporate/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/corporate/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/corporate/print.css b/main/css/corporate/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/corporate/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/corporate/scorm.css b/main/css/corporate/scorm.css
deleted file mode 100755
index 716ef7d59c..0000000000
--- a/main/css/corporate/scorm.css
+++ /dev/null
@@ -1,33 +0,0 @@
-/* copy of default_scorm.css */
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #3bafba; /* Old browsers */
- background: -moz-linear-gradient(top, #3bafba 0%, #00aaba 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3bafba), color-stop(100%,#00aaba)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #3bafba 0%,#00aaba 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #3bafba 0%,#00aaba 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #3bafba 0%,#00aaba 100%); /* IE10+ */
- background: linear-gradient(to bottom, #3bafba 0%,#00aaba 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3bafba', endColorstr='#00aaba',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #505457;
- padding-top: 5px;
- padding-bottom: 5px;
-}
\ No newline at end of file
diff --git a/main/css/corporate/scormfs.css b/main/css/corporate/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/corporate/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/cosmic_campus/dataTable.css b/main/css/cosmic_campus/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/cosmic_campus/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/cosmic_campus/default.css b/main/css/cosmic_campus/default.css
deleted file mode 100755
index 814baa1353..0000000000
--- a/main/css/cosmic_campus/default.css
+++ /dev/null
@@ -1,961 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FE9A2E;
-}
-a:active {
- text-decoration: none;
-}
-.page-section{
- background: url(images/home-bg.png) repeat-x 0 0;
- margin-top: -10px;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
- text-shadow: none;
-}
-.subnav .navbar-inner {
- background: rgb(226,56,40); /* Old browsers */
- background: -moz-linear-gradient(top, rgba(226,56,40,1) 0%, rgba(226,56,40,1) 50%, rgba(181,45,32,1) 50%, rgba(181,45,32,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,56,40,1)), color-stop(50%,rgba(226,56,40,1)), color-stop(50%,rgba(181,45,32,1)), color-stop(100%,rgba(181,45,32,1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(226,56,40,1) 0%,rgba(226,56,40,1) 50%,rgba(181,45,32,1) 50%,rgba(181,45,32,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(226,56,40,1) 0%,rgba(226,56,40,1) 50%,rgba(181,45,32,1) 50%,rgba(181,45,32,1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(226,56,40,1) 0%,rgba(226,56,40,1) 50%,rgba(181,45,32,1) 50%,rgba(181,45,32,1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(226,56,40,1) 0%,rgba(226,56,40,1) 50%,rgba(181,45,32,1) 50%,rgba(181,45,32,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e23828', endColorstr='#b52d20',GradientType=0 ); /* IE6-9 */
- border: none;
- margin-bottom: 5px;
-}
-
-.subnav .nav > li > a {
- border:none;
- color: #FFFFFF;
- font-weight: bold;
- font-size: 13px;
- box-shadow: none;
- text-transform: uppercase;
-}
-.subnav .nav > li > a:hover{
- background: #3D3D3D;
- color: #FFFFFF;
- line-height: 22px;
-}
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #fff;
- background-color: #EC5923;
- border: 1px solid #EC5923;
- box-shadow:0 1px 1px rgba(0, 0, 0, 0.15) inset;
- line-height: 22px;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-.subnav .navbar-inner li a:hover {
- color: #790000;
- background:none;
- border: none;
- box-shadow:none;
- line-height: 24px;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-.dropdown .dropdown-menu li a:hover {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-#logout_button{
- margin-top: 4px;
- border: none;
-}
-#logout_button:hover{
- margin-top: 4px;
- background: none;
- box-shadow: none;
-
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
- /*.page-section{
- background:url(images/bg-header.jpg) repeat-x;
- margin-top: -5px;
- }*/
-.navbar-inner{
- background: #0F0F0F; /* Old browsers */
-}
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #3A4751;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-.controls .btn{
- background:#EC5923;
- color: #ffffff;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.controls .btn:hover{
- background: #EC5923; /* Old browsers */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 5px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-
-}
-.form-actions {
- background:transparent;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #E1E1E0;
- box-shadow: none;
- color: #666;
-}
-.breadcrumb a{
- color: #666;
- font-size: 13px;
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
- font-size: 14px;
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- font-size: 12px;
- line-height: 22px;
- text-transform: none;
- color: #FFFFFF;
-}
-.breadcrumb a.btn-success {
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #f26954 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#f26954)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#f26954 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#f26954 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#f26954',GradientType=0 ); /* IE6-9 */
- border: 1px solid #FD6600;
- color: #FFFFFF;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.breadcrumb a.btn-success:hover{
- background: #f68a7a; /* Old browsers */
-background: -moz-linear-gradient(top, #f68a7a 0%, #ef7f70 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f68a7a), color-stop(100%,#ef7f70)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #f68a7a 0%,#ef7f70 100%); /* IE10+ */
-background: linear-gradient(to bottom, #f68a7a 0%,#ef7f70 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f68a7a', endColorstr='#ef7f70',GradientType=0 ); /* IE6-9 */
-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn{
- display: inline-block;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.428571429;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- cursor: pointer;
- color: #FFFFFF;
- background: #3D3D3D; /* Old browsers */
- border:1px solid rgba(0, 0, 0, 0.15);
-}
-.btn:hover{
- background: #4E5B65; /* Old browsers */
- color: #ffffff;
- text-decoration: none;
-}
-.btn-primary{
- background:#EC5923;
- color: #ffffff;
- border:1px solid rgba(0, 0, 0, 0.15);
- padding: 3px 25px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-.btn-primary:hover{
- background: #EA4E15; /* Old browsers */
- color: #FFFFFF;
- border:1px solid rgba(0, 0, 0, 0.15);
-
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- font-weight: normal;
- background: #E6E6E6;
- color: #666;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
- background: #FFFFFF;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #666;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background: #F9F9F9; /* Old browsers */
- border: 1px solid #EDEDED;
- border-radius: 8px;
- box-shadow: none;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- margin-right: 10px;
- width: 260px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #666;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- /*color: #DE3A01;*/
-}
-#homepage .row .span9 a:hover{
- /*color: #DE3A01;*/
-}
-.page-header h2{
- color: #666;
- font-weight: bold;
- font-size: 18px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #666;
- font-weight: bold;
-
-
-}
-.page-header {
- border-bottom-color: #CCCCCC;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background: #F9F9F9; /* Old browsers */
- border: 1px solid #EDEDED;
- border-radius: 8px;
- box-shadow: none;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.course-box-thumbnail-box .thumbnail:hover{
- border: none;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #666;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-.bottom_actions_fixed {
- background:#E23827;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 10em;
- background: #E23827;
- color:#ffffff;
- border-top: 5px solid #B52D1F;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #F1D40D;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-.new_actions-fixed{
- top: 49px;
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- text-shadow:none;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- text-shadow:none;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat #EC5923;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat #EA4E15;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- text-shadow:none;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- text-shadow:none;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 15px;
- color: #ffffff;
-}
-
-@media (min-width: 481px) and (max-width: 800px) {
- .navbar .brand {
- color: #666;
- }
- .navbar .nav-collapse .nav.pull-right a{
- color: #3A4751;
- line-height: 26px;
- }
- .navbar .nav-collapse .nav.pull-right a:hover{
- color: #FFFFFF;
- }
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
- .welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
- #homepage .row .span9 h2 {
- color: #666;
- font-size: 18px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-|}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
\ No newline at end of file
diff --git a/main/css/cosmic_campus/images/2leftarrow.gif b/main/css/cosmic_campus/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/cosmic_campus/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/2rightarrow.gif b/main/css/cosmic_campus/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/cosmic_campus/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/accept.png b/main/css/cosmic_campus/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/cosmic_campus/images/accept.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/add.png b/main/css/cosmic_campus/images/add.png
deleted file mode 100755
index 3d578ca80b..0000000000
Binary files a/main/css/cosmic_campus/images/add.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/bg-button.gif b/main/css/cosmic_campus/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/cosmic_campus/images/bg-button.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/bg-header.jpg b/main/css/cosmic_campus/images/bg-header.jpg
deleted file mode 100755
index 7f8d86fe15..0000000000
Binary files a/main/css/cosmic_campus/images/bg-header.jpg and /dev/null differ
diff --git a/main/css/cosmic_campus/images/bg-main.png b/main/css/cosmic_campus/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/cosmic_campus/images/bg-main.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/blue_arrow.png b/main/css/cosmic_campus/images/blue_arrow.png
deleted file mode 100755
index 15a30377a2..0000000000
Binary files a/main/css/cosmic_campus/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/bullet.gif b/main/css/cosmic_campus/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/cosmic_campus/images/bullet.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/buttom.png b/main/css/cosmic_campus/images/buttom.png
deleted file mode 100755
index d675c3d77f..0000000000
Binary files a/main/css/cosmic_campus/images/buttom.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_accept.gif b/main/css/cosmic_campus/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/cosmic_campus/images/button_accept.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_add.gif b/main/css/cosmic_campus/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/cosmic_campus/images/button_add.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_back.gif b/main/css/cosmic_campus/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/cosmic_campus/images/button_back.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_delete.gif b/main/css/cosmic_campus/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/cosmic_campus/images/button_delete.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_login.gif b/main/css/cosmic_campus/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/cosmic_campus/images/button_login.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_minus.gif b/main/css/cosmic_campus/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/cosmic_campus/images/button_minus.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_next.gif b/main/css/cosmic_campus/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/cosmic_campus/images/button_next.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_refresh.gif b/main/css/cosmic_campus/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/cosmic_campus/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_search.gif b/main/css/cosmic_campus/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/cosmic_campus/images/button_search.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/button_upload.gif b/main/css/cosmic_campus/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/cosmic_campus/images/button_upload.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/chamilo-welcome.png b/main/css/cosmic_campus/images/chamilo-welcome.png
deleted file mode 100755
index 7dfc66ea88..0000000000
Binary files a/main/css/cosmic_campus/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/Sorting icons.psd b/main/css/cosmic_campus/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/back_disabled.jpg b/main/css/cosmic_campus/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/back_enabled.jpg b/main/css/cosmic_campus/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/favicon.ico b/main/css/cosmic_campus/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/forward_disabled.jpg b/main/css/cosmic_campus/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/forward_enabled.jpg b/main/css/cosmic_campus/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/sort_asc.png b/main/css/cosmic_campus/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/sort_asc_disabled.png b/main/css/cosmic_campus/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/sort_both.png b/main/css/cosmic_campus/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/sort_desc.png b/main/css/cosmic_campus/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/dataTable/sort_desc_disabled.png b/main/css/cosmic_campus/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/cosmic_campus/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/header-logo.png b/main/css/cosmic_campus/images/header-logo.png
deleted file mode 100755
index 8fd23c592b..0000000000
Binary files a/main/css/cosmic_campus/images/header-logo.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/help2.png b/main/css/cosmic_campus/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/cosmic_campus/images/help2.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/home-bg.png b/main/css/cosmic_campus/images/home-bg.png
deleted file mode 100755
index 56ba99eb9c..0000000000
Binary files a/main/css/cosmic_campus/images/home-bg.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/icon-chamilo.png b/main/css/cosmic_campus/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/cosmic_campus/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/loading.gif b/main/css/cosmic_campus/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/cosmic_campus/images/loading.gif and /dev/null differ
diff --git a/main/css/cosmic_campus/images/next.png b/main/css/cosmic_campus/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/cosmic_campus/images/next.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/portal.png b/main/css/cosmic_campus/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/cosmic_campus/images/portal.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/previus.png b/main/css/cosmic_campus/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/cosmic_campus/images/previus.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/refresh.png b/main/css/cosmic_campus/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/cosmic_campus/images/refresh.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/sprite-icon-social.png b/main/css/cosmic_campus/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/cosmic_campus/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/sprite-icon.png b/main/css/cosmic_campus/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/cosmic_campus/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/start-level.png b/main/css/cosmic_campus/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/cosmic_campus/images/start-level.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/vineta.png b/main/css/cosmic_campus/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/cosmic_campus/images/vineta.png and /dev/null differ
diff --git a/main/css/cosmic_campus/images/white_arrow.png b/main/css/cosmic_campus/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/cosmic_campus/images/white_arrow.png and /dev/null differ
diff --git a/main/css/cosmic_campus/learnpath.css b/main/css/cosmic_campus/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/cosmic_campus/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/cosmic_campus/print.css b/main/css/cosmic_campus/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/cosmic_campus/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/cosmic_campus/scorm.css b/main/css/cosmic_campus/scorm.css
deleted file mode 100755
index c4d3733762..0000000000
--- a/main/css/cosmic_campus/scorm.css
+++ /dev/null
@@ -1,52 +0,0 @@
-/* copy of default_scorm.css */
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #e23828; /* Old browsers */
- background: -moz-linear-gradient(top, #e23828 0%, b52d20 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e23828), color-stop(100%,b52d20)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #e23828 0%,b52d20 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #e23828 0%,b52d20 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #e23828 0%,b52d20 100%); /* IE10+ */
- background: linear-gradient(to bottom, #e23828 0%,b52d20 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e23828', endColorstr='b52d20',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #e23828; /* Old browsers */
- background: -moz-linear-gradient(top, #e23828 0%, b52d20 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e23828), color-stop(100%,b52d20)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #e23828 0%,b52d20 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #e23828 0%,b52d20 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #e23828 0%,b52d20 100%); /* IE10+ */
- background: linear-gradient(to bottom, #e23828 0%,b52d20 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e23828', endColorstr='b52d20',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #666666;
- padding-top: 15px;
- padding-bottom: 15px;
-}
\ No newline at end of file
diff --git a/main/css/cosmic_campus/scormfs.css b/main/css/cosmic_campus/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/cosmic_campus/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/crumbs.gif b/main/css/crumbs.gif
deleted file mode 100755
index 669dd15c55..0000000000
Binary files a/main/css/crumbs.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/chat.css b/main/css/delicious_bordeaux/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/delicious_bordeaux/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/delicious_bordeaux/dataTable.css b/main/css/delicious_bordeaux/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/delicious_bordeaux/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/delicious_bordeaux/default.css b/main/css/delicious_bordeaux/default.css
deleted file mode 100755
index 6607d75f67..0000000000
--- a/main/css/delicious_bordeaux/default.css
+++ /dev/null
@@ -1,2736 +0,0 @@
-/*****************************************************
- * MAIN *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
- height: 100%; /* stick */
-}
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
-ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height:0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #975b5b;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #975b5b;
-}
-/* form elements */
-
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
-}
-input[text] {
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- padding: 4px;
- color: #975b5b;
-}
-#header1 a {
- color: #636363;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
-}
-#my_courses {
- float: right;
-}
-
-/*****************************************************
- * HEADER 3: TABS OF THE HEADER *
- *****************************************************/
-
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-
-}
-.subnav .nav > li > a {
- color:white;
-}
-.subnav #current a {
- background-color: #975B5B; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #975B5B 0%, #BD9393 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#975B5B), color-stop(100%,#BD9393)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #975B5B 0%, #BD9393 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #975B5B 0%,#BD9393 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #975B5B 0%,#BD9393 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#975B5B', endColorstr='#BD9393',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #975B5B 0%, #BD9393 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-#logout {
- display: inline;
- float: right;
- width: auto;
- text-align: right;
-}
-.subnav .clear {
- display: none;
-}
-/*****************************************************
- * HEADER 3:
- *****************************************************/
-#header4 {
- background-color: #fff;
- color: #fff;
- width:100%;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
- padding-bottom:10px;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 3em; /* Very important */
-}
-
-/*****************************************************
- * NAVIGATION MENU *
- *****************************************************/
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #975b5b;
- color: #975b5b;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #975b5b;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
-/* background: #eee url('images/headertables.jpg') repeat-x top center; */
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
-/* background: transparent url('images/systemenouvelles.jpg') no-repeat top left; */
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #975b5b;
- border-top:1px dotted #975b5b;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover{
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /* margin-right:10px; */
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/delicious_bordeaux/frames.css b/main/css/delicious_bordeaux/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/delicious_bordeaux/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/delicious_bordeaux/images/2leftarrow.gif b/main/css/delicious_bordeaux/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/delicious_bordeaux/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/2rightarrow.gif b/main/css/delicious_bordeaux/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/delicious_bordeaux/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/bar_1.gif b/main/css/delicious_bordeaux/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/delicious_bordeaux/images/bar_1.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/bar_1m.gif b/main/css/delicious_bordeaux/images/bar_1m.gif
deleted file mode 100755
index 4919e31b08..0000000000
Binary files a/main/css/delicious_bordeaux/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/bar_1r.gif b/main/css/delicious_bordeaux/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/delicious_bordeaux/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/bar_1u.gif b/main/css/delicious_bordeaux/images/bar_1u.gif
deleted file mode 100755
index d5a56d957d..0000000000
Binary files a/main/css/delicious_bordeaux/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/blue_arrow.png b/main/css/delicious_bordeaux/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/delicious_bordeaux/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_accept.gif b/main/css/delicious_bordeaux/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_accept.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_add.gif b/main/css/delicious_bordeaux/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_add.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_back.gif b/main/css/delicious_bordeaux/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_back.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_back.jpg b/main/css/delicious_bordeaux/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_back.jpg and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_delete.gif b/main/css/delicious_bordeaux/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_delete.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_login.gif b/main/css/delicious_bordeaux/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_login.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_minus.gif b/main/css/delicious_bordeaux/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_minus.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_next.gif b/main/css/delicious_bordeaux/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_next.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_plus.gif b/main/css/delicious_bordeaux/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_plus.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_refresh.gif b/main/css/delicious_bordeaux/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_search.gif b/main/css/delicious_bordeaux/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_search.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/button_upload.gif b/main/css/delicious_bordeaux/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/delicious_bordeaux/images/button_upload.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/Sorting icons.psd b/main/css/delicious_bordeaux/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/back_disabled.jpg b/main/css/delicious_bordeaux/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/back_enabled.jpg b/main/css/delicious_bordeaux/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/favicon.ico b/main/css/delicious_bordeaux/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/forward_disabled.jpg b/main/css/delicious_bordeaux/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/forward_enabled.jpg b/main/css/delicious_bordeaux/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/sort_asc.png b/main/css/delicious_bordeaux/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/sort_asc_disabled.png b/main/css/delicious_bordeaux/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/sort_both.png b/main/css/delicious_bordeaux/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/sort_desc.png b/main/css/delicious_bordeaux/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/dataTable/sort_desc_disabled.png b/main/css/delicious_bordeaux/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/delicious_bordeaux/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/help2.png b/main/css/delicious_bordeaux/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/delicious_bordeaux/images/help2.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/index.html b/main/css/delicious_bordeaux/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/delicious_bordeaux/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/delicious_bordeaux/images/loading.gif b/main/css/delicious_bordeaux/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/delicious_bordeaux/images/loading.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/portal.png b/main/css/delicious_bordeaux/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/delicious_bordeaux/images/portal.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/refresh.png b/main/css/delicious_bordeaux/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/delicious_bordeaux/images/refresh.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/shadow.gif b/main/css/delicious_bordeaux/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/delicious_bordeaux/images/shadow.gif and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/tab-left.png b/main/css/delicious_bordeaux/images/tab-left.png
deleted file mode 100755
index 144f635d79..0000000000
Binary files a/main/css/delicious_bordeaux/images/tab-left.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/tab-repeat.png b/main/css/delicious_bordeaux/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/delicious_bordeaux/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/tab-right.png b/main/css/delicious_bordeaux/images/tab-right.png
deleted file mode 100755
index a5f9c9c150..0000000000
Binary files a/main/css/delicious_bordeaux/images/tab-right.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/tab.png b/main/css/delicious_bordeaux/images/tab.png
deleted file mode 100755
index e6247e96b4..0000000000
Binary files a/main/css/delicious_bordeaux/images/tab.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/images/white_arrow.png b/main/css/delicious_bordeaux/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/delicious_bordeaux/images/white_arrow.png and /dev/null differ
diff --git a/main/css/delicious_bordeaux/learnpath.css b/main/css/delicious_bordeaux/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/delicious_bordeaux/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/delicious_bordeaux/online.css b/main/css/delicious_bordeaux/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/delicious_bordeaux/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/delicious_bordeaux/print.css b/main/css/delicious_bordeaux/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/delicious_bordeaux/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/delicious_bordeaux/scorm.css b/main/css/delicious_bordeaux/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/delicious_bordeaux/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/delicious_bordeaux/scormfs.css b/main/css/delicious_bordeaux/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/delicious_bordeaux/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/delicious_bordeaux/screen.css b/main/css/delicious_bordeaux/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/dot.gif b/main/css/dot.gif
deleted file mode 100755
index 609bda0c5a..0000000000
Binary files a/main/css/dot.gif and /dev/null differ
diff --git a/main/css/empire_green/chat.css b/main/css/empire_green/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/empire_green/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/empire_green/dataTable.css b/main/css/empire_green/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/empire_green/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/empire_green/default.css b/main/css/empire_green/default.css
deleted file mode 100755
index 8eb332bc42..0000000000
--- a/main/css/empire_green/default.css
+++ /dev/null
@@ -1,2724 +0,0 @@
-/*****************************************************
- * MAIN *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height:0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #5b975b;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #5b975b;
-}
-/* form elements */
-
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
-}
-input[text] {
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- padding: 4px;
- color: #5b975b;
-}
-#header1 a {
- color: #636363;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
-}
-
-/*****************************************************
- * HEADER 3: TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-}
-
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav #current a {
- background-color: #5B975B; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5B975B), color-stop(100%,#8FBB8F)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #5B975B 0%,#8FBB8F 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #5B975B 0%,#8FBB8F 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5B975B', endColorstr='#8FBB8F',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #5B975B 0%, #8FBB8F 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-
-.subnav .clear {
- display: none;
-}
-/*****************************************************
- * HEADER 4
- *****************************************************/
-#header4 {
- background-color: #fff;
- color: #fff;
- margin-bottom: 2px;
- width:100%;
-}
-
-#header4 a:hover {
- text-decoration: none;
- color: #a8a7a7;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 3em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #5b975b;
- color: #5b975b;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #5b975b;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #5b975b;
- border-top:1px dotted #5b975b;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover {
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /* margin-right:10px; */
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:10px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/empire_green/frames.css b/main/css/empire_green/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/empire_green/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/empire_green/images/2leftarrow.gif b/main/css/empire_green/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/empire_green/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/empire_green/images/2rightarrow.gif b/main/css/empire_green/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/empire_green/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/empire_green/images/bar_1.gif b/main/css/empire_green/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/empire_green/images/bar_1.gif and /dev/null differ
diff --git a/main/css/empire_green/images/bar_1m.gif b/main/css/empire_green/images/bar_1m.gif
deleted file mode 100755
index 4919e31b08..0000000000
Binary files a/main/css/empire_green/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/empire_green/images/bar_1r.gif b/main/css/empire_green/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/empire_green/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/empire_green/images/bar_1u.gif b/main/css/empire_green/images/bar_1u.gif
deleted file mode 100755
index d5a56d957d..0000000000
Binary files a/main/css/empire_green/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/empire_green/images/blue_arrow.png b/main/css/empire_green/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/empire_green/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/empire_green/images/button_accept.gif b/main/css/empire_green/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/empire_green/images/button_accept.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_add.gif b/main/css/empire_green/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/empire_green/images/button_add.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_back.gif b/main/css/empire_green/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/empire_green/images/button_back.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_back.jpg b/main/css/empire_green/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/empire_green/images/button_back.jpg and /dev/null differ
diff --git a/main/css/empire_green/images/button_delete.gif b/main/css/empire_green/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/empire_green/images/button_delete.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_login.gif b/main/css/empire_green/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/empire_green/images/button_login.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_minus.gif b/main/css/empire_green/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/empire_green/images/button_minus.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_next.gif b/main/css/empire_green/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/empire_green/images/button_next.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_plus.gif b/main/css/empire_green/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/empire_green/images/button_plus.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_refresh.gif b/main/css/empire_green/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/empire_green/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_search.gif b/main/css/empire_green/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/empire_green/images/button_search.gif and /dev/null differ
diff --git a/main/css/empire_green/images/button_upload.gif b/main/css/empire_green/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/empire_green/images/button_upload.gif and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/Sorting icons.psd b/main/css/empire_green/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/empire_green/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/back_disabled.jpg b/main/css/empire_green/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/empire_green/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/back_enabled.jpg b/main/css/empire_green/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/empire_green/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/favicon.ico b/main/css/empire_green/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/empire_green/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/forward_disabled.jpg b/main/css/empire_green/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/empire_green/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/forward_enabled.jpg b/main/css/empire_green/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/empire_green/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/sort_asc.png b/main/css/empire_green/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/empire_green/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/sort_asc_disabled.png b/main/css/empire_green/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/empire_green/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/sort_both.png b/main/css/empire_green/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/empire_green/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/sort_desc.png b/main/css/empire_green/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/empire_green/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/empire_green/images/dataTable/sort_desc_disabled.png b/main/css/empire_green/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/empire_green/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/empire_green/images/help2.png b/main/css/empire_green/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/empire_green/images/help2.png and /dev/null differ
diff --git a/main/css/empire_green/images/index.html b/main/css/empire_green/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/empire_green/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/empire_green/images/loading.gif b/main/css/empire_green/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/empire_green/images/loading.gif and /dev/null differ
diff --git a/main/css/empire_green/images/portal.png b/main/css/empire_green/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/empire_green/images/portal.png and /dev/null differ
diff --git a/main/css/empire_green/images/refresh.png b/main/css/empire_green/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/empire_green/images/refresh.png and /dev/null differ
diff --git a/main/css/empire_green/images/shadow.gif b/main/css/empire_green/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/empire_green/images/shadow.gif and /dev/null differ
diff --git a/main/css/empire_green/images/tab-left.png b/main/css/empire_green/images/tab-left.png
deleted file mode 100755
index 05d7451411..0000000000
Binary files a/main/css/empire_green/images/tab-left.png and /dev/null differ
diff --git a/main/css/empire_green/images/tab-repeat.png b/main/css/empire_green/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/empire_green/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/empire_green/images/tab-right.png b/main/css/empire_green/images/tab-right.png
deleted file mode 100755
index 42a2020565..0000000000
Binary files a/main/css/empire_green/images/tab-right.png and /dev/null differ
diff --git a/main/css/empire_green/images/tab.png b/main/css/empire_green/images/tab.png
deleted file mode 100755
index 06fdde2d45..0000000000
Binary files a/main/css/empire_green/images/tab.png and /dev/null differ
diff --git a/main/css/empire_green/images/white_arrow.png b/main/css/empire_green/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/empire_green/images/white_arrow.png and /dev/null differ
diff --git a/main/css/empire_green/learnpath.css b/main/css/empire_green/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/empire_green/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/empire_green/online.css b/main/css/empire_green/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/empire_green/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/empire_green/print.css b/main/css/empire_green/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/empire_green/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/empire_green/scorm.css b/main/css/empire_green/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/empire_green/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/empire_green/scormfs.css b/main/css/empire_green/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/empire_green/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/empire_green/screen.css b/main/css/empire_green/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/font_awesome/css/font-awesome.css b/main/css/font-awesome.css
old mode 100755
new mode 100644
similarity index 98%
rename from main/css/font_awesome/css/font-awesome.css
rename to main/css/font-awesome.css
index 2dcdc22072..07c8a152b8
--- a/main/css/font_awesome/css/font-awesome.css
+++ b/main/css/font-awesome.css
@@ -6,8 +6,8 @@
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
- src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
- src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
+ src: url('fonts/fontawesome-webfont.eot?v=4.3.0');
+ src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
diff --git a/main/css/font_awesome/css/font-awesome.min.css b/main/css/font_awesome/css/font-awesome.min.css
deleted file mode 100755
index 24fcc04c4e..0000000000
--- a/main/css/font_awesome/css/font-awesome.min.css
+++ /dev/null
@@ -1,4 +0,0 @@
-/*!
- * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
\ No newline at end of file
diff --git a/main/css/fonts/FontAwesome.otf b/main/css/fonts/FontAwesome.otf
new file mode 100644
index 0000000000..f7936cc1e7
Binary files /dev/null and b/main/css/fonts/FontAwesome.otf differ
diff --git a/main/css/fonts/fontawesome-webfont.eot b/main/css/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000000..33b2bb8005
Binary files /dev/null and b/main/css/fonts/fontawesome-webfont.eot differ
diff --git a/main/css/fonts/fontawesome-webfont.svg b/main/css/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000000..1ee89d4368
--- /dev/null
+++ b/main/css/fonts/fontawesome-webfont.svg
@@ -0,0 +1,565 @@
+
+
+
\ No newline at end of file
diff --git a/main/css/fonts/fontawesome-webfont.ttf b/main/css/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000000..ed9372f8ea
Binary files /dev/null and b/main/css/fonts/fontawesome-webfont.ttf differ
diff --git a/main/css/fonts/fontawesome-webfont.woff b/main/css/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000000..8b280b98fa
Binary files /dev/null and b/main/css/fonts/fontawesome-webfont.woff differ
diff --git a/main/css/fonts/fontawesome-webfont.woff2 b/main/css/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000000..3311d58514
Binary files /dev/null and b/main/css/fonts/fontawesome-webfont.woff2 differ
diff --git a/main/css/fruity_orange/chat.css b/main/css/fruity_orange/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/fruity_orange/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/fruity_orange/dataTable.css b/main/css/fruity_orange/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/fruity_orange/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/fruity_orange/default.css b/main/css/fruity_orange/default.css
deleted file mode 100755
index 20c0b46554..0000000000
--- a/main/css/fruity_orange/default.css
+++ /dev/null
@@ -1,2736 +0,0 @@
-/*****************************************************
- * MAIN *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #fea404;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #fea404;
-}
-/* form elements */
-
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
-}
-input[text] {
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- padding: 4px;
- color: #f8b846;
-}
-#header1 a {
- color: #636363;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
-}
-/*****************************************************
- * TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-}
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav #current a {
- background-color: #F8B846; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #F8B846 0%, #F79A2A 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8B846), color-stop(100%,#F79A2A)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #F8B846 0%, #F79A2A 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #F8B846 0%,#F79A2A 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #F8B846 0%,#F79A2A 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F8B846', endColorstr='#F79A2A',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #F8B846 0%, #F79A2A 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 3em; /* Very important */
-}
-/*****************************************************
- * NAVIGATION MENU *
- *****************************************************/
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- border: 1px solid #636363;
-}
-.menucaption {
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- /* border: 1px solid #636363; */
- background-color: #FFF;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #FFF;
- padding: 0 8px 0 4px;
- font-weight:bold;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #FF6600;
- color: #FF6600;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #f8b846;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Report section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #f8b846;
- border-top:1px dotted #f8b846;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover {
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /* margin-right:10px; */
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:10px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/fruity_orange/frames.css b/main/css/fruity_orange/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/fruity_orange/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/fruity_orange/images/2leftarrow.gif b/main/css/fruity_orange/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/fruity_orange/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/2rightarrow.gif b/main/css/fruity_orange/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/fruity_orange/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/bar_1.gif b/main/css/fruity_orange/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/fruity_orange/images/bar_1.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/bar_1m.gif b/main/css/fruity_orange/images/bar_1m.gif
deleted file mode 100755
index 4919e31b08..0000000000
Binary files a/main/css/fruity_orange/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/bar_1r.gif b/main/css/fruity_orange/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/fruity_orange/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/bar_1u.gif b/main/css/fruity_orange/images/bar_1u.gif
deleted file mode 100755
index d5a56d957d..0000000000
Binary files a/main/css/fruity_orange/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/blue_arrow.png b/main/css/fruity_orange/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/fruity_orange/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_accept.gif b/main/css/fruity_orange/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/fruity_orange/images/button_accept.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_add.gif b/main/css/fruity_orange/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/fruity_orange/images/button_add.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_back.gif b/main/css/fruity_orange/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/fruity_orange/images/button_back.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_back.jpg b/main/css/fruity_orange/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/fruity_orange/images/button_back.jpg and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_delete.gif b/main/css/fruity_orange/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/fruity_orange/images/button_delete.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_login.gif b/main/css/fruity_orange/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/fruity_orange/images/button_login.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_minus.gif b/main/css/fruity_orange/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/fruity_orange/images/button_minus.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_next.gif b/main/css/fruity_orange/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/fruity_orange/images/button_next.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_plus.gif b/main/css/fruity_orange/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/fruity_orange/images/button_plus.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_refresh.gif b/main/css/fruity_orange/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/fruity_orange/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_search.gif b/main/css/fruity_orange/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/fruity_orange/images/button_search.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/button_upload.gif b/main/css/fruity_orange/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/fruity_orange/images/button_upload.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/Sorting icons.psd b/main/css/fruity_orange/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/back_disabled.jpg b/main/css/fruity_orange/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/back_enabled.jpg b/main/css/fruity_orange/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/favicon.ico b/main/css/fruity_orange/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/forward_disabled.jpg b/main/css/fruity_orange/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/forward_enabled.jpg b/main/css/fruity_orange/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/sort_asc.png b/main/css/fruity_orange/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/sort_asc_disabled.png b/main/css/fruity_orange/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/sort_both.png b/main/css/fruity_orange/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/sort_desc.png b/main/css/fruity_orange/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/dataTable/sort_desc_disabled.png b/main/css/fruity_orange/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/fruity_orange/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/help2.png b/main/css/fruity_orange/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/fruity_orange/images/help2.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/index.html b/main/css/fruity_orange/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/fruity_orange/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/fruity_orange/images/loading.gif b/main/css/fruity_orange/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/fruity_orange/images/loading.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/portal.png b/main/css/fruity_orange/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/fruity_orange/images/portal.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/refresh.png b/main/css/fruity_orange/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/fruity_orange/images/refresh.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/shadow.gif b/main/css/fruity_orange/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/fruity_orange/images/shadow.gif and /dev/null differ
diff --git a/main/css/fruity_orange/images/tab-left.png b/main/css/fruity_orange/images/tab-left.png
deleted file mode 100755
index 2ad7fb9e99..0000000000
Binary files a/main/css/fruity_orange/images/tab-left.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/tab-repeat.png b/main/css/fruity_orange/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/fruity_orange/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/tab-right.png b/main/css/fruity_orange/images/tab-right.png
deleted file mode 100755
index d38d11cff7..0000000000
Binary files a/main/css/fruity_orange/images/tab-right.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/tab.png b/main/css/fruity_orange/images/tab.png
deleted file mode 100755
index 2b657bfe2b..0000000000
Binary files a/main/css/fruity_orange/images/tab.png and /dev/null differ
diff --git a/main/css/fruity_orange/images/white_arrow.png b/main/css/fruity_orange/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/fruity_orange/images/white_arrow.png and /dev/null differ
diff --git a/main/css/fruity_orange/learnpath.css b/main/css/fruity_orange/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/fruity_orange/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/fruity_orange/online.css b/main/css/fruity_orange/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/fruity_orange/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/fruity_orange/print.css b/main/css/fruity_orange/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/fruity_orange/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/fruity_orange/scorm.css b/main/css/fruity_orange/scorm.css
deleted file mode 100755
index b5eab78186..0000000000
--- a/main/css/fruity_orange/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #e6e6e6;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #D7EEF4;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #fcfcfc; /* Old browsers */
- background: -moz-linear-gradient(top, #fcfcfc 0%, #e4e4e4 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fcfcfc 0%,#e4e4e4 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #555; /* Old browsers */
- background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
- background: linear-gradient(to bottom, #555 0%,#333 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555', endColorstr='#333',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #666666;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #fcfcfc;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #ccc;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #666;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #666;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/fruity_orange/scormfs.css b/main/css/fruity_orange/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/fruity_orange/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/fruity_orange/screen.css b/main/css/fruity_orange/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/home.png b/main/css/home.png
deleted file mode 100755
index 1e0beab68f..0000000000
Binary files a/main/css/home.png and /dev/null differ
diff --git a/main/css/journal/dataTable.css b/main/css/journal/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/journal/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/journal/default.css b/main/css/journal/default.css
deleted file mode 100755
index c16615a5a6..0000000000
--- a/main/css/journal/default.css
+++ /dev/null
@@ -1,1196 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-/* the following for regular elements */
-a {
- text-decoration: none;
- color :#666;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #3399F3;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-.navbar .nav > li > a {
- float: none;
- line-height: 24px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background: #fcfcfc; /* Old browsers */
- background: -moz-linear-gradient(top, #fcfcfc 0%, #e4e4e4 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fcfcfc 0%,#e4e4e4 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
- border: 1px solid #DDDDDD;
- margin-bottom: 5px;
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
- color: #777777;
- font-weight: normal;
- font-size: 13px;
-}
-
-
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- color: #3399F3;
- background:none;
-}
-
-.subnav li a {
- color:#fff;
-}
-
-/* Green hover */
-.subnav .navbar-inner li a:hover {
- background: none;
- color: #3399F3;
-}
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 7px;
-}
-.form-actions {
- background:transparent;
-}
-
-.breadcrumb a{
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- line-height: 25px;
- text-transform: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/* COURSE INTRO CONTENT */
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/* END OF COURSE INTRO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-/*#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}*/
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
- width: 250px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-#settings .span6 .well_border {
- min-height: 300px;
-}
-.breadcrumb {
- margin-top: 10px;
- background: #F5F5F5;
- padding-top: 5px;
- padding-bottom: 5px;
- border: 1px solid #DDDDDD;
- box-shadow: none;
-}
-.breadcrumb a{
-
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background:#F5F5F5;
- border: 1px solid #DDDDDD;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-/*#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #3399F3;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}*/
-.page-header h2, .page-header h1{
- color: #3399F3;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #3399F3;
- font-weight: normal;
-}
-.page-header {
- border:none;
-}
-.well_border{
- background:#F5F5F5;
- border: 1px solid #DDDDDD;
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
-}
-.categories-course-description .text-h3{
- color: #0F466A;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 7em;
- background: #fcfcfc; /* Old browsers */
- background: -moz-linear-gradient(top, #fcfcfc 0%, #e4e4e4 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fcfcfc 0%,#e4e4e4 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
- color:#666;
- border:none;
-}
-footer .container .row {
- padding-top: 5px;
-}
-footer a:link, footer a:visited {
- color: #3399F3;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- background-color: #D9EDF7;
- color: #3A87AD;
- padding: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #BCE8F1;
- border-left: 1px solid #BCE8F1;
- border-right: 1px solid #BCE8F1;
- border-bottom: 3px solid #BCE8F1;
- border-radius: 10px;
-}
-.warning-message {
- background-color: #FCF8E3;
- color: #C09853;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #FBEED5;
- border-left: 1px solid #FBEED5;
- border-right: 1px solid #FBEED5;
- border-bottom: 3px solid #FBEED5;
- border-radius: 10px;
-}
-.confirmation-message {
- background-color: #DFF0D8;
- color: #468847;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #D6E9C6;
- border-left: 1px solid #D6E9C6;
- border-right: 1px solid #D6E9C6;
- border-bottom: 3px solid #D6E9C6;
- border-radius: 10px;
-}
-.error-message {
- background-color: #F2DEDE;
- color: #B94A48;
- padding: 10px;
- margin-bottom: 15px;
- border-top: 1px solid #EED3D7;
- border-left: 1px solid #EED3D7;
- border-right: 1px solid #EED3D7;
- border-bottom: 3px solid #EED3D7;
- border-radius: 10px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #fcfcfc; /* Old browsers */
- background: -moz-linear-gradient(top, #fcfcfc 0%, #e4e4e4 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #fcfcfc 0%,#e4e4e4 100%); /* IE10+ */
- background: linear-gradient(to bottom, #fcfcfc 0%,#e4e4e4 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
- border: 1px solid #DDDDDD;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
-
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: #2bb8ef; /* Old browsers */
- background: -moz-linear-gradient(top, #2bb8ef 0%, #0191c7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2bb8ef), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2bb8ef 0%,#0191c7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2bb8ef', endColorstr='#0191c7',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 5em;
- }
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/journal/frames.css b/main/css/journal/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/journal/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/journal/images/2leftarrow.gif b/main/css/journal/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/journal/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/journal/images/2rightarrow.gif b/main/css/journal/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/journal/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/journal/images/accept.png b/main/css/journal/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/journal/images/accept.png and /dev/null differ
diff --git a/main/css/journal/images/accept_data.png b/main/css/journal/images/accept_data.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/journal/images/accept_data.png and /dev/null differ
diff --git a/main/css/journal/images/add.png b/main/css/journal/images/add.png
deleted file mode 100755
index 2c787d0245..0000000000
Binary files a/main/css/journal/images/add.png and /dev/null differ
diff --git a/main/css/journal/images/bg-button.gif b/main/css/journal/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/journal/images/bg-button.gif and /dev/null differ
diff --git a/main/css/journal/images/bg-main.png b/main/css/journal/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/journal/images/bg-main.png and /dev/null differ
diff --git a/main/css/journal/images/blue_arrow.png b/main/css/journal/images/blue_arrow.png
deleted file mode 100755
index 34e662eb0e..0000000000
Binary files a/main/css/journal/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/journal/images/bullet.gif b/main/css/journal/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/journal/images/bullet.gif and /dev/null differ
diff --git a/main/css/journal/images/buttom.png b/main/css/journal/images/buttom.png
deleted file mode 100755
index a90b66ce4c..0000000000
Binary files a/main/css/journal/images/buttom.png and /dev/null differ
diff --git a/main/css/journal/images/button_accept.gif b/main/css/journal/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/journal/images/button_accept.gif and /dev/null differ
diff --git a/main/css/journal/images/button_add.gif b/main/css/journal/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/journal/images/button_add.gif and /dev/null differ
diff --git a/main/css/journal/images/button_back.gif b/main/css/journal/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/journal/images/button_back.gif and /dev/null differ
diff --git a/main/css/journal/images/button_delete.gif b/main/css/journal/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/journal/images/button_delete.gif and /dev/null differ
diff --git a/main/css/journal/images/button_login.gif b/main/css/journal/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/journal/images/button_login.gif and /dev/null differ
diff --git a/main/css/journal/images/button_minus.gif b/main/css/journal/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/journal/images/button_minus.gif and /dev/null differ
diff --git a/main/css/journal/images/button_next.gif b/main/css/journal/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/journal/images/button_next.gif and /dev/null differ
diff --git a/main/css/journal/images/button_refresh.gif b/main/css/journal/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/journal/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/journal/images/button_search.gif b/main/css/journal/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/journal/images/button_search.gif and /dev/null differ
diff --git a/main/css/journal/images/button_upload.gif b/main/css/journal/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/journal/images/button_upload.gif and /dev/null differ
diff --git a/main/css/journal/images/chamilo-welcome.png b/main/css/journal/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/journal/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/journal/images/course.png b/main/css/journal/images/course.png
deleted file mode 100755
index 0510111065..0000000000
Binary files a/main/css/journal/images/course.png and /dev/null differ
diff --git a/main/css/journal/images/dataTable/Sorting icons.psd b/main/css/journal/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/journal/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/journal/images/dataTable/back_disabled.jpg b/main/css/journal/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/journal/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/journal/images/dataTable/back_enabled.jpg b/main/css/journal/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/journal/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/journal/images/dataTable/favicon.ico b/main/css/journal/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/journal/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/journal/images/dataTable/forward_disabled.jpg b/main/css/journal/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/journal/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/journal/images/dataTable/forward_enabled.jpg b/main/css/journal/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/journal/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/journal/images/dataTable/sort_asc.png b/main/css/journal/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/journal/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/journal/images/dataTable/sort_asc_disabled.png b/main/css/journal/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/journal/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/journal/images/dataTable/sort_both.png b/main/css/journal/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/journal/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/journal/images/dataTable/sort_desc.png b/main/css/journal/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/journal/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/journal/images/dataTable/sort_desc_disabled.png b/main/css/journal/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/journal/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/journal/images/header-logo.png b/main/css/journal/images/header-logo.png
deleted file mode 100755
index ed64bdb840..0000000000
Binary files a/main/css/journal/images/header-logo.png and /dev/null differ
diff --git a/main/css/journal/images/help2.png b/main/css/journal/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/journal/images/help2.png and /dev/null differ
diff --git a/main/css/journal/images/history.png b/main/css/journal/images/history.png
deleted file mode 100755
index 2950d82c3a..0000000000
Binary files a/main/css/journal/images/history.png and /dev/null differ
diff --git a/main/css/journal/images/icon-chamilo.png b/main/css/journal/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/journal/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/journal/images/inbox.png b/main/css/journal/images/inbox.png
deleted file mode 100755
index 0eff4fd6fc..0000000000
Binary files a/main/css/journal/images/inbox.png and /dev/null differ
diff --git a/main/css/journal/images/install.png b/main/css/journal/images/install.png
deleted file mode 100755
index e95b7c7192..0000000000
Binary files a/main/css/journal/images/install.png and /dev/null differ
diff --git a/main/css/journal/images/invitation.png b/main/css/journal/images/invitation.png
deleted file mode 100755
index 7c7554494f..0000000000
Binary files a/main/css/journal/images/invitation.png and /dev/null differ
diff --git a/main/css/journal/images/list-course.png b/main/css/journal/images/list-course.png
deleted file mode 100755
index 478905372b..0000000000
Binary files a/main/css/journal/images/list-course.png and /dev/null differ
diff --git a/main/css/journal/images/loading.gif b/main/css/journal/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/journal/images/loading.gif and /dev/null differ
diff --git a/main/css/journal/images/new.png b/main/css/journal/images/new.png
deleted file mode 100755
index c567e080d8..0000000000
Binary files a/main/css/journal/images/new.png and /dev/null differ
diff --git a/main/css/journal/images/next.png b/main/css/journal/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/journal/images/next.png and /dev/null differ
diff --git a/main/css/journal/images/order-course.png b/main/css/journal/images/order-course.png
deleted file mode 100755
index 047dfffeb3..0000000000
Binary files a/main/css/journal/images/order-course.png and /dev/null differ
diff --git a/main/css/journal/images/perfil.png b/main/css/journal/images/perfil.png
deleted file mode 100755
index 289191b0e8..0000000000
Binary files a/main/css/journal/images/perfil.png and /dev/null differ
diff --git a/main/css/journal/images/portal.png b/main/css/journal/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/journal/images/portal.png and /dev/null differ
diff --git a/main/css/journal/images/previus.png b/main/css/journal/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/journal/images/previus.png and /dev/null differ
diff --git a/main/css/journal/images/refresh.png b/main/css/journal/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/journal/images/refresh.png and /dev/null differ
diff --git a/main/css/journal/images/sprite-icon-social.png b/main/css/journal/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/journal/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/journal/images/sprite-icon.png b/main/css/journal/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/journal/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/journal/images/start-level.png b/main/css/journal/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/journal/images/start-level.png and /dev/null differ
diff --git a/main/css/journal/images/vineta.png b/main/css/journal/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/journal/images/vineta.png and /dev/null differ
diff --git a/main/css/journal/images/white_arrow.png b/main/css/journal/images/white_arrow.png
deleted file mode 100755
index 8b46a3d421..0000000000
Binary files a/main/css/journal/images/white_arrow.png and /dev/null differ
diff --git a/main/css/journal/learnpath.css b/main/css/journal/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/journal/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/journal/print.css b/main/css/journal/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/journal/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/journal/scorm.css b/main/css/journal/scorm.css
deleted file mode 100755
index 07205525b1..0000000000
--- a/main/css/journal/scorm.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/* copy of default_scorm.css */
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
diff --git a/main/css/journal/scormfs.css b/main/css/journal/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/journal/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/kiddy/dataTable.css b/main/css/kiddy/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/kiddy/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/kiddy/default.css b/main/css/kiddy/default.css
deleted file mode 100755
index f4b0138629..0000000000
--- a/main/css/kiddy/default.css
+++ /dev/null
@@ -1,1328 +0,0 @@
-/*****************************************************
- * MAIN - CHAMILO CSS
- *****************************************************/
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-a {
- text-decoration: none;
- color :#6E6E6E;
-}
-a:visited {
- text-decoration: none;
-}
-a:hover {
- text-decoration: none;
- color: #FD6600;
-}
-a:active {
- text-decoration: none;
- color : #3757f7;
-}
-
-.navbar .nav > li > a {
- float: none;
- line-height: 15px;
- padding-bottom: 13px;
- padding-right: 10px;
- padding-top: 13px;
- color: #FFFFFF;
-}
-.subnav .navbar-inner {
- background: none;
- border:none;
-}
-.subnav .nav > li{
- margin-right: 5px;
- margin-top: 6px;
-}
-.subnav .nav > .tab-homepage{
- background: url(images/icon-kids.png) no-repeat 5px 6px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-my-course{
- background: url(images/icon-kids.png) no-repeat 5px -35px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-agenda{
- background: url(images/icon-kids.png) no-repeat 5px -81px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-my-space,.subnav .nav > .tab-my-progress {
- background: url(images/icon-kids.png) no-repeat 5px -124px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-social-network{
- background: url(images/icon-kids.png) no-repeat 5px -165px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-dashboard{
- background: url(images/icon-kids.png) no-repeat 5px -208px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > .tab-admin{
- background: url(images/icon-kids.png) no-repeat 5px -252px #FD6600;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-}
-.subnav .nav > li > a {
- background: none;
- border: none;
- box-shadow: none;
- font-size: 14px;
- padding-left: 33px;
- font-weight: bold;
-}
-.subnav .nav > #current{
- background-color: #D10404;
- border: none;
- box-shadow: none;
- color: #FFFFFF;
- padding-left: 20px;
- -webkit-border-top-left-radius: 10px;
--webkit-border-top-right-radius: 10px;
--moz-border-radius-topleft: 10px;
--moz-border-radius-topright: 10px;
-border-top-left-radius: 10px;
-border-top-right-radius: 10px;
-
-}
-.subnav-fixed{
- background: #0191C7;
-}
-.subnav .nav > #current > a,
-.subnav .nav > #current > a:hover {
- background: none;
- border: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-.subnav .navbar-inner li a:hover{
- background: none;
- border: none;
- box-shadow: none;
- color: #ffCC00;
-}
-
-
-.well .nav-list > li > a:hover {
- text-decoration: none;
- background: none;
-}
-.sidebar-nav h4{
- color: #037FB2;
- padding-bottom: 3px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 3px;
-}
-
-#main .nav .dropdown a {
- text-align: right;
- background: none;
- border: none;
- font-weight: normal;
- font-size: 12px;
- padding-left: 0;
- color: #665;
-}
-#main .nav .dropdown a:hover {
- color: #FD6600;
- font-weight: normal;
-}
-#main .nav .notification-marker a{
- padding-left: 0;
-}
-.subnav .nav > li > .logout, .subnav .nav > li > .logout:hover{
- background: none;
- border: none;
- padding-left: 0;
-}
-#main .nav .dropdown .caret{
- border-bottom-color: #FFCC00;
- border-top-color: #FFCC00;
- opacity: 1;
-}
-/*****************************************************
- * CHAMILO THEME STYLE *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-a.thumbnail:hover{
- border: 1px solid #e5e5e5;
- background: transparent;
-}
-.logout img{
- padding-top: 2px;
-}
-.form-actions {
- background:transparent;
-}
-
-.breadcrumb a{
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-.breadcrumb a.btn-mini{
- line-height: 17px;
- text-transform: none;
-}
-.breadcrumb a.btn-mini > .btn-success{
- color: #FFFFFF;
-}
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-/*ICON INBOX*/
-.home-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 0;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.home-icon:hover,.messages-icon:hover, .invitations-icon:hover,.shared-profile-icon:hover,.friends-icon:hover,
-.browse-groups-icon:hover ,.search-icon:hover ,.myfiles-icon:hover {
- opacity: 0.8;
-}
-.messages-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -29px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.invitations-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -61px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.shared-profile-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -96px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-.friends-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -130px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.browse-groups-icon{
- background:url(images/icon-chamilo.png) no-repeat 0 -163px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.search-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -198px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-.myfiles-icon {
- background:url(images/icon-chamilo.png) no-repeat 0 -229px;
- background-size: 24px auto;
- padding-left: 30px;
-}
-
-/* END ICON INBOX */
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
- text-shadow:none;
-}
-.social-menu .well .thumbnail{
- border: none;
- border-radius: none;
- box-shadow: none;
-}
-.invitation_confirm .thumbnail{
- border: 1px solid rgba(96, 165, 209, 0.1);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- display: block;
- line-height: 1;
- padding: 4px;
- background-color: #EEF5FA;
-}
-.invitation_confirm a.thumbnail:hover{
- border-color: rgba(96, 165, 209, 0.1);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
- background-color: #FFFFFF;
-}
-.social-menu .well .thumbnail img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 2px solid #FFFFFF;
-}
-
-/* ANNOUNCEMENTS SLIDER */
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
- font-weight: normal;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/* COURSE INTRO CONTENT */
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/* END OF COURSE INTRO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2{
- color: #0191C7;
- font-weight: normal;
- font-size: 20px;
- padding-left: 10px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border-bottom-color: #0191C7;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- box-shadow: none;
- padding-bottom: 0px;
-}
-.well_border{
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
- font-weight: normal;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * STYLE THEME CHAMILO *
- *****************************************************/
-.welcome-mascot{
- background: url(images/chamilo-welcome.png) no-repeat right 0;
- padding-right: 200px;
- padding-bottom: 2em;
- padding-top: 2em;
-}
-
-.nav-list > li > a {
- font-size: 14px;
- padding-bottom: 6px;
- /* padding-left: 15px;
- padding-right: 15px;*/
- padding-top: 6px;
-}
-
-#settings .span6 .well_border {
- min-height: 300px;
-}
-.breadcrumb {
- margin-bottom: 0;
- background: rgb(239,234,179); /* Old browsers */
-background: -moz-linear-gradient(top, rgba(239,234,179,1) 0%, rgba(255,196,48,1) 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(239,234,179,1)), color-stop(100%,rgba(255,196,48,1))); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, rgba(239,234,179,1) 0%,rgba(255,196,48,1) 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, rgba(239,234,179,1) 0%,rgba(255,196,48,1) 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, rgba(239,234,179,1) 0%,rgba(255,196,48,1) 100%); /* IE10+ */
-background: linear-gradient(to bottom, rgba(239,234,179,1) 0%,rgba(255,196,48,1) 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efeab3', endColorstr='#ffc430',GradientType=0 ); /* IE6-9 */
- padding-top: 5px;
- padding-bottom: 5px;
- margin-top: 5px;
- border: 1px solid #FFBD23;
- box-shadow: none;
-}
-.breadcrumb a{
-
- line-height: 30px;
- text-transform: none;
-}
-
-.breadcrumb li{
-
- text-shadow: none;
-}
-
-
-/* styles for the star rater */
-.star-rating{
- list-style:none;
- margin: 0px;
- padding:0px;
- width: 125px;
- height: 25px;
- position: relative;
- overflow:hidden;
- background: url(images/start-level.png) top left repeat-x;
-}
-.star-rating li{
- padding:0px;
- margin:0px;
- width:25px;
- height:25px;
- float: left;
-}
-.star-rating li a{
- display:block;
- width:25px;
- height: 25px;
- line-height:25px;
- text-decoration: none;
- text-indent: -9000px;
- z-index: 20;
- position: absolute;
- padding: 0px;
- overflow:hidden;
-}
-.star-rating li a:hover{
- background: url(images/start-level.png) left bottom;
- z-index: 2;
- left: 0px;
- border:none;
-}
-.star-rating a.one-star{
- left: 0px;
-}
-.star-rating a.one-star:hover{
- width:25px;
-}
-.star-rating a.two-stars{
- left:25px;
-}
-.star-rating a.two-stars:hover{
- width: 50px;
-}
-.star-rating a.three-stars{
- left: 50px;
-}
-.star-rating a.three-stars:hover{
- width: 75px;
-}
-.star-rating a.four-stars{
- left: 75px;
-}
-.star-rating a.four-stars:hover{
- width: 100px;
-}
-.star-rating a.five-stars{
- left: 100px;
-}
-.star-rating a.five-stars:hover{
- width: 125px;
-}
-.star-rating li.current-rating{
- background: url(images/start-level.png) left center;
- position: absolute;
- height: 25px;
- display: block;
- text-indent: -9000px;
- z-index: 1;
-}
-
-.nav-list > .active > a, .nav-list > .active > a:hover {
- color: #333333;
- background: none;
-}
-/*CSS SLIDER ANUNCIOS*/
-
-.pagerslide h2{
- font-size: 18px;
- background-color: #0191C7;
- color: #FFFFFF;
- padding-left: 15px;
-}
-
-#top_main_content #announcements .page-header{
- display: none;
- line-height: 1;
-}
-#top_main_content #announcements .span6 {
- width: 800px;
-}
-
-/*CSS PARA CONTENIDO DE CURSO INTRODUCCION*/
-
-.page-course-intro{
- padding: 2em;
- border: 1px solid #DDDDDD;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-bottom: 2em;
-}
-
-.page-course-intro ul{
- list-style-image:url(images/vineta.png);
- padding-top: 10px;
-}
-.page-course-intro a{
- color: #FD6600;
-}
-.page-course-intro a:hover{
- color: #FD6600;
- text-decoration: underline;
-}
-
-
-/*FIN DE INTRODUCCION DEL CURSO*/
-.fc-header-title h2{
- color: #0191C7;
-}
-.fc-first .fc-widget-header{
- font-size: 14px;
- font-weight: normal;
- padding-top: 5px;
- padding-bottom: 5px;
-}
-
-.well {
- background: rgb(214,249,255); /* Old browsers */
-background: -moz-linear-gradient(top, rgba(214,249,255,1) 0%, rgba(249,249,249,1) 14%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(214,249,255,1)), color-stop(14%,rgba(249,249,249,1))); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, rgba(214,249,255,1) 0%,rgba(249,249,249,1) 14%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, rgba(214,249,255,1) 0%,rgba(249,249,249,1) 14%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, rgba(214,249,255,1) 0%,rgba(249,249,249,1) 14%); /* IE10+ */
-background: linear-gradient(to bottom, rgba(214,249,255,1) 0%,rgba(249,249,249,1) 14%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6f9ff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 20px 10px;
-}
-.sidebar-nav img{
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#homepage .row .span9 h2{
- font-size: 26px;
- font-weight: bold;
- color: #0191C7;
- padding-bottom: 8px;
-}
-#homepage .row .span9 p,#homepage .row .span9 ol {
- color: #6E6E6E;
-}
-#homepage .row .span9 a{
- color: #0F466A;
-}
-#homepage .row .span9 a:hover{
- color: #FD6600;
-}
-.page-header h2, .page-header h1{
- color: #0191C7;
- font-weight: bold;
- font-size: 20px;
- padding-left: 10px;
- width: 250px;
-}
-#course_tools .course-title-tools h3 {
- margin-top: 10px;
- color: #0191C7;
- font-weight: normal;
-
-
-}
-.page-header {
- border:none;
-}
-.well_border{
- background-color: rgba(96,165,209, 0.1);
- border: 1px solid rgba(96,165,209, 0.1);
- border-radius: 8px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
- margin-bottom: 20px;
- min-height: 20px;
- padding: 19px;
-}
-.well_border .row .span2 {
- width: 98px;
-}
-.well_border .row .span2 .thumbnail {
- background-color: #FFFFFF;
- background-image: none;
-}
-#hot_courses .row .span9 .well_border .row .span6{
- width: auto;
-}
-.categories-course-description h3{
- color: #0F466A;
-}
-#course_tools .content a {
- font-size: 12px;
- font-weight: normal;
-}
-#main_content .course-box .row .span7{
- width: 730px;
-}
-#main_content .course-box .row .span7 .row .span6 {
- width: 615px;
-}
-#main_content .course-box .row .span7 .row .span6 h3{
- font-size: 20px;
-}
-#course_category li, #hot_courses h5, .course_item h5, .categories-course-description h5, .course-box h5 {
- font-weight: normal;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- height: 16em;
- background: url(images/footer.jpg) center 0 repeat-x #6CB1DB;
- color:#147FB8;
- border-top: none;
- padding-top: 0;
-}
-footer .container .row {
- padding-top: 0;
-}
-footer a:link, footer a:visited {
- color: #FD6600;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/*****************************************************
- * CSS CHAT *
- *****************************************************/
-.chatboxmain {
- bottom: 0;
- display: block;
- position: fixed;
- right: 20px;
- width: 225px;
- z-index: 9000;
-}
-
-.chatboxheadmain {
- padding:7px 7px 7px 0px;
- color: #ffffff;
- border-right:1px solid #222;
- border-left:1px solid #222;
-
- background-color: #222;
- background-repeat: repeat-x;
- background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
- background-image: -moz-linear-gradient(top, #333333, #222222);
- background-image: -ms-linear-gradient(top, #333333, #222222);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
- background-image: -webkit-linear-gradient(top, #333333, #222222);
- background-image: -o-linear-gradient(top, #333333, #222222);
- background-image: linear-gradient(top, #333333, #222222);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
-
-}
-#chatboxtitlemain {
- cursor: pointer;
- float: left;
- font-size: 12px;
- font-weight: normal;
- width: 160px;
-}
-/*****************************************************
- * CSS CHAT END *
- *****************************************************/
-.normal-message {
- color: #00407F;
- border: 1px solid #CDE6F5;
- background: url("images/background_message.png") repeat-x scroll 0 0 #EAF8FE;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background: url("images/background_message.png") repeat-x scroll 0 0 #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color:#1F8323;
- background: url("images/accept_data.png") no-repeat scroll 5px center #CAF0C7;
- padding-left: 45px;
-}
-.error-message {
- border: 1px solid #FA5858;
- color: #000;
- padding-top: 5px;
- background: url("images/error.png") no-repeat scroll 5px center #F6CECE;
- padding-left: 45px;
-}
-.error-message strong{
- font-weight: normal;
-}
-.social-menu-title {
- background-color:#00AAE3;
-}
-
-#social-content-online {
- background-color:#00AAE3;
-}
-
-.admin_section li {
- background-image:url(images/bullet.gif);
-}
-
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
-}
-
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-
-#bottomhellomindfactory {
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-
-/*including "login" image*/
-button.login {
- background-image:url(images/bg-button.gif);
-}
-
-button.login:hover {
-}
-
-/*including "save" image*/
-button.save {
- background:url(images/accept.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.save:hover {
- background:url(images/accept.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "add" image*/
-.controls .btn.add {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-.controls .btn.add:hover {
- background:url(images/add.png) 0 center no-repeat;
- padding-left: 36px;
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background:url(images/buttom.png) 0 center no-repeat #F0F0F0;
- color: #666;
- padding-left: 30px;
-}
-button.search:hover {
- background:url(images/buttom.png) 0 center no-repeat #ffffff;
- color: #666;
- padding-left: 30px;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next {
- background:url(images/next.png) 0 center no-repeat #F0F0F0;
-}
-button.next:hover {
- background:url(images/next.png) 0 center no-repeat #ffffff;
-}
-/*including "back" image*/
-button.back {
- background:url(images/previus.png) 0 center no-repeat #F0F0F0;
-}
-button.back:hover {
- background:url(images/previus.png) 0 center no-repeat #ffffff;
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-.refresh {
- background-image:url(images/refresh.png);
-}
-
-.portal {
- background-image:url(images/portal.png);
-}
-
-/*+++++++++++++++++++++++++++++++++++++++++++
- + CHAMILO INSTALL
- ++++++++++++++++++++++++++++++++++++++++++++*/
-.install-mascot{
- background: url(images/install.png) no-repeat center 0;
- padding-top: 20em;
-}
-.install-chamilo .navbar{
- display: none;
-}
-.install-chamilo footer{
- display: none;
-}
-.install-chamilo .page-header {
- border-bottom: 2px solid #FD6600;
-}
-.install-chamilo .page-header h1 {
- line-height: 1;
- color: #FD6600;
-}
-.install-chamilo header{
- margin-top: 0;
- margin-bottom: 0;
-}
-.install-chamilo .RequirementHeading h2{
- color: #2E75A3;
-}
-.install-chamilo .page-header h2 {
- color: #FD6600;
- font-size: 20px;
- font-weight: bold;
- padding-left: 0;
- width: 250px;
-}
-.well-install{
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
- padding: 3em;
- border: 1px solid #E1E1E0;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin-top: 3em;
-}
-button.next.disabled {
- cursor: default;
- opacity: 0.65;
-}
-button.next.disabled:hover {
- cursor: default;
- opacity: 0.65;
- background-image: none;
-}
-.install-chamilo .btn-success.btn-install {
- float: right;
- background: #ff9900; /* Old browsers */
- background: -moz-linear-gradient(top, #ff9900 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9900), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff9900 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff9900 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- border:1px solid rgba(0, 0, 0, 0.15);
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.17);
- color: #FFFFFF;
- padding: 5px 25px;
-}
-.install-chamilo .btn-success.btn-install:hover {
- background: #ff7b00; /* Old browsers */
- background: -moz-linear-gradient(top, #ff7b00 0%, #fd6600 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7b00), color-stop(100%,#fd6600)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ff7b00 0%,#fd6600 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ff7b00 0%,#fd6600 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7b00', endColorstr='#fd6600',GradientType=0 ); /* IE6-9 */
- color: #FFFFFF;
-}
-/*+++++++++++++++++++++++++++++++++++++++++++
-END INSTALL CHAMILO
-+++++++++++++++++++++++++++++++++++++++++++*/
-.bottom_actions_fixed{
- background: #2bb8ef; /* Old browsers */
- background: -moz-linear-gradient(top, #2bb8ef 0%, #0191c7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2bb8ef), color-stop(100%,#0191c7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #2bb8ef 0%,#0191c7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #2bb8ef 0%,#0191c7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2bb8ef', endColorstr='#0191c7',GradientType=0 ); /* IE6-9 */
- border: 1px solid #E1E1E0;
-}
-.new_actions-fixed {
- top: 50px;
-}
-
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -415px;
- padding-left: 40px;
- }
- .inbox-social:hover,.new-message-social:hover,.invitations-social:hover,.profile-social:hover,.add-course:hover,
- .order-course:hover,.history-course:hover, .list-course:hover{
- opacity: 0.8;
- }
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -370px;
- padding-left: 40px;
- }
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -455px;
- padding-left: 40px;
- }
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -496px;
- padding-left: 40px;
- }
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -327px;
- padding-left: 40px;
- }
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -536px;
- padding-left: 40px;
- }
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -576px;
- padding-left: 40px;
- }
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -618px;
- padding-left: 40px;
- }
- .forum-btn{
- background: url("images/icon-chamilo.png") no-repeat 0 -666px;
- padding-left: 40px;
- }
-
-/*+++++++++++++++++++++++++++++++++
-RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
-
-.navbar .brand {
- float: left;
- font-size: 16px;
- font-weight: 200;
- line-height: 20px;
- padding-bottom: 12px;
- padding-top: 12px;
- color: #FFFFFF;
-}
-.navbar-inner{
- background: rgb(41,110,170); /* Old browsers */
-background: -moz-linear-gradient(top, rgba(41,110,170,1) 0%, rgba(1,145,199,1) 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(41,110,170,1)), color-stop(100%,rgba(1,145,199,1))); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, rgba(41,110,170,1) 0%,rgba(1,145,199,1) 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, rgba(41,110,170,1) 0%,rgba(1,145,199,1) 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, rgba(41,110,170,1) 0%,rgba(1,145,199,1) 100%); /* IE10+ */
-background: linear-gradient(to bottom, rgba(41,110,170,1) 0%,rgba(1,145,199,1) 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#296eaa', endColorstr='#0191c7',GradientType=0 ); /* IE6-9 */
-}
-
-.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- background-color: #FD6600;
- color: #FFFFFF;
-}
-.navbar-search {
- margin-bottom: 0;
- margin-top: 11px;
- position: relative;
-}
-.navbar-search .search-query {
- background:#FFFFFF;
- color: #666;
- border: 1px solid #ffffff;
-}
-.navbar .nav .active > a, .navbar .nav .active > a:hover {
- background:none;
- color: #FFFFFF;
-}
-@media (min-width: 321px) and (max-width: 480px) {
-.page-section{
- background: url(images/camaleon.jpg) repeat-x -850px -100px;
- margin-top: -10px;
-}
-}
-@media (min-width: 481px) and (max-width: 800px) {
-
- .sidebar-nav h4 {
- color: #037FB2;
- font-size: 18px;
- padding-bottom: 10px;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- }
- .page-section{
- background: url(images/camaleon.jpg) repeat-x -500px -100px;
- margin-top: -10px;
- padding-top: 40px;
- }
- #profile_block .nav-list li, #course_block .nav-list li{
- padding-bottom: 5px;
- padding-top: 5px;
- }
- #top_main_content .menu-column #user_image_block{
- box-shadow: none;
- }
- footer #footer_left a, footer #footer_center a, footer #footer_right a{
- color: #FD6600;
- }
-
-}
-@media (max-width: 600px) {
-#main_content .course-box .row .span7 .row .span6 {
- float: left;
- /*width: 615px;*/
- padding-left: 10px;
-}
-#main_content .course-box .row .span7 .row .span6 h3 {
- font-size: 16px;
- /*width: 500px;*/
- }
-}
-
-@media (min-width: 801px){
- .nav-list > li > a {
- font-size: 13px;
- padding-bottom: 8px;
- padding-top: 8px;
-}
-.page-section{
- background: url(images/camaleon.jpg) repeat-x -500px -100px;
- margin-top: -10px;
-}
-/*CSS ICON BLOCK USER*/
- .inbox-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -345px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .new-message-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -307px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .invitations-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -378px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .profile-social{
- background: url("images/icon-chamilo.png") no-repeat 0 -414px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .add-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -274px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .order-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -447px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .history-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -481px;
- padding-left: 30px;
- background-size: 25px auto;
- }
-
- .list-course{
- background: url("images/icon-chamilo.png") no-repeat 0 -517px;
- padding-left: 30px;
- background-size: 25px auto;
- }
- .forum-btn {
- background: url("images/icon-chamilo.png") no-repeat scroll 0 -552px / 25px auto rgba(0, 0, 0, 0);
- padding-left: 30px;
-}
-
-}
-@media (min-width: 321px) and (max-width: 480px){
-footer {
- height: 15em;
-
- }
-footer #footer_left a, footer #footer_center a, footer #footer_right a {
- color: #FD6600;
-}
-.welcome-mascot{
- background: none;
- padding-right: 0px;
- padding-bottom: 2em;
- padding-top: 2em;
- }
-#homepage .row .span9 h2 {
- color: #0191C7;
- font-size: 22px;
- font-weight: bold;
- padding-bottom: 8px;
- line-height: 25px;
-}
-#announcements{
- display: none;
-}
-}
-@media (min-width: 1201px) {
-.page-section{
- background: url(images/camaleon.jpg) repeat-x center -100px;
- background-size: auto auto;
- margin-top: -10px;
-}
-}
-/*+++++++++++++++++++++++++++++++++
-END RESPONSIVE CSS
-+++++++++++++++++++++++++++++++++*/
diff --git a/main/css/kiddy/frames.css b/main/css/kiddy/frames.css
deleted file mode 100755
index ada47dda71..0000000000
--- a/main/css/kiddy/frames.css
+++ /dev/null
@@ -1,989 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/kiddy/images/2leftarrow.gif b/main/css/kiddy/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/kiddy/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/kiddy/images/2rightarrow.gif b/main/css/kiddy/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/kiddy/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/kiddy/images/accept.png b/main/css/kiddy/images/accept.png
deleted file mode 100755
index 252ce9d25e..0000000000
Binary files a/main/css/kiddy/images/accept.png and /dev/null differ
diff --git a/main/css/kiddy/images/accept_data.png b/main/css/kiddy/images/accept_data.png
deleted file mode 100755
index 7edbd56f4a..0000000000
Binary files a/main/css/kiddy/images/accept_data.png and /dev/null differ
diff --git a/main/css/kiddy/images/add.png b/main/css/kiddy/images/add.png
deleted file mode 100755
index 3d578ca80b..0000000000
Binary files a/main/css/kiddy/images/add.png and /dev/null differ
diff --git a/main/css/kiddy/images/bg-button.gif b/main/css/kiddy/images/bg-button.gif
deleted file mode 100755
index 57f7fe3bee..0000000000
Binary files a/main/css/kiddy/images/bg-button.gif and /dev/null differ
diff --git a/main/css/kiddy/images/bg-main.png b/main/css/kiddy/images/bg-main.png
deleted file mode 100755
index b03a3f73ce..0000000000
Binary files a/main/css/kiddy/images/bg-main.png and /dev/null differ
diff --git a/main/css/kiddy/images/blue_arrow.png b/main/css/kiddy/images/blue_arrow.png
deleted file mode 100755
index b10b877367..0000000000
Binary files a/main/css/kiddy/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/kiddy/images/bullet.gif b/main/css/kiddy/images/bullet.gif
deleted file mode 100755
index 584d1affef..0000000000
Binary files a/main/css/kiddy/images/bullet.gif and /dev/null differ
diff --git a/main/css/kiddy/images/buttom.png b/main/css/kiddy/images/buttom.png
deleted file mode 100755
index d675c3d77f..0000000000
Binary files a/main/css/kiddy/images/buttom.png and /dev/null differ
diff --git a/main/css/kiddy/images/button_accept.gif b/main/css/kiddy/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/kiddy/images/button_accept.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_add.gif b/main/css/kiddy/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/kiddy/images/button_add.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_back.gif b/main/css/kiddy/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/kiddy/images/button_back.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_delete.gif b/main/css/kiddy/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/kiddy/images/button_delete.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_login.gif b/main/css/kiddy/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/kiddy/images/button_login.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_minus.gif b/main/css/kiddy/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/kiddy/images/button_minus.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_next.gif b/main/css/kiddy/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/kiddy/images/button_next.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_refresh.gif b/main/css/kiddy/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/kiddy/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_search.gif b/main/css/kiddy/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/kiddy/images/button_search.gif and /dev/null differ
diff --git a/main/css/kiddy/images/button_upload.gif b/main/css/kiddy/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/kiddy/images/button_upload.gif and /dev/null differ
diff --git a/main/css/kiddy/images/camaleon.jpg b/main/css/kiddy/images/camaleon.jpg
deleted file mode 100755
index 15dd047308..0000000000
Binary files a/main/css/kiddy/images/camaleon.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/chamilo-welcome.png b/main/css/kiddy/images/chamilo-welcome.png
deleted file mode 100755
index 317aa0cc76..0000000000
Binary files a/main/css/kiddy/images/chamilo-welcome.png and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/Sorting icons.psd b/main/css/kiddy/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/kiddy/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/back_disabled.jpg b/main/css/kiddy/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/kiddy/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/back_enabled.jpg b/main/css/kiddy/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/kiddy/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/favicon.ico b/main/css/kiddy/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/kiddy/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/forward_disabled.jpg b/main/css/kiddy/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/kiddy/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/forward_enabled.jpg b/main/css/kiddy/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/kiddy/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/sort_asc.png b/main/css/kiddy/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/kiddy/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/sort_asc_disabled.png b/main/css/kiddy/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/kiddy/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/sort_both.png b/main/css/kiddy/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/kiddy/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/sort_desc.png b/main/css/kiddy/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/kiddy/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/kiddy/images/dataTable/sort_desc_disabled.png b/main/css/kiddy/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/kiddy/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/kiddy/images/error.png b/main/css/kiddy/images/error.png
deleted file mode 100755
index 0b7df7a4c4..0000000000
Binary files a/main/css/kiddy/images/error.png and /dev/null differ
diff --git a/main/css/kiddy/images/footer.jpg b/main/css/kiddy/images/footer.jpg
deleted file mode 100755
index cf43c1138b..0000000000
Binary files a/main/css/kiddy/images/footer.jpg and /dev/null differ
diff --git a/main/css/kiddy/images/header-logo.png b/main/css/kiddy/images/header-logo.png
deleted file mode 100755
index ca3754d4db..0000000000
Binary files a/main/css/kiddy/images/header-logo.png and /dev/null differ
diff --git a/main/css/kiddy/images/help2.png b/main/css/kiddy/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/kiddy/images/help2.png and /dev/null differ
diff --git a/main/css/kiddy/images/icon-chamilo.png b/main/css/kiddy/images/icon-chamilo.png
deleted file mode 100755
index cc5b2d4e9d..0000000000
Binary files a/main/css/kiddy/images/icon-chamilo.png and /dev/null differ
diff --git a/main/css/kiddy/images/icon-kids.png b/main/css/kiddy/images/icon-kids.png
deleted file mode 100755
index 66ba1e779f..0000000000
Binary files a/main/css/kiddy/images/icon-kids.png and /dev/null differ
diff --git a/main/css/kiddy/images/loading.gif b/main/css/kiddy/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/kiddy/images/loading.gif and /dev/null differ
diff --git a/main/css/kiddy/images/next.png b/main/css/kiddy/images/next.png
deleted file mode 100755
index e3539a9f68..0000000000
Binary files a/main/css/kiddy/images/next.png and /dev/null differ
diff --git a/main/css/kiddy/images/portal.png b/main/css/kiddy/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/kiddy/images/portal.png and /dev/null differ
diff --git a/main/css/kiddy/images/previus.png b/main/css/kiddy/images/previus.png
deleted file mode 100755
index 680ac87abc..0000000000
Binary files a/main/css/kiddy/images/previus.png and /dev/null differ
diff --git a/main/css/kiddy/images/refresh.png b/main/css/kiddy/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/kiddy/images/refresh.png and /dev/null differ
diff --git a/main/css/kiddy/images/sprite-icon-social.png b/main/css/kiddy/images/sprite-icon-social.png
deleted file mode 100755
index d5c83afa09..0000000000
Binary files a/main/css/kiddy/images/sprite-icon-social.png and /dev/null differ
diff --git a/main/css/kiddy/images/sprite-icon.png b/main/css/kiddy/images/sprite-icon.png
deleted file mode 100755
index b2b042bc13..0000000000
Binary files a/main/css/kiddy/images/sprite-icon.png and /dev/null differ
diff --git a/main/css/kiddy/images/start-level.png b/main/css/kiddy/images/start-level.png
deleted file mode 100755
index a2643ba7eb..0000000000
Binary files a/main/css/kiddy/images/start-level.png and /dev/null differ
diff --git a/main/css/kiddy/images/vineta.png b/main/css/kiddy/images/vineta.png
deleted file mode 100755
index 5adcc67c71..0000000000
Binary files a/main/css/kiddy/images/vineta.png and /dev/null differ
diff --git a/main/css/kiddy/images/white_arrow.png b/main/css/kiddy/images/white_arrow.png
deleted file mode 100755
index b10b877367..0000000000
Binary files a/main/css/kiddy/images/white_arrow.png and /dev/null differ
diff --git a/main/css/kiddy/learnpath.css b/main/css/kiddy/learnpath.css
deleted file mode 100755
index bcf18bfbcb..0000000000
--- a/main/css/kiddy/learnpath.css
+++ /dev/null
@@ -1,218 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : auto;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- /* border-right:1px solid #999999;*/
- padding-right: 5px;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
-/* background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;*/
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
-/* padding:0;*/
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/kiddy/print.css b/main/css/kiddy/print.css
deleted file mode 100755
index 64f658540b..0000000000
--- a/main/css/kiddy/print.css
+++ /dev/null
@@ -1,943 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- /*padding-right: 20px;*/
- border: 1px solid gray;
- background-color: #E5EDF9;
- text-align: left;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td .highlight {
- font-weight: bold;
-}
-.data_table td {
- padding: 5px;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
- text-align: left;
-}
-
-
-.data_table_no_border {
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 12px;
- margin-bottom: 15px;
- margin-top: 8px;
- text-align: left;
- width: 100%;
-}
-
-.data_table_no_border td {
- line-height: normal;
- padding: 6px;
- text-align: left;
- vertical-align: middle;
-}
-.data_table_no_border .highlight {
- font-weight: bold;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/kiddy/scorm.css b/main/css/kiddy/scorm.css
deleted file mode 100755
index dd21751519..0000000000
--- a/main/css/kiddy/scorm.css
+++ /dev/null
@@ -1,32 +0,0 @@
-/* copy of default_scorm.css */
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- background-image: none;
- color: #0088aa;
- padding-top: 5px;
- padding-bottom: 5px;
-}
\ No newline at end of file
diff --git a/main/css/kiddy/scormfs.css b/main/css/kiddy/scormfs.css
deleted file mode 100755
index eaabc14961..0000000000
--- a/main/css/kiddy/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/lp_section.png b/main/css/lp_section.png
deleted file mode 100755
index fe5080decc..0000000000
Binary files a/main/css/lp_section.png and /dev/null differ
diff --git a/main/css/medical/dataTable.css b/main/css/medical/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/medical/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/medical/default.css b/main/css/medical/default.css
deleted file mode 100755
index 03713dc776..0000000000
--- a/main/css/medical/default.css
+++ /dev/null
@@ -1,2711 +0,0 @@
-/*****************************************************
- * MAIN - MEDICAL CSS *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
- height: 100%; /* stick */
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-
-.maincontent {
- float: left;
- width: 68%;
- padding: 0 20px 0 20px;
- background-color: #fff;
- min-height: 333px;
- margin-top:0;
- background-color: #ffffff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
- background-color: #fff;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #b49fa6;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 105px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #333;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #9e8290;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #B7A6AC;
- color: #666;
- height: 36px;
- background-image: url(images/header.jpg);
- Background-repeat: no-repeat;
-}
-#logoMinisterio {
- position: relative;
- float:right;
- width:180px;
- height:75px;
- margin-bottom: 0px;
- margin-top: 10px;
- margin-right: 5px;
- padding: 0px 0px 0px 0px;
- background: transparent;
- background-image: url("images/logoRel.jpg");
- background-repeat: no-repeat;
-}
-#header1 a {
- color: #fff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-
-
-#logout {
- display: inline;
- float: right;
- width: auto;
- text-align: right;
- font-size: 1.0em;
-}
-
-
-/*****************************************************
- * TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #B49FA6; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #B49FA6 0%, #AF8B97 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
- border: 1px solid #B49FA6;
-}
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: #333;
-}
-.subnav a:hover {
- color: #333;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #fff;
- background-image: url(images/footer.jpg);
- background-repeat: no-repeat;
- font-size: 12px;
- font-weight:bold;
- color:#666;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
- height: 7em;
-}
-
-.push {
- height: 5em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float: right;
- width: 180px;
- padding: 0;
- margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #FFC0CB;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-
-#center {
-margin: 0 0 0 180px;
-padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-
-
-/*****************************************************
- * LOGIN AND LANGUAGE FORM *
- *****************************************************/
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
- margin-left: 10px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #dcdcdc;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #999999;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #666666;
- background-color: #fff;
- padding: 0 4px;
-}
-.tool-icon {
- margin-bottom: -3px;
-}
-/***********************************/
-
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 12px;
- color: #000;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 12px;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #dcdcdc;
- color: #00407F;
- background-color: #E5EDF9;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background-color: #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #2F4F4F;
- background-color: #CAF0C7;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #000;
- background-color: #FFD1D1;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #dcdcdc;
- padding: 5px;
- margin: 0;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #f0f0f0;
- color: #666666;
- border: 1px solid #bbb;
- padding: 10px 10px 10px 10px;
-}
-.note b {
- margin: 10px 10px 5px 0px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 12px;
- border: 1px solid gray;
- background-color: #f0f0f0;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
- min-height:200px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Report section */
-div.report_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.report_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-
-
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #C2B6BA;
- color:#fff;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- /*border-bottom: 1px solid #666666;*/
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 20px;
- font-weight: bold;
- color: #000;
-}
-span.blog_subttitle {
- font-size: 12px;
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #000;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #000;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-size: 12px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #000;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-#glossary_menu li {
- LIST-STYLE-TYPE: none;
- display: inline;
- padding-left:5px;
-}
-.glossary_divider {
- text-transform: capitalize;
- background-color: #CCCCCC;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-.glossary_word {
- background-color: #F7F7F7;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0 10;
- padding: 0;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-.skip {
- display: none;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-#survey_subtitle {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #999;
-}
-.survey_question_wrapper {
- border: 1px solid #999;
-}
-.survey_question {
- /* 264269 4271b5 E5EDF9 */
- background-color:#f0f0f0;
- color:#999;
- padding:5px;/*border: 1px solid #264269;*/
-}
-.survey_question_options {
- /* 264269 4271b5 E5EDF9 */
- background-color:#FFF;
- color:#000;
- padding:5px;/*border: 1px solid #264269;*/
-}
-/*
-|----------------------------------------------------------------------------
-| Added: to fit img and blocks in home page
-|----------------------------------------------------------------------------
-|
-*/
-#hellomindfactory {
- border: 1px solid #ccc;
- margin:-14px 0 0 0;
- width:690px;
- height:428px;
-}
-#tophellomindfactory {
- margin: 10px 5px 5px 5px;
- height:200px;
- width:680px;
-}
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-#bottomhellomindfactory {
- margin: 5px;
- height:200px;
- width:680px;
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-/*
-.copyright {
- display:none;
-}
-*/
-
-/*
-------------------------------------------------------------------------------
- Learning path
-------------------------------------------------------------------------------
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- height:100%;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- /*background:url(images/actions.jpg) repeat-x;*/
- vertical-align:middle;
-}
-.actions-message {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover{
- background-color:#cbcbcb;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:82px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- margin-right:10px;
- margin-bottom:0px;
-
- padding-left:10px;
- padding-right:10px;
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/medical/images/2leftarrow.gif b/main/css/medical/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/medical/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/medical/images/2rightarrow.gif b/main/css/medical/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/medical/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/medical/images/bar_1.gif b/main/css/medical/images/bar_1.gif
deleted file mode 100755
index 48e9556050..0000000000
Binary files a/main/css/medical/images/bar_1.gif and /dev/null differ
diff --git a/main/css/medical/images/bar_1m.gif b/main/css/medical/images/bar_1m.gif
deleted file mode 100755
index 3e4591771f..0000000000
Binary files a/main/css/medical/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/medical/images/bar_1r.gif b/main/css/medical/images/bar_1r.gif
deleted file mode 100755
index 91a679a6a2..0000000000
Binary files a/main/css/medical/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/medical/images/bar_1u.gif b/main/css/medical/images/bar_1u.gif
deleted file mode 100755
index a39ce7558e..0000000000
Binary files a/main/css/medical/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/medical/images/blue_arrow.png b/main/css/medical/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/medical/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/medical/images/button_accept.gif b/main/css/medical/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/medical/images/button_accept.gif and /dev/null differ
diff --git a/main/css/medical/images/button_add.gif b/main/css/medical/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/medical/images/button_add.gif and /dev/null differ
diff --git a/main/css/medical/images/button_back.gif b/main/css/medical/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/medical/images/button_back.gif and /dev/null differ
diff --git a/main/css/medical/images/button_back.jpg b/main/css/medical/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/medical/images/button_back.jpg and /dev/null differ
diff --git a/main/css/medical/images/button_delete.gif b/main/css/medical/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/medical/images/button_delete.gif and /dev/null differ
diff --git a/main/css/medical/images/button_login.gif b/main/css/medical/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/medical/images/button_login.gif and /dev/null differ
diff --git a/main/css/medical/images/button_minus.gif b/main/css/medical/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/medical/images/button_minus.gif and /dev/null differ
diff --git a/main/css/medical/images/button_next.gif b/main/css/medical/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/medical/images/button_next.gif and /dev/null differ
diff --git a/main/css/medical/images/button_plus.gif b/main/css/medical/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/medical/images/button_plus.gif and /dev/null differ
diff --git a/main/css/medical/images/button_refresh.gif b/main/css/medical/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/medical/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/medical/images/button_search.gif b/main/css/medical/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/medical/images/button_search.gif and /dev/null differ
diff --git a/main/css/medical/images/button_upload.gif b/main/css/medical/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/medical/images/button_upload.gif and /dev/null differ
diff --git a/main/css/medical/images/dataTable/Sorting icons.psd b/main/css/medical/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/medical/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/medical/images/dataTable/back_disabled.jpg b/main/css/medical/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/medical/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/medical/images/dataTable/back_enabled.jpg b/main/css/medical/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/medical/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/medical/images/dataTable/favicon.ico b/main/css/medical/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/medical/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/medical/images/dataTable/forward_disabled.jpg b/main/css/medical/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/medical/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/medical/images/dataTable/forward_enabled.jpg b/main/css/medical/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/medical/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/medical/images/dataTable/sort_asc.png b/main/css/medical/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/medical/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/medical/images/dataTable/sort_asc_disabled.png b/main/css/medical/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/medical/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/medical/images/dataTable/sort_both.png b/main/css/medical/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/medical/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/medical/images/dataTable/sort_desc.png b/main/css/medical/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/medical/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/medical/images/dataTable/sort_desc_disabled.png b/main/css/medical/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/medical/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/medical/images/fondoHeader3.jpg b/main/css/medical/images/fondoHeader3.jpg
deleted file mode 100755
index 9a19d7a68c..0000000000
Binary files a/main/css/medical/images/fondoHeader3.jpg and /dev/null differ
diff --git a/main/css/medical/images/fondoNav.jpg b/main/css/medical/images/fondoNav.jpg
deleted file mode 100755
index ed49c94fdf..0000000000
Binary files a/main/css/medical/images/fondoNav.jpg and /dev/null differ
diff --git a/main/css/medical/images/footer.jpg b/main/css/medical/images/footer.jpg
deleted file mode 100755
index ed1b3d4a59..0000000000
Binary files a/main/css/medical/images/footer.jpg and /dev/null differ
diff --git a/main/css/medical/images/header.jpg b/main/css/medical/images/header.jpg
deleted file mode 100755
index 5e5f721636..0000000000
Binary files a/main/css/medical/images/header.jpg and /dev/null differ
diff --git a/main/css/medical/images/help2.png b/main/css/medical/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/medical/images/help2.png and /dev/null differ
diff --git a/main/css/medical/images/index.html b/main/css/medical/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/medical/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/medical/images/loading.gif b/main/css/medical/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/medical/images/loading.gif and /dev/null differ
diff --git a/main/css/medical/images/portal.png b/main/css/medical/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/medical/images/portal.png and /dev/null differ
diff --git a/main/css/medical/images/refresh.png b/main/css/medical/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/medical/images/refresh.png and /dev/null differ
diff --git a/main/css/medical/images/shadow.gif b/main/css/medical/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/medical/images/shadow.gif and /dev/null differ
diff --git a/main/css/medical/images/tab.png b/main/css/medical/images/tab.png
deleted file mode 100755
index 5a4c86458b..0000000000
Binary files a/main/css/medical/images/tab.png and /dev/null differ
diff --git a/main/css/medical/images/tab_right.gif b/main/css/medical/images/tab_right.gif
deleted file mode 100755
index 97eb50b75c..0000000000
Binary files a/main/css/medical/images/tab_right.gif and /dev/null differ
diff --git a/main/css/medical/images/white_arrow.png b/main/css/medical/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/medical/images/white_arrow.png and /dev/null differ
diff --git a/main/css/medical/learnpath.css b/main/css/medical/learnpath.css
deleted file mode 100755
index a179861946..0000000000
--- a/main/css/medical/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/medical/scorm.css b/main/css/medical/scorm.css
deleted file mode 100755
index fb2d08670b..0000000000
--- a/main/css/medical/scorm.css
+++ /dev/null
@@ -1,466 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #00aad4;
- background-color: #00aad4;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #D7EEF4;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/medical/scormfs.css b/main/css/medical/scormfs.css
deleted file mode 100755
index 21e53a7778..0000000000
--- a/main/css/medical/scormfs.css
+++ /dev/null
@@ -1,80 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 40px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -12px;
- margin-left: 4em;
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-.preview_image {
- text-align: right;
- margin-right: 5px;
- padding-left: 15px;
-}
diff --git a/main/css/offline.png b/main/css/offline.png
deleted file mode 100755
index 2c324efe5f..0000000000
Binary files a/main/css/offline.png and /dev/null differ
diff --git a/main/css/online.png b/main/css/online.png
deleted file mode 100755
index 6b7c57af03..0000000000
Binary files a/main/css/online.png and /dev/null differ
diff --git a/main/css/public_admin/dataTable.css b/main/css/public_admin/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/public_admin/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/public_admin/default.css b/main/css/public_admin/default.css
deleted file mode 100755
index 056a6b7736..0000000000
--- a/main/css/public_admin/default.css
+++ /dev/null
@@ -1,2603 +0,0 @@
-/*****************************************************
- * MAIN - PUBLIC ADMIN CSS *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: bold arial, verdana, helvetica, sans-serif;
- font-size: 11px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
- height: 100%; /* stick */
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 65%;
- padding: 0 20px 0 20px;
- background-color: #fff;
- min-height: 333px;
- margin-top:0;
- background-color: #ffffff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
- background-color: #fff;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 115px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #333;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #f3840d;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:18px;
- font-size:135%;
-}
-
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- font-size: 12px;
- background-color: #4475B0;
- color: #fff;
- height: 35px;
- background-image: url(images/TGSS_header.jpg);
- Background-repeat: no-repeat;
-}
-#logoMinisterio {
- position: relative;
- float:right;
- width:99px;
- height:34px;
- margin-bottom: 0px;
- margin-top: 40px;
- margin-right: 5px;
- padding: 0px 0px 0px 0px;
- background: transparent;
- background-image: url("images/logoMouse.jpg");
-}
-#header1 a {
- color: #fff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#top_corner {
-}
-#institution {
- float: left;
- font-weight: bold;
- padding-left:17px;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/********************************************************
- * HEADER 2: Users online, help, student/teacher view *
- ********************************************************/
-#header2 {
- font-size: 1.0em;
- font-weight: normal;
- min-height:35px;
- background: #2A4B74;
- color: #666;
- width:100%;
- color:#fff;
-}
-#header2 a {
- color: #666;
- text-decoration: none;
- font-weight:normal;
-}
-#header2 a:hover {
- text-decoration: underline;
-}
-
-/*****************************************************
- * HEADER 3: TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- /* background-image: url(images/fondoHeader3.jpg);*/
-
- background-color: #2B4C75; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #2B4C75 0%, #1B334F 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2B4C75), color-stop(100%,#1B334F)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #2B4C75 0%, #1B334F 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #2B4C75 0%,#1B334F 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #2B4C75 0%,#1B334F 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2B4C75', endColorstr='#1B334F',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #2B4C75 0%,#1B334F 100%); /* W3C */
-
-}
-
-.subnav .nav > li > a {
- color: #fff;
-}
-.subnav a:hover {
- color: #9ba408;
- background: none;
-}
-
-.subnav #current A {
- color: #999;
-}
-
-.subnav .nav > li > a {
- border-left: none;
- border-radius: 0 0 0 0;
- border-right: none;
-}
-
-/*****************************************************
- * HEADER 4
- *****************************************************/
-#header4 {
- background-color: #fff;
- color: #fff;
- margin-bottom: 2px;
- width:100%;
-}
-#header4 a {
- color: #666;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f3840d;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #305582;
- background-image: url(images/footer.jpg);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- //height: 8em; /* Do not change this value */
- overflow:hidden;
- width: 100%;
- padding-bottom:10px;
-}
-footer a:link, footer a:visited {
- color:#f1d40d;
-}
-.push {
- height: 9em; /* Very important */
-}
-/*
-==============================================================================
- NAVIGATION MENU
-==============================================================================
-*/
-.menu {
- background: #f0f0f0 url(images/fondoNav.jpg) no-repeat top center;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- min-height: 300px;
- padding: 10px 0 40px 0;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-/*
-this lets the navigation menu appear to the left:
-#center {
- margin: 0 0 0 180px;
- min-height: 300px;
- padding: 10px 0 40px 0;
-}
-
-#toolnav {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%;
-}
-*/
-
-
-/*
-------------------------------------------------------------------------------
- course navigation menu as a definition list
-------------------------------------------------------------------------------
-*/
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- border: 1px solid #4271b5;
- float: left;
- margin: 0 0 0 10px;
- padding: 0;
-}
-#toolnavbox dl {
- background: transparent;
- font-size: 12px;
- margin: 0 auto;
- text-align: center;
- width: 160px;
-}
-#toolnavbox dt {
- background: transparent;
- border-bottom: 1px solid #fff;
- color: #000;
- font-size: 12px;
- font-weight: bold;
- margin: 0;
- text-align: center;
-}
-#toolnavbox dd {
- background: #E5EDF9;
- border-bottom:1px solid #fff;
- color: #009;
- margin: 0;
- text-align: left;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- display: block;
- margin: 0;
- padding: 5px 5px 5px 10px;
- text-decoration: none;
- line-height:24px;
-}
-#toolnavlist a:hover, #toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-
-
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/*****************************************************
- * LOGIN AND LANGUAGE FORM *
- *****************************************************/
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
- margin-left: 4px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #dcdcdc;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #aaa;
- background-color: #fff;
- padding: 0 4px;
-}
-.tool-icon {
- margin-bottom: -3px;
-}
-
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and error message-box */
-.normal-message {
- border: 1px solid #dcdcdc;
- color: #00407F;
- background-color: #E5EDF9;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background-color: #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #2F4F4F;
- background-color: #CAF0C7;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #000;
- background-color: #FFD1D1;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #dcdcdc;
- padding: 5px;
- margin: 0;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #f0f0f0;
- color: #666666;
- border: 1px solid #bbb;
- padding: 10px 10px 10px 10px;
-}
-.note b {
- margin: 10px 10px 5px 0px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 12px;
- border: 1px solid gray;
- background-color: #f0f0f0;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
- min-height:200px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-
-/* Report section */
-div.report_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.report_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-
-
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-
-.admin_section {
-}
-.session_box_coach {
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
- padding-left:70px;
- padding-top: 30px;
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- /*border-bottom: 1px solid #666666;*/
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 20px;
- font-weight: bold;
- color: #2A4B74;
-}
-span.blog_subttitle {
- font-size: 12px;
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #2A4B74;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #2A4B74;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-size: 12px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-#glossary_menu li {
- LIST-STYLE-TYPE: none;
- display: inline;
- padding-left:5px;
-}
-.glossary_divider {
- text-transform: capitalize;
- background-color: #CCCCCC;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-.glossary_word {
- background-color: #F7F7F7;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0 10;
- padding: 0;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-.skip {
- display: none;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-#survey_subtitle {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #999;
- margin-top: 4px;
-}
-.survey_question_wrapper {
- border: 1px solid #999;
- margin-top:4px;
-}
-.survey_question {
- /* 264269 4271b5 E5EDF9 */
- background-color:#f0f0f0;
- color:#999;
- padding:5px;/*border: 1px solid #264269;*/
-}
-.survey_question_options {
- /* 264269 4271b5 E5EDF9 */
- background-color:#FFF;
- color:#000;
- padding:5px;/*border: 1px solid #264269;*/
-}
-/*
-|----------------------------------------------------------------------------
-| Added: to fit img and blocks in home page
-|----------------------------------------------------------------------------
-|
-*/
-#hellomindfactory {
- border: 1px solid #ccc;
- margin:-14px 0 0 0;
- width:690px;
- height:428px;
-}
-#tophellomindfactory {
- margin: 10px 5px 5px 5px;
- height:200px;
- width:680px;
-}
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-#bottomhellomindfactory {
- margin: 5px;
- height:200px;
- width:680px;
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-/*
-.copyright {
- display:none;
-}
-*/
-
-
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------
- Learning path
-------------------------------------------------------------------------------
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:6px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- /*background:url(images/actions.jpg) repeat-x;*/
- vertical-align:middle;
-}
-.actions-message {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-
-/**********************************************
- * EXERCISE TOOL *
- **********************************************/
-.exercice_form {
- width: 300px;
-}
-#validationButton {
- text-decoration: none;
- margin: 5px;
- /*border:1px solid #999999;*/
- /*background:#F0F0F0; */
- padding: 3px;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#666;
-}
-.exercise_scenario_label {
-}
-.exercise_scenario_element {
-}
-span.checkbox {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/checkbox.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-span.radio {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/radio.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-#question_title {
-}
-#question_description {
- padding-left:5px;
- padding-top:10px;
-}
-#question_score {
- padding-left:5px;
- padding-top:10px;
- padding-bottom:10px;
- font-weight:bold;
-}
-#question_feedback {
- background-color:#FCF7BA;
- border:1px solid #CCCCCC;
- color:#666666;
- font-size:11px;
- font-weight:bold;
- list-style-type:none;
- margin-top:5px;
- padding:5px;
-}
-#exercise_close_link {
- background: url(images/close.gif) no-repeat;
- padding-left: 20px;
-}
-#exercise_close_link:hover {
- background: url(images/close_highlight.gif) no-repeat;
- padding-left: 20px;
-}
-
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-
-#expire_session div {
- float:left;
- padding-left:15px;
-}
-
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:82px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: 88px;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:600px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-
-/* INVITATIONS */
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:10px 20px 10px 10px;
- padding:11px;
- width:210px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:10px 20px 10px 20px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-.catalog_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-
-.course-student-view-activity-3col {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#FFFFFF;
- height: 350px;
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-.course-student-view-activity-3col ul {
- padding:10px 20px 10px 20px;
- list-style-type:none;
- /* height:240px; */
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
- float:left;
- width : 280px;
-}
-
-.course-student-view-activity-3col ul li {
- padding:5px 0px 4px 0px;
- /* float:left;
- width : 380px; */
-}
-
-
-#plugin-header {
- margin-left:25px;
- padding:5px;
-}
-
-/* New forum table */
-
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/public_admin/frames.css b/main/css/public_admin/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/public_admin/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/public_admin/images/2leftarrow.gif b/main/css/public_admin/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/public_admin/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/public_admin/images/2rightarrow.gif b/main/css/public_admin/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/public_admin/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/public_admin/images/TGSS_header.jpg b/main/css/public_admin/images/TGSS_header.jpg
deleted file mode 100755
index 42a343396f..0000000000
Binary files a/main/css/public_admin/images/TGSS_header.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/bar_1.gif b/main/css/public_admin/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/public_admin/images/bar_1.gif and /dev/null differ
diff --git a/main/css/public_admin/images/bar_1m.gif b/main/css/public_admin/images/bar_1m.gif
deleted file mode 100755
index 24f8b81fd4..0000000000
Binary files a/main/css/public_admin/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/public_admin/images/bar_1r.gif b/main/css/public_admin/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/public_admin/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/public_admin/images/bar_1u.gif b/main/css/public_admin/images/bar_1u.gif
deleted file mode 100755
index 24f8b81fd4..0000000000
Binary files a/main/css/public_admin/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/public_admin/images/blue_arrow.png b/main/css/public_admin/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/public_admin/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/public_admin/images/button_accept.gif b/main/css/public_admin/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/public_admin/images/button_accept.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_add.gif b/main/css/public_admin/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/public_admin/images/button_add.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_back.gif b/main/css/public_admin/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/public_admin/images/button_back.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_back.jpg b/main/css/public_admin/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/public_admin/images/button_back.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/button_delete.gif b/main/css/public_admin/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/public_admin/images/button_delete.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_login.gif b/main/css/public_admin/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/public_admin/images/button_login.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_minus.gif b/main/css/public_admin/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/public_admin/images/button_minus.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_next.gif b/main/css/public_admin/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/public_admin/images/button_next.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_plus.gif b/main/css/public_admin/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/public_admin/images/button_plus.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_refresh.gif b/main/css/public_admin/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/public_admin/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_search.gif b/main/css/public_admin/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/public_admin/images/button_search.gif and /dev/null differ
diff --git a/main/css/public_admin/images/button_upload.gif b/main/css/public_admin/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/public_admin/images/button_upload.gif and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/Sorting icons.psd b/main/css/public_admin/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/public_admin/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/back_disabled.jpg b/main/css/public_admin/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/public_admin/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/back_enabled.jpg b/main/css/public_admin/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/public_admin/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/favicon.ico b/main/css/public_admin/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/public_admin/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/forward_disabled.jpg b/main/css/public_admin/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/public_admin/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/forward_enabled.jpg b/main/css/public_admin/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/public_admin/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/sort_asc.png b/main/css/public_admin/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/public_admin/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/sort_asc_disabled.png b/main/css/public_admin/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/public_admin/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/sort_both.png b/main/css/public_admin/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/public_admin/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/sort_desc.png b/main/css/public_admin/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/public_admin/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/public_admin/images/dataTable/sort_desc_disabled.png b/main/css/public_admin/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/public_admin/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/public_admin/images/fondoFooter.jpg b/main/css/public_admin/images/fondoFooter.jpg
deleted file mode 100755
index e797544a19..0000000000
Binary files a/main/css/public_admin/images/fondoFooter.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/fondoHeader2.jpg b/main/css/public_admin/images/fondoHeader2.jpg
deleted file mode 100755
index 381e407a1f..0000000000
Binary files a/main/css/public_admin/images/fondoHeader2.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/fondoHeader3.jpg b/main/css/public_admin/images/fondoHeader3.jpg
deleted file mode 100755
index 8786537177..0000000000
Binary files a/main/css/public_admin/images/fondoHeader3.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/fondoNav.jpg b/main/css/public_admin/images/fondoNav.jpg
deleted file mode 100755
index 82f302d2bc..0000000000
Binary files a/main/css/public_admin/images/fondoNav.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/footer.jpg b/main/css/public_admin/images/footer.jpg
deleted file mode 100755
index 96b9a29c62..0000000000
Binary files a/main/css/public_admin/images/footer.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/help2.png b/main/css/public_admin/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/public_admin/images/help2.png and /dev/null differ
diff --git a/main/css/public_admin/images/loading.gif b/main/css/public_admin/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/public_admin/images/loading.gif and /dev/null differ
diff --git a/main/css/public_admin/images/logoMouse.jpg b/main/css/public_admin/images/logoMouse.jpg
deleted file mode 100755
index 2d006ad561..0000000000
Binary files a/main/css/public_admin/images/logoMouse.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/portal.png b/main/css/public_admin/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/public_admin/images/portal.png and /dev/null differ
diff --git a/main/css/public_admin/images/refresh.png b/main/css/public_admin/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/public_admin/images/refresh.png and /dev/null differ
diff --git a/main/css/public_admin/images/salir.gif b/main/css/public_admin/images/salir.gif
deleted file mode 100755
index 348e839c55..0000000000
Binary files a/main/css/public_admin/images/salir.gif and /dev/null differ
diff --git a/main/css/public_admin/images/shadow.gif b/main/css/public_admin/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/public_admin/images/shadow.gif and /dev/null differ
diff --git a/main/css/public_admin/images/systemenouvelles.jpg b/main/css/public_admin/images/systemenouvelles.jpg
deleted file mode 100755
index 8580271092..0000000000
Binary files a/main/css/public_admin/images/systemenouvelles.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/tab.png b/main/css/public_admin/images/tab.png
deleted file mode 100755
index 5a4c86458b..0000000000
Binary files a/main/css/public_admin/images/tab.png and /dev/null differ
diff --git a/main/css/public_admin/images/tab_right.gif b/main/css/public_admin/images/tab_right.gif
deleted file mode 100755
index 97eb50b75c..0000000000
Binary files a/main/css/public_admin/images/tab_right.gif and /dev/null differ
diff --git a/main/css/public_admin/images/tab_right.jpg b/main/css/public_admin/images/tab_right.jpg
deleted file mode 100755
index 4b0f427d06..0000000000
Binary files a/main/css/public_admin/images/tab_right.jpg and /dev/null differ
diff --git a/main/css/public_admin/images/white_arrow.png b/main/css/public_admin/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/public_admin/images/white_arrow.png and /dev/null differ
diff --git a/main/css/public_admin/learnpath.css b/main/css/public_admin/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/public_admin/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/public_admin/print.css b/main/css/public_admin/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/public_admin/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/public_admin/scorm.css b/main/css/public_admin/scorm.css
deleted file mode 100755
index fb2d08670b..0000000000
--- a/main/css/public_admin/scorm.css
+++ /dev/null
@@ -1,466 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #00aad4;
- background-color: #00aad4;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #D7EEF4;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/public_admin/scormfs.css b/main/css/public_admin/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/public_admin/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/readable/bootstrap.css b/main/css/readable/bootstrap.css
deleted file mode 100755
index 3ddeb27256..0000000000
--- a/main/css/readable/bootstrap.css
+++ /dev/null
@@ -1,4673 +0,0 @@
-/*!
- * Bootstrap v2.0.4
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- */
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-audio:not([controls]) {
- display: none;
-}
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-a:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-a:hover,
-a:active {
- outline: 0;
-}
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- max-width: 100%;
- vertical-align: middle;
- border: 0;
- -ms-interpolation-mode: bicubic;
-}
-#map_canvas img {
- max-width: none;
-}
-button,
-input,
-select,
-textarea {
- margin: 0;
- font-size: 100%;
- vertical-align: middle;
-}
-button,
-input {
- *overflow: visible;
- line-height: normal;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button,
-input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
-}
-input[type="search"] {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-decoration,
-input[type="search"]::-webkit-search-cancel-button {
- -webkit-appearance: none;
-}
-textarea {
- overflow: auto;
- vertical-align: top;
-}
-.clearfix {
- *zoom: 1;
-}
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: "";
-}
-.clearfix:after {
- clear: both;
-}
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-body {
- margin: 0;
- font-family: Georgia, "Times New Roman", Times, serif;
- font-size: 17px;
- line-height: 1.3em;
- color: #090000;
- background-color: #fdfdfa;
-}
-a {
- color: #9c0001;
- text-decoration: none;
-}
-a:hover {
- color: #c50001;
- text-decoration: underline;
-}
-.row {
- margin-left: -20px;
- *zoom: 1;
-}
-.row:before,
-.row:after {
- display: table;
- content: "";
-}
-.row:after {
- clear: both;
-}
-[class*="span"] {
- float: left;
- margin-left: 20px;
-}
-.container,
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.span12 {
- width: 940px;
-}
-.span11 {
- width: 860px;
-}
-.span10 {
- width: 780px;
-}
-.span9 {
- width: 700px;
-}
-.span8 {
- width: 620px;
-}
-.span7 {
- width: 540px;
-}
-.span6 {
- width: 460px;
-}
-.span5 {
- width: 380px;
-}
-.span4 {
- width: 300px;
-}
-.span3 {
- width: 220px;
-}
-.span2 {
- width: 140px;
-}
-.span1 {
- width: 60px;
-}
-.offset12 {
- margin-left: 980px;
-}
-.offset11 {
- margin-left: 900px;
-}
-.offset10 {
- margin-left: 820px;
-}
-.offset9 {
- margin-left: 740px;
-}
-.offset8 {
- margin-left: 660px;
-}
-.offset7 {
- margin-left: 580px;
-}
-.offset6 {
- margin-left: 500px;
-}
-.offset5 {
- margin-left: 420px;
-}
-.offset4 {
- margin-left: 340px;
-}
-.offset3 {
- margin-left: 260px;
-}
-.offset2 {
- margin-left: 180px;
-}
-.offset1 {
- margin-left: 100px;
-}
-.row-fluid {
- width: 100%;
- *zoom: 1;
-}
-.row-fluid:before,
-.row-fluid:after {
- display: table;
- content: "";
-}
-.row-fluid:after {
- clear: both;
-}
-.row-fluid [class*="span"] {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- float: left;
- margin-left: 2.127659574%;
- *margin-left: 2.0744680846382977%;
-}
-.row-fluid [class*="span"]:first-child {
- margin-left: 0;
-}
-.row-fluid .span12 {
- width: 99.99999998999999%;
- *width: 99.94680850063828%;
-}
-.row-fluid .span11 {
- width: 91.489361693%;
- *width: 91.4361702036383%;
-}
-.row-fluid .span10 {
- width: 82.97872339599999%;
- *width: 82.92553190663828%;
-}
-.row-fluid .span9 {
- width: 74.468085099%;
- *width: 74.4148936096383%;
-}
-.row-fluid .span8 {
- width: 65.95744680199999%;
- *width: 65.90425531263828%;
-}
-.row-fluid .span7 {
- width: 57.446808505%;
- *width: 57.3936170156383%;
-}
-.row-fluid .span6 {
- width: 48.93617020799999%;
- *width: 48.88297871863829%;
-}
-.row-fluid .span5 {
- width: 40.425531911%;
- *width: 40.3723404216383%;
-}
-.row-fluid .span4 {
- width: 31.914893614%;
- *width: 31.8617021246383%;
-}
-.row-fluid .span3 {
- width: 23.404255317%;
- *width: 23.3510638276383%;
-}
-.row-fluid .span2 {
- width: 14.89361702%;
- *width: 14.8404255306383%;
-}
-.row-fluid .span1 {
- width: 6.382978723%;
- *width: 6.329787233638298%;
-}
-.container {
- margin-right: auto;
- margin-left: auto;
- *zoom: 1;
-}
-.container:before,
-.container:after {
- display: table;
- content: "";
-}
-.container:after {
- clear: both;
-}
-.container-fluid {
- padding-right: 20px;
- padding-left: 20px;
- *zoom: 1;
-}
-.container-fluid:before,
-.container-fluid:after {
- display: table;
- content: "";
-}
-.container-fluid:after {
- clear: both;
-}
-p {
- margin: 0 0 0.65em;
-}
-p small {
- font-size: 15px;
- color: #999999;
-}
-.lead {
- margin-bottom: 1.3em;
- font-size: 20px;
- font-weight: 200;
- line-height: 1.9500000000000002em;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- margin: 0;
- font-family: inherit;
- font-weight: bold;
- color: inherit;
- text-rendering: optimizelegibility;
-}
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small {
- font-weight: normal;
- color: #999999;
-}
-h1 {
- font-size: 30px;
- line-height: 2.6em;
-}
-h1 small {
- font-size: 18px;
-}
-h2 {
- font-size: 24px;
- line-height: 2.6em;
-}
-h2 small {
- font-size: 18px;
-}
-h3 {
- font-size: 18px;
- line-height: 1.9500000000000002em;
-}
-h3 small {
- font-size: 14px;
-}
-h4,
-h5,
-h6 {
- line-height: 1.3em;
-}
-h4 {
- font-size: 14px;
-}
-h4 small {
- font-size: 12px;
-}
-h5 {
- font-size: 12px;
-}
-h6 {
- font-size: 11px;
- color: #999999;
- text-transform: uppercase;
-}
-.page-header {
- padding-bottom: 0.30000000000000004em;
- margin: 1.3em 0;
- border-bottom: 1px solid #cdcdcd;
-}
-.page-header h1 {
- line-height: 1;
-}
-ul,
-ol {
- padding: 0;
- margin: 0 0 0.65em 25px;
-}
-ul ul,
-ul ol,
-ol ol,
-ol ul {
- margin-bottom: 0;
-}
-ul {
- list-style: disc;
-}
-ol {
- list-style: decimal;
-}
-li {
- line-height: 1.3em;
-}
-ul.unstyled,
-ol.unstyled {
- margin-left: 0;
- list-style: none;
-}
-dl {
- margin-bottom: 1.3em;
-}
-dt,
-dd {
- line-height: 1.3em;
-}
-dt {
- font-weight: bold;
- line-height: 0.30000000000000004em;
-}
-dd {
- margin-left: 0.65em;
-}
-.dl-horizontal dt {
- float: left;
- width: 120px;
- clear: left;
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.dl-horizontal dd {
- margin-left: 130px;
-}
-hr {
- margin: 1.3em 0;
- border: 0;
- border-top: 1px solid #cdcdcd;
- border-bottom: 1px solid #ffffff;
-}
-strong {
- font-weight: bold;
-}
-em {
- font-style: italic;
-}
-.muted {
- color: #999999;
-}
-abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #999999;
-}
-abbr.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-blockquote {
- padding: 0 0 0 15px;
- margin: 0 0 1.3em;
- border-left: 5px solid #cdcdcd;
-}
-blockquote p {
- margin-bottom: 0;
- font-size: 16px;
- font-weight: 300;
- line-height: 1.625em;
-}
-blockquote small {
- display: block;
- line-height: 1.3em;
- color: #999999;
-}
-blockquote small:before {
- content: '\2014 \00A0';
-}
-blockquote.pull-right {
- float: right;
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #cdcdcd;
- border-left: 0;
-}
-blockquote.pull-right p,
-blockquote.pull-right small {
- text-align: right;
-}
-q:before,
-q:after,
-blockquote:before,
-blockquote:after {
- content: "";
-}
-address {
- display: block;
- margin-bottom: 1.3em;
- font-style: normal;
- line-height: 1.3em;
-}
-small {
- font-size: 100%;
-}
-cite {
- font-style: normal;
-}
-code,
-pre {
- padding: 0 3px 2px;
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 16px;
- color: #333333;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-code {
- padding: 2px 4px;
- color: #d14;
- background-color: #f7f7f9;
- border: 1px solid #e1e1e8;
-}
-pre {
- display: block;
- padding: 0.15000000000000002em;
- margin: 0 0 0.65em;
- font-size: 15.725000000000001px;
- line-height: 1.3em;
- word-break: break-all;
- word-wrap: break-word;
- white-space: pre;
- white-space: pre-wrap;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-pre.prettyprint {
- margin-bottom: 1.3em;
-}
-pre code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border: 0;
-}
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-form {
- margin: 0 0 1.3em;
-}
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
-}
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 1.9500000000000002em;
- font-size: 25.5px;
- line-height: 2.6em;
- color: #333333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-legend small {
- font-size: 0.9750000000000001em;
- color: #999999;
-}
-label,
-input,
-button,
-select,
-textarea {
- font-size: 17px;
- font-weight: normal;
- line-height: 1.3em;
-}
-input,
-button,
-select,
-textarea {
- font-family: Georgia, "Times New Roman", Times, serif;
-}
-label {
- display: block;
- margin-bottom: 5px;
-}
-select,
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- display: inline-block;
- height: 1.3em;
- padding: 4px;
- margin-bottom: 9px;
- font-size: 17px;
- line-height: 1.3em;
- color: #777777;
-}
-input,
-textarea {
- width: 210px;
-}
-textarea {
- height: auto;
-}
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- background-color: #ffffff;
- border: 1px solid #cccccc;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
- transition: border linear 0.2s, box-shadow linear 0.2s;
-}
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="datetime"]:focus,
-input[type="datetime-local"]:focus,
-input[type="date"]:focus,
-input[type="month"]:focus,
-input[type="time"]:focus,
-input[type="week"]:focus,
-input[type="number"]:focus,
-input[type="email"]:focus,
-input[type="url"]:focus,
-input[type="search"]:focus,
-input[type="tel"]:focus,
-input[type="color"]:focus,
-.uneditable-input:focus {
- border-color: rgba(82, 168, 236, 0.8);
- outline: 0;
- outline: thin dotted \9;
- /* IE6-9 */
-
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
-}
-input[type="radio"],
-input[type="checkbox"] {
- margin: 3px 0;
- *margin-top: 0;
- /* IE7 */
-
- line-height: normal;
- cursor: pointer;
-}
-input[type="submit"],
-input[type="reset"],
-input[type="button"],
-input[type="radio"],
-input[type="checkbox"] {
- width: auto;
-}
-.uneditable-textarea {
- width: auto;
- height: auto;
-}
-select,
-input[type="file"] {
- height: 28px;
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
-
- *margin-top: 4px;
- /* For IE7, add top margin to align select with labels */
-
- line-height: 28px;
-}
-select {
- width: 220px;
- border: 1px solid #bbb;
-}
-select[multiple],
-select[size] {
- height: auto;
-}
-select:focus,
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.radio,
-.checkbox {
- min-height: 18px;
- padding-left: 18px;
-}
-.radio input[type="radio"],
-.checkbox input[type="checkbox"] {
- float: left;
- margin-left: -18px;
-}
-.controls > .radio:first-child,
-.controls > .checkbox:first-child {
- padding-top: 5px;
-}
-.radio.inline,
-.checkbox.inline {
- display: inline-block;
- padding-top: 5px;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.radio.inline + .radio.inline,
-.checkbox.inline + .checkbox.inline {
- margin-left: 10px;
-}
-.input-mini {
- width: 60px;
-}
-.input-small {
- width: 90px;
-}
-.input-medium {
- width: 150px;
-}
-.input-large {
- width: 210px;
-}
-.input-xlarge {
- width: 270px;
-}
-.input-xxlarge {
- width: 530px;
-}
-input[class*="span"],
-select[class*="span"],
-textarea[class*="span"],
-.uneditable-input[class*="span"],
-.row-fluid input[class*="span"],
-.row-fluid select[class*="span"],
-.row-fluid textarea[class*="span"],
-.row-fluid .uneditable-input[class*="span"] {
- float: none;
- margin-left: 0;
-}
-.input-append input[class*="span"],
-.input-append .uneditable-input[class*="span"],
-.input-prepend input[class*="span"],
-.input-prepend .uneditable-input[class*="span"],
-.row-fluid .input-prepend [class*="span"],
-.row-fluid .input-append [class*="span"] {
- display: inline-block;
-}
-input,
-textarea,
-.uneditable-input {
- margin-left: 0;
-}
-input.span12, textarea.span12, .uneditable-input.span12 {
- width: 930px;
-}
-input.span11, textarea.span11, .uneditable-input.span11 {
- width: 850px;
-}
-input.span10, textarea.span10, .uneditable-input.span10 {
- width: 770px;
-}
-input.span9, textarea.span9, .uneditable-input.span9 {
- width: 690px;
-}
-input.span8, textarea.span8, .uneditable-input.span8 {
- width: 610px;
-}
-input.span7, textarea.span7, .uneditable-input.span7 {
- width: 530px;
-}
-input.span6, textarea.span6, .uneditable-input.span6 {
- width: 450px;
-}
-input.span5, textarea.span5, .uneditable-input.span5 {
- width: 370px;
-}
-input.span4, textarea.span4, .uneditable-input.span4 {
- width: 290px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- width: 210px;
-}
-input.span2, textarea.span2, .uneditable-input.span2 {
- width: 130px;
-}
-input.span1, textarea.span1, .uneditable-input.span1 {
- width: 50px;
-}
-input[disabled],
-select[disabled],
-textarea[disabled],
-input[readonly],
-select[readonly],
-textarea[readonly] {
- cursor: not-allowed;
- background-color: #cdcdcd;
- border-color: #ddd;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"][readonly],
-input[type="checkbox"][readonly] {
- background-color: transparent;
-}
-.control-group.warning > label,
-.control-group.warning .help-block,
-.control-group.warning .help-inline {
- color: #c09853;
-}
-.control-group.warning .checkbox,
-.control-group.warning .radio,
-.control-group.warning input,
-.control-group.warning select,
-.control-group.warning textarea {
- color: #c09853;
- border-color: #c09853;
-}
-.control-group.warning .checkbox:focus,
-.control-group.warning .radio:focus,
-.control-group.warning input:focus,
-.control-group.warning select:focus,
-.control-group.warning textarea:focus {
- border-color: #a47e3c;
- -webkit-box-shadow: 0 0 6px #dbc59e;
- -moz-box-shadow: 0 0 6px #dbc59e;
- box-shadow: 0 0 6px #dbc59e;
-}
-.control-group.warning .input-prepend .add-on,
-.control-group.warning .input-append .add-on {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #c09853;
-}
-.control-group.error > label,
-.control-group.error .help-block,
-.control-group.error .help-inline {
- color: #b94a48;
-}
-.control-group.error .checkbox,
-.control-group.error .radio,
-.control-group.error input,
-.control-group.error select,
-.control-group.error textarea {
- color: #b94a48;
- border-color: #b94a48;
-}
-.control-group.error .checkbox:focus,
-.control-group.error .radio:focus,
-.control-group.error input:focus,
-.control-group.error select:focus,
-.control-group.error textarea:focus {
- border-color: #953b39;
- -webkit-box-shadow: 0 0 6px #d59392;
- -moz-box-shadow: 0 0 6px #d59392;
- box-shadow: 0 0 6px #d59392;
-}
-.control-group.error .input-prepend .add-on,
-.control-group.error .input-append .add-on {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #b94a48;
-}
-.control-group.success > label,
-.control-group.success .help-block,
-.control-group.success .help-inline {
- color: #468847;
-}
-.control-group.success .checkbox,
-.control-group.success .radio,
-.control-group.success input,
-.control-group.success select,
-.control-group.success textarea {
- color: #468847;
- border-color: #468847;
-}
-.control-group.success .checkbox:focus,
-.control-group.success .radio:focus,
-.control-group.success input:focus,
-.control-group.success select:focus,
-.control-group.success textarea:focus {
- border-color: #356635;
- -webkit-box-shadow: 0 0 6px #7aba7b;
- -moz-box-shadow: 0 0 6px #7aba7b;
- box-shadow: 0 0 6px #7aba7b;
-}
-.control-group.success .input-prepend .add-on,
-.control-group.success .input-append .add-on {
- color: #468847;
- background-color: #dff0d8;
- border-color: #468847;
-}
-input:focus:required:invalid,
-textarea:focus:required:invalid,
-select:focus:required:invalid {
- color: #b94a48;
- border-color: #ee5f5b;
-}
-input:focus:required:invalid:focus,
-textarea:focus:required:invalid:focus,
-select:focus:required:invalid:focus {
- border-color: #e9322d;
- -webkit-box-shadow: 0 0 6px #f8b9b7;
- -moz-box-shadow: 0 0 6px #f8b9b7;
- box-shadow: 0 0 6px #f8b9b7;
-}
-.form-actions {
- padding: 0.30000000000000004em 20px 1.3em;
- margin-top: 1.3em;
- margin-bottom: 1.3em;
- background-color: transparent;
- border-top: 1px solid #e5e5e5;
- *zoom: 1;
-}
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: "";
-}
-.form-actions:after {
- clear: both;
-}
-.uneditable-input {
- overflow: hidden;
- white-space: nowrap;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #eee;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-}
-:-moz-placeholder {
- color: #999999;
-}
-:-ms-input-placeholder {
- color: #999999;
-}
-::-webkit-input-placeholder {
- color: #999999;
-}
-.help-block,
-.help-inline {
- color: #777777;
-}
-.help-block {
- display: block;
- margin-bottom: 0.65em;
-}
-.help-inline {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- vertical-align: middle;
- padding-left: 5px;
-}
-.input-prepend,
-.input-append {
- margin-bottom: 5px;
-}
-.input-prepend input,
-.input-append input,
-.input-prepend select,
-.input-append select,
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- position: relative;
- margin-bottom: 0;
- *margin-left: 0;
- vertical-align: middle;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.input-prepend input:focus,
-.input-append input:focus,
-.input-prepend select:focus,
-.input-append select:focus,
-.input-prepend .uneditable-input:focus,
-.input-append .uneditable-input:focus {
- z-index: 2;
-}
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- border-left-color: #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on {
- display: inline-block;
- width: auto;
- height: 1.3em;
- min-width: 16px;
- padding: 4px 5px;
- font-weight: normal;
- line-height: 1.3em;
- text-align: center;
- text-shadow: 0 1px 0 #ffffff;
- vertical-align: middle;
- background-color: #cdcdcd;
- border: 1px solid #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on,
-.input-prepend .btn,
-.input-append .btn {
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend .active,
-.input-append .active {
- background-color: #a9dba9;
- border-color: #46a546;
-}
-.input-prepend .add-on,
-.input-prepend .btn {
- margin-right: -1px;
-}
-.input-prepend .add-on:first-child,
-.input-prepend .btn:first-child {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-append input,
-.input-append select,
-.input-append .uneditable-input {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-append .uneditable-input {
- border-right-color: #ccc;
- border-left-color: #eee;
-}
-.input-append .add-on:last-child,
-.input-append .btn:last-child {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.input-prepend.input-append input,
-.input-prepend.input-append select,
-.input-prepend.input-append .uneditable-input {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend.input-append .add-on:first-child,
-.input-prepend.input-append .btn:first-child {
- margin-right: -1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-prepend.input-append .add-on:last-child,
-.input-prepend.input-append .btn:last-child {
- margin-left: -1px;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.search-query {
- padding-right: 14px;
- padding-right: 4px \9;
- padding-left: 14px;
- padding-left: 4px \9;
- /* IE7-8 doesn't have border-radius, so don't indent the padding */
-
- margin-bottom: 0;
- -webkit-border-radius: 14px;
- -moz-border-radius: 14px;
- border-radius: 14px;
-}
-.form-search input,
-.form-inline input,
-.form-horizontal input,
-.form-search textarea,
-.form-inline textarea,
-.form-horizontal textarea,
-.form-search select,
-.form-inline select,
-.form-horizontal select,
-.form-search .help-inline,
-.form-inline .help-inline,
-.form-horizontal .help-inline,
-.form-search .uneditable-input,
-.form-inline .uneditable-input,
-.form-horizontal .uneditable-input,
-.form-search .input-prepend,
-.form-inline .input-prepend,
-.form-horizontal .input-prepend,
-.form-search .input-append,
-.form-inline .input-append,
-.form-horizontal .input-append {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-bottom: 0;
-}
-.form-search .hide,
-.form-inline .hide,
-.form-horizontal .hide {
- display: none;
-}
-.form-search label,
-.form-inline label {
- display: inline-block;
-}
-.form-search .input-append,
-.form-inline .input-append,
-.form-search .input-prepend,
-.form-inline .input-prepend {
- margin-bottom: 0;
-}
-.form-search .radio,
-.form-search .checkbox,
-.form-inline .radio,
-.form-inline .checkbox {
- padding-left: 0;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.form-search .radio input[type="radio"],
-.form-search .checkbox input[type="checkbox"],
-.form-inline .radio input[type="radio"],
-.form-inline .checkbox input[type="checkbox"] {
- float: left;
- margin-right: 3px;
- margin-left: 0;
-}
-.control-group {
- margin-bottom: 0.65em;
-}
-legend + .control-group {
- margin-top: 1.3em;
- -webkit-margin-top-collapse: separate;
-}
-.form-horizontal .control-group {
- margin-bottom: 1.3em;
- *zoom: 1;
-}
-.form-horizontal .control-group:before,
-.form-horizontal .control-group:after {
- display: table;
- content: "";
-}
-.form-horizontal .control-group:after {
- clear: both;
-}
-.form-horizontal .control-label {
- float: left;
- width: 140px;
- padding-top: 5px;
- text-align: right;
-}
-.form-horizontal .controls {
- *display: inline-block;
- *padding-left: 20px;
- margin-left: 160px;
- *margin-left: 0;
-}
-.form-horizontal .controls:first-child {
- *padding-left: 160px;
-}
-.form-horizontal .help-block {
- margin-top: 0.65em;
- margin-bottom: 0;
-}
-.form-horizontal .form-actions {
- padding-left: 160px;
-}
-table {
- max-width: 100%;
- background-color: transparent;
- border-collapse: collapse;
- border-spacing: 0;
-}
-.table {
- width: 100%;
- margin-bottom: 1.3em;
-}
-.table th,
-.table td {
- padding: 8px;
- line-height: 1.3em;
- text-align: left;
- vertical-align: top;
- border-top: 1px solid #dddddd;
-}
-.table th {
- font-weight: bold;
-}
-.table thead th {
- vertical-align: bottom;
-}
-.table caption + thead tr:first-child th,
-.table caption + thead tr:first-child td,
-.table colgroup + thead tr:first-child th,
-.table colgroup + thead tr:first-child td,
-.table thead:first-child tr:first-child th,
-.table thead:first-child tr:first-child td {
- border-top: 0;
-}
-.table tbody + tbody {
- border-top: 2px solid #dddddd;
-}
-.table-condensed th,
-.table-condensed td {
- padding: 4px 5px;
-}
-.table-bordered {
- border: 1px solid #dddddd;
- border-collapse: separate;
- *border-collapse: collapsed;
- border-left: 0;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.table-bordered th,
-.table-bordered td {
- border-left: 1px solid #dddddd;
-}
-.table-bordered caption + thead tr:first-child th,
-.table-bordered caption + tbody tr:first-child th,
-.table-bordered caption + tbody tr:first-child td,
-.table-bordered colgroup + thead tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child td,
-.table-bordered thead:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child td {
- border-top: 0;
-}
-.table-bordered thead:first-child tr:first-child th:first-child,
-.table-bordered tbody:first-child tr:first-child td:first-child {
- -webkit-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
-}
-.table-bordered thead:first-child tr:first-child th:last-child,
-.table-bordered tbody:first-child tr:first-child td:last-child {
- -webkit-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
- -webkit-border-radius: 0 0 0 4px;
- -moz-border-radius: 0 0 0 4px;
- border-radius: 0 0 0 4px;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:last-child,
-.table-bordered tbody:last-child tr:last-child td:last-child {
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
-}
-.table-striped tbody tr:nth-child(odd) td,
-.table-striped tbody tr:nth-child(odd) th {
- background-color: #fafaf3;
-}
-.table tbody tr:hover td,
-.table tbody tr:hover th {
- background-color: #f7f7eb;
-}
-table .span1 {
- float: none;
- width: 44px;
- margin-left: 0;
-}
-table .span2 {
- float: none;
- width: 124px;
- margin-left: 0;
-}
-table .span3 {
- float: none;
- width: 204px;
- margin-left: 0;
-}
-table .span4 {
- float: none;
- width: 284px;
- margin-left: 0;
-}
-table .span5 {
- float: none;
- width: 364px;
- margin-left: 0;
-}
-table .span6 {
- float: none;
- width: 444px;
- margin-left: 0;
-}
-table .span7 {
- float: none;
- width: 524px;
- margin-left: 0;
-}
-table .span8 {
- float: none;
- width: 604px;
- margin-left: 0;
-}
-table .span9 {
- float: none;
- width: 684px;
- margin-left: 0;
-}
-table .span10 {
- float: none;
- width: 764px;
- margin-left: 0;
-}
-table .span11 {
- float: none;
- width: 844px;
- margin-left: 0;
-}
-table .span12 {
- float: none;
- width: 924px;
- margin-left: 0;
-}
-table .span13 {
- float: none;
- width: 1004px;
- margin-left: 0;
-}
-table .span14 {
- float: none;
- width: 1084px;
- margin-left: 0;
-}
-table .span15 {
- float: none;
- width: 1164px;
- margin-left: 0;
-}
-table .span16 {
- float: none;
- width: 1244px;
- margin-left: 0;
-}
-table .span17 {
- float: none;
- width: 1324px;
- margin-left: 0;
-}
-table .span18 {
- float: none;
- width: 1404px;
- margin-left: 0;
-}
-table .span19 {
- float: none;
- width: 1484px;
- margin-left: 0;
-}
-table .span20 {
- float: none;
- width: 1564px;
- margin-left: 0;
-}
-table .span21 {
- float: none;
- width: 1644px;
- margin-left: 0;
-}
-table .span22 {
- float: none;
- width: 1724px;
- margin-left: 0;
-}
-table .span23 {
- float: none;
- width: 1804px;
- margin-left: 0;
-}
-table .span24 {
- float: none;
- width: 1884px;
- margin-left: 0;
-}
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline-block;
- width: 14px;
- height: 14px;
- *margin-right: .3em;
- line-height: 14px;
- vertical-align: text-top;
- background-position: 14px 14px;
- background-repeat: no-repeat;
-}
-[class^="icon-"]:last-child,
-[class*=" icon-"]:last-child {
- *margin-left: 0;
-}
-.icon-white {
-}
-.icon-glass {
- background-position: 0 0;
-}
-.icon-music {
- background-position: -24px 0;
-}
-.icon-search {
- background-position: -48px 0;
-}
-.icon-envelope {
- background-position: -72px 0;
-}
-.icon-heart {
- background-position: -96px 0;
-}
-.icon-star {
- background-position: -120px 0;
-}
-.icon-star-empty {
- background-position: -144px 0;
-}
-.icon-user {
- background-position: -168px 0;
-}
-.icon-film {
- background-position: -192px 0;
-}
-.icon-th-large {
- background-position: -216px 0;
-}
-.icon-th {
- background-position: -240px 0;
-}
-.icon-th-list {
- background-position: -264px 0;
-}
-.icon-ok {
- background-position: -288px 0;
-}
-.icon-remove {
- background-position: -312px 0;
-}
-.icon-zoom-in {
- background-position: -336px 0;
-}
-.icon-zoom-out {
- background-position: -360px 0;
-}
-.icon-off {
- background-position: -384px 0;
-}
-.icon-signal {
- background-position: -408px 0;
-}
-.icon-cog {
- background-position: -432px 0;
-}
-.icon-trash {
- background-position: -456px 0;
-}
-.icon-home {
- background-position: 0 -24px;
-}
-.icon-file {
- background-position: -24px -24px;
-}
-.icon-time {
- background-position: -48px -24px;
-}
-.icon-road {
- background-position: -72px -24px;
-}
-.icon-download-alt {
- background-position: -96px -24px;
-}
-.icon-download {
- background-position: -120px -24px;
-}
-.icon-upload {
- background-position: -144px -24px;
-}
-.icon-inbox {
- background-position: -168px -24px;
-}
-.icon-play-circle {
- background-position: -192px -24px;
-}
-.icon-repeat {
- background-position: -216px -24px;
-}
-.icon-refresh {
- background-position: -240px -24px;
-}
-.icon-list-alt {
- background-position: -264px -24px;
-}
-.icon-lock {
- background-position: -287px -24px;
-}
-.icon-flag {
- background-position: -312px -24px;
-}
-.icon-headphones {
- background-position: -336px -24px;
-}
-.icon-volume-off {
- background-position: -360px -24px;
-}
-.icon-volume-down {
- background-position: -384px -24px;
-}
-.icon-volume-up {
- background-position: -408px -24px;
-}
-.icon-qrcode {
- background-position: -432px -24px;
-}
-.icon-barcode {
- background-position: -456px -24px;
-}
-.icon-tag {
- background-position: 0 -48px;
-}
-.icon-tags {
- background-position: -25px -48px;
-}
-.icon-book {
- background-position: -48px -48px;
-}
-.icon-bookmark {
- background-position: -72px -48px;
-}
-.icon-print {
- background-position: -96px -48px;
-}
-.icon-camera {
- background-position: -120px -48px;
-}
-.icon-font {
- background-position: -144px -48px;
-}
-.icon-bold {
- background-position: -167px -48px;
-}
-.icon-italic {
- background-position: -192px -48px;
-}
-.icon-text-height {
- background-position: -216px -48px;
-}
-.icon-text-width {
- background-position: -240px -48px;
-}
-.icon-align-left {
- background-position: -264px -48px;
-}
-.icon-align-center {
- background-position: -288px -48px;
-}
-.icon-align-right {
- background-position: -312px -48px;
-}
-.icon-align-justify {
- background-position: -336px -48px;
-}
-.icon-list {
- background-position: -360px -48px;
-}
-.icon-indent-left {
- background-position: -384px -48px;
-}
-.icon-indent-right {
- background-position: -408px -48px;
-}
-.icon-facetime-video {
- background-position: -432px -48px;
-}
-.icon-picture {
- background-position: -456px -48px;
-}
-.icon-pencil {
- background-position: 0 -72px;
-}
-.icon-map-marker {
- background-position: -24px -72px;
-}
-.icon-adjust {
- background-position: -48px -72px;
-}
-.icon-tint {
- background-position: -72px -72px;
-}
-.icon-edit {
- background-position: -96px -72px;
-}
-.icon-share {
- background-position: -120px -72px;
-}
-.icon-check {
- background-position: -144px -72px;
-}
-.icon-move {
- background-position: -168px -72px;
-}
-.icon-step-backward {
- background-position: -192px -72px;
-}
-.icon-fast-backward {
- background-position: -216px -72px;
-}
-.icon-backward {
- background-position: -240px -72px;
-}
-.icon-play {
- background-position: -264px -72px;
-}
-.icon-pause {
- background-position: -288px -72px;
-}
-.icon-stop {
- background-position: -312px -72px;
-}
-.icon-forward {
- background-position: -336px -72px;
-}
-.icon-fast-forward {
- background-position: -360px -72px;
-}
-.icon-step-forward {
- background-position: -384px -72px;
-}
-.icon-eject {
- background-position: -408px -72px;
-}
-.icon-chevron-left {
- background-position: -432px -72px;
-}
-.icon-chevron-right {
- background-position: -456px -72px;
-}
-.icon-plus-sign {
- background-position: 0 -96px;
-}
-.icon-minus-sign {
- background-position: -24px -96px;
-}
-.icon-remove-sign {
- background-position: -48px -96px;
-}
-.icon-ok-sign {
- background-position: -72px -96px;
-}
-.icon-question-sign {
- background-position: -96px -96px;
-}
-.icon-info-sign {
- background-position: -120px -96px;
-}
-.icon-screenshot {
- background-position: -144px -96px;
-}
-.icon-remove-circle {
- background-position: -168px -96px;
-}
-.icon-ok-circle {
- background-position: -192px -96px;
-}
-.icon-ban-circle {
- background-position: -216px -96px;
-}
-.icon-arrow-left {
- background-position: -240px -96px;
-}
-.icon-arrow-right {
- background-position: -264px -96px;
-}
-.icon-arrow-up {
- background-position: -289px -96px;
-}
-.icon-arrow-down {
- background-position: -312px -96px;
-}
-.icon-share-alt {
- background-position: -336px -96px;
-}
-.icon-resize-full {
- background-position: -360px -96px;
-}
-.icon-resize-small {
- background-position: -384px -96px;
-}
-.icon-plus {
- background-position: -408px -96px;
-}
-.icon-minus {
- background-position: -433px -96px;
-}
-.icon-asterisk {
- background-position: -456px -96px;
-}
-.icon-exclamation-sign {
- background-position: 0 -120px;
-}
-.icon-gift {
- background-position: -24px -120px;
-}
-.icon-leaf {
- background-position: -48px -120px;
-}
-.icon-fire {
- background-position: -72px -120px;
-}
-.icon-eye-open {
- background-position: -96px -120px;
-}
-.icon-eye-close {
- background-position: -120px -120px;
-}
-.icon-warning-sign {
- background-position: -144px -120px;
-}
-.icon-plane {
- background-position: -168px -120px;
-}
-.icon-calendar {
- background-position: -192px -120px;
-}
-.icon-random {
- background-position: -216px -120px;
-}
-.icon-comment {
- background-position: -240px -120px;
-}
-.icon-magnet {
- background-position: -264px -120px;
-}
-.icon-chevron-up {
- background-position: -288px -120px;
-}
-.icon-chevron-down {
- background-position: -313px -119px;
-}
-.icon-retweet {
- background-position: -336px -120px;
-}
-.icon-shopping-cart {
- background-position: -360px -120px;
-}
-.icon-folder-close {
- background-position: -384px -120px;
-}
-.icon-folder-open {
- background-position: -408px -120px;
-}
-.icon-resize-vertical {
- background-position: -432px -119px;
-}
-.icon-resize-horizontal {
- background-position: -456px -118px;
-}
-.icon-hdd {
- background-position: 0 -144px;
-}
-.icon-bullhorn {
- background-position: -24px -144px;
-}
-.icon-bell {
- background-position: -48px -144px;
-}
-.icon-certificate {
- background-position: -72px -144px;
-}
-.icon-thumbs-up {
- background-position: -96px -144px;
-}
-.icon-thumbs-down {
- background-position: -120px -144px;
-}
-.icon-hand-right {
- background-position: -144px -144px;
-}
-.icon-hand-left {
- background-position: -168px -144px;
-}
-.icon-hand-up {
- background-position: -192px -144px;
-}
-.icon-hand-down {
- background-position: -216px -144px;
-}
-.icon-circle-arrow-right {
- background-position: -240px -144px;
-}
-.icon-circle-arrow-left {
- background-position: -264px -144px;
-}
-.icon-circle-arrow-up {
- background-position: -288px -144px;
-}
-.icon-circle-arrow-down {
- background-position: -312px -144px;
-}
-.icon-globe {
- background-position: -336px -144px;
-}
-.icon-wrench {
- background-position: -360px -144px;
-}
-.icon-tasks {
- background-position: -384px -144px;
-}
-.icon-filter {
- background-position: -408px -144px;
-}
-.icon-briefcase {
- background-position: -432px -144px;
-}
-.icon-fullscreen {
- background-position: -456px -144px;
-}
-.dropup,
-.dropdown {
- position: relative;
-}
-.dropdown-toggle {
- *margin-bottom: -3px;
-}
-.dropdown-toggle:active,
-.open .dropdown-toggle {
- outline: 0;
-}
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- vertical-align: top;
- border-top: 4px solid #000000;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-.dropdown .caret {
- margin-top: 8px;
- margin-left: 2px;
-}
-.dropdown:hover .caret,
-.open .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 4px 0;
- margin: 1px 0 0;
- list-style: none;
- background-color: #ffffff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- *border-right-width: 2px;
- *border-bottom-width: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
-}
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu .divider {
- *width: 100%;
- height: 1px;
- margin: -0.35em 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.dropdown-menu a {
- display: block;
- padding: 3px 15px;
- clear: both;
- font-weight: normal;
- line-height: 1.3em;
- color: #9c0001;
- white-space: nowrap;
-}
-.dropdown-menu li > a:hover,
-.dropdown-menu .active > a,
-.dropdown-menu .active > a:hover {
- color: #c50001;
- text-decoration: none;
- background-color: transparent;
-}
-.open {
- *z-index: 1000;
-}
-.open > .dropdown-menu {
- display: block;
-}
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0;
- border-bottom: 4px solid #000000;
- content: "\2191";
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 1px;
-}
-.typeahead {
- margin-top: 2px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #eee;
- border: 1px solid rgba(0, 0, 0, 0.05);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
-}
-.well-large {
- padding: 24px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.well-small {
- padding: 9px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- -moz-transition: opacity 0.15s linear;
- -ms-transition: opacity 0.15s linear;
- -o-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
-}
-.fade.in {
- opacity: 1;
-}
-.collapse {
- position: relative;
- height: 0;
- overflow: hidden;
- -webkit-transition: height 0.35s ease;
- -moz-transition: height 0.35s ease;
- -ms-transition: height 0.35s ease;
- -o-transition: height 0.35s ease;
- transition: height 0.35s ease;
-}
-.collapse.in {
- height: auto;
-}
-.close {
- float: right;
- font-size: 20px;
- font-weight: bold;
- line-height: 1.3em;
- color: #000000;
- text-shadow: 0 1px 0 #ffffff;
- opacity: 0.2;
- filter: alpha(opacity=20);
-}
-.close:hover {
- color: #000000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.4;
- filter: alpha(opacity=40);
-}
-button.close {
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
-}
-.btn {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- padding: 4px 10px 4px;
- margin-bottom: 0;
- font-size: 17px;
- line-height: 1.3em;
- *line-height: 20px;
- color: #333333;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- vertical-align: middle;
- cursor: pointer;
- background-color: #f5f5f5;
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #e6e6e6;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- border: 1px solid #cccccc;
- *border: 0;
- border-bottom-color: #b3b3b3;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- *margin-left: .3em;
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn:hover,
-.btn:active,
-.btn.active,
-.btn.disabled,
-.btn[disabled] {
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
-}
-.btn:active,
-.btn.active {
- background-color: #cccccc \9;
-}
-.btn:first-child {
- *margin-left: 0;
-}
-.btn:hover {
- color: #333333;
- text-decoration: none;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- /* Buttons in IE7 don't get borders, so darken on hover */
-
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -ms-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
-}
-.btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.btn.active,
-.btn:active {
- background-color: #e6e6e6;
- background-color: #d9d9d9 \9;
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn.disabled,
-.btn[disabled] {
- cursor: default;
- background-color: #e6e6e6;
- background-image: none;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.btn-large {
- padding: 9px 14px;
- font-size: 19px;
- line-height: normal;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.btn-large [class^="icon-"] {
- margin-top: 1px;
-}
-.btn-small {
- padding: 5px 9px;
- font-size: 15px;
- line-height: -0.7em;
-}
-.btn-small [class^="icon-"] {
- margin-top: -1px;
-}
-.btn-mini {
- padding: 2px 6px;
- font-size: 15px;
- line-height: -2.7em;
-}
-.btn-primary,
-.btn-primary:hover,
-.btn-warning,
-.btn-warning:hover,
-.btn-danger,
-.btn-danger:hover,
-.btn-success,
-.btn-success:hover,
-.btn-info,
-.btn-info:hover,
-.btn-inverse,
-.btn-inverse:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-primary.active,
-.btn-warning.active,
-.btn-danger.active,
-.btn-success.active,
-.btn-info.active,
-.btn-inverse.active {
- color: rgba(255, 255, 255, 0.75);
-}
-.btn {
- border-color: #ccc;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
-}
-.btn-primary {
- background-color: #9c0f01;
- background-image: -moz-linear-gradient(top, #9c0001, #9c2600);
- background-image: -ms-linear-gradient(top, #9c0001, #9c2600);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9c0001), to(#9c2600));
- background-image: -webkit-linear-gradient(top, #9c0001, #9c2600);
- background-image: -o-linear-gradient(top, #9c0001, #9c2600);
- background-image: linear-gradient(top, #9c0001, #9c2600);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9c0001', endColorstr='#9c2600', GradientType=0);
- border-color: #9c2600 #9c2600 #501300;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #9c2600;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #9c2600;
- *background-color: #832000;
-}
-.btn-primary:active,
-.btn-primary.active {
- background-color: #691a00 \9;
-}
-.btn-warning {
- background-color: #faa732;
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(top, #fbb450, #f89406);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
- border-color: #f89406 #f89406 #ad6704;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #f89406;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active,
-.btn-warning.disabled,
-.btn-warning[disabled] {
- background-color: #f89406;
- *background-color: #df8505;
-}
-.btn-warning:active,
-.btn-warning.active {
- background-color: #c67605 \9;
-}
-.btn-danger {
- background-color: #da4f49;
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: linear-gradient(top, #ee5f5b, #bd362f);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
- border-color: #bd362f #bd362f #802420;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #bd362f;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active,
-.btn-danger.disabled,
-.btn-danger[disabled] {
- background-color: #bd362f;
- *background-color: #a9302a;
-}
-.btn-danger:active,
-.btn-danger.active {
- background-color: #942a25 \9;
-}
-.btn-success {
- background-color: #5bb75b;
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
- background-image: -ms-linear-gradient(top, #62c462, #51a351);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
- background-image: -o-linear-gradient(top, #62c462, #51a351);
- background-image: linear-gradient(top, #62c462, #51a351);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
- border-color: #51a351 #51a351 #387038;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #51a351;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active,
-.btn-success.disabled,
-.btn-success[disabled] {
- background-color: #51a351;
- *background-color: #499249;
-}
-.btn-success:active,
-.btn-success.active {
- background-color: #408140 \9;
-}
-.btn-info {
- background-color: #49afcd;
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: linear-gradient(top, #5bc0de, #2f96b4);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
- border-color: #2f96b4 #2f96b4 #1f6377;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #2f96b4;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active,
-.btn-info.disabled,
-.btn-info[disabled] {
- background-color: #2f96b4;
- *background-color: #2a85a0;
-}
-.btn-info:active,
-.btn-info.active {
- background-color: #24748c \9;
-}
-.btn-inverse {
- background-color: #555555;
- background-image: -moz-linear-gradient(top, #777777, #222222);
- background-image: -ms-linear-gradient(top, #777777, #222222);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#777777), to(#222222));
- background-image: -webkit-linear-gradient(top, #777777, #222222);
- background-image: -o-linear-gradient(top, #777777, #222222);
- background-image: linear-gradient(top, #777777, #222222);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#777777', endColorstr='#222222', GradientType=0);
- border-color: #222222 #222222 #000000;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #222222;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-inverse:hover,
-.btn-inverse:active,
-.btn-inverse.active,
-.btn-inverse.disabled,
-.btn-inverse[disabled] {
- background-color: #222222;
- *background-color: #151515;
-}
-.btn-inverse:active,
-.btn-inverse.active {
- background-color: #080808 \9;
-}
-button.btn,
-input[type="submit"].btn {
- *padding-top: 2px;
- *padding-bottom: 2px;
-}
-button.btn::-moz-focus-inner,
-input[type="submit"].btn::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button.btn.btn-large,
-input[type="submit"].btn.btn-large {
- *padding-top: 7px;
- *padding-bottom: 7px;
-}
-button.btn.btn-small,
-input[type="submit"].btn.btn-small {
- *padding-top: 3px;
- *padding-bottom: 3px;
-}
-button.btn.btn-mini,
-input[type="submit"].btn.btn-mini {
- *padding-top: 1px;
- *padding-bottom: 1px;
-}
-.btn-group {
- position: relative;
- *zoom: 1;
- *margin-left: .3em;
-}
-.btn-group:before,
-.btn-group:after {
- display: table;
- content: "";
-}
-.btn-group:after {
- clear: both;
-}
-.btn-group:first-child {
- *margin-left: 0;
-}
-.btn-group + .btn-group {
- margin-left: 5px;
-}
-.btn-toolbar {
- margin-top: 0.65em;
- margin-bottom: 0.65em;
-}
-.btn-toolbar .btn-group {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
-}
-.btn-group > .btn {
- position: relative;
- float: left;
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.btn-group > .btn:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-bottom-left-radius: 4px;
-}
-.btn-group > .btn:last-child,
-.btn-group > .dropdown-toggle {
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-right-radius: 4px;
-}
-.btn-group > .btn.large:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 6px;
- -moz-border-radius-topleft: 6px;
- border-top-left-radius: 6px;
- -webkit-border-bottom-left-radius: 6px;
- -moz-border-radius-bottomleft: 6px;
- border-bottom-left-radius: 6px;
-}
-.btn-group > .btn.large:last-child,
-.btn-group > .large.dropdown-toggle {
- -webkit-border-top-right-radius: 6px;
- -moz-border-radius-topright: 6px;
- border-top-right-radius: 6px;
- -webkit-border-bottom-right-radius: 6px;
- -moz-border-radius-bottomright: 6px;
- border-bottom-right-radius: 6px;
-}
-.btn-group > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group > .btn:active,
-.btn-group > .btn.active {
- z-index: 2;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-.btn-group > .dropdown-toggle {
- padding-left: 8px;
- padding-right: 8px;
- -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-mini.dropdown-toggle {
- padding-left: 5px;
- padding-right: 5px;
-}
-.btn-group > .btn-small.dropdown-toggle {
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-large.dropdown-toggle {
- padding-left: 12px;
- padding-right: 12px;
-}
-.btn-group.open .dropdown-toggle {
- background-image: none;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn-group.open .btn.dropdown-toggle {
- background-color: #e6e6e6;
-}
-.btn-group.open .btn-primary.dropdown-toggle {
- background-color: #9c2600;
-}
-.btn-group.open .btn-warning.dropdown-toggle {
- background-color: #f89406;
-}
-.btn-group.open .btn-danger.dropdown-toggle {
- background-color: #bd362f;
-}
-.btn-group.open .btn-success.dropdown-toggle {
- background-color: #51a351;
-}
-.btn-group.open .btn-info.dropdown-toggle {
- background-color: #2f96b4;
-}
-.btn-group.open .btn-inverse.dropdown-toggle {
- background-color: #222222;
-}
-.btn .caret {
- margin-top: 7px;
- margin-left: 0;
-}
-.btn:hover .caret,
-.open.btn-group .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.btn-mini .caret {
- margin-top: 5px;
-}
-.btn-small .caret {
- margin-top: 6px;
-}
-.btn-large .caret {
- margin-top: 6px;
- border-left-width: 5px;
- border-right-width: 5px;
- border-top-width: 5px;
-}
-.dropup .btn-large .caret {
- border-bottom: 5px solid #000000;
- border-top: 0;
-}
-.btn-primary .caret,
-.btn-warning .caret,
-.btn-danger .caret,
-.btn-info .caret,
-.btn-success .caret,
-.btn-inverse .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 0.75;
- filter: alpha(opacity=75);
-}
-.alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 1.3em;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- background-color: #fcf8e3;
- border: 1px solid #fbeed5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- color: #c09853;
-}
-.alert-heading {
- color: inherit;
-}
-.alert .close {
- position: relative;
- top: -2px;
- right: -21px;
- line-height: 18px;
-}
-.alert-success {
- background-color: #dff0d8;
- border-color: #d6e9c6;
- color: #468847;
-}
-.alert-danger,
-.alert-error {
- background-color: #f2dede;
- border-color: #eed3d7;
- color: #b94a48;
-}
-.alert-info {
- background-color: #d9edf7;
- border-color: #bce8f1;
- color: #3a87ad;
-}
-.alert-block {
- padding-top: 14px;
- padding-bottom: 14px;
-}
-.alert-block > p,
-.alert-block > ul {
- margin-bottom: 0;
-}
-.alert-block p + p {
- margin-top: 5px;
-}
-.nav {
- margin-left: 0;
- margin-bottom: 1.3em;
- list-style: none;
-}
-.nav > li > a {
- display: block;
-}
-.nav > li > a:hover {
- text-decoration: none;
- background-color: #cdcdcd;
-}
-.nav > .pull-right {
- float: right;
-}
-.nav .nav-header {
- display: block;
- padding: 3px 15px;
- font-size: 11px;
- font-weight: bold;
- line-height: 1.3em;
- color: #999999;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-.nav li + .nav-header {
- margin-top: 9px;
-}
-.nav-list {
- padding-left: 15px;
- padding-right: 15px;
- margin-bottom: 0;
-}
-.nav-list > li > a,
-.nav-list .nav-header {
- margin-left: -15px;
- margin-right: -15px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-.nav-list > li > a {
- padding: 3px 15px;
-}
-.nav-list > .active > a,
-.nav-list > .active > a:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
- background-color: #9c0001;
-}
-.nav-list [class^="icon-"] {
- margin-right: 2px;
-}
-.nav-list .divider {
- *width: 100%;
- height: 1px;
- margin: -0.35em 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.nav-tabs,
-.nav-pills {
- *zoom: 1;
-}
-.nav-tabs:before,
-.nav-pills:before,
-.nav-tabs:after,
-.nav-pills:after {
- display: table;
- content: "";
-}
-.nav-tabs:after,
-.nav-pills:after {
- clear: both;
-}
-.nav-tabs > li,
-.nav-pills > li {
- float: left;
-}
-.nav-tabs > li > a,
-.nav-pills > li > a {
- padding-right: 12px;
- padding-left: 12px;
- margin-right: 2px;
- line-height: 14px;
-}
-.nav-tabs {
- border-bottom: 1px solid #ddd;
-}
-.nav-tabs > li {
- margin-bottom: -1px;
-}
-.nav-tabs > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- line-height: 1.3em;
- border: 1px solid transparent;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
- border-color: #cdcdcd #cdcdcd #dddddd;
-}
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover {
- color: #777777;
- background-color: #ffffff;
- border: 1px solid #ddd;
- border-bottom-color: transparent;
- cursor: default;
-}
-.nav-pills > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- margin-top: 2px;
- margin-bottom: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.nav-pills > .active > a,
-.nav-pills > .active > a:hover {
- color: #ffffff;
- background-color: #9c0001;
-}
-.nav-stacked > li {
- float: none;
-}
-.nav-stacked > li > a {
- margin-right: 0;
-}
-.nav-tabs.nav-stacked {
- border-bottom: 0;
-}
-.nav-tabs.nav-stacked > li > a {
- border: 1px solid #ddd;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-tabs.nav-stacked > li:first-child > a {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs.nav-stacked > li:last-child > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.nav-tabs.nav-stacked > li > a:hover {
- border-color: #ddd;
- z-index: 2;
-}
-.nav-pills.nav-stacked > li > a {
- margin-bottom: 3px;
-}
-.nav-pills.nav-stacked > li:last-child > a {
- margin-bottom: 1px;
-}
-.nav-tabs .dropdown-menu {
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
-}
-.nav-pills .dropdown-menu {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.nav-tabs .dropdown-toggle .caret,
-.nav-pills .dropdown-toggle .caret {
- border-top-color: #9c0001;
- border-bottom-color: #9c0001;
- margin-top: 6px;
-}
-.nav-tabs .dropdown-toggle:hover .caret,
-.nav-pills .dropdown-toggle:hover .caret {
- border-top-color: #c50001;
- border-bottom-color: #c50001;
-}
-.nav-tabs .active .dropdown-toggle .caret,
-.nav-pills .active .dropdown-toggle .caret {
- border-top-color: #333333;
- border-bottom-color: #333333;
-}
-.nav > .dropdown.active > a:hover {
- color: #000000;
- cursor: pointer;
-}
-.nav-tabs .open .dropdown-toggle,
-.nav-pills .open .dropdown-toggle,
-.nav > li.dropdown.open.active > a:hover {
- color: #ffffff;
- background-color: #999999;
- border-color: #999999;
-}
-.nav li.dropdown.open .caret,
-.nav li.dropdown.open.active .caret,
-.nav li.dropdown.open a:hover .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.tabs-stacked .open > a:hover {
- border-color: #999999;
-}
-.tabbable {
- *zoom: 1;
-}
-.tabbable:before,
-.tabbable:after {
- display: table;
- content: "";
-}
-.tabbable:after {
- clear: both;
-}
-.tab-content {
- overflow: auto;
-}
-.tabs-below > .nav-tabs,
-.tabs-right > .nav-tabs,
-.tabs-left > .nav-tabs {
- border-bottom: 0;
-}
-.tab-content > .tab-pane,
-.pill-content > .pill-pane {
- display: none;
-}
-.tab-content > .active,
-.pill-content > .active {
- display: block;
-}
-.tabs-below > .nav-tabs {
- border-top: 1px solid #ddd;
-}
-.tabs-below > .nav-tabs > li {
- margin-top: -1px;
- margin-bottom: 0;
-}
-.tabs-below > .nav-tabs > li > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.tabs-below > .nav-tabs > li > a:hover {
- border-bottom-color: transparent;
- border-top-color: #ddd;
-}
-.tabs-below > .nav-tabs > .active > a,
-.tabs-below > .nav-tabs > .active > a:hover {
- border-color: transparent #ddd #ddd #ddd;
-}
-.tabs-left > .nav-tabs > li,
-.tabs-right > .nav-tabs > li {
- float: none;
-}
-.tabs-left > .nav-tabs > li > a,
-.tabs-right > .nav-tabs > li > a {
- min-width: 74px;
- margin-right: 0;
- margin-bottom: 3px;
-}
-.tabs-left > .nav-tabs {
- float: left;
- margin-right: 19px;
- border-right: 1px solid #ddd;
-}
-.tabs-left > .nav-tabs > li > a {
- margin-right: -1px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
-}
-.tabs-left > .nav-tabs > li > a:hover {
- border-color: #cdcdcd #dddddd #cdcdcd #cdcdcd;
-}
-.tabs-left > .nav-tabs .active > a,
-.tabs-left > .nav-tabs .active > a:hover {
- border-color: #ddd transparent #ddd #ddd;
- *border-right-color: #ffffff;
-}
-.tabs-right > .nav-tabs {
- float: right;
- margin-left: 19px;
- border-left: 1px solid #ddd;
-}
-.tabs-right > .nav-tabs > li > a {
- margin-left: -1px;
- -webkit-border-radius: 0 4px 4px 0;
- -moz-border-radius: 0 4px 4px 0;
- border-radius: 0 4px 4px 0;
-}
-.tabs-right > .nav-tabs > li > a:hover {
- border-color: #cdcdcd #cdcdcd #cdcdcd #dddddd;
-}
-.tabs-right > .nav-tabs .active > a,
-.tabs-right > .nav-tabs .active > a:hover {
- border-color: #ddd #ddd #ddd transparent;
- *border-left-color: #ffffff;
-}
-.navbar {
- *position: relative;
- *z-index: 2;
- overflow: visible;
- margin-bottom: 1.3em;
-}
-.navbar-inner {
- min-height: 40px;
- padding-left: 20px;
- padding-right: 20px;
- background-color: #fdfdfa;
- background-image: -moz-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -ms-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdfdfa), to(#fdfdfa));
- background-image: -webkit-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -o-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: linear-gradient(top, #fdfdfa, #fdfdfa);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfa', endColorstr='#fdfdfa', GradientType=0);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
-}
-.navbar .container {
- width: auto;
-}
-.nav-collapse.collapse {
- height: auto;
-}
-.navbar {
- color: #090000;
-}
-.navbar .brand:hover {
- text-decoration: none;
-}
-.navbar .brand {
- float: left;
- display: block;
- padding: 8px 20px 12px;
- margin-left: -20px;
- font-size: 20px;
- font-weight: 200;
- line-height: 1;
- color: #9c0001;
-}
-.navbar .navbar-text {
- margin-bottom: 0;
- line-height: 40px;
-}
-.navbar .navbar-link {
- color: #9c0001;
-}
-.navbar .navbar-link:hover {
- color: #c50001;
-}
-.navbar .btn,
-.navbar .btn-group {
- margin-top: 5px;
-}
-.navbar .btn-group .btn {
- margin: 0;
-}
-.navbar-form {
- margin-bottom: 0;
- *zoom: 1;
-}
-.navbar-form:before,
-.navbar-form:after {
- display: table;
- content: "";
-}
-.navbar-form:after {
- clear: both;
-}
-.navbar-form input,
-.navbar-form select,
-.navbar-form .radio,
-.navbar-form .checkbox {
- margin-top: 5px;
-}
-.navbar-form input,
-.navbar-form select {
- display: inline-block;
- margin-bottom: 0;
-}
-.navbar-form input[type="image"],
-.navbar-form input[type="checkbox"],
-.navbar-form input[type="radio"] {
- margin-top: 3px;
-}
-.navbar-form .input-append,
-.navbar-form .input-prepend {
- margin-top: 6px;
- white-space: nowrap;
-}
-.navbar-form .input-append input,
-.navbar-form .input-prepend input {
- margin-top: 0;
-}
-.navbar-search {
- position: relative;
- float: left;
- margin-top: 6px;
- margin-bottom: 0;
-}
-.navbar-search .search-query {
- padding: 4px 9px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- font-weight: normal;
- line-height: 1;
- color: #ffffff;
- background-color: #ffffff;
- border: 1px solid #b3b3b3;
- -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
-}
-.navbar-search .search-query:-moz-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:-ms-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query::-webkit-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:focus,
-.navbar-search .search-query.focused {
- padding: 5px 10px;
- color: #333333;
- text-shadow: 0 1px 0 #ffffff;
- background-color: #ffffff;
- border: 0;
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- outline: 0;
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
- margin-bottom: 0;
-}
-.navbar-fixed-top .navbar-inner,
-.navbar-fixed-bottom .navbar-inner {
- padding-left: 0;
- padding-right: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.navbar-fixed-top {
- top: 0;
-}
-.navbar-fixed-bottom {
- bottom: 0;
-}
-.navbar .nav {
- position: relative;
- left: 0;
- display: block;
- float: left;
- margin: 0 10px 0 0;
-}
-.navbar .nav.pull-right {
- float: right;
-}
-.navbar .nav > li {
- display: block;
- float: left;
-}
-.navbar .nav > li > a {
- float: none;
- padding: 9px 10px 11px;
- line-height: 19px;
- color: #9c0001;
- text-decoration: none;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.navbar .btn {
- display: inline-block;
- padding: 4px 10px 4px;
- margin: 5px 5px 6px;
- line-height: 1.3em;
-}
-.navbar .btn-group {
- margin: 0;
- padding: 5px 5px 6px;
-}
-.navbar .nav > li > a:hover {
- background-color: transparent;
- color: #c50001;
- text-decoration: none;
-}
-.navbar .nav .active > a,
-.navbar .nav .active > a:hover {
- color: #c50001;
- text-decoration: none;
- background-color: #fdfdfa;
-}
-.navbar .divider-vertical {
- height: 40px;
- width: 1px;
- margin: 0 9px;
- overflow: hidden;
- background-color: #fdfdfa;
- border-right: 1px solid #fdfdfa;
-}
-.navbar .nav.pull-right {
- margin-left: 10px;
- margin-right: 0;
-}
-.navbar .btn-navbar {
- display: none;
- float: right;
- padding: 7px 10px;
- margin-left: 5px;
- margin-right: 5px;
- background-color: #fdfdfa;
- background-image: -moz-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -ms-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdfdfa), to(#fdfdfa));
- background-image: -webkit-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: -o-linear-gradient(top, #fdfdfa, #fdfdfa);
- background-image: linear-gradient(top, #fdfdfa, #fdfdfa);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfa', endColorstr='#fdfdfa', GradientType=0);
- border-color: #fdfdfa #fdfdfa #e7e7c3;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #fdfdfa;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
-}
-.navbar .btn-navbar:hover,
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active,
-.navbar .btn-navbar.disabled,
-.navbar .btn-navbar[disabled] {
- background-color: #fdfdfa;
- *background-color: #f6f6e8;
-}
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active {
- background-color: #eeeed6 \9;
-}
-.navbar .btn-navbar .icon-bar {
- display: block;
- width: 18px;
- height: 2px;
- background-color: #f5f5f5;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-navbar .icon-bar + .icon-bar {
- margin-top: 3px;
-}
-.navbar .dropdown-menu:before {
- content: '';
- display: inline-block;
- border-left: 7px solid transparent;
- border-right: 7px solid transparent;
- border-bottom: 7px solid #ccc;
- border-bottom-color: rgba(0, 0, 0, 0.2);
- position: absolute;
- top: -7px;
- left: 9px;
-}
-.navbar .dropdown-menu:after {
- content: '';
- display: inline-block;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-bottom: 6px solid #ffffff;
- position: absolute;
- top: -6px;
- left: 10px;
-}
-.navbar-fixed-bottom .dropdown-menu:before {
- border-top: 7px solid #ccc;
- border-top-color: rgba(0, 0, 0, 0.2);
- border-bottom: 0;
- bottom: -7px;
- top: auto;
-}
-.navbar-fixed-bottom .dropdown-menu:after {
- border-top: 6px solid #ffffff;
- border-bottom: 0;
- bottom: -6px;
- top: auto;
-}
-.navbar .nav li.dropdown .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-.navbar .nav li.dropdown.active .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active > .dropdown-toggle,
-.navbar .nav li.dropdown.open.active > .dropdown-toggle {
- background-color: transparent;
-}
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover {
- color: #ffffff;
-}
-.navbar .pull-right .dropdown-menu,
-.navbar .dropdown-menu.pull-right {
- left: auto;
- right: 0;
-}
-.navbar .pull-right .dropdown-menu:before,
-.navbar .dropdown-menu.pull-right:before {
- left: auto;
- right: 12px;
-}
-.navbar .pull-right .dropdown-menu:after,
-.navbar .dropdown-menu.pull-right:after {
- left: auto;
- right: 13px;
-}
-.breadcrumb {
- padding: 7px 14px;
- margin: 0 0 1.3em;
- list-style: none;
- background-color: #fbfbfb;
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
- border: 1px solid #ddd;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
-}
-.breadcrumb li {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- text-shadow: 0 1px 0 #ffffff;
-}
-.breadcrumb .divider {
- padding: 0 5px;
- color: #999999;
-}
-.breadcrumb .active a {
- color: #333333;
-}
-.pagination {
- height: 2.6em;
- margin: 1.3em 0;
-}
-.pagination ul {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-left: 0;
- margin-bottom: 0;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-}
-.pagination li {
- display: inline;
-}
-.pagination a {
- float: left;
- padding: 0 14px;
- line-height: 0.6000000000000001em;
- text-decoration: none;
- border: 1px solid #ddd;
- border-left-width: 0;
-}
-.pagination a:hover,
-.pagination .active a {
- background-color: #f5f5f5;
-}
-.pagination .active a {
- color: #999999;
- cursor: default;
-}
-.pagination .disabled span,
-.pagination .disabled a,
-.pagination .disabled a:hover {
- color: #999999;
- background-color: transparent;
- cursor: default;
-}
-.pagination li:first-child a {
- border-left-width: 1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.pagination li:last-child a {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.pagination-centered {
- text-align: center;
-}
-.pagination-right {
- text-align: right;
-}
-.pager {
- margin-left: 0;
- margin-bottom: 1.3em;
- list-style: none;
- text-align: center;
- *zoom: 1;
-}
-.pager:before,
-.pager:after {
- display: table;
- content: "";
-}
-.pager:after {
- clear: both;
-}
-.pager li {
- display: inline;
-}
-.pager a {
- display: inline-block;
- padding: 5px 14px;
- background-color: #fff;
- border: 1px solid #ddd;
- -webkit-border-radius: 15px;
- -moz-border-radius: 15px;
- border-radius: 15px;
-}
-.pager a:hover {
- text-decoration: none;
- background-color: #f5f5f5;
-}
-.pager .next a {
- float: right;
-}
-.pager .previous a {
- float: left;
-}
-.pager .disabled a,
-.pager .disabled a:hover {
- color: #999999;
- background-color: #fff;
- cursor: default;
-}
-.modal-open .dropdown-menu {
- z-index: 2050;
-}
-.modal-open .dropdown.open {
- *z-index: 2050;
-}
-.modal-open .popover {
- z-index: 2060;
-}
-.modal-open .tooltip {
- z-index: 2070;
-}
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000000;
-}
-.modal-backdrop.fade {
- opacity: 0;
-}
-.modal-backdrop,
-.modal-backdrop.fade.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.modal {
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 1050;
- overflow: auto;
- width: 560px;
- margin: -250px 0 0 -280px;
- background-color: #ffffff;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.3);
- *border: 1px solid #999;
- /* IE6-7 */
-
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.modal.fade {
- -webkit-transition: opacity .3s linear, top .3s ease-out;
- -moz-transition: opacity .3s linear, top .3s ease-out;
- -ms-transition: opacity .3s linear, top .3s ease-out;
- -o-transition: opacity .3s linear, top .3s ease-out;
- transition: opacity .3s linear, top .3s ease-out;
- top: -25%;
-}
-.modal.fade.in {
- top: 50%;
-}
-.modal-header {
- padding: 9px 15px;
- border-bottom: 1px solid #eee;
-}
-.modal-header .close {
- margin-top: 2px;
-}
-.modal-body {
- overflow-y: auto;
- max-height: 400px;
- padding: 15px;
-}
-.modal-form {
- margin-bottom: 0;
-}
-.modal-footer {
- padding: 14px 15px 15px;
- margin-bottom: 0;
- text-align: right;
- background-color: #f5f5f5;
- border-top: 1px solid #ddd;
- -webkit-border-radius: 0 0 6px 6px;
- -moz-border-radius: 0 0 6px 6px;
- border-radius: 0 0 6px 6px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
- *zoom: 1;
-}
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: "";
-}
-.modal-footer:after {
- clear: both;
-}
-.modal-footer .btn + .btn {
- margin-left: 5px;
- margin-bottom: 0;
-}
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-.tooltip {
- position: absolute;
- z-index: 1020;
- display: block;
- visibility: visible;
- padding: 5px;
- font-size: 11px;
- opacity: 0;
- filter: alpha(opacity=0);
-}
-.tooltip.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.tooltip.top {
- margin-top: -2px;
-}
-.tooltip.right {
- margin-left: 2px;
-}
-.tooltip.bottom {
- margin-top: 2px;
-}
-.tooltip.left {
- margin-left: -2px;
-}
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #ffffff;
- text-align: center;
- text-decoration: none;
- background-color: #000000;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: none;
- padding: 5px;
-}
-.popover.top {
- margin-top: -5px;
-}
-.popover.right {
- margin-left: 5px;
-}
-.popover.bottom {
- margin-top: 5px;
-}
-.popover.left {
- margin-left: -5px;
-}
-.popover.top .arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.popover.right .arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.popover.bottom .arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.popover.left .arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.popover .arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover-inner {
- padding: 3px;
- width: 280px;
- overflow: hidden;
- background: #000000;
- background: rgba(0, 0, 0, 0.8);
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-}
-.popover-title {
- padding: 9px 15px;
- line-height: 1;
- background-color: #f5f5f5;
- border-bottom: 1px solid #eee;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
-}
-.popover-content {
- padding: 14px;
- background-color: #ffffff;
- -webkit-border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- border-radius: 0 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.popover-content p,
-.popover-content ul,
-.popover-content ol {
- margin-bottom: 0;
-}
-.thumbnails {
- margin-left: -20px;
- list-style: none;
- *zoom: 1;
-}
-.thumbnails:before,
-.thumbnails:after {
- display: table;
- content: "";
-}
-.thumbnails:after {
- clear: both;
-}
-.row-fluid .thumbnails {
- margin-left: 0;
-}
-.thumbnails > li {
- float: left;
- margin-bottom: 1.3em;
- margin-left: 20px;
-}
-.thumbnail {
- display: block;
- padding: 4px;
- line-height: 1;
- border: 1px solid #ddd;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-a.thumbnail:hover {
- border-color: #9c0001;
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-}
-.thumbnail > img {
- display: block;
- max-width: 100%;
- margin-left: auto;
- margin-right: auto;
-}
-.thumbnail .caption {
- padding: 9px;
-}
-.label,
-.badge {
- font-size: 14.382px;
- font-weight: bold;
- line-height: 14px;
- color: #ffffff;
- vertical-align: baseline;
- white-space: nowrap;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #999999;
-}
-.label {
- padding: 1px 4px 2px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.badge {
- padding: 1px 9px 2px;
- -webkit-border-radius: 9px;
- -moz-border-radius: 9px;
- border-radius: 9px;
-}
-a.label:hover,
-a.badge:hover {
- color: #ffffff;
- text-decoration: none;
- cursor: pointer;
-}
-.label-important,
-.badge-important {
- background-color: #b94a48;
-}
-.label-important[href],
-.badge-important[href] {
- background-color: #953b39;
-}
-.label-warning,
-.badge-warning {
- background-color: #f89406;
-}
-.label-warning[href],
-.badge-warning[href] {
- background-color: #c67605;
-}
-.label-success,
-.badge-success {
- background-color: #468847;
-}
-.label-success[href],
-.badge-success[href] {
- background-color: #356635;
-}
-.label-info,
-.badge-info {
- background-color: #3a87ad;
-}
-.label-info[href],
-.badge-info[href] {
- background-color: #2d6987;
-}
-.label-inverse,
-.badge-inverse {
- background-color: #333333;
-}
-.label-inverse[href],
-.badge-inverse[href] {
- background-color: #1a1a1a;
-}
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-moz-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-ms-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 40px 0;
- }
-}
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- overflow: hidden;
- height: 18px;
- margin-bottom: 18px;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.progress .bar {
- width: 0%;
- height: 18px;
- color: #ffffff;
- font-size: 12px;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #0e90d2;
- background-image: -moz-linear-gradient(top, #149bdf, #0480be);
- background-image: -ms-linear-gradient(top, #149bdf, #0480be);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
- background-image: -o-linear-gradient(top, #149bdf, #0480be);
- background-image: linear-gradient(top, #149bdf, #0480be);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-transition: width 0.6s ease;
- -moz-transition: width 0.6s ease;
- -ms-transition: width 0.6s ease;
- -o-transition: width 0.6s ease;
- transition: width 0.6s ease;
-}
-.progress-striped .bar {
- background-color: #149bdf;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-background-size: 40px 40px;
- -moz-background-size: 40px 40px;
- -o-background-size: 40px 40px;
- background-size: 40px 40px;
-}
-.progress.active .bar {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- -moz-animation: progress-bar-stripes 2s linear infinite;
- -ms-animation: progress-bar-stripes 2s linear infinite;
- -o-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-danger .bar {
- background-color: #dd514c;
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
-}
-.progress-danger.progress-striped .bar {
- background-color: #ee5f5b;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-success .bar {
- background-color: #5eb95e;
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
- background-image: -o-linear-gradient(top, #62c462, #57a957);
- background-image: linear-gradient(top, #62c462, #57a957);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
-}
-.progress-success.progress-striped .bar {
- background-color: #62c462;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-info .bar {
- background-color: #4bb1cf;
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
- background-image: linear-gradient(top, #5bc0de, #339bb9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
-}
-.progress-info.progress-striped .bar {
- background-color: #5bc0de;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-warning .bar {
- background-color: #faa732;
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(top, #fbb450, #f89406);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
-}
-.progress-warning.progress-striped .bar {
- background-color: #fbb450;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.accordion {
- margin-bottom: 1.3em;
-}
-.accordion-group {
- margin-bottom: 2px;
- border: 1px solid #e5e5e5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.accordion-heading {
- border-bottom: 0;
-}
-.accordion-heading .accordion-toggle {
- display: block;
- padding: 8px 15px;
-}
-.accordion-toggle {
- cursor: pointer;
-}
-.accordion-inner {
- padding: 9px 15px;
- border-top: 1px solid #e5e5e5;
-}
-.carousel {
- position: relative;
- margin-bottom: 1.3em;
- line-height: 1;
-}
-.carousel-inner {
- overflow: hidden;
- width: 100%;
- position: relative;
-}
-.carousel .item {
- display: none;
- position: relative;
- -webkit-transition: 0.6s ease-in-out left;
- -moz-transition: 0.6s ease-in-out left;
- -ms-transition: 0.6s ease-in-out left;
- -o-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
-}
-.carousel .item > img {
- display: block;
- line-height: 1;
-}
-.carousel .active,
-.carousel .next,
-.carousel .prev {
- display: block;
-}
-.carousel .active {
- left: 0;
-}
-.carousel .next,
-.carousel .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel .next {
- left: 100%;
-}
-.carousel .prev {
- left: -100%;
-}
-.carousel .next.left,
-.carousel .prev.right {
- left: 0;
-}
-.carousel .active.left {
- left: -100%;
-}
-.carousel .active.right {
- left: 100%;
-}
-.carousel-control {
- position: absolute;
- top: 40%;
- left: 15px;
- width: 40px;
- height: 40px;
- margin-top: -20px;
- font-size: 60px;
- font-weight: 100;
- line-height: 30px;
- color: #ffffff;
- text-align: center;
- background: #222222;
- border: 3px solid #ffffff;
- -webkit-border-radius: 23px;
- -moz-border-radius: 23px;
- border-radius: 23px;
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-.carousel-control.right {
- left: auto;
- right: 15px;
-}
-.carousel-control:hover {
- color: #ffffff;
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-.carousel-caption {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 10px 15px 5px;
- background: #333333;
- background: rgba(0, 0, 0, 0.75);
-}
-.carousel-caption h4,
-.carousel-caption p {
- color: #ffffff;
-}
-.hero-unit {
- padding: 60px;
- margin-bottom: 30px;
- background-color: #ffffff;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.hero-unit h1 {
- margin-bottom: 0;
- font-size: 60px;
- line-height: 1;
- color: inherit;
- letter-spacing: -1px;
-}
-.hero-unit p {
- font-size: 18px;
- font-weight: 200;
- line-height: 1.9500000000000002em;
- color: inherit;
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
-body {
- word-spacing: -0.05em;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- line-height: 2em;
- color: #090000;
-}
-h1 {
- font-size: 2em;
-}
-h2 {
- font-size: 1.5em;
-}
-h3,
-h4,
-h5,
-h6 {
- font-size: 1em;
- text-transform: none;
-}
-small {
- font-size: 13px;
-}
-.muted,
-.help-block,
-.uneditable-input,
-blockquote,
-small {
- color: #999999;
-}
-body {
- padding-top: 20px !important;
-}
-.page-header {
- padding-bottom: 1em;
- border-bottom: 2px solid #cdcdcd;
-}
-footer.footer {
- padding-top: 2em;
- padding-bottom: 3em;
- border-top: 2px solid #cdcdcd;
-}
-.navbar {
- margin-left: 0px;
-}
-.navbar .navbar-inner {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.navbar .brand {
- font-size: 17px;
- font-weight: bold;
- line-height: 1em;
- padding: 11px 10px;
-}
-.navbar .brand:hover {
- color: #c50001;
-}
-.navbar .nav > li > a {
- text-shadow: none;
- padding: 10px;
-}
-.navbar .nav > li.active > a,
-.navbar .open .dropdown-toggle {
- color: #9c0001;
-}
-.navbar .nav li.dropdown.active > .dropdown-toggle,
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active.open > .dropdown-toggle {
- color: #9c0001;
-}
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover,
-.navbar .nav li.dropdown.open > .dropdown-toggle:hover,
-.navbar .nav li.dropdown.active.open > .dropdown-toggle:hover {
- color: #c50001;
-}
-.navbar .nav li.dropdown .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .caret {
- border-top-color: #9c0001;
- opacity: 1;
-}
-.navbar .nav li.dropdown.open .dropdown-toggle:hover .caret {
- border-top-color: #c50001;
-}
-.navbar .search-query {
- border: 1px solid #D4D4D4;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- color: #090000;
- background-color: #ffffff;
-}
-@media (max-width: 980px) {
- form.navbar-form,
- form.navbar-search {
- border-top: 1px solid #D4D4D4;
- border-bottom: 1px solid #D4D4D4;
- }
-}
-.navbar-fixed-top {
- position: static;
- margin-bottom: 1.6em;
-}
-div.subnav {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- background-color: #ffffff;
- background-image: none;
-}
-div.subnav .nav {
- padding: 0;
-}
-div.subnav .nav > li.active > a,
-div.subnav .nav > li:active > a {
- color: #9c0001;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- background-color: transparent;
-}
-div.subnav .nav > li > a:hover,
-div.subnav .nav > li.active > a:hover,
-div.subnav .nav > li:active > a:hover {
- color: #c50001;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- background-color: transparent;
-}
-div.subnav-fixed {
- position: static;
- left: auto;
- width: 100%;
- margin: 0;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- border: 1px solid #E5E5E5;
-}
-div.subnav-fixed .nav {
- width: auto;
- padding: 0;
-}
-.dropdown-menu {
- border: 1px solid #D4D4D4;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
-}
-.dropdown-menu .divider {
- margin: 5px 1px;
-}
-.navbar .nav-collapse.in .nav li:first-child > a {
- margin-bottom: 10px;
-}
-.navbar .nav-collapse.in .nav li > a {
- color: #9c0001;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- font-weight: normal;
-}
-.navbar .nav-collapse.in .nav li > a:hover {
- color: #c50001;
-}
-.navbar .nav-collapse.in .nav li > a:hover {
- background: transparent;
-}
-.nav .dropdown .caret {
- opacity: 1;
-}
-.nav-tabs li > a {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-tabs li > a:hover {
- background-color: #fdfdfa;
-}
-.nav-tabs li.active > a,
-.nav-tabs li.active > a:hover {
- color: #090000;
- background-color: #fdfdfa;
-}
-.nav-tabs.nav-stacked li > a {
- background-color: #ffffff;
-}
-.nav-tabs.nav-stacked li.active > a,
-.nav-tabs.nav-stacked li.active > a:hover,
-.nav-tabs.nav-stacked li > a:hover {
- background-color: #F5F5F5;
-}
-.nav-tabs.nav-stacked li:first-child > a,
-.nav-tabs.nav-stacked li:last-child > a {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-pills li > a {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-pills li > a:hover {
- background-color: #fdfdfa;
-}
-.nav-pills li.active > a,
-.nav-pills li.active > a:hover {
- color: #090000;
- background-color: #fdfdfa;
-}
-.nav-pills .open .dropdown-toggle {
- background-color: transparent;
- color: #9c0001;
- border-left: 1px solid whiteSmoke;
- border-right: 1px solid #E5E5E5;
-}
-.nav-pills li.dropdown.open .dropdown-toggle .caret {
- border-top-color: #9c0001;
-}
-.nav-pills li.dropdown.open .dropdown-toggle:hover .caret {
- border-top-color: #c50001;
-}
-.nav-list li > a:hover,
-.nav-list li.active > a,
-.nav-list li.active > a:hover {
- background-color: transparent;
- text-shadow: none;
-}
-.nav-list li.active > a,
-.nav-list li.active > a:hover {
- color: #090000;
-}
-.nav-list [class^="icon-"] {
- margin-top: 3px;
- opacity: 0.8;
-}
-.breadcrumb {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- background-color: #ffffff;
- background-image: none;
-}
-.pagination ul {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.pagination li > a {
- padding: 10px 14px;
-}
-.pagination li.active > a,
-.pagination li.active > a:hover {
- color: #090000;
- background-color: #F5F5F5;
-}
-.pagination li > a,
-.pagination li.disabled > a,
-.pagination li.disabled > a:hover {
- background-color: #ffffff;
-}
-.pagination li:first-child > a,
-.pagination li:last-child > a {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.pager a {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.btn-primary {
- background-color: #bb0001;
- background-image: -moz-linear-gradient(top, #cf0001, #9c0001);
- background-image: -ms-linear-gradient(top, #cf0001, #9c0001);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cf0001), to(#9c0001));
- background-image: -webkit-linear-gradient(top, #cf0001, #9c0001);
- background-image: -o-linear-gradient(top, #cf0001, #9c0001);
- background-image: linear-gradient(top, #cf0001, #9c0001);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf0001', endColorstr='#9c0001', GradientType=0);
- border-color: #9c0001 #9c0001 #500001;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #9c0001;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #9c0001;
- *background-color: #830001;
-}
-.btn-primary:active,
-.btn-primary.active {
- background-color: #690001 \9;
-}
-.btn [class^="icon-"],
-.btn [class*=" icon-"] {
- margin-top: 4px;
-}
-.btn-large [class^="icon-"],
-.btn-large [class*=" icon-"] {
- margin-top: 6px;
- margin-right: 2px;
-}
-.btn-small [class^="icon-"],
-.btn-small [class*=" icon-"] {
- margin-top: 3px;
-}
-.btn .caret {
- margin-top: 13px;
-}
-input,
-button,
-select,
-textarea {
- font-family: Georgia, "Times New Roman", Times, serif;
-}
-input,
-textarea,
-select {
- color: #090000;
-}
-select,
-input[type="file"] {
- height: auto;
- line-height: normal;
-}
-.form-actions {
- border-top: 1px solid #D4D4D4;
- padding-top: 2em;
-}
-.table-bordered {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.table-bordered thead:first-child tr:first-child th:first-child,
-.table-bordered tbody:first-child tr:first-child td:first-child {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.modal {
- background-color: #ffffff;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.modal-header {
- border-bottom: none;
-}
-.modal-footer {
- background-color: #fdfdfa;
-}
-.alert,
-.label,
-.label:hover {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- border: 1px solid #D4D4D4;
- color: #090000;
- text-shadow: none;
-}
-.alert-heading {
- color: #090000;
- text-shadow: none;
-}
-.label,
-.label:hover {
- background-color: #ffffff;
- font-weight: normal;
- font-size: 17px;
- padding: 4px;
-}
-.label-important,
-.label-important:hover {
- background-color: #f2dede;
-}
-.label-warning,
-.label-warning:hover {
- background-color: #fcf8e3;
-}
-.label-success,
-.label-success:hover {
- background-color: #dff0d8;
-}
-.label-info,
-.label-info:hover {
- background-color: #d9edf7;
-}
-.well,
-.hero-unit {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D4;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- background-color: #ffffff;
-}
-blockquote {
- border-left: 6px solid #cdcdcd;
-}
-blockquote.pull-right {
- border-right: 6px solid #cdcdcd;
-}
-blockquote p {
- font-size: 1em;
- line-height: 1.2em;
-}
-.thumbnail {
- background-color: #ffffff;
-}
-.thumbnail,
-.thumbnail > img {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-code,
-pre {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- background-color: #ffffff;
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
diff --git a/main/css/readable/default.css b/main/css/readable/default.css
deleted file mode 100755
index b9565ccde3..0000000000
--- a/main/css/readable/default.css
+++ /dev/null
@@ -1,8 +0,0 @@
-@import url('bootstrap.css');
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-footer a:link, footer a:visited {
- color: #4183C4;
-}
\ No newline at end of file
diff --git a/main/css/readable/images/blue_arrow.png b/main/css/readable/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/readable/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/readable/images/white_arrow.png b/main/css/readable/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/readable/images/white_arrow.png and /dev/null differ
diff --git a/main/css/readable/scorm.css b/main/css/readable/scorm.css
deleted file mode 100644
index f287f16909..0000000000
--- a/main/css/readable/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/royal_purple/chat.css b/main/css/royal_purple/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/royal_purple/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/royal_purple/dataTable.css b/main/css/royal_purple/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/royal_purple/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/royal_purple/default.css b/main/css/royal_purple/default.css
deleted file mode 100755
index 120cebb9fc..0000000000
--- a/main/css/royal_purple/default.css
+++ /dev/null
@@ -1,2695 +0,0 @@
-/*****************************************************
- * MAIN ROYAL PURPLE *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height:0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #8e5b97;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #8e5b97;
-}
-
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- padding: 4px;
- color: #8e5b97;
-}
-#header1 a {
- color: #636363;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-
-#institution {
- float: left;
-}
-
-
-/*****************************************************
- * TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-}
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav #current a {
- background-color: #8E5B97; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #8E5B97 0%, #B793BD 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8E5B97), color-stop(100%,#B793BD)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #8E5B97 0%, #B793BD 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #8E5B97 0%,#B793BD 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #8E5B97 0%,#B793BD 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8E5B97', endColorstr='#B793BD',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #8E5B97 0%, #B793BD 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-
-#logout {
- display: inline;
- float: right;
- width: auto;
- text-align: right;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
- padding-bottom:10px;
-}
-.push {
- height: 3em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #8e5b97;
- color: #8e5b97;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/* New training */
-.bottom-link {
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #8e5b97;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
- min-height:200px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Report section */
-div.report_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.report_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #8e5b97;
- border-top:1px dotted #8e5b97;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover{
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /*margin-right:10px;*/
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head {
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/royal_purple/frames.css b/main/css/royal_purple/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/royal_purple/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/royal_purple/images/2leftarrow.gif b/main/css/royal_purple/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/royal_purple/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/2rightarrow.gif b/main/css/royal_purple/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/royal_purple/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/bar_1.gif b/main/css/royal_purple/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/royal_purple/images/bar_1.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/bar_1m.gif b/main/css/royal_purple/images/bar_1m.gif
deleted file mode 100755
index 4919e31b08..0000000000
Binary files a/main/css/royal_purple/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/bar_1r.gif b/main/css/royal_purple/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/royal_purple/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/bar_1u.gif b/main/css/royal_purple/images/bar_1u.gif
deleted file mode 100755
index d5a56d957d..0000000000
Binary files a/main/css/royal_purple/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/blue_arrow.png b/main/css/royal_purple/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/royal_purple/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/royal_purple/images/button_accept.gif b/main/css/royal_purple/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/royal_purple/images/button_accept.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_add.gif b/main/css/royal_purple/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/royal_purple/images/button_add.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_back.gif b/main/css/royal_purple/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/royal_purple/images/button_back.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_back.jpg b/main/css/royal_purple/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/royal_purple/images/button_back.jpg and /dev/null differ
diff --git a/main/css/royal_purple/images/button_delete.gif b/main/css/royal_purple/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/royal_purple/images/button_delete.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_login.gif b/main/css/royal_purple/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/royal_purple/images/button_login.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_minus.gif b/main/css/royal_purple/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/royal_purple/images/button_minus.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_next.gif b/main/css/royal_purple/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/royal_purple/images/button_next.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_plus.gif b/main/css/royal_purple/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/royal_purple/images/button_plus.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_refresh.gif b/main/css/royal_purple/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/royal_purple/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_search.gif b/main/css/royal_purple/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/royal_purple/images/button_search.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/button_upload.gif b/main/css/royal_purple/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/royal_purple/images/button_upload.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/Sorting icons.psd b/main/css/royal_purple/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/royal_purple/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/back_disabled.jpg b/main/css/royal_purple/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/royal_purple/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/back_enabled.jpg b/main/css/royal_purple/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/royal_purple/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/favicon.ico b/main/css/royal_purple/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/royal_purple/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/forward_disabled.jpg b/main/css/royal_purple/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/royal_purple/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/forward_enabled.jpg b/main/css/royal_purple/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/royal_purple/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/sort_asc.png b/main/css/royal_purple/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/royal_purple/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/sort_asc_disabled.png b/main/css/royal_purple/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/royal_purple/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/sort_both.png b/main/css/royal_purple/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/royal_purple/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/sort_desc.png b/main/css/royal_purple/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/royal_purple/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/royal_purple/images/dataTable/sort_desc_disabled.png b/main/css/royal_purple/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/royal_purple/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/royal_purple/images/help2.png b/main/css/royal_purple/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/royal_purple/images/help2.png and /dev/null differ
diff --git a/main/css/royal_purple/images/index.html b/main/css/royal_purple/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/royal_purple/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/royal_purple/images/loading.gif b/main/css/royal_purple/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/royal_purple/images/loading.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/portal.png b/main/css/royal_purple/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/royal_purple/images/portal.png and /dev/null differ
diff --git a/main/css/royal_purple/images/refresh.png b/main/css/royal_purple/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/royal_purple/images/refresh.png and /dev/null differ
diff --git a/main/css/royal_purple/images/shadow.gif b/main/css/royal_purple/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/royal_purple/images/shadow.gif and /dev/null differ
diff --git a/main/css/royal_purple/images/tab-left.png b/main/css/royal_purple/images/tab-left.png
deleted file mode 100755
index 989b18a1fd..0000000000
Binary files a/main/css/royal_purple/images/tab-left.png and /dev/null differ
diff --git a/main/css/royal_purple/images/tab-repeat.png b/main/css/royal_purple/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/royal_purple/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/royal_purple/images/tab-right.png b/main/css/royal_purple/images/tab-right.png
deleted file mode 100755
index c997b816b6..0000000000
Binary files a/main/css/royal_purple/images/tab-right.png and /dev/null differ
diff --git a/main/css/royal_purple/images/tab.png b/main/css/royal_purple/images/tab.png
deleted file mode 100755
index 1771200c7c..0000000000
Binary files a/main/css/royal_purple/images/tab.png and /dev/null differ
diff --git a/main/css/royal_purple/images/white_arrow.png b/main/css/royal_purple/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/royal_purple/images/white_arrow.png and /dev/null differ
diff --git a/main/css/royal_purple/learnpath.css b/main/css/royal_purple/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/royal_purple/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/royal_purple/online.css b/main/css/royal_purple/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/royal_purple/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/royal_purple/print.css b/main/css/royal_purple/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/royal_purple/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/royal_purple/scorm.css b/main/css/royal_purple/scorm.css
deleted file mode 100755
index fb2d08670b..0000000000
--- a/main/css/royal_purple/scorm.css
+++ /dev/null
@@ -1,466 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #00aad4;
- background-color: #00aad4;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #D7EEF4;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/royal_purple/scormfs.css b/main/css/royal_purple/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/royal_purple/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/royal_purple/screen.css b/main/css/royal_purple/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/send_inv.png b/main/css/send_inv.png
deleted file mode 100755
index 045fd90883..0000000000
Binary files a/main/css/send_inv.png and /dev/null differ
diff --git a/main/css/send_inv_off.png b/main/css/send_inv_off.png
deleted file mode 100755
index 4b88d3f8ea..0000000000
Binary files a/main/css/send_inv_off.png and /dev/null differ
diff --git a/main/css/send_msg.png b/main/css/send_msg.png
deleted file mode 100755
index cde4f5df45..0000000000
Binary files a/main/css/send_msg.png and /dev/null differ
diff --git a/main/css/silver_line/dataTable.css b/main/css/silver_line/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/silver_line/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/silver_line/default.css b/main/css/silver_line/default.css
deleted file mode 100755
index 929b3a630d..0000000000
--- a/main/css/silver_line/default.css
+++ /dev/null
@@ -1,2293 +0,0 @@
-/*****************************************************
- * MAIN - CORPORATE
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- margin: 0;
- padding: 0;
- font-size: .85em;
- font-family: 'Lucida Grande', verdana, Arial, sans-serif, sans;
- color: #000;
- background-color: #fff;
-}
-
-a {
- text-decoration: none;
- color: #900;
-}
-a:hover, a:focus {
- color: #990;
-}
-blockquote {
- font: 1.1em arial, sans, sans-serif;
-}
-h3 {
- font: bold 1.3em Arial, sans-serif, sans;
-}
-h4 {
- font: bold 1.2em Arial, sans-serif, sans;
-}
-img {
- border: 0;
-}
-input {
- margin-left: 1em;
- border-color: #4170b4;
- border-width: 1px;
- background-color: #fff;
- font: normal 90% "Lucida Grande", verdana, Arial, sans, sans-serif;
-}
-p {
- clear: both;
- width: 90%;
-}
-select, textarea {
- font: normal 90% "Lucida Grande", verdana, Arial, sans, sans-serif;
- border: 1px solid #4170b4;
-}
-small {
- font-size: .9em;
-}
-table {
- padding: 0;
-}
-tr, td {
- padding: 0;
-}
-ul {
- list-style: none;
-}
-
-
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 60px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*
-==============================================================================
- PAGE STRUCTURE
-==============================================================================
-*/
-/* user_portal course status icon */
-.coursestatusicons {
- float: left;
- clear: left;
- margin-right: .5em;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* For ie6 browsers or older*/
-* html #main {
- padding: 0 1% 15px 2.96%;
-}
-.maincontent {
- margin: 0 0 1em 1em;
- width: 69%;
- float: left;
-}
-#outerframe {
- background-color: #fff;
- width: 100%;
- margin: 0;
- padding: 0;
-}
-.user_course_category {
- font: bold 100% sans, sans-serif, arial;
- text-transform: capitalize;
- padding: .25em;
- background: #eee url('images/headertables.jpg') repeat-x top center;
- border: 1px solid #ddd;
- vertical-align: top;
- margin:.8em 0;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/*
-==============================================================================
- HEADER STYLES
-==============================================================================
-*/
-
-#header {
- background: transparent url('images/headerbg.jpg') repeat-y top right;
- font: bold .85em Arial, sans-serif, sans;
- width: 100%;
- line-height: .8em;
- float: left;
- clear: both;
- margin-bottom: .5em;
- position:relative;
-}
-
-#institution {
- margin: 0 0 0 3.9em;
-}
-
-
-/*
-------------------------------------------------------------------------------
- SHORTCUTS
-------------------------------------------------------------------------------
-*/
-
-#toolshortcuts {
- width:550px;
- position: absolute;
- bottom:-.75em;
- right: 1em;
- padding: 0;
- margin:0;
- text-align: right;
-}
-#toolshortcuts a {
- margin:0 3px 0 3px;
-}
-/*
-==============================================================================
- FOOTER STYLES
-==============================================================================
-*/
-footer {
- background-image: url(images/bg.jpg);
- background-repeat:repeat-x;
- background-color:#E4E2E5;
- font-weight: bold;
- font-size: 12px;
- color:#000;
- width: 100%;
- height: 9em;
- overflow:hidden;
- padding-top: 51px;
-}
-.push {
- height: 9em; /* Very important */
-}
-.menu {
- background: url('images/bglogin.jpg') repeat-y top center;
- float: left;
- clear: left;
- width: 215px;
- /* min-height hack for ie6 or older*/
- min-height: 380px;
- height: auto !important;
- height: 380px;
- border: 1px solid #999;
- margin: 0 0 1em 0;
- padding: 0 0 .3em 0;
- font-family: Arial, sans-serif, sans;
-}
-.menu #formLogin {
- text-align: center;
- color: #111;
- font-weight: bold;
- margin-bottom: .8em;
-}
-.menu #formLogin input {
- margin: .3em auto;
-}
-.menu .note {
- margin: .3em 0 .3em .5em;
-}
-td #lang_form select {
- margin: 1em 31px;
-}
-td .menu {
- background: url('images/bgloginconf.jpg') repeat-y top left;
- width: 244px;
- margin: 0 auto;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-
-#toolnav { float: left; width: 180px; padding: 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: -7px 0 0 -5%;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-
-
-/* Data tables */
-.data_table {
- margin: 0 auto;
- font: bold 100% Arial, sans, sans-serif;
- width: 100%;
-}
-.data_table a {
- font: bold 100% Arial, sans, sans-serif;
- text-decoration: none;
-}
-.data_table .row_even {
- border-right: 1px solid #fff;
- background-color: #eee;
- padding: .2em;
-}
-.data_table .row_odd {
- border-right: 1px solid #fff;
- background-color: #f9f9f9;
- padding: .2em;
- color: #333;
-}
-.data_table th, .data_table .row_odd th, .row_odd th {
- font: bold 100% sans, sans-serif, arial;
- text-transform: capitalize;
- padding: .2em;
- background: transparent url('images/headertables.jpg') repeat-x top center !important;
-}
-.data_table .row_odd th a {
- text-decoration: none;
- font-size: 110%;
-}
-.row_odd img, .row_even img {
- margin: 0 0 0 0;
-}
-/* Document links */
-#doc_links {
- margin-left: .5em;
-}
-#doc_links a, #folderselector {
- font: bold 100% Arial, sans-serif, sans;
- text-decoration: none;
-}
-#doc_links a:hover, #doc_links a:focus {
- color: #111;
-}
-#folderselector {
- color: #000;
-}
-#folderselector select {
- margin: 0 .2em;
-}
-.document_owner {
- text-align: right;
-}
-
-/* Solves the IE inherited margin bug */
-/* IE-7*/
-*:first-child+html .row .formw input {
- margin-left: -1em;
-}
-/*IE-6 or older*/
-* html .row .formw input {
- margin-left: -1em;
-}
-/* Specific forms: profile,add course,advanced search,advanced course search,etc.. */
-#add_course, #profile, #advanced_course_search, #advanced_search, #category, #course_user_import, #export_users, #update_course, #user_add, #user_import {
- /*border: 1px solid #ddd;
- background: transparent url("images/headerform.jpg") no-repeat top left;
- width: 550px;
- position: relative;
- padding: 60px 0 1em 0;*/
-}
-#add_course, #advanced_course_search, #advanced_search, #course_user_import, #export_users, #update_course, #user_add, #user_import {
-/* width: 650px;
- float: left;
- clear: left;
- padding-top: 50px;
- margin-bottom: 1em;*/
-}
-#add_course .label, #advanced_course_search .label, #advanced_search .label, #category .label, #course_user_import .label, #export_users .label, #user_import .label {
- text-align: left;
-}
-#advanced_search, #course_user_import, #export_users, #user_import {
- width: 550px;
-}
-#category {
- clear: both;
-}
-#category select {
- margin-right: .8em;
-}
-#export_users .label, #user_import .label {
- width: 45%;
- text-align: left;
-}
-#export_users .formw, #user_import .formw {
- width: 53%;
-}
-#myprofilefooter {
- float: left;
- clear: both;
- width: 50%;
- margin: 3em auto;
- background: #fff url("images/tinydivider.png") no-repeat bottom center;
- font-size: 110%;
- text-align: center;
- height: 3.5em;
- width: 550px;
-}
-#profile {
- border:none;
-}
-#profile .clear {
- position: absolute;
- background: transparent url("images/divider3.jpg") no-repeat top center;
- top: 30px;
- left: 1em;
- height: 55px;
- width: 100%;
-}
-#profile .label, #update_course .label, #user_add .label {
- text-align: right;
-}
-#profile .formw, #profile .label {
- position: relative;
- left: 20%;
-}
-#update_course {
- width: 90%;
-}
-#update_course .formw {
- margin-top: .7em;
-}
-#update_course .label {
- margin-top: .6em;
-}
-#user_add {
- width: 80%;
-}
-#user_add input {
- margin-left: .3em;
-}
-/*
-==============================================================================
- ADMIN SECTION
-==============================================================================
-*/
-
-.admin_section {
- float: left;
- margin: 1em 1em;
- width: 40%;
- border: 1px solid #999;
- padding: .5em .7em .5em .7em;
- line-height: 120%;
- min-height:200px;
-}
-.admin_section h4 {
- margin: 0;
- width: 100%;
- font-size: 120%;
- font-family: Arial, sans, sans-serif;
- font-weight: bold;
-}
-.admin_section input {
- margin: .5em;
-}
-
-/* Report section */
-
-.report_section {
- float: left;
- margin: 1em 1em;
- width: 40%;
- border: 1px solid #999;
- padding: .5em .7em .5em .7em;
- line-height: 120%;
-}
-.report_section h4 {
- margin: 0;
- width: 100%;
- font-size: 120%;
- font-family: Arial, sans, sans-serif;
- font-weight: bold;
-}
-.report_section input {
- margin: .5em;
-}
-
-/*
-==============================================================================
- COURSE ADMIN
-==============================================================================
-*/
-
-.courseadminview {
- width: 80%;
- text-align: center;
- border: 1px solid #999;
- margin: 1.5em auto;
-}
-.courseadminview a {
- text-decoration: none;
- margin: 0 auto;
- text-align: center;
- font: bold 100% Arial, sans-serif, sans;
-}
-.courseadminview table td {
- text-align: left;
- padding:3px;
-}
-#courseintro_icons {
- margin: 1em auto;
- clear: both;
- width: 80%;
-}
-.viewcaption {
- font: bold 110% arial, sans, sans-serif;
- position: relative;
- background-color: #fff;
- float: left;
- clear: left;
- top: -1.1em;
- padding: 0 .2em;
- margin: 0;
-}
-.tool-icon {
- margin-bottom: -3px;
-}
-
-/*
-==============================================================================
- DOKEOS CONFIG SETTINGS
-==============================================================================
-*/
-
-#settings {
- width: 70%;
- margin: .5em auto;
- border: 1px solid #ccc;
- padding: .2em;
-}
-.sectiontitle {
- text-align: left;
- text-indent: .5em;
- font: bold 130% Arial, sans-serif, sans;
- color: #666;
- margin: .1em auto .1em auto;
- padding: .1em;
- border: 1px solid #ccc;
- background: transparent url('images/headertables.jpg') repeat-x top center;
- width: 99.5%;
- letter-spacing: -.03em;
-}
-.sectioncomment {
- margin: .5em 0 .5em .5em;
- font: bold 110% Arial, sans-serif, sans;
-}
-.sectionvalue {
- margin: .5em 0 2em .5em;
-}
-/*
-==============================================================================
- BLOG
-==============================================================================
-*/
-
-.blog_left, .blog_right {
- background: #fff url("images/vertdivider.jpg") no-repeat top left;
- padding-left: 10px;
-}
-.blog_menu_title {
- width: 99%;
- border-bottom: 1px solid #4170b4;
- background: transparent url('images/headertables.jpg') repeat-x top center;
-}
-.blog_right {
- text-align: justify;
- padding-left: 1em;
- background-color: transparent;
-}
-.blog_right a img {
- margin-right: .2em;
-}
-.blog_right table {
- margin-left: .8em;
-}
-.blog_menu_title, .blogpost_title {
- color: #4170b4;
- font: bold 110% Arial, sans-serif, sans;
-}
-.blogpost {
- margin: .2em 1.5em;
- background: transparent url("images/tinydivider.png") no-repeat bottom center;
- padding-bottom: 2em;
- text-indent: 1em;
-}
-.blogpost_actions img {
- margin: 0 0 0 .8em;
- vertical-align: bottom;
-}
-.blogpost_comment {
- text-indent: 2em;
- margin-top: .5em;
-}
-.blogpost_date, .blog_subtitle, .blog_menu_title, .blogpost_comment_date {
- color: #888;
- font: bold 110% Arial, sans-serif, sans;
-}
-.blogpost_date, .blogpost_comment_date {
- border: none;
- margin-left: 1em;
-}
-.blogpost_info, .blogpost_comment_info {
- margin-left: 1em;
- font: bold 100% Arial, sans-serif, sans;
-}
-.blogpost_introduction, .blogpost_text {
- display: block;
- clear: both;
- margin: .5em 0;
- text-indent: 2em;
-}
-.blogpost_title {
- font: bold 130% Arial, sans-serif, sans;
- margin: 0 0 .5em 1em;
-}
-.blog_subtitle {
- position: relative;
- top: .8em;
- padding: .2em 1em;
- witdh: 100%;
- border: 1px solid #ddd;
- background: #ddd url('images/headertables.jpg') repeat-x top center;
- display:block;
- width:250px;
- margin:0 0 -1em 0;
-}
-
-/*Hack for KHTML and safari browser to fit left*/
-body:last-child:not(:root:root) .blog_subtitle {
- width:220px;
-}
-.blog_title {
- padding: .1em .9em;
- font: bold 130% Arial, sans-serif, sans;
- color: #fff;
- background-color: #999;
- margin:0 0 -1.3em 0;
- display:block;
- width:250px;
-}
-
-/*Hack for KHTML and safari browser to fit left*/
-body:last-child:not(:root:root) .blog_title {
- width:222px;
-}
-.comments, .new_comment {
- margin-left: 1em;
-}
-.blogpost_comment {
- background: transparent url('images/thindivider.png') no-repeat bottom center;
- padding-bottom: 25px;
- margin-bottom: 2em;
-}
-.blogpost_comment_date {
- font-size: 95%;
-}
-.blogpost_comment_title {
- font-size: 95%;
- background: transparent url('images/headertables.jpg') repeat-x top center;
- padding: 0.4em;
- border: 1px solid #ddd;
-}
-.blogpost_comment .blogpost_text {
- border: 1px solid #ccc;
- padding: .6em;
-}
-#title {
- font: bold 1.2em Arial, sans-serif, sans;
- color: #4170b4;
- text-align: center;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/*
-==============================================================================
- TRACKING
-==============================================================================
-*/
-
-a.specialLink {
- font: bold 80% Arial, sans-serif, sans;
- color: #900;
-}
-a.specialLink:hover, a.specialLink:focus {
- color: #990;
-}
-/*
-==============================================================================
- FORUM
-==============================================================================
-*/
-
-.forum {
- border: 1px solid #ccc;
- padding: 1px;
-}
-.forum_header td {
- background: transparent url('images/line.jpg') repeat-x bottom center;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/*
-------------------------------------------------------------------------------
- POST
-------------------------------------------------------------------------------
-*/
-
-.forum_message_left {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- border-right: 1px solid #ddd;
- vertical-align: top;
- width: 15em;
- border-collapse: collapse;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_title {
- text-align: left;
- font: bold 95% Arial, sans-serif, sans;
- background: transparent url('images/headertables.jpg') repeat-x top center;
- padding: 0.2em;
- vertical-align: top;
- height: 20px;
- border: 1px solid #ddd;
-}
-.quote {
- background-color: #EFEFEF;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
- font-family:Arial, sans, sans-serif;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
- font-family:Arial, sans, sans-serif;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
- font-family:Arial, sans, sans-serif;
-}
-/*
-==============================================================================
- DISPLAY MESSAGES
-==============================================================================
-*/
-
-/* Common message styles */
-.confirmation-message, .error-message, .normal-message, .warning-message {
- border: 1px solid #ddd;
- color: #00407F;
- //This image is wrong size, so is commented until one solution //background: transparent url('images/alert.jpg') no-repeat 10px 5px;
- font: bold 110% Arial, sans-serif, sans;
-}
-
-/*SESSIONS*/
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px 5px 5px 40px;
- padding: 5px;
- margin-bottom: 10px;
-}
-.session_box_title {
- margin-bottom: 7px;
-}
-.session_box_coach {
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 7px 0px;
-}
-
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/*
-==============================================================================
- DROPBOX
-==============================================================================
-*/
-
-#tabbed_menu {
- border: 1px solid #ccc;
- background: transparent url('images/dropbox.jpg') no-repeat top left;
- width: 10em;
- margin: 0 0 1em 0;
-}
-#tabbed_menu_tabs {
- width: 90%;
- margin: 15px .2em 0 .2em;
- padding: 0;
-}
-#tabbed_menu_tabs li {
- padding: 0;
- margin: 0 .8em;
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/*
-==============================================================================
- SYSTEM ANNOUNCEMENTS
-==============================================================================
-*/
-
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
- padding-left:70px;
- padding-top: 30px;
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*
-==============================================================================
- WCAG
-==============================================================================
-*/
-
-.skip {
- position:absolute;
- top:0;
- left:-9000px;
-}
-/*
-==============================================================================
- INSTALLATION
-==============================================================================
-*/
-
-#installation_steps {
- background-color: #EFEFEF;
- float: left;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right: 10px;
-}
-.RequirementHeading h1 {
- border-bottom: 1px solid #0066CC;
- color: #0066CC;
- font-size: 1.2em;
- font-weight: bold;
-}
-.RequirementText {
- color: #666;
- float: right;
- font-size: 1.0em;
- font-weight: normal;
- width: 200px;
-}
-.RequirementContent {
- color: #000;
- font-size: 1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- background-color: #f7f7f7;
- padding-left: 2px;
- width: 50%;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;/*border: 1px solid #264269;*/
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;/*border: 1px solid #264269;*/
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #900;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------
- Learning path
-------------------------------------------------------------------------------
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float: right;
- width: 180px;
- padding: 0;
- margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #D3D3D3;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* --- end of course navigation menu section --- */
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:2px;
- margin-bottom: 5px;
- margin:5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- /*background:url(images/actions.jpg) repeat-x;*/
- vertical-align:middle;
-}
-.actions-message {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-/**********************************************
- * EXERCISE TOOL *
- **********************************************/
-.exercice_form {
- width: 300px;
-}
-#validationButton {
- text-decoration: none;
- margin: 5px;
- /*border:1px solid #999999;*/
- /*background:#F0F0F0; */
- padding: 3px;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#666;
-}
-
-.exercise_scenario_label {
-}
-.exercise_scenario_element {
-}
-span.checkbox {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/checkbox.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-span.radio {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/radio.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-#question_title {
-}
-#question_description {
- padding-left:5px;
- padding-top:10px;
-}
-#question_score {
- padding-left:5px;
- padding-top:10px;
- padding-bottom:10px;
- font-weight:bold;
-}
-#question_feedback {
- background-color:#FCF7BA;
- border:1px solid #CCCCCC;
- color:#666666;
- font-size:11px;
- font-weight:bold;
- list-style-type:none;
- margin-top:5px;
- padding:5px;
-}
-#exercise_close_link {
- background: url(images/close.gif) no-repeat;
- padding-left: 20px;
-}
-#exercise_close_link:hover {
- background: url(images/close_highlight.gif) no-repeat;
- padding-left: 20px;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: left;
-}
-#menu {
-/* -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- margin-right:10px;
- margin-bottom:40px;
-
- padding-left:10px;
- padding-right:10px;
- padding-top:5px;
- padding-bottom:30px;
-
- width:240px; */
- /* float: right; */
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/silver_line/frames.css b/main/css/silver_line/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/silver_line/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/silver_line/images/2leftarrow.gif b/main/css/silver_line/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/silver_line/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/silver_line/images/2rightarrow.gif b/main/css/silver_line/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/silver_line/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/silver_line/images/alert.jpg b/main/css/silver_line/images/alert.jpg
deleted file mode 100755
index 8ea994c164..0000000000
Binary files a/main/css/silver_line/images/alert.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/bar_1.gif b/main/css/silver_line/images/bar_1.gif
deleted file mode 100755
index 48e9556050..0000000000
Binary files a/main/css/silver_line/images/bar_1.gif and /dev/null differ
diff --git a/main/css/silver_line/images/bar_1m.gif b/main/css/silver_line/images/bar_1m.gif
deleted file mode 100755
index 3e4591771f..0000000000
Binary files a/main/css/silver_line/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/silver_line/images/bar_1r.gif b/main/css/silver_line/images/bar_1r.gif
deleted file mode 100755
index 91a679a6a2..0000000000
Binary files a/main/css/silver_line/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/silver_line/images/bar_1u.gif b/main/css/silver_line/images/bar_1u.gif
deleted file mode 100755
index 9a9a884331..0000000000
Binary files a/main/css/silver_line/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/silver_line/images/bg.jpg b/main/css/silver_line/images/bg.jpg
deleted file mode 100755
index 15af73144e..0000000000
Binary files a/main/css/silver_line/images/bg.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/bglogin.jpg b/main/css/silver_line/images/bglogin.jpg
deleted file mode 100755
index f580f81420..0000000000
Binary files a/main/css/silver_line/images/bglogin.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/bgloginconf.jpg b/main/css/silver_line/images/bgloginconf.jpg
deleted file mode 100755
index 2806d46b5f..0000000000
Binary files a/main/css/silver_line/images/bgloginconf.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/blue_arrow.png b/main/css/silver_line/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/silver_line/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/silver_line/images/button_accept.gif b/main/css/silver_line/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/silver_line/images/button_accept.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_add.gif b/main/css/silver_line/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/silver_line/images/button_add.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_back.gif b/main/css/silver_line/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/silver_line/images/button_back.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_back.jpg b/main/css/silver_line/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/silver_line/images/button_back.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/button_delete.gif b/main/css/silver_line/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/silver_line/images/button_delete.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_login.gif b/main/css/silver_line/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/silver_line/images/button_login.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_minus.gif b/main/css/silver_line/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/silver_line/images/button_minus.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_next.gif b/main/css/silver_line/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/silver_line/images/button_next.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_plus.gif b/main/css/silver_line/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/silver_line/images/button_plus.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_refresh.gif b/main/css/silver_line/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/silver_line/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_search.gif b/main/css/silver_line/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/silver_line/images/button_search.gif and /dev/null differ
diff --git a/main/css/silver_line/images/button_upload.gif b/main/css/silver_line/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/silver_line/images/button_upload.gif and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/Sorting icons.psd b/main/css/silver_line/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/silver_line/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/back_disabled.jpg b/main/css/silver_line/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/silver_line/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/back_enabled.jpg b/main/css/silver_line/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/silver_line/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/favicon.ico b/main/css/silver_line/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/silver_line/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/forward_disabled.jpg b/main/css/silver_line/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/silver_line/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/forward_enabled.jpg b/main/css/silver_line/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/silver_line/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/sort_asc.png b/main/css/silver_line/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/silver_line/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/sort_asc_disabled.png b/main/css/silver_line/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/silver_line/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/sort_both.png b/main/css/silver_line/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/silver_line/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/sort_desc.png b/main/css/silver_line/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/silver_line/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/silver_line/images/dataTable/sort_desc_disabled.png b/main/css/silver_line/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/silver_line/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/silver_line/images/divider.jpg b/main/css/silver_line/images/divider.jpg
deleted file mode 100755
index ac1d157163..0000000000
Binary files a/main/css/silver_line/images/divider.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/divider2.jpg b/main/css/silver_line/images/divider2.jpg
deleted file mode 100755
index 3bb45b73d2..0000000000
Binary files a/main/css/silver_line/images/divider2.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/divider3.jpg b/main/css/silver_line/images/divider3.jpg
deleted file mode 100755
index 4ac484ff14..0000000000
Binary files a/main/css/silver_line/images/divider3.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/dropbox.jpg b/main/css/silver_line/images/dropbox.jpg
deleted file mode 100755
index a5c97fdeac..0000000000
Binary files a/main/css/silver_line/images/dropbox.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/headerbg.jpg b/main/css/silver_line/images/headerbg.jpg
deleted file mode 100755
index cfc0f728c5..0000000000
Binary files a/main/css/silver_line/images/headerbg.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/headerform.jpg b/main/css/silver_line/images/headerform.jpg
deleted file mode 100755
index e86ce933f2..0000000000
Binary files a/main/css/silver_line/images/headerform.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/headertables.jpg b/main/css/silver_line/images/headertables.jpg
deleted file mode 100755
index 1ff842ec69..0000000000
Binary files a/main/css/silver_line/images/headertables.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/help2.png b/main/css/silver_line/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/silver_line/images/help2.png and /dev/null differ
diff --git a/main/css/silver_line/images/index.html b/main/css/silver_line/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/silver_line/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/silver_line/images/line.jpg b/main/css/silver_line/images/line.jpg
deleted file mode 100755
index b0b32c95d6..0000000000
Binary files a/main/css/silver_line/images/line.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/loading.gif b/main/css/silver_line/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/silver_line/images/loading.gif and /dev/null differ
diff --git a/main/css/silver_line/images/portal.png b/main/css/silver_line/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/silver_line/images/portal.png and /dev/null differ
diff --git a/main/css/silver_line/images/refresh.png b/main/css/silver_line/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/silver_line/images/refresh.png and /dev/null differ
diff --git a/main/css/silver_line/images/shadow.gif b/main/css/silver_line/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/silver_line/images/shadow.gif and /dev/null differ
diff --git a/main/css/silver_line/images/shadowup.jpg b/main/css/silver_line/images/shadowup.jpg
deleted file mode 100755
index 1ef2118b13..0000000000
Binary files a/main/css/silver_line/images/shadowup.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/systemenouvelles.jpg b/main/css/silver_line/images/systemenouvelles.jpg
deleted file mode 100755
index 8580271092..0000000000
Binary files a/main/css/silver_line/images/systemenouvelles.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/tab.png b/main/css/silver_line/images/tab.png
deleted file mode 100755
index 5a4c86458b..0000000000
Binary files a/main/css/silver_line/images/tab.png and /dev/null differ
diff --git a/main/css/silver_line/images/thindivider.png b/main/css/silver_line/images/thindivider.png
deleted file mode 100755
index 8bbddbbddf..0000000000
Binary files a/main/css/silver_line/images/thindivider.png and /dev/null differ
diff --git a/main/css/silver_line/images/tinydivider.png b/main/css/silver_line/images/tinydivider.png
deleted file mode 100755
index 373c70f224..0000000000
Binary files a/main/css/silver_line/images/tinydivider.png and /dev/null differ
diff --git a/main/css/silver_line/images/vertdivider.jpg b/main/css/silver_line/images/vertdivider.jpg
deleted file mode 100755
index 56fdf53d8d..0000000000
Binary files a/main/css/silver_line/images/vertdivider.jpg and /dev/null differ
diff --git a/main/css/silver_line/images/white_arrow.png b/main/css/silver_line/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/silver_line/images/white_arrow.png and /dev/null differ
diff --git a/main/css/silver_line/learnpath.css b/main/css/silver_line/learnpath.css
deleted file mode 100755
index 25951c1174..0000000000
--- a/main/css/silver_line/learnpath.css
+++ /dev/null
@@ -1,205 +0,0 @@
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:100%;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
- width:75px;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/silver_line/print.css b/main/css/silver_line/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/silver_line/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/silver_line/scorm.css b/main/css/silver_line/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/silver_line/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/silver_line/scormfs.css b/main/css/silver_line/scormfs.css
deleted file mode 100755
index d613220d53..0000000000
--- a/main/css/silver_line/scormfs.css
+++ /dev/null
@@ -1,87 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;/*
- filter:alpha(opacity=50);
- opacity: 0.50;
- -moz-border-radius: 25px;
- margin-right: 5%;
- margin-left: 75%;
- margin-top: 10px;
-*/
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-top: 2px;
- position: absolute;
- left: 50%;
- margin-left: -70px;
-}
-.lp_navigation_elem .progresstext {
- margin-top: -12px;
- margin-left: 4em;
- font-size: smaller;
-}
-.lp_navigation_elem .buttons {
- margin-left: 1em;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-.preview_image {
- text-align: right;
- margin-right: 5px;
- padding-left: 15px;
-}
diff --git a/main/css/silver_line/tab.png b/main/css/silver_line/tab.png
deleted file mode 100755
index 5a4c86458b..0000000000
Binary files a/main/css/silver_line/tab.png and /dev/null differ
diff --git a/main/css/simplex/bootstrap.css b/main/css/simplex/bootstrap.css
deleted file mode 100755
index edf76f2259..0000000000
--- a/main/css/simplex/bootstrap.css
+++ /dev/null
@@ -1,4554 +0,0 @@
-@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700');
-/*!
- * Bootstrap v2.0.4
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- */
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-audio:not([controls]) {
- display: none;
-}
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-a:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-a:hover,
-a:active {
- outline: 0;
-}
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- max-width: 100%;
- vertical-align: middle;
- border: 0;
- -ms-interpolation-mode: bicubic;
-}
-#map_canvas img {
- max-width: none;
-}
-button,
-input,
-select,
-textarea {
- margin: 0;
- font-size: 100%;
- vertical-align: middle;
-}
-button,
-input {
- *overflow: visible;
- line-height: normal;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button,
-input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
-}
-input[type="search"] {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-decoration,
-input[type="search"]::-webkit-search-cancel-button {
- -webkit-appearance: none;
-}
-textarea {
- overflow: auto;
- vertical-align: top;
-}
-.clearfix {
- *zoom: 1;
-}
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: "";
-}
-.clearfix:after {
- clear: both;
-}
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-body {
- margin: 0;
- font-family: "Josefin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 15px;
- line-height: 20px;
- color: #555555;
- background-color: #f7f7f7;
-}
-a {
- color: #da370f;
- text-decoration: none;
-}
-a:hover {
- color: #da370f;
- text-decoration: underline;
-}
-.row {
- margin-left: -20px;
- *zoom: 1;
-}
-.row:before,
-.row:after {
- display: table;
- content: "";
-}
-.row:after {
- clear: both;
-}
-[class*="span"] {
- float: left;
- margin-left: 20px;
-}
-.container,
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.span12 {
- width: 940px;
-}
-.span11 {
- width: 860px;
-}
-.span10 {
- width: 780px;
-}
-.span9 {
- width: 700px;
-}
-.span8 {
- width: 620px;
-}
-.span7 {
- width: 540px;
-}
-.span6 {
- width: 460px;
-}
-.span5 {
- width: 380px;
-}
-.span4 {
- width: 300px;
-}
-.span3 {
- width: 220px;
-}
-.span2 {
- width: 140px;
-}
-.span1 {
- width: 60px;
-}
-.offset12 {
- margin-left: 980px;
-}
-.offset11 {
- margin-left: 900px;
-}
-.offset10 {
- margin-left: 820px;
-}
-.offset9 {
- margin-left: 740px;
-}
-.offset8 {
- margin-left: 660px;
-}
-.offset7 {
- margin-left: 580px;
-}
-.offset6 {
- margin-left: 500px;
-}
-.offset5 {
- margin-left: 420px;
-}
-.offset4 {
- margin-left: 340px;
-}
-.offset3 {
- margin-left: 260px;
-}
-.offset2 {
- margin-left: 180px;
-}
-.offset1 {
- margin-left: 100px;
-}
-.row-fluid {
- width: 100%;
- *zoom: 1;
-}
-.row-fluid:before,
-.row-fluid:after {
- display: table;
- content: "";
-}
-.row-fluid:after {
- clear: both;
-}
-.row-fluid [class*="span"] {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- float: left;
- margin-left: 2.127659574%;
- *margin-left: 2.0744680846382977%;
-}
-.row-fluid [class*="span"]:first-child {
- margin-left: 0;
-}
-.row-fluid .span12 {
- width: 99.99999998999999%;
- *width: 99.94680850063828%;
-}
-.row-fluid .span11 {
- width: 91.489361693%;
- *width: 91.4361702036383%;
-}
-.row-fluid .span10 {
- width: 82.97872339599999%;
- *width: 82.92553190663828%;
-}
-.row-fluid .span9 {
- width: 74.468085099%;
- *width: 74.4148936096383%;
-}
-.row-fluid .span8 {
- width: 65.95744680199999%;
- *width: 65.90425531263828%;
-}
-.row-fluid .span7 {
- width: 57.446808505%;
- *width: 57.3936170156383%;
-}
-.row-fluid .span6 {
- width: 48.93617020799999%;
- *width: 48.88297871863829%;
-}
-.row-fluid .span5 {
- width: 40.425531911%;
- *width: 40.3723404216383%;
-}
-.row-fluid .span4 {
- width: 31.914893614%;
- *width: 31.8617021246383%;
-}
-.row-fluid .span3 {
- width: 23.404255317%;
- *width: 23.3510638276383%;
-}
-.row-fluid .span2 {
- width: 14.89361702%;
- *width: 14.8404255306383%;
-}
-.row-fluid .span1 {
- width: 6.382978723%;
- *width: 6.329787233638298%;
-}
-.container {
- margin-right: auto;
- margin-left: auto;
- *zoom: 1;
-}
-.container:before,
-.container:after {
- display: table;
- content: "";
-}
-.container:after {
- clear: both;
-}
-.container-fluid {
- padding-right: 20px;
- padding-left: 20px;
- *zoom: 1;
-}
-.container-fluid:before,
-.container-fluid:after {
- display: table;
- content: "";
-}
-.container-fluid:after {
- clear: both;
-}
-p {
- margin: 0 0 10px;
-}
-p small {
- font-size: 13px;
- color: #999999;
-}
-.lead {
- margin-bottom: 20px;
- font-size: 20px;
- font-weight: 200;
- line-height: 30px;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- margin: 0;
- font-family: inherit;
- font-weight: bold;
- color: inherit;
- text-rendering: optimizelegibility;
-}
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small {
- font-weight: normal;
- color: #999999;
-}
-h1 {
- font-size: 30px;
- line-height: 40px;
-}
-h1 small {
- font-size: 18px;
-}
-h2 {
- font-size: 24px;
- line-height: 40px;
-}
-h2 small {
- font-size: 18px;
-}
-h3 {
- font-size: 18px;
- line-height: 30px;
-}
-h3 small {
- font-size: 14px;
-}
-h4,
-h5,
-h6 {
- line-height: 20px;
-}
-h4 {
- font-size: 14px;
-}
-h4 small {
- font-size: 12px;
-}
-h5 {
- font-size: 12px;
-}
-h6 {
- font-size: 11px;
- color: #999999;
- text-transform: uppercase;
-}
-.page-header {
- padding-bottom: 19px;
- margin: 20px 0;
- border-bottom: 1px solid #eeeeee;
-}
-.page-header h1 {
- line-height: 1;
-}
-ul,
-ol {
- padding: 0;
- margin: 0 0 10px 25px;
-}
-ul ul,
-ul ol,
-ol ol,
-ol ul {
- margin-bottom: 0;
-}
-ul {
- list-style: disc;
-}
-ol {
- list-style: decimal;
-}
-li {
- line-height: 20px;
-}
-ul.unstyled,
-ol.unstyled {
- margin-left: 0;
- list-style: none;
-}
-dl {
- margin-bottom: 20px;
-}
-dt,
-dd {
- line-height: 20px;
-}
-dt {
- font-weight: bold;
- line-height: 19px;
-}
-dd {
- margin-left: 10px;
-}
-.dl-horizontal dt {
- float: left;
- width: 120px;
- clear: left;
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.dl-horizontal dd {
- margin-left: 130px;
-}
-hr {
- margin: 20px 0;
- border: 0;
- border-top: 1px solid #eeeeee;
- border-bottom: 1px solid #ffffff;
-}
-strong {
- font-weight: bold;
-}
-em {
- font-style: italic;
-}
-.muted {
- color: #999999;
-}
-abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #999999;
-}
-abbr.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-blockquote {
- padding: 0 0 0 15px;
- margin: 0 0 20px;
- border-left: 5px solid #eeeeee;
-}
-blockquote p {
- margin-bottom: 0;
- font-size: 16px;
- font-weight: 300;
- line-height: 25px;
-}
-blockquote small {
- display: block;
- line-height: 20px;
- color: #999999;
-}
-blockquote small:before {
- content: '\2014 \00A0';
-}
-blockquote.pull-right {
- float: right;
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #eeeeee;
- border-left: 0;
-}
-blockquote.pull-right p,
-blockquote.pull-right small {
- text-align: right;
-}
-q:before,
-q:after,
-blockquote:before,
-blockquote:after {
- content: "";
-}
-address {
- display: block;
- margin-bottom: 20px;
- font-style: normal;
- line-height: 20px;
-}
-small {
- font-size: 100%;
-}
-cite {
- font-style: normal;
-}
-code,
-pre {
- padding: 0 3px 2px;
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 14px;
- color: #333333;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-code {
- padding: 2px 4px;
- color: #d14;
- background-color: #f7f7f9;
- border: 1px solid #e1e1e8;
-}
-pre {
- display: block;
- padding: 9.5px;
- margin: 0 0 10px;
- font-size: 13.875px;
- line-height: 20px;
- word-break: break-all;
- word-wrap: break-word;
- white-space: pre;
- white-space: pre-wrap;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-pre.prettyprint {
- margin-bottom: 20px;
-}
-pre code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border: 0;
-}
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-form {
- margin: 0 0 20px;
-}
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
-}
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 30px;
- font-size: 22.5px;
- line-height: 40px;
- color: #333333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-legend small {
- font-size: 15px;
- color: #999999;
-}
-label,
-input,
-button,
-select,
-textarea {
- font-size: 15px;
- font-weight: normal;
- line-height: 20px;
-}
-input,
-button,
-select,
-textarea {
- font-family: "Josefin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-label {
- display: block;
- margin-bottom: 5px;
-}
-select,
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- display: inline-block;
- height: 20px;
- padding: 4px;
- margin-bottom: 9px;
- font-size: 15px;
- line-height: 20px;
- color: #555555;
-}
-input,
-textarea {
- width: 210px;
-}
-textarea {
- height: auto;
-}
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- background-color: #ffffff;
- border: 1px solid #cccccc;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
- transition: border linear 0.2s, box-shadow linear 0.2s;
-}
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="datetime"]:focus,
-input[type="datetime-local"]:focus,
-input[type="date"]:focus,
-input[type="month"]:focus,
-input[type="time"]:focus,
-input[type="week"]:focus,
-input[type="number"]:focus,
-input[type="email"]:focus,
-input[type="url"]:focus,
-input[type="search"]:focus,
-input[type="tel"]:focus,
-input[type="color"]:focus,
-.uneditable-input:focus {
- border-color: rgba(82, 168, 236, 0.8);
- outline: 0;
- outline: thin dotted \9;
- /* IE6-9 */
-
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
-}
-input[type="radio"],
-input[type="checkbox"] {
- margin: 3px 0;
- *margin-top: 0;
- /* IE7 */
-
- line-height: normal;
- cursor: pointer;
-}
-input[type="submit"],
-input[type="reset"],
-input[type="button"],
-input[type="radio"],
-input[type="checkbox"] {
- width: auto;
-}
-.uneditable-textarea {
- width: auto;
- height: auto;
-}
-select,
-input[type="file"] {
- height: 28px;
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
-
- *margin-top: 4px;
- /* For IE7, add top margin to align select with labels */
-
- line-height: 28px;
-}
-select {
- width: 220px;
- border: 1px solid #bbb;
-}
-select[multiple],
-select[size] {
- height: auto;
-}
-select:focus,
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.radio,
-.checkbox {
- min-height: 18px;
- padding-left: 18px;
-}
-.radio input[type="radio"],
-.checkbox input[type="checkbox"] {
- float: left;
- margin-left: -18px;
-}
-.controls > .radio:first-child,
-.controls > .checkbox:first-child {
- padding-top: 5px;
-}
-.radio.inline,
-.checkbox.inline {
- display: inline-block;
- padding-top: 5px;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.radio.inline + .radio.inline,
-.checkbox.inline + .checkbox.inline {
- margin-left: 10px;
-}
-.input-mini {
- width: 60px;
-}
-.input-small {
- width: 90px;
-}
-.input-medium {
- width: 150px;
-}
-.input-large {
- width: 210px;
-}
-.input-xlarge {
- width: 270px;
-}
-.input-xxlarge {
- width: 530px;
-}
-input[class*="span"],
-select[class*="span"],
-textarea[class*="span"],
-.uneditable-input[class*="span"],
-.row-fluid input[class*="span"],
-.row-fluid select[class*="span"],
-.row-fluid textarea[class*="span"],
-.row-fluid .uneditable-input[class*="span"] {
- float: none;
- margin-left: 0;
-}
-.input-append input[class*="span"],
-.input-append .uneditable-input[class*="span"],
-.input-prepend input[class*="span"],
-.input-prepend .uneditable-input[class*="span"],
-.row-fluid .input-prepend [class*="span"],
-.row-fluid .input-append [class*="span"] {
- display: inline-block;
-}
-input,
-textarea,
-.uneditable-input {
- margin-left: 0;
-}
-input.span12, textarea.span12, .uneditable-input.span12 {
- width: 930px;
-}
-input.span11, textarea.span11, .uneditable-input.span11 {
- width: 850px;
-}
-input.span10, textarea.span10, .uneditable-input.span10 {
- width: 770px;
-}
-input.span9, textarea.span9, .uneditable-input.span9 {
- width: 690px;
-}
-input.span8, textarea.span8, .uneditable-input.span8 {
- width: 610px;
-}
-input.span7, textarea.span7, .uneditable-input.span7 {
- width: 530px;
-}
-input.span6, textarea.span6, .uneditable-input.span6 {
- width: 450px;
-}
-input.span5, textarea.span5, .uneditable-input.span5 {
- width: 370px;
-}
-input.span4, textarea.span4, .uneditable-input.span4 {
- width: 290px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- width: 210px;
-}
-input.span2, textarea.span2, .uneditable-input.span2 {
- width: 130px;
-}
-input.span1, textarea.span1, .uneditable-input.span1 {
- width: 50px;
-}
-input[disabled],
-select[disabled],
-textarea[disabled],
-input[readonly],
-select[readonly],
-textarea[readonly] {
- cursor: not-allowed;
- background-color: #eeeeee;
- border-color: #ddd;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"][readonly],
-input[type="checkbox"][readonly] {
- background-color: transparent;
-}
-.control-group.warning > label,
-.control-group.warning .help-block,
-.control-group.warning .help-inline {
- color: #da370f;
-}
-.control-group.warning .checkbox,
-.control-group.warning .radio,
-.control-group.warning input,
-.control-group.warning select,
-.control-group.warning textarea {
- color: #da370f;
- border-color: #da370f;
-}
-.control-group.warning .checkbox:focus,
-.control-group.warning .radio:focus,
-.control-group.warning input:focus,
-.control-group.warning select:focus,
-.control-group.warning textarea:focus {
- border-color: #aa2b0c;
- -webkit-box-shadow: 0 0 6px #f4795b;
- -moz-box-shadow: 0 0 6px #f4795b;
- box-shadow: 0 0 6px #f4795b;
-}
-.control-group.warning .input-prepend .add-on,
-.control-group.warning .input-append .add-on {
- color: #da370f;
- background-color: #fcf8e3;
- border-color: #da370f;
-}
-.control-group.error > label,
-.control-group.error .help-block,
-.control-group.error .help-inline {
- color: #e32c3b;
-}
-.control-group.error .checkbox,
-.control-group.error .radio,
-.control-group.error input,
-.control-group.error select,
-.control-group.error textarea {
- color: #e32c3b;
- border-color: #e32c3b;
-}
-.control-group.error .checkbox:focus,
-.control-group.error .radio:focus,
-.control-group.error input:focus,
-.control-group.error select:focus,
-.control-group.error textarea:focus {
- border-color: #c21a28;
- -webkit-box-shadow: 0 0 6px #ef868f;
- -moz-box-shadow: 0 0 6px #ef868f;
- box-shadow: 0 0 6px #ef868f;
-}
-.control-group.error .input-prepend .add-on,
-.control-group.error .input-append .add-on {
- color: #e32c3b;
- background-color: #f2dede;
- border-color: #e32c3b;
-}
-.control-group.success > label,
-.control-group.success .help-block,
-.control-group.success .help-inline {
- color: #3d9400;
-}
-.control-group.success .checkbox,
-.control-group.success .radio,
-.control-group.success input,
-.control-group.success select,
-.control-group.success textarea {
- color: #3d9400;
- border-color: #3d9400;
-}
-.control-group.success .checkbox:focus,
-.control-group.success .radio:focus,
-.control-group.success input:focus,
-.control-group.success select:focus,
-.control-group.success textarea:focus {
- border-color: #286100;
- -webkit-box-shadow: 0 0 6px #67fa00;
- -moz-box-shadow: 0 0 6px #67fa00;
- box-shadow: 0 0 6px #67fa00;
-}
-.control-group.success .input-prepend .add-on,
-.control-group.success .input-append .add-on {
- color: #3d9400;
- background-color: #dff0d8;
- border-color: #3d9400;
-}
-input:focus:required:invalid,
-textarea:focus:required:invalid,
-select:focus:required:invalid {
- color: #b94a48;
- border-color: #ee5f5b;
-}
-input:focus:required:invalid:focus,
-textarea:focus:required:invalid:focus,
-select:focus:required:invalid:focus {
- border-color: #e9322d;
- -webkit-box-shadow: 0 0 6px #f8b9b7;
- -moz-box-shadow: 0 0 6px #f8b9b7;
- box-shadow: 0 0 6px #f8b9b7;
-}
-.form-actions {
- padding: 19px 20px 20px;
- margin-top: 20px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border-top: 1px solid #e5e5e5;
- *zoom: 1;
-}
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: "";
-}
-.form-actions:after {
- clear: both;
-}
-.uneditable-input {
- overflow: hidden;
- white-space: nowrap;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #eee;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-}
-:-moz-placeholder {
- color: #555555;
-}
-:-ms-input-placeholder {
- color: #555555;
-}
-::-webkit-input-placeholder {
- color: #555555;
-}
-.help-block,
-.help-inline {
- color: #555555;
-}
-.help-block {
- display: block;
- margin-bottom: 10px;
-}
-.help-inline {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- vertical-align: middle;
- padding-left: 5px;
-}
-.input-prepend,
-.input-append {
- margin-bottom: 5px;
-}
-.input-prepend input,
-.input-append input,
-.input-prepend select,
-.input-append select,
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- position: relative;
- margin-bottom: 0;
- *margin-left: 0;
- vertical-align: middle;
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.input-prepend input:focus,
-.input-append input:focus,
-.input-prepend select:focus,
-.input-append select:focus,
-.input-prepend .uneditable-input:focus,
-.input-append .uneditable-input:focus {
- z-index: 2;
-}
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- border-left-color: #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on {
- display: inline-block;
- width: auto;
- height: 20px;
- min-width: 16px;
- padding: 4px 5px;
- font-weight: normal;
- line-height: 20px;
- text-align: center;
- text-shadow: 0 1px 0 #ffffff;
- vertical-align: middle;
- background-color: #eeeeee;
- border: 1px solid #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on,
-.input-prepend .btn,
-.input-append .btn {
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend .active,
-.input-append .active {
- background-color: #84ff2e;
- border-color: #3d9400;
-}
-.input-prepend .add-on,
-.input-prepend .btn {
- margin-right: -1px;
-}
-.input-prepend .add-on:first-child,
-.input-prepend .btn:first-child {
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.input-append input,
-.input-append select,
-.input-append .uneditable-input {
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.input-append .uneditable-input {
- border-right-color: #ccc;
- border-left-color: #eee;
-}
-.input-append .add-on:last-child,
-.input-append .btn:last-child {
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.input-prepend.input-append input,
-.input-prepend.input-append select,
-.input-prepend.input-append .uneditable-input {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend.input-append .add-on:first-child,
-.input-prepend.input-append .btn:first-child {
- margin-right: -1px;
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.input-prepend.input-append .add-on:last-child,
-.input-prepend.input-append .btn:last-child {
- margin-left: -1px;
- -webkit-border-radius: 0 0 0 0;
- -moz-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
-}
-.search-query {
- padding-right: 14px;
- padding-right: 4px \9;
- padding-left: 14px;
- padding-left: 4px \9;
- /* IE7-8 doesn't have border-radius, so don't indent the padding */
-
- margin-bottom: 0;
- -webkit-border-radius: 14px;
- -moz-border-radius: 14px;
- border-radius: 14px;
-}
-.form-search input,
-.form-inline input,
-.form-horizontal input,
-.form-search textarea,
-.form-inline textarea,
-.form-horizontal textarea,
-.form-search select,
-.form-inline select,
-.form-horizontal select,
-.form-search .help-inline,
-.form-inline .help-inline,
-.form-horizontal .help-inline,
-.form-search .uneditable-input,
-.form-inline .uneditable-input,
-.form-horizontal .uneditable-input,
-.form-search .input-prepend,
-.form-inline .input-prepend,
-.form-horizontal .input-prepend,
-.form-search .input-append,
-.form-inline .input-append,
-.form-horizontal .input-append {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-bottom: 0;
-}
-.form-search .hide,
-.form-inline .hide,
-.form-horizontal .hide {
- display: none;
-}
-.form-search label,
-.form-inline label {
- display: inline-block;
-}
-.form-search .input-append,
-.form-inline .input-append,
-.form-search .input-prepend,
-.form-inline .input-prepend {
- margin-bottom: 0;
-}
-.form-search .radio,
-.form-search .checkbox,
-.form-inline .radio,
-.form-inline .checkbox {
- padding-left: 0;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.form-search .radio input[type="radio"],
-.form-search .checkbox input[type="checkbox"],
-.form-inline .radio input[type="radio"],
-.form-inline .checkbox input[type="checkbox"] {
- float: left;
- margin-right: 3px;
- margin-left: 0;
-}
-.control-group {
- margin-bottom: 10px;
-}
-legend + .control-group {
- margin-top: 20px;
- -webkit-margin-top-collapse: separate;
-}
-.form-horizontal .control-group {
- margin-bottom: 20px;
- *zoom: 1;
-}
-.form-horizontal .control-group:before,
-.form-horizontal .control-group:after {
- display: table;
- content: "";
-}
-.form-horizontal .control-group:after {
- clear: both;
-}
-.form-horizontal .control-label {
- float: left;
- width: 140px;
- padding-top: 5px;
- text-align: right;
-}
-.form-horizontal .controls {
- *display: inline-block;
- *padding-left: 20px;
- margin-left: 160px;
- *margin-left: 0;
-}
-.form-horizontal .controls:first-child {
- *padding-left: 160px;
-}
-.form-horizontal .help-block {
- margin-top: 10px;
- margin-bottom: 0;
-}
-.form-horizontal .form-actions {
- padding-left: 160px;
-}
-table {
- max-width: 100%;
- background-color: transparent;
- border-collapse: collapse;
- border-spacing: 0;
-}
-.table {
- width: 100%;
- margin-bottom: 20px;
-}
-.table th,
-.table td {
- padding: 8px;
- line-height: 20px;
- text-align: left;
- vertical-align: top;
- border-top: 1px solid #dddddd;
-}
-.table th {
- font-weight: bold;
-}
-.table thead th {
- vertical-align: bottom;
-}
-.table caption + thead tr:first-child th,
-.table caption + thead tr:first-child td,
-.table colgroup + thead tr:first-child th,
-.table colgroup + thead tr:first-child td,
-.table thead:first-child tr:first-child th,
-.table thead:first-child tr:first-child td {
- border-top: 0;
-}
-.table tbody + tbody {
- border-top: 2px solid #dddddd;
-}
-.table-condensed th,
-.table-condensed td {
- padding: 4px 5px;
-}
-.table-bordered {
- border: 1px solid #dddddd;
- border-collapse: separate;
- *border-collapse: collapsed;
- border-left: 0;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.table-bordered th,
-.table-bordered td {
- border-left: 1px solid #dddddd;
-}
-.table-bordered caption + thead tr:first-child th,
-.table-bordered caption + tbody tr:first-child th,
-.table-bordered caption + tbody tr:first-child td,
-.table-bordered colgroup + thead tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child td,
-.table-bordered thead:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child td {
- border-top: 0;
-}
-.table-bordered thead:first-child tr:first-child th:first-child,
-.table-bordered tbody:first-child tr:first-child td:first-child {
- -webkit-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
-}
-.table-bordered thead:first-child tr:first-child th:last-child,
-.table-bordered tbody:first-child tr:first-child td:last-child {
- -webkit-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
- -webkit-border-radius: 0 0 0 4px;
- -moz-border-radius: 0 0 0 4px;
- border-radius: 0 0 0 4px;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:last-child,
-.table-bordered tbody:last-child tr:last-child td:last-child {
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
-}
-.table-striped tbody tr:nth-child(odd) td,
-.table-striped tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
-}
-.table tbody tr:hover td,
-.table tbody tr:hover th {
- background-color: #f5f5f5;
-}
-table .span1 {
- float: none;
- width: 44px;
- margin-left: 0;
-}
-table .span2 {
- float: none;
- width: 124px;
- margin-left: 0;
-}
-table .span3 {
- float: none;
- width: 204px;
- margin-left: 0;
-}
-table .span4 {
- float: none;
- width: 284px;
- margin-left: 0;
-}
-table .span5 {
- float: none;
- width: 364px;
- margin-left: 0;
-}
-table .span6 {
- float: none;
- width: 444px;
- margin-left: 0;
-}
-table .span7 {
- float: none;
- width: 524px;
- margin-left: 0;
-}
-table .span8 {
- float: none;
- width: 604px;
- margin-left: 0;
-}
-table .span9 {
- float: none;
- width: 684px;
- margin-left: 0;
-}
-table .span10 {
- float: none;
- width: 764px;
- margin-left: 0;
-}
-table .span11 {
- float: none;
- width: 844px;
- margin-left: 0;
-}
-table .span12 {
- float: none;
- width: 924px;
- margin-left: 0;
-}
-table .span13 {
- float: none;
- width: 1004px;
- margin-left: 0;
-}
-table .span14 {
- float: none;
- width: 1084px;
- margin-left: 0;
-}
-table .span15 {
- float: none;
- width: 1164px;
- margin-left: 0;
-}
-table .span16 {
- float: none;
- width: 1244px;
- margin-left: 0;
-}
-table .span17 {
- float: none;
- width: 1324px;
- margin-left: 0;
-}
-table .span18 {
- float: none;
- width: 1404px;
- margin-left: 0;
-}
-table .span19 {
- float: none;
- width: 1484px;
- margin-left: 0;
-}
-table .span20 {
- float: none;
- width: 1564px;
- margin-left: 0;
-}
-table .span21 {
- float: none;
- width: 1644px;
- margin-left: 0;
-}
-table .span22 {
- float: none;
- width: 1724px;
- margin-left: 0;
-}
-table .span23 {
- float: none;
- width: 1804px;
- margin-left: 0;
-}
-table .span24 {
- float: none;
- width: 1884px;
- margin-left: 0;
-}
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline-block;
- width: 14px;
- height: 14px;
- *margin-right: .3em;
- line-height: 14px;
- vertical-align: text-top;
- background-position: 14px 14px;
- background-repeat: no-repeat;
-}
-[class^="icon-"]:last-child,
-[class*=" icon-"]:last-child {
- *margin-left: 0;
-}
-.icon-white {
-}
-.icon-glass {
- background-position: 0 0;
-}
-.icon-music {
- background-position: -24px 0;
-}
-.icon-search {
- background-position: -48px 0;
-}
-.icon-envelope {
- background-position: -72px 0;
-}
-.icon-heart {
- background-position: -96px 0;
-}
-.icon-star {
- background-position: -120px 0;
-}
-.icon-star-empty {
- background-position: -144px 0;
-}
-.icon-user {
- background-position: -168px 0;
-}
-.icon-film {
- background-position: -192px 0;
-}
-.icon-th-large {
- background-position: -216px 0;
-}
-.icon-th {
- background-position: -240px 0;
-}
-.icon-th-list {
- background-position: -264px 0;
-}
-.icon-ok {
- background-position: -288px 0;
-}
-.icon-remove {
- background-position: -312px 0;
-}
-.icon-zoom-in {
- background-position: -336px 0;
-}
-.icon-zoom-out {
- background-position: -360px 0;
-}
-.icon-off {
- background-position: -384px 0;
-}
-.icon-signal {
- background-position: -408px 0;
-}
-.icon-cog {
- background-position: -432px 0;
-}
-.icon-trash {
- background-position: -456px 0;
-}
-.icon-home {
- background-position: 0 -24px;
-}
-.icon-file {
- background-position: -24px -24px;
-}
-.icon-time {
- background-position: -48px -24px;
-}
-.icon-road {
- background-position: -72px -24px;
-}
-.icon-download-alt {
- background-position: -96px -24px;
-}
-.icon-download {
- background-position: -120px -24px;
-}
-.icon-upload {
- background-position: -144px -24px;
-}
-.icon-inbox {
- background-position: -168px -24px;
-}
-.icon-play-circle {
- background-position: -192px -24px;
-}
-.icon-repeat {
- background-position: -216px -24px;
-}
-.icon-refresh {
- background-position: -240px -24px;
-}
-.icon-list-alt {
- background-position: -264px -24px;
-}
-.icon-lock {
- background-position: -287px -24px;
-}
-.icon-flag {
- background-position: -312px -24px;
-}
-.icon-headphones {
- background-position: -336px -24px;
-}
-.icon-volume-off {
- background-position: -360px -24px;
-}
-.icon-volume-down {
- background-position: -384px -24px;
-}
-.icon-volume-up {
- background-position: -408px -24px;
-}
-.icon-qrcode {
- background-position: -432px -24px;
-}
-.icon-barcode {
- background-position: -456px -24px;
-}
-.icon-tag {
- background-position: 0 -48px;
-}
-.icon-tags {
- background-position: -25px -48px;
-}
-.icon-book {
- background-position: -48px -48px;
-}
-.icon-bookmark {
- background-position: -72px -48px;
-}
-.icon-print {
- background-position: -96px -48px;
-}
-.icon-camera {
- background-position: -120px -48px;
-}
-.icon-font {
- background-position: -144px -48px;
-}
-.icon-bold {
- background-position: -167px -48px;
-}
-.icon-italic {
- background-position: -192px -48px;
-}
-.icon-text-height {
- background-position: -216px -48px;
-}
-.icon-text-width {
- background-position: -240px -48px;
-}
-.icon-align-left {
- background-position: -264px -48px;
-}
-.icon-align-center {
- background-position: -288px -48px;
-}
-.icon-align-right {
- background-position: -312px -48px;
-}
-.icon-align-justify {
- background-position: -336px -48px;
-}
-.icon-list {
- background-position: -360px -48px;
-}
-.icon-indent-left {
- background-position: -384px -48px;
-}
-.icon-indent-right {
- background-position: -408px -48px;
-}
-.icon-facetime-video {
- background-position: -432px -48px;
-}
-.icon-picture {
- background-position: -456px -48px;
-}
-.icon-pencil {
- background-position: 0 -72px;
-}
-.icon-map-marker {
- background-position: -24px -72px;
-}
-.icon-adjust {
- background-position: -48px -72px;
-}
-.icon-tint {
- background-position: -72px -72px;
-}
-.icon-edit {
- background-position: -96px -72px;
-}
-.icon-share {
- background-position: -120px -72px;
-}
-.icon-check {
- background-position: -144px -72px;
-}
-.icon-move {
- background-position: -168px -72px;
-}
-.icon-step-backward {
- background-position: -192px -72px;
-}
-.icon-fast-backward {
- background-position: -216px -72px;
-}
-.icon-backward {
- background-position: -240px -72px;
-}
-.icon-play {
- background-position: -264px -72px;
-}
-.icon-pause {
- background-position: -288px -72px;
-}
-.icon-stop {
- background-position: -312px -72px;
-}
-.icon-forward {
- background-position: -336px -72px;
-}
-.icon-fast-forward {
- background-position: -360px -72px;
-}
-.icon-step-forward {
- background-position: -384px -72px;
-}
-.icon-eject {
- background-position: -408px -72px;
-}
-.icon-chevron-left {
- background-position: -432px -72px;
-}
-.icon-chevron-right {
- background-position: -456px -72px;
-}
-.icon-plus-sign {
- background-position: 0 -96px;
-}
-.icon-minus-sign {
- background-position: -24px -96px;
-}
-.icon-remove-sign {
- background-position: -48px -96px;
-}
-.icon-ok-sign {
- background-position: -72px -96px;
-}
-.icon-question-sign {
- background-position: -96px -96px;
-}
-.icon-info-sign {
- background-position: -120px -96px;
-}
-.icon-screenshot {
- background-position: -144px -96px;
-}
-.icon-remove-circle {
- background-position: -168px -96px;
-}
-.icon-ok-circle {
- background-position: -192px -96px;
-}
-.icon-ban-circle {
- background-position: -216px -96px;
-}
-.icon-arrow-left {
- background-position: -240px -96px;
-}
-.icon-arrow-right {
- background-position: -264px -96px;
-}
-.icon-arrow-up {
- background-position: -289px -96px;
-}
-.icon-arrow-down {
- background-position: -312px -96px;
-}
-.icon-share-alt {
- background-position: -336px -96px;
-}
-.icon-resize-full {
- background-position: -360px -96px;
-}
-.icon-resize-small {
- background-position: -384px -96px;
-}
-.icon-plus {
- background-position: -408px -96px;
-}
-.icon-minus {
- background-position: -433px -96px;
-}
-.icon-asterisk {
- background-position: -456px -96px;
-}
-.icon-exclamation-sign {
- background-position: 0 -120px;
-}
-.icon-gift {
- background-position: -24px -120px;
-}
-.icon-leaf {
- background-position: -48px -120px;
-}
-.icon-fire {
- background-position: -72px -120px;
-}
-.icon-eye-open {
- background-position: -96px -120px;
-}
-.icon-eye-close {
- background-position: -120px -120px;
-}
-.icon-warning-sign {
- background-position: -144px -120px;
-}
-.icon-plane {
- background-position: -168px -120px;
-}
-.icon-calendar {
- background-position: -192px -120px;
-}
-.icon-random {
- background-position: -216px -120px;
-}
-.icon-comment {
- background-position: -240px -120px;
-}
-.icon-magnet {
- background-position: -264px -120px;
-}
-.icon-chevron-up {
- background-position: -288px -120px;
-}
-.icon-chevron-down {
- background-position: -313px -119px;
-}
-.icon-retweet {
- background-position: -336px -120px;
-}
-.icon-shopping-cart {
- background-position: -360px -120px;
-}
-.icon-folder-close {
- background-position: -384px -120px;
-}
-.icon-folder-open {
- background-position: -408px -120px;
-}
-.icon-resize-vertical {
- background-position: -432px -119px;
-}
-.icon-resize-horizontal {
- background-position: -456px -118px;
-}
-.icon-hdd {
- background-position: 0 -144px;
-}
-.icon-bullhorn {
- background-position: -24px -144px;
-}
-.icon-bell {
- background-position: -48px -144px;
-}
-.icon-certificate {
- background-position: -72px -144px;
-}
-.icon-thumbs-up {
- background-position: -96px -144px;
-}
-.icon-thumbs-down {
- background-position: -120px -144px;
-}
-.icon-hand-right {
- background-position: -144px -144px;
-}
-.icon-hand-left {
- background-position: -168px -144px;
-}
-.icon-hand-up {
- background-position: -192px -144px;
-}
-.icon-hand-down {
- background-position: -216px -144px;
-}
-.icon-circle-arrow-right {
- background-position: -240px -144px;
-}
-.icon-circle-arrow-left {
- background-position: -264px -144px;
-}
-.icon-circle-arrow-up {
- background-position: -288px -144px;
-}
-.icon-circle-arrow-down {
- background-position: -312px -144px;
-}
-.icon-globe {
- background-position: -336px -144px;
-}
-.icon-wrench {
- background-position: -360px -144px;
-}
-.icon-tasks {
- background-position: -384px -144px;
-}
-.icon-filter {
- background-position: -408px -144px;
-}
-.icon-briefcase {
- background-position: -432px -144px;
-}
-.icon-fullscreen {
- background-position: -456px -144px;
-}
-.dropup,
-.dropdown {
- position: relative;
-}
-.dropdown-toggle {
- *margin-bottom: -3px;
-}
-.dropdown-toggle:active,
-.open .dropdown-toggle {
- outline: 0;
-}
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- vertical-align: top;
- border-top: 4px solid #000000;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-.dropdown .caret {
- margin-top: 8px;
- margin-left: 2px;
-}
-.dropdown:hover .caret,
-.open .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 4px 0;
- margin: 1px 0 0;
- list-style: none;
- background-color: #ffffff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- *border-right-width: 2px;
- *border-bottom-width: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
-}
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu .divider {
- *width: 100%;
- height: 1px;
- margin: 9px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.dropdown-menu a {
- display: block;
- padding: 3px 15px;
- clear: both;
- font-weight: normal;
- line-height: 20px;
- color: #555555;
- white-space: nowrap;
-}
-.dropdown-menu li > a:hover,
-.dropdown-menu .active > a,
-.dropdown-menu .active > a:hover {
- color: #da370f;
- text-decoration: none;
- background-color: #fbebe9;
-}
-.open {
- *z-index: 1000;
-}
-.open > .dropdown-menu {
- display: block;
-}
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0;
- border-bottom: 4px solid #000000;
- content: "\2191";
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 1px;
-}
-.typeahead {
- margin-top: 2px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #eee;
- border: 1px solid rgba(0, 0, 0, 0.05);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
-}
-.well-large {
- padding: 24px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.well-small {
- padding: 9px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- -moz-transition: opacity 0.15s linear;
- -ms-transition: opacity 0.15s linear;
- -o-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
-}
-.fade.in {
- opacity: 1;
-}
-.collapse {
- position: relative;
- height: 0;
- overflow: hidden;
- -webkit-transition: height 0.35s ease;
- -moz-transition: height 0.35s ease;
- -ms-transition: height 0.35s ease;
- -o-transition: height 0.35s ease;
- transition: height 0.35s ease;
-}
-.collapse.in {
- height: auto;
-}
-.close {
- float: right;
- font-size: 20px;
- font-weight: bold;
- line-height: 20px;
- color: #000000;
- text-shadow: 0 1px 0 #ffffff;
- opacity: 0.2;
- filter: alpha(opacity=20);
-}
-.close:hover {
- color: #000000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.4;
- filter: alpha(opacity=40);
-}
-button.close {
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
-}
-.btn {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- padding: 4px 10px 4px;
- margin-bottom: 0;
- font-size: 15px;
- line-height: 20px;
- *line-height: 20px;
- color: #333333;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- vertical-align: middle;
- cursor: pointer;
- background-color: #f5f5f5;
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #e6e6e6;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- border: 1px solid #cccccc;
- *border: 0;
- border-bottom-color: #b3b3b3;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- *margin-left: .3em;
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn:hover,
-.btn:active,
-.btn.active,
-.btn.disabled,
-.btn[disabled] {
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
-}
-.btn:active,
-.btn.active {
- background-color: #cccccc \9;
-}
-.btn:first-child {
- *margin-left: 0;
-}
-.btn:hover {
- color: #333333;
- text-decoration: none;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- /* Buttons in IE7 don't get borders, so darken on hover */
-
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -ms-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
-}
-.btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.btn.active,
-.btn:active {
- background-color: #e6e6e6;
- background-color: #d9d9d9 \9;
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn.disabled,
-.btn[disabled] {
- cursor: default;
- background-color: #e6e6e6;
- background-image: none;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.btn-large {
- padding: 9px 14px;
- font-size: 17px;
- line-height: normal;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.btn-large [class^="icon-"] {
- margin-top: 1px;
-}
-.btn-small {
- padding: 5px 9px;
- font-size: 13px;
- line-height: 18px;
-}
-.btn-small [class^="icon-"] {
- margin-top: -1px;
-}
-.btn-mini {
- padding: 2px 6px;
- font-size: 13px;
- line-height: 16px;
-}
-.btn-primary,
-.btn-primary:hover,
-.btn-warning,
-.btn-warning:hover,
-.btn-danger,
-.btn-danger:hover,
-.btn-success,
-.btn-success:hover,
-.btn-info,
-.btn-info:hover,
-.btn-inverse,
-.btn-inverse:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-primary.active,
-.btn-warning.active,
-.btn-danger.active,
-.btn-success.active,
-.btn-info.active,
-.btn-inverse.active {
- color: rgba(255, 255, 255, 0.75);
-}
-.btn {
- border-color: #ccc;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
-}
-.btn-primary {
- background-color: #e63c12;
- background-image: -moz-linear-gradient(top, #ef3f14, #da370f);
- background-image: -ms-linear-gradient(top, #ef3f14, #da370f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ef3f14), to(#da370f));
- background-image: -webkit-linear-gradient(top, #ef3f14, #da370f);
- background-image: -o-linear-gradient(top, #ef3f14, #da370f);
- background-image: linear-gradient(top, #ef3f14, #da370f);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef3f14', endColorstr='#da370f', GradientType=0);
- border-color: #da370f #da370f #92250a;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #da370f;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #da370f;
- *background-color: #c2310d;
-}
-.btn-primary:active,
-.btn-primary.active {
- background-color: #aa2b0c \9;
-}
-.btn-warning {
- background-color: #ffce36;
- background-image: -moz-linear-gradient(top, #ffd041, #ffca27);
- background-image: -ms-linear-gradient(top, #ffd041, #ffca27);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffd041), to(#ffca27));
- background-image: -webkit-linear-gradient(top, #ffd041, #ffca27);
- background-image: -o-linear-gradient(top, #ffd041, #ffca27);
- background-image: linear-gradient(top, #ffd041, #ffca27);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd041', endColorstr='#ffca27', GradientType=0);
- border-color: #ffca27 #ffca27 #d9a400;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #ffca27;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active,
-.btn-warning.disabled,
-.btn-warning[disabled] {
- background-color: #ffca27;
- *background-color: #ffc40d;
-}
-.btn-warning:active,
-.btn-warning.active {
- background-color: #f3b700 \9;
-}
-.btn-danger {
- background-color: #e53a48;
- background-image: -moz-linear-gradient(top, #e64350, #e32c3b);
- background-image: -ms-linear-gradient(top, #e64350, #e32c3b);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e64350), to(#e32c3b));
- background-image: -webkit-linear-gradient(top, #e64350, #e32c3b);
- background-image: -o-linear-gradient(top, #e64350, #e32c3b);
- background-image: linear-gradient(top, #e64350, #e32c3b);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e64350', endColorstr='#e32c3b', GradientType=0);
- border-color: #e32c3b #e32c3b #ac1723;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #e32c3b;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active,
-.btn-danger.disabled,
-.btn-danger[disabled] {
- background-color: #e32c3b;
- *background-color: #d91d2c;
-}
-.btn-danger:active,
-.btn-danger.active {
- background-color: #c21a28 \9;
-}
-.btn-success {
- background-color: #43a300;
- background-image: -moz-linear-gradient(top, #48ae00, #3d9400);
- background-image: -ms-linear-gradient(top, #48ae00, #3d9400);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#48ae00), to(#3d9400));
- background-image: -webkit-linear-gradient(top, #48ae00, #3d9400);
- background-image: -o-linear-gradient(top, #48ae00, #3d9400);
- background-image: linear-gradient(top, #48ae00, #3d9400);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#48ae00', endColorstr='#3d9400', GradientType=0);
- border-color: #3d9400 #3d9400 #1d4800;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #3d9400;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active,
-.btn-success.disabled,
-.btn-success[disabled] {
- background-color: #3d9400;
- *background-color: #327b00;
-}
-.btn-success:active,
-.btn-success.active {
- background-color: #286100 \9;
-}
-.btn-info {
- background-color: #68c5e1;
- background-image: -moz-linear-gradient(top, #70c8e2, #5bc0de);
- background-image: -ms-linear-gradient(top, #70c8e2, #5bc0de);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70c8e2), to(#5bc0de));
- background-image: -webkit-linear-gradient(top, #70c8e2, #5bc0de);
- background-image: -o-linear-gradient(top, #70c8e2, #5bc0de);
- background-image: linear-gradient(top, #70c8e2, #5bc0de);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70c8e2', endColorstr='#5bc0de', GradientType=0);
- border-color: #5bc0de #5bc0de #28a1c5;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #5bc0de;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active,
-.btn-info.disabled,
-.btn-info[disabled] {
- background-color: #5bc0de;
- *background-color: #46b8da;
-}
-.btn-info:active,
-.btn-info.active {
- background-color: #31b0d5 \9;
-}
-.btn-inverse {
- background-color: #454545;
- background-image: -moz-linear-gradient(top, #555555, #2c2c2c);
- background-image: -ms-linear-gradient(top, #555555, #2c2c2c);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#2c2c2c));
- background-image: -webkit-linear-gradient(top, #555555, #2c2c2c);
- background-image: -o-linear-gradient(top, #555555, #2c2c2c);
- background-image: linear-gradient(top, #555555, #2c2c2c);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#2c2c2c', GradientType=0);
- border-color: #2c2c2c #2c2c2c #060606;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #2c2c2c;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-inverse:hover,
-.btn-inverse:active,
-.btn-inverse.active,
-.btn-inverse.disabled,
-.btn-inverse[disabled] {
- background-color: #2c2c2c;
- *background-color: #1f1f1f;
-}
-.btn-inverse:active,
-.btn-inverse.active {
- background-color: #121212 \9;
-}
-button.btn,
-input[type="submit"].btn {
- *padding-top: 2px;
- *padding-bottom: 2px;
-}
-button.btn::-moz-focus-inner,
-input[type="submit"].btn::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button.btn.btn-large,
-input[type="submit"].btn.btn-large {
- *padding-top: 7px;
- *padding-bottom: 7px;
-}
-button.btn.btn-small,
-input[type="submit"].btn.btn-small {
- *padding-top: 3px;
- *padding-bottom: 3px;
-}
-button.btn.btn-mini,
-input[type="submit"].btn.btn-mini {
- *padding-top: 1px;
- *padding-bottom: 1px;
-}
-.btn-group {
- position: relative;
- *zoom: 1;
- *margin-left: .3em;
-}
-.btn-group:before,
-.btn-group:after {
- display: table;
- content: "";
-}
-.btn-group:after {
- clear: both;
-}
-.btn-group:first-child {
- *margin-left: 0;
-}
-.btn-group + .btn-group {
- margin-left: 5px;
-}
-.btn-toolbar {
- margin-top: 10px;
- margin-bottom: 10px;
-}
-.btn-toolbar .btn-group {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
-}
-.btn-group > .btn {
- position: relative;
- float: left;
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.btn-group > .btn:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-bottom-left-radius: 4px;
-}
-.btn-group > .btn:last-child,
-.btn-group > .dropdown-toggle {
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-right-radius: 4px;
-}
-.btn-group > .btn.large:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 6px;
- -moz-border-radius-topleft: 6px;
- border-top-left-radius: 6px;
- -webkit-border-bottom-left-radius: 6px;
- -moz-border-radius-bottomleft: 6px;
- border-bottom-left-radius: 6px;
-}
-.btn-group > .btn.large:last-child,
-.btn-group > .large.dropdown-toggle {
- -webkit-border-top-right-radius: 6px;
- -moz-border-radius-topright: 6px;
- border-top-right-radius: 6px;
- -webkit-border-bottom-right-radius: 6px;
- -moz-border-radius-bottomright: 6px;
- border-bottom-right-radius: 6px;
-}
-.btn-group > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group > .btn:active,
-.btn-group > .btn.active {
- z-index: 2;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-.btn-group > .dropdown-toggle {
- padding-left: 8px;
- padding-right: 8px;
- -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-mini.dropdown-toggle {
- padding-left: 5px;
- padding-right: 5px;
-}
-.btn-group > .btn-small.dropdown-toggle {
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-large.dropdown-toggle {
- padding-left: 12px;
- padding-right: 12px;
-}
-.btn-group.open .dropdown-toggle {
- background-image: none;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn-group.open .btn.dropdown-toggle {
- background-color: #e6e6e6;
-}
-.btn-group.open .btn-primary.dropdown-toggle {
- background-color: #da370f;
-}
-.btn-group.open .btn-warning.dropdown-toggle {
- background-color: #ffca27;
-}
-.btn-group.open .btn-danger.dropdown-toggle {
- background-color: #e32c3b;
-}
-.btn-group.open .btn-success.dropdown-toggle {
- background-color: #3d9400;
-}
-.btn-group.open .btn-info.dropdown-toggle {
- background-color: #5bc0de;
-}
-.btn-group.open .btn-inverse.dropdown-toggle {
- background-color: #2c2c2c;
-}
-.btn .caret {
- margin-top: 7px;
- margin-left: 0;
-}
-.btn:hover .caret,
-.open.btn-group .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.btn-mini .caret {
- margin-top: 5px;
-}
-.btn-small .caret {
- margin-top: 6px;
-}
-.btn-large .caret {
- margin-top: 6px;
- border-left-width: 5px;
- border-right-width: 5px;
- border-top-width: 5px;
-}
-.dropup .btn-large .caret {
- border-bottom: 5px solid #000000;
- border-top: 0;
-}
-.btn-primary .caret,
-.btn-warning .caret,
-.btn-danger .caret,
-.btn-info .caret,
-.btn-success .caret,
-.btn-inverse .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 0.75;
- filter: alpha(opacity=75);
-}
-.alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 20px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- background-color: #fcf8e3;
- border: 1px solid #fbeed5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- color: #da370f;
-}
-.alert-heading {
- color: inherit;
-}
-.alert .close {
- position: relative;
- top: -2px;
- right: -21px;
- line-height: 18px;
-}
-.alert-success {
- background-color: #dff0d8;
- border-color: #d6e9c6;
- color: #3d9400;
-}
-.alert-danger,
-.alert-error {
- background-color: #f2dede;
- border-color: #eed3d7;
- color: #e32c3b;
-}
-.alert-info {
- background-color: #d9edf7;
- border-color: #bce8f1;
- color: #029acf;
-}
-.alert-block {
- padding-top: 14px;
- padding-bottom: 14px;
-}
-.alert-block > p,
-.alert-block > ul {
- margin-bottom: 0;
-}
-.alert-block p + p {
- margin-top: 5px;
-}
-.nav {
- margin-left: 0;
- margin-bottom: 20px;
- list-style: none;
-}
-.nav > li > a {
- display: block;
-}
-.nav > li > a:hover {
- text-decoration: none;
- background-color: #eeeeee;
-}
-.nav > .pull-right {
- float: right;
-}
-.nav .nav-header {
- display: block;
- padding: 3px 15px;
- font-size: 11px;
- font-weight: bold;
- line-height: 20px;
- color: #999999;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-.nav li + .nav-header {
- margin-top: 9px;
-}
-.nav-list {
- padding-left: 15px;
- padding-right: 15px;
- margin-bottom: 0;
-}
-.nav-list > li > a,
-.nav-list .nav-header {
- margin-left: -15px;
- margin-right: -15px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-.nav-list > li > a {
- padding: 3px 15px;
-}
-.nav-list > .active > a,
-.nav-list > .active > a:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
- background-color: #da370f;
-}
-.nav-list [class^="icon-"] {
- margin-right: 2px;
-}
-.nav-list .divider {
- *width: 100%;
- height: 1px;
- margin: 9px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.nav-tabs,
-.nav-pills {
- *zoom: 1;
-}
-.nav-tabs:before,
-.nav-pills:before,
-.nav-tabs:after,
-.nav-pills:after {
- display: table;
- content: "";
-}
-.nav-tabs:after,
-.nav-pills:after {
- clear: both;
-}
-.nav-tabs > li,
-.nav-pills > li {
- float: left;
-}
-.nav-tabs > li > a,
-.nav-pills > li > a {
- padding-right: 12px;
- padding-left: 12px;
- margin-right: 2px;
- line-height: 14px;
-}
-.nav-tabs {
- border-bottom: 1px solid #ddd;
-}
-.nav-tabs > li {
- margin-bottom: -1px;
-}
-.nav-tabs > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- line-height: 20px;
- border: 1px solid transparent;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
- border-color: #eeeeee #eeeeee #dddddd;
-}
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover {
- color: #555555;
- background-color: #ffffff;
- border: 1px solid #ddd;
- border-bottom-color: transparent;
- cursor: default;
-}
-.nav-pills > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- margin-top: 2px;
- margin-bottom: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.nav-pills > .active > a,
-.nav-pills > .active > a:hover {
- color: #ffffff;
- background-color: #da370f;
-}
-.nav-stacked > li {
- float: none;
-}
-.nav-stacked > li > a {
- margin-right: 0;
-}
-.nav-tabs.nav-stacked {
- border-bottom: 0;
-}
-.nav-tabs.nav-stacked > li > a {
- border: 1px solid #ddd;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-tabs.nav-stacked > li:first-child > a {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs.nav-stacked > li:last-child > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.nav-tabs.nav-stacked > li > a:hover {
- border-color: #ddd;
- z-index: 2;
-}
-.nav-pills.nav-stacked > li > a {
- margin-bottom: 3px;
-}
-.nav-pills.nav-stacked > li:last-child > a {
- margin-bottom: 1px;
-}
-.nav-tabs .dropdown-menu {
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
-}
-.nav-pills .dropdown-menu {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.nav-tabs .dropdown-toggle .caret,
-.nav-pills .dropdown-toggle .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
- margin-top: 6px;
-}
-.nav-tabs .dropdown-toggle:hover .caret,
-.nav-pills .dropdown-toggle:hover .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
-}
-.nav-tabs .active .dropdown-toggle .caret,
-.nav-pills .active .dropdown-toggle .caret {
- border-top-color: #333333;
- border-bottom-color: #333333;
-}
-.nav > .dropdown.active > a:hover {
- color: #000000;
- cursor: pointer;
-}
-.nav-tabs .open .dropdown-toggle,
-.nav-pills .open .dropdown-toggle,
-.nav > li.dropdown.open.active > a:hover {
- color: #ffffff;
- background-color: #999999;
- border-color: #999999;
-}
-.nav li.dropdown.open .caret,
-.nav li.dropdown.open.active .caret,
-.nav li.dropdown.open a:hover .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.tabs-stacked .open > a:hover {
- border-color: #999999;
-}
-.tabbable {
- *zoom: 1;
-}
-.tabbable:before,
-.tabbable:after {
- display: table;
- content: "";
-}
-.tabbable:after {
- clear: both;
-}
-.tab-content {
- overflow: auto;
-}
-.tabs-below > .nav-tabs,
-.tabs-right > .nav-tabs,
-.tabs-left > .nav-tabs {
- border-bottom: 0;
-}
-.tab-content > .tab-pane,
-.pill-content > .pill-pane {
- display: none;
-}
-.tab-content > .active,
-.pill-content > .active {
- display: block;
-}
-.tabs-below > .nav-tabs {
- border-top: 1px solid #ddd;
-}
-.tabs-below > .nav-tabs > li {
- margin-top: -1px;
- margin-bottom: 0;
-}
-.tabs-below > .nav-tabs > li > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.tabs-below > .nav-tabs > li > a:hover {
- border-bottom-color: transparent;
- border-top-color: #ddd;
-}
-.tabs-below > .nav-tabs > .active > a,
-.tabs-below > .nav-tabs > .active > a:hover {
- border-color: transparent #ddd #ddd #ddd;
-}
-.tabs-left > .nav-tabs > li,
-.tabs-right > .nav-tabs > li {
- float: none;
-}
-.tabs-left > .nav-tabs > li > a,
-.tabs-right > .nav-tabs > li > a {
- min-width: 74px;
- margin-right: 0;
- margin-bottom: 3px;
-}
-.tabs-left > .nav-tabs {
- float: left;
- margin-right: 19px;
- border-right: 1px solid #ddd;
-}
-.tabs-left > .nav-tabs > li > a {
- margin-right: -1px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
-}
-.tabs-left > .nav-tabs > li > a:hover {
- border-color: #eeeeee #dddddd #eeeeee #eeeeee;
-}
-.tabs-left > .nav-tabs .active > a,
-.tabs-left > .nav-tabs .active > a:hover {
- border-color: #ddd transparent #ddd #ddd;
- *border-right-color: #ffffff;
-}
-.tabs-right > .nav-tabs {
- float: right;
- margin-left: 19px;
- border-left: 1px solid #ddd;
-}
-.tabs-right > .nav-tabs > li > a {
- margin-left: -1px;
- -webkit-border-radius: 0 4px 4px 0;
- -moz-border-radius: 0 4px 4px 0;
- border-radius: 0 4px 4px 0;
-}
-.tabs-right > .nav-tabs > li > a:hover {
- border-color: #eeeeee #eeeeee #eeeeee #dddddd;
-}
-.tabs-right > .nav-tabs .active > a,
-.tabs-right > .nav-tabs .active > a:hover {
- border-color: #ddd #ddd #ddd transparent;
- *border-left-color: #ffffff;
-}
-.navbar {
- *position: relative;
- *z-index: 2;
- overflow: visible;
- margin-bottom: 20px;
-}
-.navbar-inner {
- min-height: 40px;
- padding-left: 20px;
- padding-right: 20px;
- background-color: #fefefe;
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe);
- background-image: -ms-linear-gradient(top, #fefefe, #fefefe);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#fefefe));
- background-image: -webkit-linear-gradient(top, #fefefe, #fefefe);
- background-image: -o-linear-gradient(top, #fefefe, #fefefe);
- background-image: linear-gradient(top, #fefefe, #fefefe);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#fefefe', GradientType=0);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
-}
-.navbar .container {
- width: auto;
-}
-.nav-collapse.collapse {
- height: auto;
-}
-.navbar {
- color: #555555;
-}
-.navbar .brand:hover {
- text-decoration: none;
-}
-.navbar .brand {
- float: left;
- display: block;
- padding: 8px 20px 12px;
- margin-left: -20px;
- font-size: 20px;
- font-weight: 200;
- line-height: 1;
- color: inherit;
-}
-.navbar .navbar-text {
- margin-bottom: 0;
- line-height: 40px;
-}
-.navbar .navbar-link {
- color: #555555;
-}
-.navbar .navbar-link:hover {
- color: #da370f;
-}
-.navbar .btn,
-.navbar .btn-group {
- margin-top: 5px;
-}
-.navbar .btn-group .btn {
- margin: 0;
-}
-.navbar-form {
- margin-bottom: 0;
- *zoom: 1;
-}
-.navbar-form:before,
-.navbar-form:after {
- display: table;
- content: "";
-}
-.navbar-form:after {
- clear: both;
-}
-.navbar-form input,
-.navbar-form select,
-.navbar-form .radio,
-.navbar-form .checkbox {
- margin-top: 5px;
-}
-.navbar-form input,
-.navbar-form select {
- display: inline-block;
- margin-bottom: 0;
-}
-.navbar-form input[type="image"],
-.navbar-form input[type="checkbox"],
-.navbar-form input[type="radio"] {
- margin-top: 3px;
-}
-.navbar-form .input-append,
-.navbar-form .input-prepend {
- margin-top: 6px;
- white-space: nowrap;
-}
-.navbar-form .input-append input,
-.navbar-form .input-prepend input {
- margin-top: 0;
-}
-.navbar-search {
- position: relative;
- float: left;
- margin-top: 6px;
- margin-bottom: 0;
-}
-.navbar-search .search-query {
- padding: 4px 9px;
- font-family: "Josefin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- font-weight: normal;
- line-height: 1;
- color: #ffffff;
- background-color: #ffffff;
- border: 1px solid #b3b3b3;
- -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
-}
-.navbar-search .search-query:-moz-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:-ms-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query::-webkit-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:focus,
-.navbar-search .search-query.focused {
- padding: 5px 10px;
- color: #333333;
- text-shadow: 0 1px 0 #ffffff;
- background-color: #ffffff;
- border: 0;
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- outline: 0;
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
- margin-bottom: 0;
-}
-.navbar-fixed-top .navbar-inner,
-.navbar-fixed-bottom .navbar-inner {
- padding-left: 0;
- padding-right: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.navbar-fixed-top {
- top: 0;
-}
-.navbar-fixed-bottom {
- bottom: 0;
-}
-.navbar .nav {
- position: relative;
- left: 0;
- display: block;
- float: left;
- margin: 0 10px 0 0;
-}
-.navbar .nav.pull-right {
- float: right;
-}
-.navbar .nav > li {
- display: block;
- float: left;
-}
-.navbar .nav > li > a {
- float: none;
- padding: 9px 10px 11px;
- line-height: 19px;
- color: #555555;
- text-decoration: none;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.navbar .btn {
- display: inline-block;
- padding: 4px 10px 4px;
- margin: 5px 5px 6px;
- line-height: 20px;
-}
-.navbar .btn-group {
- margin: 0;
- padding: 5px 5px 6px;
-}
-.navbar .nav > li > a:hover {
- background-color: transparent;
- color: #da370f;
- text-decoration: none;
-}
-.navbar .nav .active > a,
-.navbar .nav .active > a:hover {
- color: #da370f;
- text-decoration: none;
- background-color: #fefefe;
-}
-.navbar .divider-vertical {
- height: 40px;
- width: 1px;
- margin: 0 9px;
- overflow: hidden;
- background-color: #fefefe;
- border-right: 1px solid #fefefe;
-}
-.navbar .nav.pull-right {
- margin-left: 10px;
- margin-right: 0;
-}
-.navbar .btn-navbar {
- display: none;
- float: right;
- padding: 7px 10px;
- margin-left: 5px;
- margin-right: 5px;
- background-color: #fefefe;
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe);
- background-image: -ms-linear-gradient(top, #fefefe, #fefefe);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#fefefe));
- background-image: -webkit-linear-gradient(top, #fefefe, #fefefe);
- background-image: -o-linear-gradient(top, #fefefe, #fefefe);
- background-image: linear-gradient(top, #fefefe, #fefefe);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#fefefe', GradientType=0);
- border-color: #fefefe #fefefe #d8d8d8;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #fefefe;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
-}
-.navbar .btn-navbar:hover,
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active,
-.navbar .btn-navbar.disabled,
-.navbar .btn-navbar[disabled] {
- background-color: #fefefe;
- *background-color: #f1f1f1;
-}
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active {
- background-color: #e5e5e5 \9;
-}
-.navbar .btn-navbar .icon-bar {
- display: block;
- width: 18px;
- height: 2px;
- background-color: #f5f5f5;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-navbar .icon-bar + .icon-bar {
- margin-top: 3px;
-}
-.navbar .dropdown-menu:before {
- content: '';
- display: inline-block;
- border-left: 7px solid transparent;
- border-right: 7px solid transparent;
- border-bottom: 7px solid #ccc;
- border-bottom-color: rgba(0, 0, 0, 0.2);
- position: absolute;
- top: -7px;
- left: 9px;
-}
-.navbar .dropdown-menu:after {
- content: '';
- display: inline-block;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-bottom: 6px solid #ffffff;
- position: absolute;
- top: -6px;
- left: 10px;
-}
-.navbar-fixed-bottom .dropdown-menu:before {
- border-top: 7px solid #ccc;
- border-top-color: rgba(0, 0, 0, 0.2);
- border-bottom: 0;
- bottom: -7px;
- top: auto;
-}
-.navbar-fixed-bottom .dropdown-menu:after {
- border-top: 6px solid #ffffff;
- border-bottom: 0;
- bottom: -6px;
- top: auto;
-}
-.navbar .nav li.dropdown .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-.navbar .nav li.dropdown.active .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active > .dropdown-toggle,
-.navbar .nav li.dropdown.open.active > .dropdown-toggle {
- background-color: transparent;
-}
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover {
- color: #ffffff;
-}
-.navbar .pull-right .dropdown-menu,
-.navbar .dropdown-menu.pull-right {
- left: auto;
- right: 0;
-}
-.navbar .pull-right .dropdown-menu:before,
-.navbar .dropdown-menu.pull-right:before {
- left: auto;
- right: 12px;
-}
-.navbar .pull-right .dropdown-menu:after,
-.navbar .dropdown-menu.pull-right:after {
- left: auto;
- right: 13px;
-}
-.breadcrumb {
- padding: 7px 14px;
- margin: 0 0 20px;
- list-style: none;
- background-color: #fbfbfb;
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
- border: 1px solid #ddd;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
-}
-.breadcrumb li {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- text-shadow: 0 1px 0 #ffffff;
-}
-.breadcrumb .divider {
- padding: 0 5px;
- color: #999999;
-}
-.breadcrumb .active a {
- color: #333333;
-}
-.pagination {
- height: 40px;
- margin: 20px 0;
-}
-.pagination ul {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-left: 0;
- margin-bottom: 0;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-}
-.pagination li {
- display: inline;
-}
-.pagination a {
- float: left;
- padding: 0 14px;
- line-height: 38px;
- text-decoration: none;
- border: 1px solid #ddd;
- border-left-width: 0;
-}
-.pagination a:hover,
-.pagination .active a {
- background-color: #f5f5f5;
-}
-.pagination .active a {
- color: #999999;
- cursor: default;
-}
-.pagination .disabled span,
-.pagination .disabled a,
-.pagination .disabled a:hover {
- color: #999999;
- background-color: transparent;
- cursor: default;
-}
-.pagination li:first-child a {
- border-left-width: 1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.pagination li:last-child a {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.pagination-centered {
- text-align: center;
-}
-.pagination-right {
- text-align: right;
-}
-.pager {
- margin-left: 0;
- margin-bottom: 20px;
- list-style: none;
- text-align: center;
- *zoom: 1;
-}
-.pager:before,
-.pager:after {
- display: table;
- content: "";
-}
-.pager:after {
- clear: both;
-}
-.pager li {
- display: inline;
-}
-.pager a {
- display: inline-block;
- padding: 5px 14px;
- background-color: #fff;
- border: 1px solid #ddd;
- -webkit-border-radius: 15px;
- -moz-border-radius: 15px;
- border-radius: 15px;
-}
-.pager a:hover {
- text-decoration: none;
- background-color: #f5f5f5;
-}
-.pager .next a {
- float: right;
-}
-.pager .previous a {
- float: left;
-}
-.pager .disabled a,
-.pager .disabled a:hover {
- color: #999999;
- background-color: #fff;
- cursor: default;
-}
-.modal-open .dropdown-menu {
- z-index: 2050;
-}
-.modal-open .dropdown.open {
- *z-index: 2050;
-}
-.modal-open .popover {
- z-index: 2060;
-}
-.modal-open .tooltip {
- z-index: 2070;
-}
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000000;
-}
-.modal-backdrop.fade {
- opacity: 0;
-}
-.modal-backdrop,
-.modal-backdrop.fade.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.modal {
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 1050;
- overflow: auto;
- width: 560px;
- margin: -250px 0 0 -280px;
- background-color: #ffffff;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.3);
- *border: 1px solid #999;
- /* IE6-7 */
-
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.modal.fade {
- -webkit-transition: opacity .3s linear, top .3s ease-out;
- -moz-transition: opacity .3s linear, top .3s ease-out;
- -ms-transition: opacity .3s linear, top .3s ease-out;
- -o-transition: opacity .3s linear, top .3s ease-out;
- transition: opacity .3s linear, top .3s ease-out;
- top: -25%;
-}
-.modal.fade.in {
- top: 50%;
-}
-.modal-header {
- padding: 9px 15px;
- border-bottom: 1px solid #eee;
-}
-.modal-header .close {
- margin-top: 2px;
-}
-.modal-body {
- overflow-y: auto;
- max-height: 400px;
- padding: 15px;
-}
-.modal-form {
- margin-bottom: 0;
-}
-.modal-footer {
- padding: 14px 15px 15px;
- margin-bottom: 0;
- text-align: right;
- background-color: #f5f5f5;
- border-top: 1px solid #ddd;
- -webkit-border-radius: 0 0 6px 6px;
- -moz-border-radius: 0 0 6px 6px;
- border-radius: 0 0 6px 6px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
- *zoom: 1;
-}
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: "";
-}
-.modal-footer:after {
- clear: both;
-}
-.modal-footer .btn + .btn {
- margin-left: 5px;
- margin-bottom: 0;
-}
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-.tooltip {
- position: absolute;
- z-index: 1020;
- display: block;
- visibility: visible;
- padding: 5px;
- font-size: 11px;
- opacity: 0;
- filter: alpha(opacity=0);
-}
-.tooltip.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.tooltip.top {
- margin-top: -2px;
-}
-.tooltip.right {
- margin-left: 2px;
-}
-.tooltip.bottom {
- margin-top: 2px;
-}
-.tooltip.left {
- margin-left: -2px;
-}
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #ffffff;
- text-align: center;
- text-decoration: none;
- background-color: #000000;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: none;
- padding: 5px;
-}
-.popover.top {
- margin-top: -5px;
-}
-.popover.right {
- margin-left: 5px;
-}
-.popover.bottom {
- margin-top: 5px;
-}
-.popover.left {
- margin-left: -5px;
-}
-.popover.top .arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.popover.right .arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.popover.bottom .arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.popover.left .arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.popover .arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover-inner {
- padding: 3px;
- width: 280px;
- overflow: hidden;
- background: #000000;
- background: rgba(0, 0, 0, 0.8);
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-}
-.popover-title {
- padding: 9px 15px;
- line-height: 1;
- background-color: #f5f5f5;
- border-bottom: 1px solid #eee;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
-}
-.popover-content {
- padding: 14px;
- background-color: #ffffff;
- -webkit-border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- border-radius: 0 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.popover-content p,
-.popover-content ul,
-.popover-content ol {
- margin-bottom: 0;
-}
-.thumbnails {
- margin-left: -20px;
- list-style: none;
- *zoom: 1;
-}
-.thumbnails:before,
-.thumbnails:after {
- display: table;
- content: "";
-}
-.thumbnails:after {
- clear: both;
-}
-.row-fluid .thumbnails {
- margin-left: 0;
-}
-.thumbnails > li {
- float: left;
- margin-bottom: 20px;
- margin-left: 20px;
-}
-.thumbnail {
- display: block;
- padding: 4px;
- line-height: 1;
- border: 1px solid #ddd;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-a.thumbnail:hover {
- border-color: #da370f;
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-}
-.thumbnail > img {
- display: block;
- max-width: 100%;
- margin-left: auto;
- margin-right: auto;
-}
-.thumbnail .caption {
- padding: 9px;
-}
-.label,
-.badge {
- font-size: 12.69px;
- font-weight: bold;
- line-height: 14px;
- color: #ffffff;
- vertical-align: baseline;
- white-space: nowrap;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #999999;
-}
-.label {
- padding: 1px 4px 2px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.badge {
- padding: 1px 9px 2px;
- -webkit-border-radius: 9px;
- -moz-border-radius: 9px;
- border-radius: 9px;
-}
-a.label:hover,
-a.badge:hover {
- color: #ffffff;
- text-decoration: none;
- cursor: pointer;
-}
-.label-important,
-.badge-important {
- background-color: #e32c3b;
-}
-.label-important[href],
-.badge-important[href] {
- background-color: #c21a28;
-}
-.label-warning,
-.badge-warning {
- background-color: #da370f;
-}
-.label-warning[href],
-.badge-warning[href] {
- background-color: #aa2b0c;
-}
-.label-success,
-.badge-success {
- background-color: #3d9400;
-}
-.label-success[href],
-.badge-success[href] {
- background-color: #286100;
-}
-.label-info,
-.badge-info {
- background-color: #029acf;
-}
-.label-info[href],
-.badge-info[href] {
- background-color: #02749c;
-}
-.label-inverse,
-.badge-inverse {
- background-color: #333333;
-}
-.label-inverse[href],
-.badge-inverse[href] {
- background-color: #1a1a1a;
-}
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-moz-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-ms-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 40px 0;
- }
-}
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- overflow: hidden;
- height: 18px;
- margin-bottom: 18px;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.progress .bar {
- width: 0%;
- height: 18px;
- color: #ffffff;
- font-size: 12px;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #0e90d2;
- background-image: -moz-linear-gradient(top, #149bdf, #0480be);
- background-image: -ms-linear-gradient(top, #149bdf, #0480be);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
- background-image: -o-linear-gradient(top, #149bdf, #0480be);
- background-image: linear-gradient(top, #149bdf, #0480be);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-transition: width 0.6s ease;
- -moz-transition: width 0.6s ease;
- -ms-transition: width 0.6s ease;
- -o-transition: width 0.6s ease;
- transition: width 0.6s ease;
-}
-.progress-striped .bar {
- background-color: #149bdf;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-background-size: 40px 40px;
- -moz-background-size: 40px 40px;
- -o-background-size: 40px 40px;
- background-size: 40px 40px;
-}
-.progress.active .bar {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- -moz-animation: progress-bar-stripes 2s linear infinite;
- -ms-animation: progress-bar-stripes 2s linear infinite;
- -o-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-danger .bar {
- background-color: #dd514c;
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
-}
-.progress-danger.progress-striped .bar {
- background-color: #ee5f5b;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-success .bar {
- background-color: #5eb95e;
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
- background-image: -o-linear-gradient(top, #62c462, #57a957);
- background-image: linear-gradient(top, #62c462, #57a957);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
-}
-.progress-success.progress-striped .bar {
- background-color: #62c462;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-info .bar {
- background-color: #4bb1cf;
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
- background-image: linear-gradient(top, #5bc0de, #339bb9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
-}
-.progress-info.progress-striped .bar {
- background-color: #5bc0de;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-warning .bar {
- background-color: #e8532e;
- background-image: -moz-linear-gradient(top, #f26643, #da370f);
- background-image: -ms-linear-gradient(top, #f26643, #da370f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f26643), to(#da370f));
- background-image: -webkit-linear-gradient(top, #f26643, #da370f);
- background-image: -o-linear-gradient(top, #f26643, #da370f);
- background-image: linear-gradient(top, #f26643, #da370f);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f26643', endColorstr='#da370f', GradientType=0);
-}
-.progress-warning.progress-striped .bar {
- background-color: #f26643;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.accordion {
- margin-bottom: 20px;
-}
-.accordion-group {
- margin-bottom: 2px;
- border: 1px solid #e5e5e5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.accordion-heading {
- border-bottom: 0;
-}
-.accordion-heading .accordion-toggle {
- display: block;
- padding: 8px 15px;
-}
-.accordion-toggle {
- cursor: pointer;
-}
-.accordion-inner {
- padding: 9px 15px;
- border-top: 1px solid #e5e5e5;
-}
-.carousel {
- position: relative;
- margin-bottom: 20px;
- line-height: 1;
-}
-.carousel-inner {
- overflow: hidden;
- width: 100%;
- position: relative;
-}
-.carousel .item {
- display: none;
- position: relative;
- -webkit-transition: 0.6s ease-in-out left;
- -moz-transition: 0.6s ease-in-out left;
- -ms-transition: 0.6s ease-in-out left;
- -o-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
-}
-.carousel .item > img {
- display: block;
- line-height: 1;
-}
-.carousel .active,
-.carousel .next,
-.carousel .prev {
- display: block;
-}
-.carousel .active {
- left: 0;
-}
-.carousel .next,
-.carousel .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel .next {
- left: 100%;
-}
-.carousel .prev {
- left: -100%;
-}
-.carousel .next.left,
-.carousel .prev.right {
- left: 0;
-}
-.carousel .active.left {
- left: -100%;
-}
-.carousel .active.right {
- left: 100%;
-}
-.carousel-control {
- position: absolute;
- top: 40%;
- left: 15px;
- width: 40px;
- height: 40px;
- margin-top: -20px;
- font-size: 60px;
- font-weight: 100;
- line-height: 30px;
- color: #ffffff;
- text-align: center;
- background: #2c2c2c;
- border: 3px solid #ffffff;
- -webkit-border-radius: 23px;
- -moz-border-radius: 23px;
- border-radius: 23px;
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-.carousel-control.right {
- left: auto;
- right: 15px;
-}
-.carousel-control:hover {
- color: #ffffff;
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-.carousel-caption {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 10px 15px 5px;
- background: #333333;
- background: rgba(0, 0, 0, 0.75);
-}
-.carousel-caption h4,
-.carousel-caption p {
- color: #ffffff;
-}
-.hero-unit {
- padding: 60px;
- margin-bottom: 30px;
- background-color: #eeeeee;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.hero-unit h1 {
- margin-bottom: 0;
- font-size: 60px;
- line-height: 1;
- color: inherit;
- letter-spacing: -1px;
-}
-.hero-unit p {
- font-size: 18px;
- font-weight: 200;
- line-height: 30px;
- color: inherit;
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
-h6 {
- color: inherit;
-}
-.navbar .navbar-inner {
- -webkit-box-shadow: inset 0 -1px #cfcaca;
- -moz-box-shadow: inset 0 -1px #cfcaca;
- box-shadow: inset 0 -1px #cfcaca;
-}
-.navbar .brand {
- padding: 12px 20px 8px;
- font-weight: bold;
-}
-.navbar .brand:hover {
- color: #da370f;
-}
-.navbar .navbar-text {
- padding: 14px 15px 7px;
- line-height: 19px;
- color: #999999;
-}
-.navbar .divider-vertical {
- height: 39px;
- background-color: #eeeeee;
-}
-.navbar .nav > li > a {
- padding: 14px 15px 7px;
- text-shadow: none;
-}
-.navbar .nav > li > a:hover {
- text-decoration: none;
-}
-.navbar .nav .active > a,
-.navbar .nav .active > a:hover {
- background-color: transparent;
-}
-.navbar .navbar-search {
- margin-top: 5px;
-}
-.navbar .navbar-search input[type="text"] {
- margin-bottom: 5px;
-}
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover {
- color: #da370f;
-}
-.navbar .nav li.dropdown .dropdown-toggle .caret {
- border-top-color: #555555;
- border-bottom-color: #555555;
- opacity: 1;
-}
-.navbar .nav li.dropdown .dropdown-toggle:hover .caret,
-.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .dropdown-toggle .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
-}
-.navbar .nav-collapse.collapse .nav li > a {
- color: #555555;
-}
-.navbar .nav-collapse.collapse .nav li > a:hover {
- background-color: #eeeeee;
-}
-div.subnav {
- background-image: none;
- background-color: #fefefe;
- border-bottom: 1px solid transparent;
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
-}
-div.subnav.subnav-fixed {
- -webkit-box-shadow: inset 0 5px #ffffff , 1px 1px 1px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: inset 0 5px #ffffff , 1px 1px 1px rgba(0, 0, 0, 0.2);
- box-shadow: inset 0 5px #ffffff , 1px 1px 1px rgba(0, 0, 0, 0.2);
-}
-div.subnav .nav > li > a {
- padding: 14px 12px 10px;
- color: #555555;
- border-left-color: transparent;
- border-right-color: transparent;
-}
-div.subnav .nav > li > a:hover {
- background-color: transparent;
- color: #da370f;
-}
-div.subnav .nav > li.active > a,
-div.subnav .nav > li.active > a:hover {
- border-left-color: transparent;
- border-right-color: transparent;
- background-color: transparent;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- color: #da370f;
-}
-div.subnav .nav > li.dropdown.open > a,
-div.subnav .nav > li.dropdown.open > a:hover {
- border-left-color: transparent;
- border-right-color: transparent;
- background-color: transparent;
- color: #da370f;
-}
-div.subnav .nav li.dropdown .dropdown-toggle .caret {
- border-top-color: #555555;
- border-bottom-color: #555555;
- opacity: 1;
-}
-div.subnav .nav li.dropdown .dropdown-toggle:hover .caret,
-div.subnav .nav li.dropdown.active .dropdown-toggle .caret,
-div.subnav .nav li.dropdown.open .dropdown-toggle .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
- opacity: 1;
-}
-div.subnav .dropdown.open:hover .dropdown-toggle {
- background-color: transparent;
-}
-@media (max-width: 979px) {
- form.navbar-form,
- form.navbar-search {
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- }
-}
-.nav .nav-header {
- font-size: 13px;
- font-weight: normal;
- text-transform: none;
-}
-.nav-tabs > li > a {
- background-color: #efefef;
- border: 1px solid #ccc;
- color: #555555;
-}
-.nav-tabs > li > a:hover {
- border: 1px solid #ccc;
- background-color: #fbebe9;
- color: #da370f;
-}
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover {
- background-color: #f7f7f7;
-}
-.nav-tabs .dropdown .dropdown-toggle .caret {
- border-top-color: #555555;
- border-bottom-color: #555555;
- opacity: 1;
-}
-.nav-tabs .dropdown:hover .dropdown-toggle .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
-}
-.nav-tabs .dropdown.open .dropdown-toggle {
- background-color: #fbebe9;
- border-color: #ccc;
- color: #da370f;
-}
-.nav-tabs .dropdown.open .dropdown-toggle .caret,
-.nav-tabs .dropdown.open .dropdown-toggle:hover .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
- opacity: 1;
-}
-.nav-tabs .dropdown-menu {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-tabs .dropdown-menu a {
- padding: 8px 15px 3px;
-}
-.tabbable .nav-tabs > li > a,
-.tabbable .nav-tabs > li > a:hover {
- border: 1px solid #ccc;
-}
-.tabbable .nav-tabs > li.active > a {
- border-bottom: 1px solid transparent;
-}
-.tabbable.tabs-below > .nav-tabs > li.active > a,
-.tabbable.tabs-left > .nav-tabs > li.active > a,
-.tabbable.tabs-right > .nav-tabs > li.active > a {
- border-bottom: 1px solid #ccc;
-}
-.nav-pills li > a {
- color: #555555;
-}
-.nav-pills li > a:hover {
- background-color: #fbebe9;
- color: #da370f;
-}
-.nav-pills li.active > a,
-.nav-pills li.active > a:hover {
- background-color: #fbebe9;
- color: #da370f;
-}
-.nav-pills .dropdown .dropdown-toggle .caret {
- border-top-color: #555555;
- border-bottom-color: #555555;
- opacity: 1;
-}
-.nav-pills .dropdown .dropdown-toggle:hover .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
-}
-.nav-pills .dropdown.open .dropdown-toggle,
-.nav-pills .dropdown.open:hover .dropdown-toggle {
- background-color: #fbebe9;
- color: #da370f;
-}
-.nav-pills .dropdown.open .dropdown-toggle .caret,
-.nav-pills .dropdown.open:hover .dropdown-toggle .caret {
- border-top-color: #da370f;
- border-bottom-color: #da370f;
-}
-.nav-list li > a {
- color: #555555;
-}
-.nav-list li > a:hover {
- background-color: #fbebe9;
- color: #da370f;
-}
-.nav-list li.active > a,
-.nav-list li.active > a:hover {
- background-color: #fbebe9;
- color: #da370f;
-}
-legend {
- border-bottom: 1px solid #ddd;
-}
-.navbar-search .search-query {
- border: 1px solid #ddd;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- background-color: #f7f7f7;
- color: #555555;
-}
-.help-inline,
-.help-block {
- font-size: 13px;
-}
-.btn {
- padding: 6px 10px 2px;
-}
-.btn-large {
- padding: 11px 14px 8px;
-}
-.btn-small {
- padding: 5px 9px 3px;
-}
-.btn-micro {
- padding: 3px 6px 1px;
-}
-.modal-header {
- border-bottom: none;
-}
-.modal-header,
-.modal-body {
- background-color: #fefefe;
-}
-.modal-footer {
- background-color: #f7f7f7;
-}
-i[class^="icon-"] {
- opacity: 0.5;
- vertical-align: -2px;
-}
-hr {
- border-bottom: none;
-}
-.progress {
- background-color: #e3e3e3;
- background-image: -moz-linear-gradient(top, #e0e0e0, #e8e8e8);
- background-image: -ms-linear-gradient(top, #e0e0e0, #e8e8e8);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e0e0e0), to(#e8e8e8));
- background-image: -webkit-linear-gradient(top, #e0e0e0, #e8e8e8);
- background-image: -o-linear-gradient(top, #e0e0e0, #e8e8e8);
- background-image: linear-gradient(top, #e0e0e0, #e8e8e8);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e0e0e0', endColorstr='#e8e8e8', GradientType=0);
-}
-.label {
- padding: 4px 4px 3px;
- margin-left: 1px;
- margin-right: 1px;
- line-height: 26px;
- font-weight: normal;
-}
-.hero-unit {
- background-color: #fefefe;
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
-}
-.well {
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- background-color: #ffffff;
- border: none;
-}
-.thumbnail {
- padding: 10px;
- background-color: #ffffff;
-}
-.breadcrumb {
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) , -1px -1px 0 rgba(0, 0, 0, 0.1);
- border: 0px solid transparent;
-}
-.breadcrumb li {
- padding-top: 5px;
- text-shadow: none;
-}
-.breadcrumb a {
- text-shadow: none;
-}
-.breadcrumb a:hover {
- text-decoration: none;
-}
-.pagination li > a {
- padding: 4px 14px 0;
- color: #555555;
-}
-.pagination li > a:hover {
- background-color: #fbebe9;
- color: #da370f;
-}
-.pagination li.active > a {
- background-color: #fbebe9;
- color: #da370f;
-}
-@media (max-width: 979px) {
- .nav-collapse.collapse .navbar-form,
- .nav-collapse.collapse .navbar-search {
- border-top: 1px solid #eeeeee;
- border-bottom: 1px solid #eeeeee;
- }
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
diff --git a/main/css/simplex/default.css b/main/css/simplex/default.css
deleted file mode 100755
index f42fbdeb74..0000000000
--- a/main/css/simplex/default.css
+++ /dev/null
@@ -1,8 +0,0 @@
-@import url('bootstrap.css');
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-footer a:link, footer a:visited {
- color:#366DDC;
-}
\ No newline at end of file
diff --git a/main/css/simplex/images/blue_arrow.png b/main/css/simplex/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/simplex/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/simplex/images/white_arrow.png b/main/css/simplex/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/simplex/images/white_arrow.png and /dev/null differ
diff --git a/main/css/simplex/scorm.css b/main/css/simplex/scorm.css
deleted file mode 100644
index f287f16909..0000000000
--- a/main/css/simplex/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/sober_brown/dataTable.css b/main/css/sober_brown/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/sober_brown/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/sober_brown/default.css b/main/css/sober_brown/default.css
deleted file mode 100755
index 0b4f18392c..0000000000
--- a/main/css/sober_brown/default.css
+++ /dev/null
@@ -1,2498 +0,0 @@
-/*****************************************************
- * MAIN SOBER BROWN *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: bold arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
- height: 100%; /* stick */
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 65%;
- padding: 0 20px 0 20px;
- background-color: #fff;
- min-height: 333px;
- margin-top:0;
- background-color: #ffffff;
-}
-
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
- background-color: #fff;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 115px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #333;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #f3840d;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:18px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- font-size: 12px;
- background-color: #8b8579F;
- color: #666;
- height: 35px;
- background-image: url(images/header.jpg);
- Background-repeat: no-repeat;
-}
-#header1 a {
- color: #333;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-
-#institution {
- float: left;
- font-weight: bold;
- padding-left:17px;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-
-footer {
- background-color: #756e64;
- background-image: url(images/footer.jpg);
- background-repeat:repeat-x;
- color:#fff;
- font-size: 12px;
- overflow:hidden;
- width: 100%;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 4em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #C0C0C0;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
- /* End hide from IE5/mac */
-*/
-/*****************************************************
- * LOGIN AND LANGUAGE FORM *
- *****************************************************/
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
- margin-left: 10px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #dcdcdc;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #999999;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #333333;
- background-color: #fff;
- padding: 0 4px;
-}
-.tool-icon {
- margin-bottom: -3px;
-}
-
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #dcdcdc;
- color: #00407F;
- background-color: #E5EDF9;
-}
-.warning-message {
- border: 1px solid #FFB30F;
- color: #000;
- background-color: #FFEFA7;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #CAF0C7;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #000;
- background-color: #FFD1D1;
-}
-/* New training */
-.bottom-link {
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #dcdcdc;
- padding: 5px;
- margin: 0;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #f0f0f0;
- color: #666666;
- border: 1px solid #bbb;
- padding: 10px 10px 10px 10px;
-}
-.note b {
- margin: 10px 10px 5px 0px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #dcdcdc;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 12px;
- border: 1px solid gray;
- background-color: #f0f0f0;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Report section */
-div.report_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.report_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
- min-height:200px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- /*border-bottom: 1px solid #666666;*/
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- /*border-bottom: 1px solid #666666;*/
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- /*border-bottom: 1px solid #666666;*/
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- /*border-bottom: 1px solid #666666;*/
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 12px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 20px;
- font-weight: bold;
- color: #333;
-}
-span.blog_subttitle {
- font-size: 12px;
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #333;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #333;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-size: 12px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #333;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #aaa;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #F3840D;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-#glossary_menu li {
- LIST-STYLE-TYPE: none;
- display: inline;
- padding-left:5px;
-}
-.glossary_divider {
- text-transform: capitalize;
- background-color: #CCCCCC;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-.glossary_word {
- background-color: #F7F7F7;
- padding: 3px;
- font-weight: bold;
- margin-bottom: 3px;
- margin-top: 10px;
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0 10;
- padding: 0;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-.skip {
- display: none;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-#survey_subtitle {
- background-color:#dcdcdc;
- color:#000;
- padding:2px;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #999;
-}
-.survey_question_wrapper {
- border: 1px solid #999;
-}
-.survey_question {
- /* 264269 4271b5 E5EDF9 */
- background-color:#f0f0f0;
- color:#999;
- padding:5px;/*border: 1px solid #264269;*/
-}
-.survey_question_options {
- /* 264269 4271b5 E5EDF9 */
- background-color:#FFF;
- color:#000;
- padding:5px;/*border: 1px solid #264269;*/
-}
-/*
-|----------------------------------------------------------------------------
-| Added: to fit img and blocks in home page
-|----------------------------------------------------------------------------
-|
-*/
-#hellomindfactory {
- border: 1px solid #ccc;
- margin:-14px 0 0 0;
- width:690px;
- height:428px;
-}
-#tophellomindfactory {
- margin: 10px 5px 5px 5px;
- height:200px;
- width:680px;
-}
-.topa {
- background:transparent url('images/logoa4.gif') no-repeat;
-}
-.topb {
- background:transparent url('images/logob4.gif') no-repeat;
-}
-#bottomhellomindfactory {
- margin: 5px;
- height:200px;
- width:680px;
- background:transparent url('images/textologo.jpg') no-repeat;
-}
-/*
-.copyright {
- display:none;
-}
-*/
-
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #000;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #000;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #000;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------
- Learning path
-------------------------------------------------------------------------------
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-#top_corner {
- display:none;
- position: relative;
- float:right;
- width:317px;
- height:100px;
- background: transparent;
- background-image: url("images/top_corner.png");
-}
-#bottom_corner {
- display:none;
- position: relative;
- top:-15px;
- float:right;
- width:317px;
- height:80px;
- background: transparent url("images/bottom_corner.png") no-repeat top right;
- padding: 15px 0px 0px 0px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #716d61;
- border-top:1px dotted #716d61;
- /*height:35px;*/
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- /*height:35px;*/
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- /*background:url(images/actions.jpg) repeat-x;*/
- vertical-align:middle;
-}
-.actions-message {
- white-space: nowrap;
- padding: 2px;
- background-color: #f0f0f0;
- border: 1px solid #bbb;
-}
-/**********************************************
- * EXERCISE TOOL *
- **********************************************/
-.exercice_form {
- width: 300px;
-}
-#validationButton {
- text-decoration: none;
- margin: 5px;
- /*border:1px solid #999999;*/
- /*background:#F0F0F0; */
- padding: 3px;
- padding-left:10px;
- padding-right:10px;
- font-weight:bold;
- color:#666;
-}
-
-.exercise_scenario_label {
-}
-.exercise_scenario_element {
-}
-span.checkbox {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/checkbox.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-span.radio {
- width: 19px;
- height: 25px;
- padding: 0 5px 0 0;
- background: url(images/radio.gif) no-repeat;
- display: block;
- clear: left;
- float: left;
-}
-#question_title {
-}
-#question_description {
- padding-left:5px;
- padding-top:10px;
-}
-#question_score {
- padding-left:5px;
- padding-top:10px;
- padding-bottom:10px;
- font-weight:bold;
-}
-#question_feedback {
- background-color:#FCF7BA;
- border:1px solid #CCCCCC;
- color:#666666;
- font-size:11px;
- font-weight:bold;
- list-style-type:none;
- margin-top:5px;
- padding:5px;
-}
-#exercise_close_link {
- background: url(images/close.gif) no-repeat;
- padding-left: 20px;
-}
-#exercise_close_link:hover {
- background: url(images/close_highlight.gif) no-repeat;
- padding-left: 20px;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover{
- background-color:#cbcbcb;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/sober_brown/frames.css b/main/css/sober_brown/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/sober_brown/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/sober_brown/images/2leftarrow.gif b/main/css/sober_brown/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/sober_brown/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/2rightarrow.gif b/main/css/sober_brown/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/sober_brown/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/bar_1.gif b/main/css/sober_brown/images/bar_1.gif
deleted file mode 100755
index 48e9556050..0000000000
Binary files a/main/css/sober_brown/images/bar_1.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/bar_1m.gif b/main/css/sober_brown/images/bar_1m.gif
deleted file mode 100755
index 3e4591771f..0000000000
Binary files a/main/css/sober_brown/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/bar_1r.gif b/main/css/sober_brown/images/bar_1r.gif
deleted file mode 100755
index 91a679a6a2..0000000000
Binary files a/main/css/sober_brown/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/bar_1u.gif b/main/css/sober_brown/images/bar_1u.gif
deleted file mode 100755
index 8b1380c904..0000000000
Binary files a/main/css/sober_brown/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/blue_arrow.png b/main/css/sober_brown/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/sober_brown/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/sober_brown/images/button_accept.gif b/main/css/sober_brown/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/sober_brown/images/button_accept.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_add.gif b/main/css/sober_brown/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/sober_brown/images/button_add.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_back.gif b/main/css/sober_brown/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/sober_brown/images/button_back.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_back.jpg b/main/css/sober_brown/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/sober_brown/images/button_back.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/button_delete.gif b/main/css/sober_brown/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/sober_brown/images/button_delete.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_login.gif b/main/css/sober_brown/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/sober_brown/images/button_login.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_minus.gif b/main/css/sober_brown/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/sober_brown/images/button_minus.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_next.gif b/main/css/sober_brown/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/sober_brown/images/button_next.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_plus.gif b/main/css/sober_brown/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/sober_brown/images/button_plus.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_refresh.gif b/main/css/sober_brown/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/sober_brown/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_search.gif b/main/css/sober_brown/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/sober_brown/images/button_search.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/button_upload.gif b/main/css/sober_brown/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/sober_brown/images/button_upload.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/Sorting icons.psd b/main/css/sober_brown/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/sober_brown/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/back_disabled.jpg b/main/css/sober_brown/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/sober_brown/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/back_enabled.jpg b/main/css/sober_brown/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/sober_brown/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/favicon.ico b/main/css/sober_brown/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/sober_brown/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/forward_disabled.jpg b/main/css/sober_brown/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/sober_brown/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/forward_enabled.jpg b/main/css/sober_brown/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/sober_brown/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/sort_asc.png b/main/css/sober_brown/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/sober_brown/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/sort_asc_disabled.png b/main/css/sober_brown/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/sober_brown/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/sort_both.png b/main/css/sober_brown/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/sober_brown/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/sort_desc.png b/main/css/sober_brown/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/sober_brown/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/sober_brown/images/dataTable/sort_desc_disabled.png b/main/css/sober_brown/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/sober_brown/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/sober_brown/images/fondoFooter.jpg b/main/css/sober_brown/images/fondoFooter.jpg
deleted file mode 100755
index e797544a19..0000000000
Binary files a/main/css/sober_brown/images/fondoFooter.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/fondoHeader3.jpg b/main/css/sober_brown/images/fondoHeader3.jpg
deleted file mode 100755
index 202af3b937..0000000000
Binary files a/main/css/sober_brown/images/fondoHeader3.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/fondoNav.jpg b/main/css/sober_brown/images/fondoNav.jpg
deleted file mode 100755
index 2fda96583b..0000000000
Binary files a/main/css/sober_brown/images/fondoNav.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/footer.jpg b/main/css/sober_brown/images/footer.jpg
deleted file mode 100755
index 5c6f61b6b9..0000000000
Binary files a/main/css/sober_brown/images/footer.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/header.jpg b/main/css/sober_brown/images/header.jpg
deleted file mode 100755
index 104a793c7a..0000000000
Binary files a/main/css/sober_brown/images/header.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/help2.png b/main/css/sober_brown/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/sober_brown/images/help2.png and /dev/null differ
diff --git a/main/css/sober_brown/images/index.html b/main/css/sober_brown/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/sober_brown/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/sober_brown/images/loading.gif b/main/css/sober_brown/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/sober_brown/images/loading.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/portal.png b/main/css/sober_brown/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/sober_brown/images/portal.png and /dev/null differ
diff --git a/main/css/sober_brown/images/refresh.png b/main/css/sober_brown/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/sober_brown/images/refresh.png and /dev/null differ
diff --git a/main/css/sober_brown/images/shadow.gif b/main/css/sober_brown/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/sober_brown/images/shadow.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/tab.png b/main/css/sober_brown/images/tab.png
deleted file mode 100755
index 5a4c86458b..0000000000
Binary files a/main/css/sober_brown/images/tab.png and /dev/null differ
diff --git a/main/css/sober_brown/images/tab_right.gif b/main/css/sober_brown/images/tab_right.gif
deleted file mode 100755
index 97eb50b75c..0000000000
Binary files a/main/css/sober_brown/images/tab_right.gif and /dev/null differ
diff --git a/main/css/sober_brown/images/tab_right.jpg b/main/css/sober_brown/images/tab_right.jpg
deleted file mode 100755
index 4b0f427d06..0000000000
Binary files a/main/css/sober_brown/images/tab_right.jpg and /dev/null differ
diff --git a/main/css/sober_brown/images/white_arrow.png b/main/css/sober_brown/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/sober_brown/images/white_arrow.png and /dev/null differ
diff --git a/main/css/sober_brown/learnpath.css b/main/css/sober_brown/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/sober_brown/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/sober_brown/print.css b/main/css/sober_brown/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/sober_brown/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/sober_brown/scorm.css b/main/css/sober_brown/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/sober_brown/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/sober_brown/scormfs.css b/main/css/sober_brown/scormfs.css
deleted file mode 100755
index 4d4852ab18..0000000000
--- a/main/css/sober_brown/scormfs.css
+++ /dev/null
@@ -1,80 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 60px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -12px;
- margin-left: 4em;
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-.preview_image {
- text-align: right;
- margin-right: 5px;
- padding-left: 15px;
-}
diff --git a/main/css/spacelab/bootstrap.css b/main/css/spacelab/bootstrap.css
deleted file mode 100755
index da0185eb09..0000000000
--- a/main/css/spacelab/bootstrap.css
+++ /dev/null
@@ -1,4648 +0,0 @@
-/*!
- * Bootstrap v2.0.4
- *
- * Copyright 2012 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
- */
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-audio:not([controls]) {
- display: none;
-}
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-a:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-a:hover,
-a:active {
- outline: 0;
-}
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- max-width: 100%;
- vertical-align: middle;
- border: 0;
- -ms-interpolation-mode: bicubic;
-}
-#map_canvas img {
- max-width: none;
-}
-button,
-input,
-select,
-textarea {
- margin: 0;
- font-size: 100%;
- vertical-align: middle;
-}
-button,
-input {
- *overflow: visible;
- line-height: normal;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button,
-input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
-}
-input[type="search"] {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-decoration,
-input[type="search"]::-webkit-search-cancel-button {
- -webkit-appearance: none;
-}
-textarea {
- overflow: auto;
- vertical-align: top;
-}
-.clearfix {
- *zoom: 1;
-}
-.clearfix:before,
-.clearfix:after {
- display: table;
- content: "";
-}
-.clearfix:after {
- clear: both;
-}
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-body {
- margin: 0;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- line-height: 18px;
- color: #333333;
- background-color: #ffffff;
-}
-a {
- color: #4183c4;
- text-decoration: none;
-}
-a:hover {
- color: #4183c4;
- text-decoration: underline;
-}
-.row {
- margin-left: -20px;
- *zoom: 1;
-}
-.row:before,
-.row:after {
- display: table;
- content: "";
-}
-.row:after {
- clear: both;
-}
-[class*="span"] {
- float: left;
- margin-left: 20px;
-}
-.container,
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.span12 {
- width: 940px;
-}
-.span11 {
- width: 860px;
-}
-.span10 {
- width: 780px;
-}
-.span9 {
- width: 700px;
-}
-.span8 {
- width: 620px;
-}
-.span7 {
- width: 540px;
-}
-.span6 {
- width: 460px;
-}
-.span5 {
- width: 380px;
-}
-.span4 {
- width: 300px;
-}
-.span3 {
- width: 220px;
-}
-.span2 {
- width: 140px;
-}
-.span1 {
- width: 60px;
-}
-.offset12 {
- margin-left: 980px;
-}
-.offset11 {
- margin-left: 900px;
-}
-.offset10 {
- margin-left: 820px;
-}
-.offset9 {
- margin-left: 740px;
-}
-.offset8 {
- margin-left: 660px;
-}
-.offset7 {
- margin-left: 580px;
-}
-.offset6 {
- margin-left: 500px;
-}
-.offset5 {
- margin-left: 420px;
-}
-.offset4 {
- margin-left: 340px;
-}
-.offset3 {
- margin-left: 260px;
-}
-.offset2 {
- margin-left: 180px;
-}
-.offset1 {
- margin-left: 100px;
-}
-.row-fluid {
- width: 100%;
- *zoom: 1;
-}
-.row-fluid:before,
-.row-fluid:after {
- display: table;
- content: "";
-}
-.row-fluid:after {
- clear: both;
-}
-.row-fluid [class*="span"] {
- display: block;
- width: 100%;
- min-height: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- float: left;
- margin-left: 2.127659574%;
- *margin-left: 2.0744680846382977%;
-}
-.row-fluid [class*="span"]:first-child {
- margin-left: 0;
-}
-.row-fluid .span12 {
- width: 99.99999998999999%;
- *width: 99.94680850063828%;
-}
-.row-fluid .span11 {
- width: 91.489361693%;
- *width: 91.4361702036383%;
-}
-.row-fluid .span10 {
- width: 82.97872339599999%;
- *width: 82.92553190663828%;
-}
-.row-fluid .span9 {
- width: 74.468085099%;
- *width: 74.4148936096383%;
-}
-.row-fluid .span8 {
- width: 65.95744680199999%;
- *width: 65.90425531263828%;
-}
-.row-fluid .span7 {
- width: 57.446808505%;
- *width: 57.3936170156383%;
-}
-.row-fluid .span6 {
- width: 48.93617020799999%;
- *width: 48.88297871863829%;
-}
-.row-fluid .span5 {
- width: 40.425531911%;
- *width: 40.3723404216383%;
-}
-.row-fluid .span4 {
- width: 31.914893614%;
- *width: 31.8617021246383%;
-}
-.row-fluid .span3 {
- width: 23.404255317%;
- *width: 23.3510638276383%;
-}
-.row-fluid .span2 {
- width: 14.89361702%;
- *width: 14.8404255306383%;
-}
-.row-fluid .span1 {
- width: 6.382978723%;
- *width: 6.329787233638298%;
-}
-.container {
- margin-right: auto;
- margin-left: auto;
- *zoom: 1;
-}
-.container:before,
-.container:after {
- display: table;
- content: "";
-}
-.container:after {
- clear: both;
-}
-.container-fluid {
- padding-right: 20px;
- padding-left: 20px;
- *zoom: 1;
-}
-.container-fluid:before,
-.container-fluid:after {
- display: table;
- content: "";
-}
-.container-fluid:after {
- clear: both;
-}
-p {
- margin: 0 0 9px;
-}
-p small {
- font-size: 11px;
- color: #999999;
-}
-.lead {
- margin-bottom: 18px;
- font-size: 20px;
- font-weight: 200;
- line-height: 27px;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- margin: 0;
- font-family: inherit;
- font-weight: bold;
- color: inherit;
- text-rendering: optimizelegibility;
-}
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small {
- font-weight: normal;
- color: #999999;
-}
-h1 {
- font-size: 30px;
- line-height: 36px;
-}
-h1 small {
- font-size: 18px;
-}
-h2 {
- font-size: 24px;
- line-height: 36px;
-}
-h2 small {
- font-size: 18px;
-}
-h3 {
- font-size: 18px;
- line-height: 27px;
-}
-h3 small {
- font-size: 14px;
-}
-h4,
-h5,
-h6 {
- line-height: 18px;
-}
-h4 {
- font-size: 14px;
-}
-h4 small {
- font-size: 12px;
-}
-h5 {
- font-size: 12px;
-}
-h6 {
- font-size: 11px;
- color: #999999;
- text-transform: uppercase;
-}
-.page-header {
- padding-bottom: 17px;
- margin: 18px 0;
- border-bottom: 1px solid #f5f5f5;
-}
-.page-header h1 {
- line-height: 1;
-}
-ul,
-ol {
- padding: 0;
- margin: 0 0 9px 25px;
-}
-ul ul,
-ul ol,
-ol ol,
-ol ul {
- margin-bottom: 0;
-}
-ul {
- list-style: disc;
-}
-ol {
- list-style: decimal;
-}
-li {
- line-height: 18px;
-}
-ul.unstyled,
-ol.unstyled {
- margin-left: 0;
- list-style: none;
-}
-dl {
- margin-bottom: 18px;
-}
-dt,
-dd {
- line-height: 18px;
-}
-dt {
- font-weight: bold;
- line-height: 17px;
-}
-dd {
- margin-left: 9px;
-}
-.dl-horizontal dt {
- float: left;
- width: 120px;
- clear: left;
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.dl-horizontal dd {
- margin-left: 130px;
-}
-hr {
- margin: 18px 0;
- border: 0;
- border-top: 1px solid #f5f5f5;
- border-bottom: 1px solid #ffffff;
-}
-strong {
- font-weight: bold;
-}
-em {
- font-style: italic;
-}
-.muted {
- color: #999999;
-}
-abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #999999;
-}
-abbr.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-blockquote {
- padding: 0 0 0 15px;
- margin: 0 0 18px;
- border-left: 5px solid #f5f5f5;
-}
-blockquote p {
- margin-bottom: 0;
- font-size: 16px;
- font-weight: 300;
- line-height: 22.5px;
-}
-blockquote small {
- display: block;
- line-height: 18px;
- color: #999999;
-}
-blockquote small:before {
- content: '\2014 \00A0';
-}
-blockquote.pull-right {
- float: right;
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #f5f5f5;
- border-left: 0;
-}
-blockquote.pull-right p,
-blockquote.pull-right small {
- text-align: right;
-}
-q:before,
-q:after,
-blockquote:before,
-blockquote:after {
- content: "";
-}
-address {
- display: block;
- margin-bottom: 18px;
- font-style: normal;
- line-height: 18px;
-}
-small {
- font-size: 100%;
-}
-cite {
- font-style: normal;
-}
-code,
-pre {
- padding: 0 3px 2px;
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 12px;
- color: #333333;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-code {
- padding: 2px 4px;
- color: #d14;
- background-color: #f7f7f9;
- border: 1px solid #e1e1e8;
-}
-pre {
- display: block;
- padding: 8.5px;
- margin: 0 0 9px;
- font-size: 12.025px;
- line-height: 18px;
- word-break: break-all;
- word-wrap: break-word;
- white-space: pre;
- white-space: pre-wrap;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-pre.prettyprint {
- margin-bottom: 18px;
-}
-pre code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border: 0;
-}
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-form {
- margin: 0 0 18px;
-}
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
-}
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 27px;
- font-size: 19.5px;
- line-height: 36px;
- color: #333333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-legend small {
- font-size: 13.5px;
- color: #999999;
-}
-label,
-input,
-button,
-select,
-textarea {
- font-size: 13px;
- font-weight: normal;
- line-height: 18px;
-}
-input,
-button,
-select,
-textarea {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-label {
- display: block;
- margin-bottom: 5px;
-}
-select,
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- display: inline-block;
- height: 18px;
- padding: 4px;
- margin-bottom: 9px;
- font-size: 13px;
- line-height: 18px;
- color: #555555;
-}
-input,
-textarea {
- width: 210px;
-}
-textarea {
- height: auto;
-}
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- background-color: #ffffff;
- border: 1px solid #cccccc;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
- transition: border linear 0.2s, box-shadow linear 0.2s;
-}
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="datetime"]:focus,
-input[type="datetime-local"]:focus,
-input[type="date"]:focus,
-input[type="month"]:focus,
-input[type="time"]:focus,
-input[type="week"]:focus,
-input[type="number"]:focus,
-input[type="email"]:focus,
-input[type="url"]:focus,
-input[type="search"]:focus,
-input[type="tel"]:focus,
-input[type="color"]:focus,
-.uneditable-input:focus {
- border-color: rgba(82, 168, 236, 0.8);
- outline: 0;
- outline: thin dotted \9;
- /* IE6-9 */
-
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
-}
-input[type="radio"],
-input[type="checkbox"] {
- margin: 3px 0;
- *margin-top: 0;
- /* IE7 */
-
- line-height: normal;
- cursor: pointer;
-}
-input[type="submit"],
-input[type="reset"],
-input[type="button"],
-input[type="radio"],
-input[type="checkbox"] {
- width: auto;
-}
-.uneditable-textarea {
- width: auto;
- height: auto;
-}
-select,
-input[type="file"] {
- height: 28px;
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
-
- *margin-top: 4px;
- /* For IE7, add top margin to align select with labels */
-
- line-height: 28px;
-}
-select {
- width: 220px;
- border: 1px solid #bbb;
-}
-select[multiple],
-select[size] {
- height: auto;
-}
-select:focus,
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.radio,
-.checkbox {
- min-height: 18px;
- padding-left: 18px;
-}
-.radio input[type="radio"],
-.checkbox input[type="checkbox"] {
- float: left;
- margin-left: -18px;
-}
-.controls > .radio:first-child,
-.controls > .checkbox:first-child {
- padding-top: 5px;
-}
-.radio.inline,
-.checkbox.inline {
- display: inline-block;
- padding-top: 5px;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.radio.inline + .radio.inline,
-.checkbox.inline + .checkbox.inline {
- margin-left: 10px;
-}
-.input-mini {
- width: 60px;
-}
-.input-small {
- width: 90px;
-}
-.input-medium {
- width: 150px;
-}
-.input-large {
- width: 210px;
-}
-.input-xlarge {
- width: 270px;
-}
-.input-xxlarge {
- width: 530px;
-}
-input[class*="span"],
-select[class*="span"],
-textarea[class*="span"],
-.uneditable-input[class*="span"],
-.row-fluid input[class*="span"],
-.row-fluid select[class*="span"],
-.row-fluid textarea[class*="span"],
-.row-fluid .uneditable-input[class*="span"] {
- float: none;
- margin-left: 0;
-}
-.input-append input[class*="span"],
-.input-append .uneditable-input[class*="span"],
-.input-prepend input[class*="span"],
-.input-prepend .uneditable-input[class*="span"],
-.row-fluid .input-prepend [class*="span"],
-.row-fluid .input-append [class*="span"] {
- display: inline-block;
-}
-input,
-textarea,
-.uneditable-input {
- margin-left: 0;
-}
-input.span12, textarea.span12, .uneditable-input.span12 {
- width: 930px;
-}
-input.span11, textarea.span11, .uneditable-input.span11 {
- width: 850px;
-}
-input.span10, textarea.span10, .uneditable-input.span10 {
- width: 770px;
-}
-input.span9, textarea.span9, .uneditable-input.span9 {
- width: 690px;
-}
-input.span8, textarea.span8, .uneditable-input.span8 {
- width: 610px;
-}
-input.span7, textarea.span7, .uneditable-input.span7 {
- width: 530px;
-}
-input.span6, textarea.span6, .uneditable-input.span6 {
- width: 450px;
-}
-input.span5, textarea.span5, .uneditable-input.span5 {
- width: 370px;
-}
-input.span4, textarea.span4, .uneditable-input.span4 {
- width: 290px;
-}
-input.span3, textarea.span3, .uneditable-input.span3 {
- width: 210px;
-}
-input.span2, textarea.span2, .uneditable-input.span2 {
- width: 130px;
-}
-input.span1, textarea.span1, .uneditable-input.span1 {
- width: 50px;
-}
-input[disabled],
-select[disabled],
-textarea[disabled],
-input[readonly],
-select[readonly],
-textarea[readonly] {
- cursor: not-allowed;
- background-color: #f5f5f5;
- border-color: #ddd;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"][readonly],
-input[type="checkbox"][readonly] {
- background-color: transparent;
-}
-.control-group.warning > label,
-.control-group.warning .help-block,
-.control-group.warning .help-inline {
- color: #393939;
-}
-.control-group.warning .checkbox,
-.control-group.warning .radio,
-.control-group.warning input,
-.control-group.warning select,
-.control-group.warning textarea {
- color: #393939;
- border-color: #393939;
-}
-.control-group.warning .checkbox:focus,
-.control-group.warning .radio:focus,
-.control-group.warning input:focus,
-.control-group.warning select:focus,
-.control-group.warning textarea:focus {
- border-color: #202020;
- -webkit-box-shadow: 0 0 6px #6c6c6c;
- -moz-box-shadow: 0 0 6px #6c6c6c;
- box-shadow: 0 0 6px #6c6c6c;
-}
-.control-group.warning .input-prepend .add-on,
-.control-group.warning .input-append .add-on {
- color: #393939;
- background-color: #f5f3b4;
- border-color: #393939;
-}
-.control-group.error > label,
-.control-group.error .help-block,
-.control-group.error .help-inline {
- color: #393939;
-}
-.control-group.error .checkbox,
-.control-group.error .radio,
-.control-group.error input,
-.control-group.error select,
-.control-group.error textarea {
- color: #393939;
- border-color: #393939;
-}
-.control-group.error .checkbox:focus,
-.control-group.error .radio:focus,
-.control-group.error input:focus,
-.control-group.error select:focus,
-.control-group.error textarea:focus {
- border-color: #202020;
- -webkit-box-shadow: 0 0 6px #6c6c6c;
- -moz-box-shadow: 0 0 6px #6c6c6c;
- box-shadow: 0 0 6px #6c6c6c;
-}
-.control-group.error .input-prepend .add-on,
-.control-group.error .input-append .add-on {
- color: #393939;
- background-color: #ffe9e9;
- border-color: #393939;
-}
-.control-group.success > label,
-.control-group.success .help-block,
-.control-group.success .help-inline {
- color: #333333;
-}
-.control-group.success .checkbox,
-.control-group.success .radio,
-.control-group.success input,
-.control-group.success select,
-.control-group.success textarea {
- color: #333333;
- border-color: #333333;
-}
-.control-group.success .checkbox:focus,
-.control-group.success .radio:focus,
-.control-group.success input:focus,
-.control-group.success select:focus,
-.control-group.success textarea:focus {
- border-color: #1a1a1a;
- -webkit-box-shadow: 0 0 6px #666666;
- -moz-box-shadow: 0 0 6px #666666;
- box-shadow: 0 0 6px #666666;
-}
-.control-group.success .input-prepend .add-on,
-.control-group.success .input-append .add-on {
- color: #333333;
- background-color: #bedebe;
- border-color: #333333;
-}
-input:focus:required:invalid,
-textarea:focus:required:invalid,
-select:focus:required:invalid {
- color: #b94a48;
- border-color: #ee5f5b;
-}
-input:focus:required:invalid:focus,
-textarea:focus:required:invalid:focus,
-select:focus:required:invalid:focus {
- border-color: #e9322d;
- -webkit-box-shadow: 0 0 6px #f8b9b7;
- -moz-box-shadow: 0 0 6px #f8b9b7;
- box-shadow: 0 0 6px #f8b9b7;
-}
-.form-actions {
- padding: 17px 20px 18px;
- margin-top: 18px;
- margin-bottom: 18px;
- background-color: #f5f5f5;
- border-top: 1px solid #e5e5e5;
- *zoom: 1;
-}
-.form-actions:before,
-.form-actions:after {
- display: table;
- content: "";
-}
-.form-actions:after {
- clear: both;
-}
-.uneditable-input {
- overflow: hidden;
- white-space: nowrap;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #eee;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-}
-:-moz-placeholder {
- color: #999999;
-}
-:-ms-input-placeholder {
- color: #999999;
-}
-::-webkit-input-placeholder {
- color: #999999;
-}
-.help-block,
-.help-inline {
- color: #555555;
-}
-.help-block {
- display: block;
- margin-bottom: 9px;
-}
-.help-inline {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- vertical-align: middle;
- padding-left: 5px;
-}
-.input-prepend,
-.input-append {
- margin-bottom: 5px;
-}
-.input-prepend input,
-.input-append input,
-.input-prepend select,
-.input-append select,
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- position: relative;
- margin-bottom: 0;
- *margin-left: 0;
- vertical-align: middle;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.input-prepend input:focus,
-.input-append input:focus,
-.input-prepend select:focus,
-.input-append select:focus,
-.input-prepend .uneditable-input:focus,
-.input-append .uneditable-input:focus {
- z-index: 2;
-}
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- border-left-color: #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on {
- display: inline-block;
- width: auto;
- height: 18px;
- min-width: 16px;
- padding: 4px 5px;
- font-weight: normal;
- line-height: 18px;
- text-align: center;
- text-shadow: 0 1px 0 #ffffff;
- vertical-align: middle;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
-}
-.input-prepend .add-on,
-.input-append .add-on,
-.input-prepend .btn,
-.input-append .btn {
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend .active,
-.input-append .active {
- background-color: #fafefa;
- border-color: #84de81;
-}
-.input-prepend .add-on,
-.input-prepend .btn {
- margin-right: -1px;
-}
-.input-prepend .add-on:first-child,
-.input-prepend .btn:first-child {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-append input,
-.input-append select,
-.input-append .uneditable-input {
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-append .uneditable-input {
- border-right-color: #ccc;
- border-left-color: #eee;
-}
-.input-append .add-on:last-child,
-.input-append .btn:last-child {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.input-prepend.input-append input,
-.input-prepend.input-append select,
-.input-prepend.input-append .uneditable-input {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.input-prepend.input-append .add-on:first-child,
-.input-prepend.input-append .btn:first-child {
- margin-right: -1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.input-prepend.input-append .add-on:last-child,
-.input-prepend.input-append .btn:last-child {
- margin-left: -1px;
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.search-query {
- padding-right: 14px;
- padding-right: 4px \9;
- padding-left: 14px;
- padding-left: 4px \9;
- /* IE7-8 doesn't have border-radius, so don't indent the padding */
-
- margin-bottom: 0;
- -webkit-border-radius: 14px;
- -moz-border-radius: 14px;
- border-radius: 14px;
-}
-.form-search input,
-.form-inline input,
-.form-horizontal input,
-.form-search textarea,
-.form-inline textarea,
-.form-horizontal textarea,
-.form-search select,
-.form-inline select,
-.form-horizontal select,
-.form-search .help-inline,
-.form-inline .help-inline,
-.form-horizontal .help-inline,
-.form-search .uneditable-input,
-.form-inline .uneditable-input,
-.form-horizontal .uneditable-input,
-.form-search .input-prepend,
-.form-inline .input-prepend,
-.form-horizontal .input-prepend,
-.form-search .input-append,
-.form-inline .input-append,
-.form-horizontal .input-append {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-bottom: 0;
-}
-.form-search .hide,
-.form-inline .hide,
-.form-horizontal .hide {
- display: none;
-}
-.form-search label,
-.form-inline label {
- display: inline-block;
-}
-.form-search .input-append,
-.form-inline .input-append,
-.form-search .input-prepend,
-.form-inline .input-prepend {
- margin-bottom: 0;
-}
-.form-search .radio,
-.form-search .checkbox,
-.form-inline .radio,
-.form-inline .checkbox {
- padding-left: 0;
- margin-bottom: 0;
- vertical-align: middle;
-}
-.form-search .radio input[type="radio"],
-.form-search .checkbox input[type="checkbox"],
-.form-inline .radio input[type="radio"],
-.form-inline .checkbox input[type="checkbox"] {
- float: left;
- margin-right: 3px;
- margin-left: 0;
-}
-.control-group {
- margin-bottom: 9px;
-}
-legend + .control-group {
- margin-top: 18px;
- -webkit-margin-top-collapse: separate;
-}
-.form-horizontal .control-group {
- margin-bottom: 18px;
- *zoom: 1;
-}
-.form-horizontal .control-group:before,
-.form-horizontal .control-group:after {
- display: table;
- content: "";
-}
-.form-horizontal .control-group:after {
- clear: both;
-}
-.form-horizontal .control-label {
- float: left;
- width: 140px;
- padding-top: 5px;
- text-align: right;
-}
-.form-horizontal .controls {
- *display: inline-block;
- *padding-left: 20px;
- margin-left: 160px;
- *margin-left: 0;
-}
-.form-horizontal .controls:first-child {
- *padding-left: 160px;
-}
-.form-horizontal .help-block {
- margin-top: 9px;
- margin-bottom: 0;
-}
-.form-horizontal .form-actions {
- padding-left: 160px;
-}
-table {
- max-width: 100%;
- background-color: transparent;
- border-collapse: collapse;
- border-spacing: 0;
-}
-.table {
- width: 100%;
- margin-bottom: 18px;
-}
-.table th,
-.table td {
- padding: 8px;
- line-height: 18px;
- text-align: left;
- vertical-align: top;
- border-top: 1px solid #dddddd;
-}
-.table th {
- font-weight: bold;
-}
-.table thead th {
- vertical-align: bottom;
-}
-.table caption + thead tr:first-child th,
-.table caption + thead tr:first-child td,
-.table colgroup + thead tr:first-child th,
-.table colgroup + thead tr:first-child td,
-.table thead:first-child tr:first-child th,
-.table thead:first-child tr:first-child td {
- border-top: 0;
-}
-.table tbody + tbody {
- border-top: 2px solid #dddddd;
-}
-.table-condensed th,
-.table-condensed td {
- padding: 4px 5px;
-}
-.table-bordered {
- border: 1px solid #dddddd;
- border-collapse: separate;
- *border-collapse: collapsed;
- border-left: 0;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.table-bordered th,
-.table-bordered td {
- border-left: 1px solid #dddddd;
-}
-.table-bordered caption + thead tr:first-child th,
-.table-bordered caption + tbody tr:first-child th,
-.table-bordered caption + tbody tr:first-child td,
-.table-bordered colgroup + thead tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child th,
-.table-bordered colgroup + tbody tr:first-child td,
-.table-bordered thead:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child th,
-.table-bordered tbody:first-child tr:first-child td {
- border-top: 0;
-}
-.table-bordered thead:first-child tr:first-child th:first-child,
-.table-bordered tbody:first-child tr:first-child td:first-child {
- -webkit-border-top-left-radius: 4px;
- border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
-}
-.table-bordered thead:first-child tr:first-child th:last-child,
-.table-bordered tbody:first-child tr:first-child td:last-child {
- -webkit-border-top-right-radius: 4px;
- border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:first-child,
-.table-bordered tbody:last-child tr:last-child td:first-child {
- -webkit-border-radius: 0 0 0 4px;
- -moz-border-radius: 0 0 0 4px;
- border-radius: 0 0 0 4px;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
-}
-.table-bordered thead:last-child tr:last-child th:last-child,
-.table-bordered tbody:last-child tr:last-child td:last-child {
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
-}
-.table-striped tbody tr:nth-child(odd) td,
-.table-striped tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
-}
-.table tbody tr:hover td,
-.table tbody tr:hover th {
- background-color: #f5f5f5;
-}
-table .span1 {
- float: none;
- width: 44px;
- margin-left: 0;
-}
-table .span2 {
- float: none;
- width: 124px;
- margin-left: 0;
-}
-table .span3 {
- float: none;
- width: 204px;
- margin-left: 0;
-}
-table .span4 {
- float: none;
- width: 284px;
- margin-left: 0;
-}
-table .span5 {
- float: none;
- width: 364px;
- margin-left: 0;
-}
-table .span6 {
- float: none;
- width: 444px;
- margin-left: 0;
-}
-table .span7 {
- float: none;
- width: 524px;
- margin-left: 0;
-}
-table .span8 {
- float: none;
- width: 604px;
- margin-left: 0;
-}
-table .span9 {
- float: none;
- width: 684px;
- margin-left: 0;
-}
-table .span10 {
- float: none;
- width: 764px;
- margin-left: 0;
-}
-table .span11 {
- float: none;
- width: 844px;
- margin-left: 0;
-}
-table .span12 {
- float: none;
- width: 924px;
- margin-left: 0;
-}
-table .span13 {
- float: none;
- width: 1004px;
- margin-left: 0;
-}
-table .span14 {
- float: none;
- width: 1084px;
- margin-left: 0;
-}
-table .span15 {
- float: none;
- width: 1164px;
- margin-left: 0;
-}
-table .span16 {
- float: none;
- width: 1244px;
- margin-left: 0;
-}
-table .span17 {
- float: none;
- width: 1324px;
- margin-left: 0;
-}
-table .span18 {
- float: none;
- width: 1404px;
- margin-left: 0;
-}
-table .span19 {
- float: none;
- width: 1484px;
- margin-left: 0;
-}
-table .span20 {
- float: none;
- width: 1564px;
- margin-left: 0;
-}
-table .span21 {
- float: none;
- width: 1644px;
- margin-left: 0;
-}
-table .span22 {
- float: none;
- width: 1724px;
- margin-left: 0;
-}
-table .span23 {
- float: none;
- width: 1804px;
- margin-left: 0;
-}
-table .span24 {
- float: none;
- width: 1884px;
- margin-left: 0;
-}
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline-block;
- width: 14px;
- height: 14px;
- *margin-right: .3em;
- line-height: 14px;
- vertical-align: text-top;
- background-position: 14px 14px;
- background-repeat: no-repeat;
-}
-[class^="icon-"]:last-child,
-[class*=" icon-"]:last-child {
- *margin-left: 0;
-}
-.icon-white {
-}
-.icon-glass {
- background-position: 0 0;
-}
-.icon-music {
- background-position: -24px 0;
-}
-.icon-search {
- background-position: -48px 0;
-}
-.icon-envelope {
- background-position: -72px 0;
-}
-.icon-heart {
- background-position: -96px 0;
-}
-.icon-star {
- background-position: -120px 0;
-}
-.icon-star-empty {
- background-position: -144px 0;
-}
-.icon-user {
- background-position: -168px 0;
-}
-.icon-film {
- background-position: -192px 0;
-}
-.icon-th-large {
- background-position: -216px 0;
-}
-.icon-th {
- background-position: -240px 0;
-}
-.icon-th-list {
- background-position: -264px 0;
-}
-.icon-ok {
- background-position: -288px 0;
-}
-.icon-remove {
- background-position: -312px 0;
-}
-.icon-zoom-in {
- background-position: -336px 0;
-}
-.icon-zoom-out {
- background-position: -360px 0;
-}
-.icon-off {
- background-position: -384px 0;
-}
-.icon-signal {
- background-position: -408px 0;
-}
-.icon-cog {
- background-position: -432px 0;
-}
-.icon-trash {
- background-position: -456px 0;
-}
-.icon-home {
- background-position: 0 -24px;
-}
-.icon-file {
- background-position: -24px -24px;
-}
-.icon-time {
- background-position: -48px -24px;
-}
-.icon-road {
- background-position: -72px -24px;
-}
-.icon-download-alt {
- background-position: -96px -24px;
-}
-.icon-download {
- background-position: -120px -24px;
-}
-.icon-upload {
- background-position: -144px -24px;
-}
-.icon-inbox {
- background-position: -168px -24px;
-}
-.icon-play-circle {
- background-position: -192px -24px;
-}
-.icon-repeat {
- background-position: -216px -24px;
-}
-.icon-refresh {
- background-position: -240px -24px;
-}
-.icon-list-alt {
- background-position: -264px -24px;
-}
-.icon-lock {
- background-position: -287px -24px;
-}
-.icon-flag {
- background-position: -312px -24px;
-}
-.icon-headphones {
- background-position: -336px -24px;
-}
-.icon-volume-off {
- background-position: -360px -24px;
-}
-.icon-volume-down {
- background-position: -384px -24px;
-}
-.icon-volume-up {
- background-position: -408px -24px;
-}
-.icon-qrcode {
- background-position: -432px -24px;
-}
-.icon-barcode {
- background-position: -456px -24px;
-}
-.icon-tag {
- background-position: 0 -48px;
-}
-.icon-tags {
- background-position: -25px -48px;
-}
-.icon-book {
- background-position: -48px -48px;
-}
-.icon-bookmark {
- background-position: -72px -48px;
-}
-.icon-print {
- background-position: -96px -48px;
-}
-.icon-camera {
- background-position: -120px -48px;
-}
-.icon-font {
- background-position: -144px -48px;
-}
-.icon-bold {
- background-position: -167px -48px;
-}
-.icon-italic {
- background-position: -192px -48px;
-}
-.icon-text-height {
- background-position: -216px -48px;
-}
-.icon-text-width {
- background-position: -240px -48px;
-}
-.icon-align-left {
- background-position: -264px -48px;
-}
-.icon-align-center {
- background-position: -288px -48px;
-}
-.icon-align-right {
- background-position: -312px -48px;
-}
-.icon-align-justify {
- background-position: -336px -48px;
-}
-.icon-list {
- background-position: -360px -48px;
-}
-.icon-indent-left {
- background-position: -384px -48px;
-}
-.icon-indent-right {
- background-position: -408px -48px;
-}
-.icon-facetime-video {
- background-position: -432px -48px;
-}
-.icon-picture {
- background-position: -456px -48px;
-}
-.icon-pencil {
- background-position: 0 -72px;
-}
-.icon-map-marker {
- background-position: -24px -72px;
-}
-.icon-adjust {
- background-position: -48px -72px;
-}
-.icon-tint {
- background-position: -72px -72px;
-}
-.icon-edit {
- background-position: -96px -72px;
-}
-.icon-share {
- background-position: -120px -72px;
-}
-.icon-check {
- background-position: -144px -72px;
-}
-.icon-move {
- background-position: -168px -72px;
-}
-.icon-step-backward {
- background-position: -192px -72px;
-}
-.icon-fast-backward {
- background-position: -216px -72px;
-}
-.icon-backward {
- background-position: -240px -72px;
-}
-.icon-play {
- background-position: -264px -72px;
-}
-.icon-pause {
- background-position: -288px -72px;
-}
-.icon-stop {
- background-position: -312px -72px;
-}
-.icon-forward {
- background-position: -336px -72px;
-}
-.icon-fast-forward {
- background-position: -360px -72px;
-}
-.icon-step-forward {
- background-position: -384px -72px;
-}
-.icon-eject {
- background-position: -408px -72px;
-}
-.icon-chevron-left {
- background-position: -432px -72px;
-}
-.icon-chevron-right {
- background-position: -456px -72px;
-}
-.icon-plus-sign {
- background-position: 0 -96px;
-}
-.icon-minus-sign {
- background-position: -24px -96px;
-}
-.icon-remove-sign {
- background-position: -48px -96px;
-}
-.icon-ok-sign {
- background-position: -72px -96px;
-}
-.icon-question-sign {
- background-position: -96px -96px;
-}
-.icon-info-sign {
- background-position: -120px -96px;
-}
-.icon-screenshot {
- background-position: -144px -96px;
-}
-.icon-remove-circle {
- background-position: -168px -96px;
-}
-.icon-ok-circle {
- background-position: -192px -96px;
-}
-.icon-ban-circle {
- background-position: -216px -96px;
-}
-.icon-arrow-left {
- background-position: -240px -96px;
-}
-.icon-arrow-right {
- background-position: -264px -96px;
-}
-.icon-arrow-up {
- background-position: -289px -96px;
-}
-.icon-arrow-down {
- background-position: -312px -96px;
-}
-.icon-share-alt {
- background-position: -336px -96px;
-}
-.icon-resize-full {
- background-position: -360px -96px;
-}
-.icon-resize-small {
- background-position: -384px -96px;
-}
-.icon-plus {
- background-position: -408px -96px;
-}
-.icon-minus {
- background-position: -433px -96px;
-}
-.icon-asterisk {
- background-position: -456px -96px;
-}
-.icon-exclamation-sign {
- background-position: 0 -120px;
-}
-.icon-gift {
- background-position: -24px -120px;
-}
-.icon-leaf {
- background-position: -48px -120px;
-}
-.icon-fire {
- background-position: -72px -120px;
-}
-.icon-eye-open {
- background-position: -96px -120px;
-}
-.icon-eye-close {
- background-position: -120px -120px;
-}
-.icon-warning-sign {
- background-position: -144px -120px;
-}
-.icon-plane {
- background-position: -168px -120px;
-}
-.icon-calendar {
- background-position: -192px -120px;
-}
-.icon-random {
- background-position: -216px -120px;
-}
-.icon-comment {
- background-position: -240px -120px;
-}
-.icon-magnet {
- background-position: -264px -120px;
-}
-.icon-chevron-up {
- background-position: -288px -120px;
-}
-.icon-chevron-down {
- background-position: -313px -119px;
-}
-.icon-retweet {
- background-position: -336px -120px;
-}
-.icon-shopping-cart {
- background-position: -360px -120px;
-}
-.icon-folder-close {
- background-position: -384px -120px;
-}
-.icon-folder-open {
- background-position: -408px -120px;
-}
-.icon-resize-vertical {
- background-position: -432px -119px;
-}
-.icon-resize-horizontal {
- background-position: -456px -118px;
-}
-.icon-hdd {
- background-position: 0 -144px;
-}
-.icon-bullhorn {
- background-position: -24px -144px;
-}
-.icon-bell {
- background-position: -48px -144px;
-}
-.icon-certificate {
- background-position: -72px -144px;
-}
-.icon-thumbs-up {
- background-position: -96px -144px;
-}
-.icon-thumbs-down {
- background-position: -120px -144px;
-}
-.icon-hand-right {
- background-position: -144px -144px;
-}
-.icon-hand-left {
- background-position: -168px -144px;
-}
-.icon-hand-up {
- background-position: -192px -144px;
-}
-.icon-hand-down {
- background-position: -216px -144px;
-}
-.icon-circle-arrow-right {
- background-position: -240px -144px;
-}
-.icon-circle-arrow-left {
- background-position: -264px -144px;
-}
-.icon-circle-arrow-up {
- background-position: -288px -144px;
-}
-.icon-circle-arrow-down {
- background-position: -312px -144px;
-}
-.icon-globe {
- background-position: -336px -144px;
-}
-.icon-wrench {
- background-position: -360px -144px;
-}
-.icon-tasks {
- background-position: -384px -144px;
-}
-.icon-filter {
- background-position: -408px -144px;
-}
-.icon-briefcase {
- background-position: -432px -144px;
-}
-.icon-fullscreen {
- background-position: -456px -144px;
-}
-.dropup,
-.dropdown {
- position: relative;
-}
-.dropdown-toggle {
- *margin-bottom: -3px;
-}
-.dropdown-toggle:active,
-.open .dropdown-toggle {
- outline: 0;
-}
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- vertical-align: top;
- border-top: 4px solid #000000;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-.dropdown .caret {
- margin-top: 8px;
- margin-left: 2px;
-}
-.dropdown:hover .caret,
-.open .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 4px 0;
- margin: 1px 0 0;
- list-style: none;
- background-color: #ffffff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- *border-right-width: 2px;
- *border-bottom-width: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
-}
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu .divider {
- *width: 100%;
- height: 1px;
- margin: 8px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.dropdown-menu a {
- display: block;
- padding: 3px 15px;
- clear: both;
- font-weight: normal;
- line-height: 18px;
- color: #333333;
- white-space: nowrap;
-}
-.dropdown-menu li > a:hover,
-.dropdown-menu .active > a,
-.dropdown-menu .active > a:hover {
- color: #ffffff;
- text-decoration: none;
- background-color: #4183c4;
-}
-.open {
- *z-index: 1000;
-}
-.open > .dropdown-menu {
- display: block;
-}
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0;
- border-bottom: 4px solid #000000;
- content: "\2191";
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 1px;
-}
-.typeahead {
- margin-top: 2px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #eee;
- border: 1px solid rgba(0, 0, 0, 0.05);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
-}
-.well-large {
- padding: 24px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.well-small {
- padding: 9px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- -moz-transition: opacity 0.15s linear;
- -ms-transition: opacity 0.15s linear;
- -o-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
-}
-.fade.in {
- opacity: 1;
-}
-.collapse {
- position: relative;
- height: 0;
- overflow: hidden;
- -webkit-transition: height 0.35s ease;
- -moz-transition: height 0.35s ease;
- -ms-transition: height 0.35s ease;
- -o-transition: height 0.35s ease;
- transition: height 0.35s ease;
-}
-.collapse.in {
- height: auto;
-}
-.close {
- float: right;
- font-size: 20px;
- font-weight: bold;
- line-height: 18px;
- color: #000000;
- text-shadow: 0 1px 0 #ffffff;
- opacity: 0.2;
- filter: alpha(opacity=20);
-}
-.close:hover {
- color: #000000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.4;
- filter: alpha(opacity=40);
-}
-button.close {
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
-}
-.btn {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- padding: 4px 10px 4px;
- margin-bottom: 0;
- font-size: 13px;
- line-height: 18px;
- *line-height: 20px;
- color: #333333;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- vertical-align: middle;
- cursor: pointer;
- background-color: #f5f5f5;
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #e6e6e6;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- border: 1px solid #cccccc;
- *border: 0;
- border-bottom-color: #b3b3b3;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- *margin-left: .3em;
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn:hover,
-.btn:active,
-.btn.active,
-.btn.disabled,
-.btn[disabled] {
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
-}
-.btn:active,
-.btn.active {
- background-color: #cccccc \9;
-}
-.btn:first-child {
- *margin-left: 0;
-}
-.btn:hover {
- color: #333333;
- text-decoration: none;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- /* Buttons in IE7 don't get borders, so darken on hover */
-
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -ms-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
-}
-.btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.btn.active,
-.btn:active {
- background-color: #e6e6e6;
- background-color: #d9d9d9 \9;
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn.disabled,
-.btn[disabled] {
- cursor: default;
- background-color: #e6e6e6;
- background-image: none;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.btn-large {
- padding: 9px 14px;
- font-size: 15px;
- line-height: normal;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.btn-large [class^="icon-"] {
- margin-top: 1px;
-}
-.btn-small {
- padding: 5px 9px;
- font-size: 11px;
- line-height: 16px;
-}
-.btn-small [class^="icon-"] {
- margin-top: -1px;
-}
-.btn-mini {
- padding: 2px 6px;
- font-size: 11px;
- line-height: 14px;
-}
-.btn-primary,
-.btn-primary:hover,
-.btn-warning,
-.btn-warning:hover,
-.btn-danger,
-.btn-danger:hover,
-.btn-success,
-.btn-success:hover,
-.btn-info,
-.btn-info:hover,
-.btn-inverse,
-.btn-inverse:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-primary.active,
-.btn-warning.active,
-.btn-danger.active,
-.btn-success.active,
-.btn-info.active,
-.btn-inverse.active {
- color: rgba(255, 255, 255, 0.75);
-}
-.btn {
- border-color: #ccc;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
-}
-.btn-primary {
- background-color: #4176c4;
- background-image: -moz-linear-gradient(top, #4183c4, #4162c4);
- background-image: -ms-linear-gradient(top, #4183c4, #4162c4);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4183c4), to(#4162c4));
- background-image: -webkit-linear-gradient(top, #4183c4, #4162c4);
- background-image: -o-linear-gradient(top, #4183c4, #4162c4);
- background-image: linear-gradient(top, #4183c4, #4162c4);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4183c4', endColorstr='#4162c4', GradientType=0);
- border-color: #4162c4 #4162c4 #2c448d;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #4162c4;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #4162c4;
- *background-color: #3857b4;
-}
-.btn-primary:active,
-.btn-primary.active {
- background-color: #324ea0 \9;
-}
-.btn-warning {
- background-color: #ff942e;
- background-image: -moz-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -ms-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa44d), to(#ff7d00));
- background-image: -webkit-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -o-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: linear-gradient(top, #ffa44d, #ff7d00);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa44d', endColorstr='#ff7d00', GradientType=0);
- border-color: #ff7d00 #ff7d00 #b35800;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #ff7d00;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active,
-.btn-warning.disabled,
-.btn-warning[disabled] {
- background-color: #ff7d00;
- *background-color: #e67100;
-}
-.btn-warning:active,
-.btn-warning.active {
- background-color: #cc6400 \9;
-}
-.btn-danger {
- background-color: #da4f49;
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: linear-gradient(top, #ee5f5b, #bd362f);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
- border-color: #bd362f #bd362f #802420;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #bd362f;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active,
-.btn-danger.disabled,
-.btn-danger[disabled] {
- background-color: #bd362f;
- *background-color: #a9302a;
-}
-.btn-danger:active,
-.btn-danger.active {
- background-color: #942a25 \9;
-}
-.btn-success {
- background-color: #5bb75b;
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
- background-image: -ms-linear-gradient(top, #62c462, #51a351);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
- background-image: -o-linear-gradient(top, #62c462, #51a351);
- background-image: linear-gradient(top, #62c462, #51a351);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
- border-color: #51a351 #51a351 #387038;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #51a351;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active,
-.btn-success.disabled,
-.btn-success[disabled] {
- background-color: #51a351;
- *background-color: #499249;
-}
-.btn-success:active,
-.btn-success.active {
- background-color: #408140 \9;
-}
-.btn-info {
- background-color: #49afcd;
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: linear-gradient(top, #5bc0de, #2f96b4);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
- border-color: #2f96b4 #2f96b4 #1f6377;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #2f96b4;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active,
-.btn-info.disabled,
-.btn-info[disabled] {
- background-color: #2f96b4;
- *background-color: #2a85a0;
-}
-.btn-info:active,
-.btn-info.active {
- background-color: #24748c \9;
-}
-.btn-inverse {
- background-color: #414141;
- background-image: -moz-linear-gradient(top, #555555, #222222);
- background-image: -ms-linear-gradient(top, #555555, #222222);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
- background-image: -webkit-linear-gradient(top, #555555, #222222);
- background-image: -o-linear-gradient(top, #555555, #222222);
- background-image: linear-gradient(top, #555555, #222222);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
- border-color: #222222 #222222 #000000;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #222222;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-inverse:hover,
-.btn-inverse:active,
-.btn-inverse.active,
-.btn-inverse.disabled,
-.btn-inverse[disabled] {
- background-color: #222222;
- *background-color: #151515;
-}
-.btn-inverse:active,
-.btn-inverse.active {
- background-color: #080808 \9;
-}
-button.btn,
-input[type="submit"].btn {
- *padding-top: 2px;
- *padding-bottom: 2px;
-}
-button.btn::-moz-focus-inner,
-input[type="submit"].btn::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-button.btn.btn-large,
-input[type="submit"].btn.btn-large {
- *padding-top: 7px;
- *padding-bottom: 7px;
-}
-button.btn.btn-small,
-input[type="submit"].btn.btn-small {
- *padding-top: 3px;
- *padding-bottom: 3px;
-}
-button.btn.btn-mini,
-input[type="submit"].btn.btn-mini {
- *padding-top: 1px;
- *padding-bottom: 1px;
-}
-.btn-group {
- position: relative;
- *zoom: 1;
- *margin-left: .3em;
-}
-.btn-group:before,
-.btn-group:after {
- display: table;
- content: "";
-}
-.btn-group:after {
- clear: both;
-}
-.btn-group:first-child {
- *margin-left: 0;
-}
-.btn-group + .btn-group {
- margin-left: 5px;
-}
-.btn-toolbar {
- margin-top: 9px;
- margin-bottom: 9px;
-}
-.btn-toolbar .btn-group {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
-}
-.btn-group > .btn {
- position: relative;
- float: left;
- margin-left: -1px;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.btn-group > .btn:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-bottom-left-radius: 4px;
-}
-.btn-group > .btn:last-child,
-.btn-group > .dropdown-toggle {
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-right-radius: 4px;
-}
-.btn-group > .btn.large:first-child {
- margin-left: 0;
- -webkit-border-top-left-radius: 6px;
- -moz-border-radius-topleft: 6px;
- border-top-left-radius: 6px;
- -webkit-border-bottom-left-radius: 6px;
- -moz-border-radius-bottomleft: 6px;
- border-bottom-left-radius: 6px;
-}
-.btn-group > .btn.large:last-child,
-.btn-group > .large.dropdown-toggle {
- -webkit-border-top-right-radius: 6px;
- -moz-border-radius-topright: 6px;
- border-top-right-radius: 6px;
- -webkit-border-bottom-right-radius: 6px;
- -moz-border-radius-bottomright: 6px;
- border-bottom-right-radius: 6px;
-}
-.btn-group > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group > .btn:active,
-.btn-group > .btn.active {
- z-index: 2;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-.btn-group > .dropdown-toggle {
- padding-left: 8px;
- padding-right: 8px;
- -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-mini.dropdown-toggle {
- padding-left: 5px;
- padding-right: 5px;
-}
-.btn-group > .btn-small.dropdown-toggle {
- *padding-top: 4px;
- *padding-bottom: 4px;
-}
-.btn-group > .btn-large.dropdown-toggle {
- padding-left: 12px;
- padding-right: 12px;
-}
-.btn-group.open .dropdown-toggle {
- background-image: none;
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-}
-.btn-group.open .btn.dropdown-toggle {
- background-color: #e6e6e6;
-}
-.btn-group.open .btn-primary.dropdown-toggle {
- background-color: #4162c4;
-}
-.btn-group.open .btn-warning.dropdown-toggle {
- background-color: #ff7d00;
-}
-.btn-group.open .btn-danger.dropdown-toggle {
- background-color: #bd362f;
-}
-.btn-group.open .btn-success.dropdown-toggle {
- background-color: #51a351;
-}
-.btn-group.open .btn-info.dropdown-toggle {
- background-color: #2f96b4;
-}
-.btn-group.open .btn-inverse.dropdown-toggle {
- background-color: #222222;
-}
-.btn .caret {
- margin-top: 7px;
- margin-left: 0;
-}
-.btn:hover .caret,
-.open.btn-group .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.btn-mini .caret {
- margin-top: 5px;
-}
-.btn-small .caret {
- margin-top: 6px;
-}
-.btn-large .caret {
- margin-top: 6px;
- border-left-width: 5px;
- border-right-width: 5px;
- border-top-width: 5px;
-}
-.dropup .btn-large .caret {
- border-bottom: 5px solid #000000;
- border-top: 0;
-}
-.btn-primary .caret,
-.btn-warning .caret,
-.btn-danger .caret,
-.btn-info .caret,
-.btn-success .caret,
-.btn-inverse .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 0.75;
- filter: alpha(opacity=75);
-}
-.alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 18px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- background-color: #f5f3b4;
- border: 1px solid #f3e4a7;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- color: #393939;
-}
-.alert-heading {
- color: inherit;
-}
-.alert .close {
- position: relative;
- top: -2px;
- right: -21px;
- line-height: 18px;
-}
-.alert-success {
- background-color: #bedebe;
- border-color: #b4d5ad;
- color: #333333;
-}
-.alert-danger,
-.alert-error {
- background-color: #ffe9e9;
- border-color: #ffdae0;
- color: #393939;
-}
-.alert-info {
- background-color: #e4f0ff;
- border-color: #c0e7ff;
- color: #1b3650;
-}
-.alert-block {
- padding-top: 14px;
- padding-bottom: 14px;
-}
-.alert-block > p,
-.alert-block > ul {
- margin-bottom: 0;
-}
-.alert-block p + p {
- margin-top: 5px;
-}
-.nav {
- margin-left: 0;
- margin-bottom: 18px;
- list-style: none;
-}
-.nav > li > a {
- display: block;
-}
-.nav > li > a:hover {
- text-decoration: none;
- background-color: #f5f5f5;
-}
-.nav > .pull-right {
- float: right;
-}
-.nav .nav-header {
- display: block;
- padding: 3px 15px;
- font-size: 11px;
- font-weight: bold;
- line-height: 18px;
- color: #999999;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-.nav li + .nav-header {
- margin-top: 9px;
-}
-.nav-list {
- padding-left: 15px;
- padding-right: 15px;
- margin-bottom: 0;
-}
-.nav-list > li > a,
-.nav-list .nav-header {
- margin-left: -15px;
- margin-right: -15px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-.nav-list > li > a {
- padding: 3px 15px;
-}
-.nav-list > .active > a,
-.nav-list > .active > a:hover {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
- background-color: #4183c4;
-}
-.nav-list [class^="icon-"] {
- margin-right: 2px;
-}
-.nav-list .divider {
- *width: 100%;
- height: 1px;
- margin: 8px 1px;
- *margin: -5px 0 5px;
- overflow: hidden;
- background-color: #e5e5e5;
- border-bottom: 1px solid #ffffff;
-}
-.nav-tabs,
-.nav-pills {
- *zoom: 1;
-}
-.nav-tabs:before,
-.nav-pills:before,
-.nav-tabs:after,
-.nav-pills:after {
- display: table;
- content: "";
-}
-.nav-tabs:after,
-.nav-pills:after {
- clear: both;
-}
-.nav-tabs > li,
-.nav-pills > li {
- float: left;
-}
-.nav-tabs > li > a,
-.nav-pills > li > a {
- padding-right: 12px;
- padding-left: 12px;
- margin-right: 2px;
- line-height: 14px;
-}
-.nav-tabs {
- border-bottom: 1px solid #ddd;
-}
-.nav-tabs > li {
- margin-bottom: -1px;
-}
-.nav-tabs > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- line-height: 18px;
- border: 1px solid transparent;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
- border-color: #f5f5f5 #f5f5f5 #dddddd;
-}
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover {
- color: #555555;
- background-color: #ffffff;
- border: 1px solid #ddd;
- border-bottom-color: transparent;
- cursor: default;
-}
-.nav-pills > li > a {
- padding-top: 8px;
- padding-bottom: 8px;
- margin-top: 2px;
- margin-bottom: 2px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.nav-pills > .active > a,
-.nav-pills > .active > a:hover {
- color: #ffffff;
- background-color: #4183c4;
-}
-.nav-stacked > li {
- float: none;
-}
-.nav-stacked > li > a {
- margin-right: 0;
-}
-.nav-tabs.nav-stacked {
- border-bottom: 0;
-}
-.nav-tabs.nav-stacked > li > a {
- border: 1px solid #ddd;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.nav-tabs.nav-stacked > li:first-child > a {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs.nav-stacked > li:last-child > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.nav-tabs.nav-stacked > li > a:hover {
- border-color: #ddd;
- z-index: 2;
-}
-.nav-pills.nav-stacked > li > a {
- margin-bottom: 3px;
-}
-.nav-pills.nav-stacked > li:last-child > a {
- margin-bottom: 1px;
-}
-.nav-tabs .dropdown-menu {
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
-}
-.nav-pills .dropdown-menu {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.nav-tabs .dropdown-toggle .caret,
-.nav-pills .dropdown-toggle .caret {
- border-top-color: #4183c4;
- border-bottom-color: #4183c4;
- margin-top: 6px;
-}
-.nav-tabs .dropdown-toggle:hover .caret,
-.nav-pills .dropdown-toggle:hover .caret {
- border-top-color: #4183c4;
- border-bottom-color: #4183c4;
-}
-.nav-tabs .active .dropdown-toggle .caret,
-.nav-pills .active .dropdown-toggle .caret {
- border-top-color: #333333;
- border-bottom-color: #333333;
-}
-.nav > .dropdown.active > a:hover {
- color: #000000;
- cursor: pointer;
-}
-.nav-tabs .open .dropdown-toggle,
-.nav-pills .open .dropdown-toggle,
-.nav > li.dropdown.open.active > a:hover {
- color: #ffffff;
- background-color: #999999;
- border-color: #999999;
-}
-.nav li.dropdown.open .caret,
-.nav li.dropdown.open.active .caret,
-.nav li.dropdown.open a:hover .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.tabs-stacked .open > a:hover {
- border-color: #999999;
-}
-.tabbable {
- *zoom: 1;
-}
-.tabbable:before,
-.tabbable:after {
- display: table;
- content: "";
-}
-.tabbable:after {
- clear: both;
-}
-.tab-content {
- overflow: auto;
-}
-.tabs-below > .nav-tabs,
-.tabs-right > .nav-tabs,
-.tabs-left > .nav-tabs {
- border-bottom: 0;
-}
-.tab-content > .tab-pane,
-.pill-content > .pill-pane {
- display: none;
-}
-.tab-content > .active,
-.pill-content > .active {
- display: block;
-}
-.tabs-below > .nav-tabs {
- border-top: 1px solid #ddd;
-}
-.tabs-below > .nav-tabs > li {
- margin-top: -1px;
- margin-bottom: 0;
-}
-.tabs-below > .nav-tabs > li > a {
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.tabs-below > .nav-tabs > li > a:hover {
- border-bottom-color: transparent;
- border-top-color: #ddd;
-}
-.tabs-below > .nav-tabs > .active > a,
-.tabs-below > .nav-tabs > .active > a:hover {
- border-color: transparent #ddd #ddd #ddd;
-}
-.tabs-left > .nav-tabs > li,
-.tabs-right > .nav-tabs > li {
- float: none;
-}
-.tabs-left > .nav-tabs > li > a,
-.tabs-right > .nav-tabs > li > a {
- min-width: 74px;
- margin-right: 0;
- margin-bottom: 3px;
-}
-.tabs-left > .nav-tabs {
- float: left;
- margin-right: 19px;
- border-right: 1px solid #ddd;
-}
-.tabs-left > .nav-tabs > li > a {
- margin-right: -1px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
-}
-.tabs-left > .nav-tabs > li > a:hover {
- border-color: #f5f5f5 #dddddd #f5f5f5 #f5f5f5;
-}
-.tabs-left > .nav-tabs .active > a,
-.tabs-left > .nav-tabs .active > a:hover {
- border-color: #ddd transparent #ddd #ddd;
- *border-right-color: #ffffff;
-}
-.tabs-right > .nav-tabs {
- float: right;
- margin-left: 19px;
- border-left: 1px solid #ddd;
-}
-.tabs-right > .nav-tabs > li > a {
- margin-left: -1px;
- -webkit-border-radius: 0 4px 4px 0;
- -moz-border-radius: 0 4px 4px 0;
- border-radius: 0 4px 4px 0;
-}
-.tabs-right > .nav-tabs > li > a:hover {
- border-color: #f5f5f5 #f5f5f5 #f5f5f5 #dddddd;
-}
-.tabs-right > .nav-tabs .active > a,
-.tabs-right > .nav-tabs .active > a:hover {
- border-color: #ddd #ddd #ddd transparent;
- *border-left-color: #ffffff;
-}
-.navbar {
- *position: relative;
- *z-index: 2;
- overflow: visible;
- margin-bottom: 18px;
-}
-.navbar-inner {
- min-height: 40px;
- padding-left: 20px;
- padding-right: 20px;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eaeaea));
- background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
- background-image: linear-gradient(top, #ffffff, #eaeaea);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
- box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
-}
-.navbar .container {
- width: auto;
-}
-.nav-collapse.collapse {
- height: auto;
-}
-.navbar {
- color: #333333;
-}
-.navbar .brand:hover {
- text-decoration: none;
-}
-.navbar .brand {
- float: left;
- display: block;
- padding: 8px 20px 12px;
- margin-left: -20px;
- font-size: 20px;
- font-weight: 200;
- line-height: 1;
- color: #333333;
-}
-.navbar .navbar-text {
- margin-bottom: 0;
- line-height: 40px;
-}
-.navbar .navbar-link {
- color: #333333;
-}
-.navbar .navbar-link:hover {
- color: #4183c4;
-}
-.navbar .btn,
-.navbar .btn-group {
- margin-top: 5px;
-}
-.navbar .btn-group .btn {
- margin: 0;
-}
-.navbar-form {
- margin-bottom: 0;
- *zoom: 1;
-}
-.navbar-form:before,
-.navbar-form:after {
- display: table;
- content: "";
-}
-.navbar-form:after {
- clear: both;
-}
-.navbar-form input,
-.navbar-form select,
-.navbar-form .radio,
-.navbar-form .checkbox {
- margin-top: 5px;
-}
-.navbar-form input,
-.navbar-form select {
- display: inline-block;
- margin-bottom: 0;
-}
-.navbar-form input[type="image"],
-.navbar-form input[type="checkbox"],
-.navbar-form input[type="radio"] {
- margin-top: 3px;
-}
-.navbar-form .input-append,
-.navbar-form .input-prepend {
- margin-top: 6px;
- white-space: nowrap;
-}
-.navbar-form .input-append input,
-.navbar-form .input-prepend input {
- margin-top: 0;
-}
-.navbar-search {
- position: relative;
- float: left;
- margin-top: 6px;
- margin-bottom: 0;
-}
-.navbar-search .search-query {
- padding: 4px 9px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- font-weight: normal;
- line-height: 1;
- color: #ffffff;
- background-color: #ffffff;
- border: 1px solid #b3b3b3;
- -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
-}
-.navbar-search .search-query:-moz-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:-ms-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query::-webkit-input-placeholder {
- color: #cccccc;
-}
-.navbar-search .search-query:focus,
-.navbar-search .search-query.focused {
- padding: 5px 10px;
- color: #333333;
- text-shadow: 0 1px 0 #ffffff;
- background-color: #ffffff;
- border: 0;
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
- outline: 0;
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
- margin-bottom: 0;
-}
-.navbar-fixed-top .navbar-inner,
-.navbar-fixed-bottom .navbar-inner {
- padding-left: 0;
- padding-right: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-.navbar-fixed-top .container,
-.navbar-fixed-bottom .container {
- width: 940px;
-}
-.navbar-fixed-top {
- top: 0;
-}
-.navbar-fixed-bottom {
- bottom: 0;
-}
-.navbar .nav {
- position: relative;
- left: 0;
- display: block;
- float: left;
- margin: 0 10px 0 0;
-}
-.navbar .nav.pull-right {
- float: right;
-}
-.navbar .nav > li {
- display: block;
- float: left;
-}
-.navbar .nav > li > a {
- float: none;
- padding: 9px 10px 11px;
- line-height: 19px;
- color: #333333;
- text-decoration: none;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.navbar .btn {
- display: inline-block;
- padding: 4px 10px 4px;
- margin: 5px 5px 6px;
- line-height: 18px;
-}
-.navbar .btn-group {
- margin: 0;
- padding: 5px 5px 6px;
-}
-.navbar .nav > li > a:hover {
- background-color: transparent;
- color: #4183c4;
- text-decoration: none;
-}
-.navbar .nav .active > a,
-.navbar .nav .active > a:hover {
- color: #4183c4;
- text-decoration: none;
- background-color: transparent;
-}
-.navbar .divider-vertical {
- height: 40px;
- width: 1px;
- margin: 0 9px;
- overflow: hidden;
- background-color: #eaeaea;
- border-right: 1px solid #ffffff;
-}
-.navbar .nav.pull-right {
- margin-left: 10px;
- margin-right: 0;
-}
-.navbar .btn-navbar {
- display: none;
- float: right;
- padding: 7px 10px;
- margin-left: 5px;
- margin-right: 5px;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eaeaea));
- background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
- background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
- background-image: linear-gradient(top, #ffffff, #eaeaea);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
- border-color: #eaeaea #eaeaea #c4c4c4;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #eaeaea;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
- box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
-}
-.navbar .btn-navbar:hover,
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active,
-.navbar .btn-navbar.disabled,
-.navbar .btn-navbar[disabled] {
- background-color: #eaeaea;
- *background-color: #dddddd;
-}
-.navbar .btn-navbar:active,
-.navbar .btn-navbar.active {
- background-color: #d1d1d1 \9;
-}
-.navbar .btn-navbar .icon-bar {
- display: block;
- width: 18px;
- height: 2px;
- background-color: #f5f5f5;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-}
-.btn-navbar .icon-bar + .icon-bar {
- margin-top: 3px;
-}
-.navbar .dropdown-menu:before {
- content: '';
- display: inline-block;
- border-left: 7px solid transparent;
- border-right: 7px solid transparent;
- border-bottom: 7px solid #ccc;
- border-bottom-color: rgba(0, 0, 0, 0.2);
- position: absolute;
- top: -7px;
- left: 9px;
-}
-.navbar .dropdown-menu:after {
- content: '';
- display: inline-block;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-bottom: 6px solid #ffffff;
- position: absolute;
- top: -6px;
- left: 10px;
-}
-.navbar-fixed-bottom .dropdown-menu:before {
- border-top: 7px solid #ccc;
- border-top-color: rgba(0, 0, 0, 0.2);
- border-bottom: 0;
- bottom: -7px;
- top: auto;
-}
-.navbar-fixed-bottom .dropdown-menu:after {
- border-top: 6px solid #ffffff;
- border-bottom: 0;
- bottom: -6px;
- top: auto;
-}
-.navbar .nav li.dropdown .dropdown-toggle .caret,
-.navbar .nav li.dropdown.open .caret {
- border-top-color: #ffffff;
- border-bottom-color: #ffffff;
-}
-.navbar .nav li.dropdown.active .caret {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-.navbar .nav li.dropdown.open > .dropdown-toggle,
-.navbar .nav li.dropdown.active > .dropdown-toggle,
-.navbar .nav li.dropdown.open.active > .dropdown-toggle {
- background-color: transparent;
-}
-.navbar .nav li.dropdown.active > .dropdown-toggle:hover {
- color: #ffffff;
-}
-.navbar .pull-right .dropdown-menu,
-.navbar .dropdown-menu.pull-right {
- left: auto;
- right: 0;
-}
-.navbar .pull-right .dropdown-menu:before,
-.navbar .dropdown-menu.pull-right:before {
- left: auto;
- right: 12px;
-}
-.navbar .pull-right .dropdown-menu:after,
-.navbar .dropdown-menu.pull-right:after {
- left: auto;
- right: 13px;
-}
-.breadcrumb {
- padding: 7px 14px;
- margin: 0 0 18px;
- list-style: none;
- background-color: #fbfbfb;
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
- border: 1px solid #ddd;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
-}
-.breadcrumb li {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- text-shadow: 0 1px 0 #ffffff;
-}
-.breadcrumb .divider {
- padding: 0 5px;
- color: #999999;
-}
-.breadcrumb .active a {
- color: #333333;
-}
-.pagination {
- height: 36px;
- margin: 18px 0;
-}
-.pagination ul {
- display: inline-block;
- *display: inline;
- /* IE7 inline-block hack */
-
- *zoom: 1;
- margin-left: 0;
- margin-bottom: 0;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-}
-.pagination li {
- display: inline;
-}
-.pagination a {
- float: left;
- padding: 0 14px;
- line-height: 34px;
- text-decoration: none;
- border: 1px solid #ddd;
- border-left-width: 0;
-}
-.pagination a:hover,
-.pagination .active a {
- background-color: #f5f5f5;
-}
-.pagination .active a {
- color: #999999;
- cursor: default;
-}
-.pagination .disabled span,
-.pagination .disabled a,
-.pagination .disabled a:hover {
- color: #999999;
- background-color: transparent;
- cursor: default;
-}
-.pagination li:first-child a {
- border-left-width: 1px;
- -webkit-border-radius: 3px 0 0 3px;
- -moz-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-}
-.pagination li:last-child a {
- -webkit-border-radius: 0 3px 3px 0;
- -moz-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
-}
-.pagination-centered {
- text-align: center;
-}
-.pagination-right {
- text-align: right;
-}
-.pager {
- margin-left: 0;
- margin-bottom: 18px;
- list-style: none;
- text-align: center;
- *zoom: 1;
-}
-.pager:before,
-.pager:after {
- display: table;
- content: "";
-}
-.pager:after {
- clear: both;
-}
-.pager li {
- display: inline;
-}
-.pager a {
- display: inline-block;
- padding: 5px 14px;
- background-color: #fff;
- border: 1px solid #ddd;
- -webkit-border-radius: 15px;
- -moz-border-radius: 15px;
- border-radius: 15px;
-}
-.pager a:hover {
- text-decoration: none;
- background-color: #f5f5f5;
-}
-.pager .next a {
- float: right;
-}
-.pager .previous a {
- float: left;
-}
-.pager .disabled a,
-.pager .disabled a:hover {
- color: #999999;
- background-color: #fff;
- cursor: default;
-}
-.modal-open .dropdown-menu {
- z-index: 2050;
-}
-.modal-open .dropdown.open {
- *z-index: 2050;
-}
-.modal-open .popover {
- z-index: 2060;
-}
-.modal-open .tooltip {
- z-index: 2070;
-}
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000000;
-}
-.modal-backdrop.fade {
- opacity: 0;
-}
-.modal-backdrop,
-.modal-backdrop.fade.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.modal {
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 1050;
- overflow: auto;
- width: 560px;
- margin: -250px 0 0 -280px;
- background-color: #ffffff;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.3);
- *border: 1px solid #999;
- /* IE6-7 */
-
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.modal.fade {
- -webkit-transition: opacity .3s linear, top .3s ease-out;
- -moz-transition: opacity .3s linear, top .3s ease-out;
- -ms-transition: opacity .3s linear, top .3s ease-out;
- -o-transition: opacity .3s linear, top .3s ease-out;
- transition: opacity .3s linear, top .3s ease-out;
- top: -25%;
-}
-.modal.fade.in {
- top: 50%;
-}
-.modal-header {
- padding: 9px 15px;
- border-bottom: 1px solid #eee;
-}
-.modal-header .close {
- margin-top: 2px;
-}
-.modal-body {
- overflow-y: auto;
- max-height: 400px;
- padding: 15px;
-}
-.modal-form {
- margin-bottom: 0;
-}
-.modal-footer {
- padding: 14px 15px 15px;
- margin-bottom: 0;
- text-align: right;
- background-color: #f5f5f5;
- border-top: 1px solid #ddd;
- -webkit-border-radius: 0 0 6px 6px;
- -moz-border-radius: 0 0 6px 6px;
- border-radius: 0 0 6px 6px;
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
- -moz-box-shadow: inset 0 1px 0 #ffffff;
- box-shadow: inset 0 1px 0 #ffffff;
- *zoom: 1;
-}
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: "";
-}
-.modal-footer:after {
- clear: both;
-}
-.modal-footer .btn + .btn {
- margin-left: 5px;
- margin-bottom: 0;
-}
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-.tooltip {
- position: absolute;
- z-index: 1020;
- display: block;
- visibility: visible;
- padding: 5px;
- font-size: 11px;
- opacity: 0;
- filter: alpha(opacity=0);
-}
-.tooltip.in {
- opacity: 0.8;
- filter: alpha(opacity=80);
-}
-.tooltip.top {
- margin-top: -2px;
-}
-.tooltip.right {
- margin-left: 2px;
-}
-.tooltip.bottom {
- margin-top: 2px;
-}
-.tooltip.left {
- margin-left: -2px;
-}
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #ffffff;
- text-align: center;
- text-decoration: none;
- background-color: #000000;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: none;
- padding: 5px;
-}
-.popover.top {
- margin-top: -5px;
-}
-.popover.right {
- margin-left: 5px;
-}
-.popover.bottom {
- margin-top: 5px;
-}
-.popover.left {
- margin-left: -5px;
-}
-.popover.top .arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #000000;
-}
-.popover.right .arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-right: 5px solid #000000;
-}
-.popover.bottom .arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #000000;
-}
-.popover.left .arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-top: 5px solid transparent;
- border-bottom: 5px solid transparent;
- border-left: 5px solid #000000;
-}
-.popover .arrow {
- position: absolute;
- width: 0;
- height: 0;
-}
-.popover-inner {
- padding: 3px;
- width: 280px;
- overflow: hidden;
- background: #000000;
- background: rgba(0, 0, 0, 0.8);
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-}
-.popover-title {
- padding: 9px 15px;
- line-height: 1;
- background-color: #f5f5f5;
- border-bottom: 1px solid #eee;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
-}
-.popover-content {
- padding: 14px;
- background-color: #ffffff;
- -webkit-border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- border-radius: 0 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
-}
-.popover-content p,
-.popover-content ul,
-.popover-content ol {
- margin-bottom: 0;
-}
-.thumbnails {
- margin-left: -20px;
- list-style: none;
- *zoom: 1;
-}
-.thumbnails:before,
-.thumbnails:after {
- display: table;
- content: "";
-}
-.thumbnails:after {
- clear: both;
-}
-.row-fluid .thumbnails {
- margin-left: 0;
-}
-.thumbnails > li {
- float: left;
- margin-bottom: 18px;
- margin-left: 20px;
-}
-.thumbnail {
- display: block;
- padding: 4px;
- line-height: 1;
- border: 1px solid #ddd;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-a.thumbnail:hover {
- border-color: #4183c4;
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-}
-.thumbnail > img {
- display: block;
- max-width: 100%;
- margin-left: auto;
- margin-right: auto;
-}
-.thumbnail .caption {
- padding: 9px;
-}
-.label,
-.badge {
- font-size: 10.998px;
- font-weight: bold;
- line-height: 14px;
- color: #ffffff;
- vertical-align: baseline;
- white-space: nowrap;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #999999;
-}
-.label {
- padding: 1px 4px 2px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.badge {
- padding: 1px 9px 2px;
- -webkit-border-radius: 9px;
- -moz-border-radius: 9px;
- border-radius: 9px;
-}
-a.label:hover,
-a.badge:hover {
- color: #ffffff;
- text-decoration: none;
- cursor: pointer;
-}
-.label-important,
-.badge-important {
- background-color: #393939;
-}
-.label-important[href],
-.badge-important[href] {
- background-color: #202020;
-}
-.label-warning,
-.badge-warning {
- background-color: #ff7d00;
-}
-.label-warning[href],
-.badge-warning[href] {
- background-color: #cc6400;
-}
-.label-success,
-.badge-success {
- background-color: #333333;
-}
-.label-success[href],
-.badge-success[href] {
- background-color: #1a1a1a;
-}
-.label-info,
-.badge-info {
- background-color: #1b3650;
-}
-.label-info[href],
-.badge-info[href] {
- background-color: #0e1c2a;
-}
-.label-inverse,
-.badge-inverse {
- background-color: #333333;
-}
-.label-inverse[href],
-.badge-inverse[href] {
- background-color: #1a1a1a;
-}
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-moz-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-ms-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 0 0;
- }
- to {
- background-position: 40px 0;
- }
-}
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- overflow: hidden;
- height: 18px;
- margin-bottom: 18px;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.progress .bar {
- width: 0%;
- height: 18px;
- color: #ffffff;
- font-size: 12px;
- text-align: center;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #0e90d2;
- background-image: -moz-linear-gradient(top, #149bdf, #0480be);
- background-image: -ms-linear-gradient(top, #149bdf, #0480be);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
- background-image: -o-linear-gradient(top, #149bdf, #0480be);
- background-image: linear-gradient(top, #149bdf, #0480be);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-transition: width 0.6s ease;
- -moz-transition: width 0.6s ease;
- -ms-transition: width 0.6s ease;
- -o-transition: width 0.6s ease;
- transition: width 0.6s ease;
-}
-.progress-striped .bar {
- background-color: #149bdf;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-background-size: 40px 40px;
- -moz-background-size: 40px 40px;
- -o-background-size: 40px 40px;
- background-size: 40px 40px;
-}
-.progress.active .bar {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- -moz-animation: progress-bar-stripes 2s linear infinite;
- -ms-animation: progress-bar-stripes 2s linear infinite;
- -o-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-danger .bar {
- background-color: #dd514c;
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
-}
-.progress-danger.progress-striped .bar {
- background-color: #ee5f5b;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-success .bar {
- background-color: #5eb95e;
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
- background-image: -o-linear-gradient(top, #62c462, #57a957);
- background-image: linear-gradient(top, #62c462, #57a957);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
-}
-.progress-success.progress-striped .bar {
- background-color: #62c462;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-info .bar {
- background-color: #4bb1cf;
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
- background-image: linear-gradient(top, #5bc0de, #339bb9);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
-}
-.progress-info.progress-striped .bar {
- background-color: #5bc0de;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-warning .bar {
- background-color: #ff942e;
- background-image: -moz-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -ms-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa44d), to(#ff7d00));
- background-image: -webkit-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: -o-linear-gradient(top, #ffa44d, #ff7d00);
- background-image: linear-gradient(top, #ffa44d, #ff7d00);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa44d', endColorstr='#ff7d00', GradientType=0);
-}
-.progress-warning.progress-striped .bar {
- background-color: #ffa44d;
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.accordion {
- margin-bottom: 18px;
-}
-.accordion-group {
- margin-bottom: 2px;
- border: 1px solid #e5e5e5;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.accordion-heading {
- border-bottom: 0;
-}
-.accordion-heading .accordion-toggle {
- display: block;
- padding: 8px 15px;
-}
-.accordion-toggle {
- cursor: pointer;
-}
-.accordion-inner {
- padding: 9px 15px;
- border-top: 1px solid #e5e5e5;
-}
-.carousel {
- position: relative;
- margin-bottom: 18px;
- line-height: 1;
-}
-.carousel-inner {
- overflow: hidden;
- width: 100%;
- position: relative;
-}
-.carousel .item {
- display: none;
- position: relative;
- -webkit-transition: 0.6s ease-in-out left;
- -moz-transition: 0.6s ease-in-out left;
- -ms-transition: 0.6s ease-in-out left;
- -o-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
-}
-.carousel .item > img {
- display: block;
- line-height: 1;
-}
-.carousel .active,
-.carousel .next,
-.carousel .prev {
- display: block;
-}
-.carousel .active {
- left: 0;
-}
-.carousel .next,
-.carousel .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel .next {
- left: 100%;
-}
-.carousel .prev {
- left: -100%;
-}
-.carousel .next.left,
-.carousel .prev.right {
- left: 0;
-}
-.carousel .active.left {
- left: -100%;
-}
-.carousel .active.right {
- left: 100%;
-}
-.carousel-control {
- position: absolute;
- top: 40%;
- left: 15px;
- width: 40px;
- height: 40px;
- margin-top: -20px;
- font-size: 60px;
- font-weight: 100;
- line-height: 30px;
- color: #ffffff;
- text-align: center;
- background: #222222;
- border: 3px solid #ffffff;
- -webkit-border-radius: 23px;
- -moz-border-radius: 23px;
- border-radius: 23px;
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-.carousel-control.right {
- left: auto;
- right: 15px;
-}
-.carousel-control:hover {
- color: #ffffff;
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-.carousel-caption {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 10px 15px 5px;
- background: #333333;
- background: rgba(0, 0, 0, 0.75);
-}
-.carousel-caption h4,
-.carousel-caption p {
- color: #ffffff;
-}
-.hero-unit {
- padding: 60px;
- margin-bottom: 30px;
- background-color: #f5f5f5;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.hero-unit h1 {
- margin-bottom: 0;
- font-size: 60px;
- line-height: 1;
- color: inherit;
- letter-spacing: -1px;
-}
-.hero-unit p {
- font-size: 18px;
- font-weight: 200;
- line-height: 27px;
- color: inherit;
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
-.navbar .navbar-inner {
- border-bottom: 1px solid #CACACA;
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
-}
-.navbar .brand {
- font-weight: bold;
-}
-.navbar .brand:hover {
- color: #4183c4;
-}
-.navbar .nav > li.active > a,
-.navbar .nav > li.dropdown > .dropdown-toggle,
-.navbar .nav > li.dropdown.active > .dropdown-toggle,
-.navbar .nav > li.dropdown.open > .dropdown-toggle,
-.navbar .nav > li.dropdown.open.active > .dropdown-toggle {
- color: #333333;
-}
-.navbar .nav > li.active > a:hover,
-.navbar .nav > li.dropdown > .dropdown-toggle:hover,
-.navbar .nav > li.dropdown.active > .dropdown-toggle:hover,
-.navbar .nav > li.dropdown.open > .dropdown-toggle:hover,
-.navbar .nav > li.dropdown.open.active > .dropdown-toggle:hover {
- color: #4183c4;
-}
-.navbar .nav > li.active > a .caret,
-.navbar .nav > li.dropdown > .dropdown-toggle .caret,
-.navbar .nav > li.dropdown.active > .dropdown-toggle .caret,
-.navbar .nav > li.dropdown.open > .dropdown-toggle .caret,
-.navbar .nav > li.dropdown.open.active > .dropdown-toggle .caret {
- border-top-color: #333333;
-}
-.navbar .navbar-text {
- margin-top: 2px;
- padding: 0 10px;
- line-height: 38px;
-}
-.navbar .nav > li > a {
- padding: 11px 10px 9px;
- font-weight: bold;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-}
-.navbar .navbar-search .search-query,
-.navbar .navbar-search .search-query:hover {
- border: none;
- color: #999999;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
-}
-.navbar .navbar-search .search-query:-moz-placeholder,
-.navbar .navbar-search .search-query:hover:-moz-placeholder {
- color: #999999;
-}
-.navbar .navbar-search .search-query:-ms-input-placeholder,
-.navbar .navbar-search .search-query:hover:-ms-input-placeholder {
- color: #999999;
-}
-.navbar .navbar-search .search-query::-webkit-input-placeholder,
-.navbar .navbar-search .search-query:hover::-webkit-input-placeholder {
- color: #999999;
-}
-.navbar .navbar-search .search-query:focus,
-.navbar .navbar-search .search-query:hover:focus,
-.navbar .navbar-search .search-query.focused,
-.navbar .navbar-search .search-query:hover.focused {
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
- color: #333333;
-}
-.navbar .nav-collapse.in .navbar-search {
- border-top: none;
- border-bottom: none;
-}
-.navbar .nav-collapse.in > .nav li > a {
- color: #333333;
-}
-.navbar .nav-collapse.in > .nav li > a:hover {
- text-shadow: none;
- color: #4183c4;
- background-color: transparent;
-}
-div.subnav .nav > li > a {
- font-weight: bold;
- color: #333333;
-}
-div.subnav .nav > li > a:hover {
- color: #4183c4;
-}
-div.subnav .nav > li.active > a {
- color: #333333;
-}
-div.subnav .nav > li.active > a:hover {
- color: #333333;
-}
-div.subnav .nav > li.dropdown > .dropdown-toggle {
- background-color: transparent;
-}
-div.subnav .nav > li.dropdown.open > .dropdown-toggle {
- border-left: 1px solid whiteSmoke;
- border-right: 1px solid #E5E5E5;
- color: #333333;
-}
-div.subnav .nav > li.dropdown.open > .dropdown-toggle:hover {
- color: #4183c4;
-}
-.nav > li.dropdown > .dropdown-toggle .caret,
-.nav > li.dropdown.active > .dropdown-toggle .caret,
-.nav > li.dropdown.open > .dropdown-toggle .caret,
-.nav > li.dropdown.open.active > .dropdown-toggle .caret {
- border-top: 4px solid #333333;
- border-top-color: #333333;
- opacity: 1;
-}
-.nav > li.dropdown > .dropdown-toggle:hover .caret,
-.nav > li.dropdown.active > .dropdown-toggle:hover .caret,
-.nav > li.dropdown.open > .dropdown-toggle:hover .caret,
-.nav > li.dropdown.open.active > .dropdown-toggle:hover .caret {
- border-top: 4px solid #4183c4;
- border-top-color: #4183c4;
-}
-.btn {
- background-color: #f1f1f1;
- background-image: -moz-linear-gradient(top, #f4f4f4, #ececec);
- background-image: -ms-linear-gradient(top, #f4f4f4, #ececec);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
- background-image: -webkit-linear-gradient(top, #f4f4f4, #ececec);
- background-image: -o-linear-gradient(top, #f4f4f4, #ececec);
- background-image: linear-gradient(top, #f4f4f4, #ececec);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#ececec', GradientType=0);
- border-color: #ececec #ececec #c6c6c6;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #ececec;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn:hover,
-.btn:active,
-.btn.active,
-.btn.disabled,
-.btn[disabled] {
- background-color: #ececec;
- *background-color: #dfdfdf;
-}
-.btn:active,
-.btn.active {
- background-color: #d3d3d3 \9;
-}
-.btn-primary {
- background-color: #707070;
- background-image: -moz-linear-gradient(top, #909090, #3f3f3f);
- background-image: -ms-linear-gradient(top, #909090, #3f3f3f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#909090), to(#3f3f3f));
- background-image: -webkit-linear-gradient(top, #909090, #3f3f3f);
- background-image: -o-linear-gradient(top, #909090, #3f3f3f);
- background-image: linear-gradient(top, #909090, #3f3f3f);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#909090', endColorstr='#3f3f3f', GradientType=0);
- border-color: #3f3f3f #3f3f3f #191919;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #3f3f3f;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active,
-.btn-primary.disabled,
-.btn-primary[disabled] {
- background-color: #3f3f3f;
- *background-color: #323232;
-}
-.btn-primary:active,
-.btn-primary.active {
- background-color: #262626 \9;
-}
-.btn-warning {
- background-color: #fbd627;
- background-image: -moz-linear-gradient(top, #ffde42, #f4ca00);
- background-image: -ms-linear-gradient(top, #ffde42, #f4ca00);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffde42), to(#f4ca00));
- background-image: -webkit-linear-gradient(top, #ffde42, #f4ca00);
- background-image: -o-linear-gradient(top, #ffde42, #f4ca00);
- background-image: linear-gradient(top, #ffde42, #f4ca00);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffde42', endColorstr='#f4ca00', GradientType=0);
- border-color: #f4ca00 #f4ca00 #a88b00;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #f4ca00;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active,
-.btn-warning.disabled,
-.btn-warning[disabled] {
- background-color: #f4ca00;
- *background-color: #dbb500;
-}
-.btn-warning:active,
-.btn-warning.active {
- background-color: #c1a000 \9;
-}
-.btn-danger {
- background-color: #e15454;
- background-image: -moz-linear-gradient(top, #e56e6e, #da2d2d);
- background-image: -ms-linear-gradient(top, #e56e6e, #da2d2d);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e56e6e), to(#da2d2d));
- background-image: -webkit-linear-gradient(top, #e56e6e, #da2d2d);
- background-image: -o-linear-gradient(top, #e56e6e, #da2d2d);
- background-image: linear-gradient(top, #e56e6e, #da2d2d);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e56e6e', endColorstr='#da2d2d', GradientType=0);
- border-color: #da2d2d #da2d2d #9f1c1c;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #da2d2d;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active,
-.btn-danger.disabled,
-.btn-danger[disabled] {
- background-color: #da2d2d;
- *background-color: #ca2424;
-}
-.btn-danger:active,
-.btn-danger.active {
- background-color: #b42020 \9;
-}
-.btn-success {
- background-color: #79cb5d;
- background-image: -moz-linear-gradient(top, #8add6d, #60b044);
- background-image: -ms-linear-gradient(top, #8add6d, #60b044);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8add6d), to(#60b044));
- background-image: -webkit-linear-gradient(top, #8add6d, #60b044);
- background-image: -o-linear-gradient(top, #8add6d, #60b044);
- background-image: linear-gradient(top, #8add6d, #60b044);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8add6d', endColorstr='#60b044', GradientType=0);
- border-color: #60b044 #60b044 #42792f;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #60b044;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active,
-.btn-success.disabled,
-.btn-success[disabled] {
- background-color: #60b044;
- *background-color: #569e3d;
-}
-.btn-success:active,
-.btn-success.active {
- background-color: #4c8b36 \9;
-}
-.btn-info {
- background-color: #669dc7;
- background-image: -moz-linear-gradient(top, #7caccf, #4488bb);
- background-image: -ms-linear-gradient(top, #7caccf, #4488bb);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7caccf), to(#4488bb));
- background-image: -webkit-linear-gradient(top, #7caccf, #4488bb);
- background-image: -o-linear-gradient(top, #7caccf, #4488bb);
- background-image: linear-gradient(top, #7caccf, #4488bb);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7caccf', endColorstr='#4488bb', GradientType=0);
- border-color: #4488bb #4488bb #305f83;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #4488bb;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active,
-.btn-info.disabled,
-.btn-info[disabled] {
- background-color: #4488bb;
- *background-color: #3d7aa8;
-}
-.btn-info:active,
-.btn-info.active {
- background-color: #366d96 \9;
-}
-.btn-inverse {
- background-color: #466274;
- background-image: -moz-linear-gradient(top, #4a687a, #405a6a);
- background-image: -ms-linear-gradient(top, #4a687a, #405a6a);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4a687a), to(#405a6a));
- background-image: -webkit-linear-gradient(top, #4a687a, #405a6a);
- background-image: -o-linear-gradient(top, #4a687a, #405a6a);
- background-image: linear-gradient(top, #4a687a, #405a6a);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a687a', endColorstr='#405a6a', GradientType=0);
- border-color: #405a6a #405a6a #23323a;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- *background-color: #405a6a;
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
-
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.btn-inverse:hover,
-.btn-inverse:active,
-.btn-inverse.active,
-.btn-inverse.disabled,
-.btn-inverse[disabled] {
- background-color: #405a6a;
- *background-color: #364d5a;
-}
-.btn-inverse:active,
-.btn-inverse.active {
- background-color: #2d3f4a \9;
-}
-.control-group.warning > label,
-.control-group.warning .help-block,
-.control-group.warning .help-inline {
- color: #e29235;
-}
-.control-group.warning .checkbox,
-.control-group.warning .radio,
-.control-group.warning input,
-.control-group.warning select,
-.control-group.warning textarea {
- color: #e29235;
- border-color: #e29235;
-}
-.control-group.warning .checkbox:focus,
-.control-group.warning .radio:focus,
-.control-group.warning input:focus,
-.control-group.warning select:focus,
-.control-group.warning textarea:focus {
- border-color: #c7781d;
- -webkit-box-shadow: 0 0 6px #efc28e;
- -moz-box-shadow: 0 0 6px #efc28e;
- box-shadow: 0 0 6px #efc28e;
-}
-.control-group.warning .input-prepend .add-on,
-.control-group.warning .input-append .add-on {
- color: #e29235;
- background-color: #f5f3b4;
- border-color: #e29235;
-}
-.control-group.error > label,
-.control-group.error .help-block,
-.control-group.error .help-inline {
- color: #cc0000;
-}
-.control-group.error .checkbox,
-.control-group.error .radio,
-.control-group.error input,
-.control-group.error select,
-.control-group.error textarea {
- color: #cc0000;
- border-color: #cc0000;
-}
-.control-group.error .checkbox:focus,
-.control-group.error .radio:focus,
-.control-group.error input:focus,
-.control-group.error select:focus,
-.control-group.error textarea:focus {
- border-color: #990000;
- -webkit-box-shadow: 0 0 6px #ff3333;
- -moz-box-shadow: 0 0 6px #ff3333;
- box-shadow: 0 0 6px #ff3333;
-}
-.control-group.error .input-prepend .add-on,
-.control-group.error .input-append .add-on {
- color: #cc0000;
- background-color: #ffe9e9;
- border-color: #cc0000;
-}
-.control-group.success > label,
-.control-group.success .help-block,
-.control-group.success .help-inline {
- color: #2ba949;
-}
-.control-group.success .checkbox,
-.control-group.success .radio,
-.control-group.success input,
-.control-group.success select,
-.control-group.success textarea {
- color: #2ba949;
- border-color: #2ba949;
-}
-.control-group.success .checkbox:focus,
-.control-group.success .radio:focus,
-.control-group.success input:focus,
-.control-group.success select:focus,
-.control-group.success textarea:focus {
- border-color: #218037;
- -webkit-box-shadow: 0 0 6px #63d77e;
- -moz-box-shadow: 0 0 6px #63d77e;
- box-shadow: 0 0 6px #63d77e;
-}
-.control-group.success .input-prepend .add-on,
-.control-group.success .input-append .add-on {
- color: #2ba949;
- background-color: #bedebe;
- border-color: #2ba949;
-}
-.label-important,
-.badge-important {
- background-color: #BD2C00;
-}
-.label-warning,
-.badge-warning {
- background-color: #E3E84D;
-}
-.label-success,
-.badge-success {
- background-color: #6CC644;
-}
-.label-info,
-.badge-info {
- background-color: #4183C4;
-}
-.hero-unit {
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
- border: 1px solid rgba(0, 0, 0, 0.05);
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-.hide {
- display: none;
-}
-.show {
- display: block;
-}
-.invisible {
- visibility: hidden;
-}
diff --git a/main/css/spacelab/default.css b/main/css/spacelab/default.css
deleted file mode 100755
index b9565ccde3..0000000000
--- a/main/css/spacelab/default.css
+++ /dev/null
@@ -1,8 +0,0 @@
-@import url('bootstrap.css');
-
-/* Adding default style for the chamilo_X themes */
-@import url('../base_chamilo.css');
-
-footer a:link, footer a:visited {
- color: #4183C4;
-}
\ No newline at end of file
diff --git a/main/css/spacelab/images/blue_arrow.png b/main/css/spacelab/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/spacelab/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/spacelab/images/white_arrow.png b/main/css/spacelab/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/spacelab/images/white_arrow.png and /dev/null differ
diff --git a/main/css/spacelab/scorm.css b/main/css/spacelab/scorm.css
deleted file mode 100644
index 57491027ad..0000000000
--- a/main/css/spacelab/scorm.css
+++ /dev/null
@@ -1,466 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #00aad4;
- background-color: #00aad4;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: #D7EEF4;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/steel_grey/chat.css b/main/css/steel_grey/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/steel_grey/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/steel_grey/dataTable.css b/main/css/steel_grey/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/steel_grey/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/steel_grey/default.css b/main/css/steel_grey/default.css
deleted file mode 100755
index d2dc928334..0000000000
--- a/main/css/steel_grey/default.css
+++ /dev/null
@@ -1,2735 +0,0 @@
-/*****************************************************
- * MAIN STEEL GREY *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
- height: 100%; /* stick */
-}
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height:0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #808080;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #808080;
-}
-/* form elements */
-
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
-}
-input[text] {
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/********************************************************
- * HEADER 1: Title, portal, organisation, course title *
- ********************************************************/
-#header1 {
- padding: 4px;
- color: #808080;
-}
-#header1 a {
- color: #636363;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#top_corner {
-}
-#institution {
- float: left;
-}
-#my_courses {
- float: right;
-}
-
-/*****************************************************
- * TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-}
-
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav #current a {
- background-color: #808080; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #808080 0%, #A5A5A5 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#808080), color-stop(100%,#A5A5A5)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #808080 0%, #A5A5A5 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #808080 0%,#A5A5A5 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #808080 0%,#A5A5A5 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#808080', endColorstr='#A5A5A5',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #808080 0%, #A5A5A5 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-#logout {
- display: inline;
- float: right;
- width: auto;
- text-align: right;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
- padding-bottom:10px;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 3em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #808080;
- color: #808080;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/* New training */
-.bottom-link {
- background-color:#E5EDF9;
- border-color: #D4E2F6;
- background-image:url(images/button_back.jpg);
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #808080;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/*
-------------------------------------------------------------------------------
- Survey
-------------------------------------------------------------------------------
-*/
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
- padding-left: -17px;
- margin: 5px 2px 1px 12px;
- vertical-align:middle;
- width: 90%;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #808080;
- border-top:1px dotted #808080;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover {
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu-wrapper {
- width:200px;
- float: right;
-}
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /* margin-right:10px; */
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:10px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-/* New forum table */
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/steel_grey/frames.css b/main/css/steel_grey/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/steel_grey/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/steel_grey/images/2leftarrow.gif b/main/css/steel_grey/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/steel_grey/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/2rightarrow.gif b/main/css/steel_grey/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/steel_grey/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/bar_1.gif b/main/css/steel_grey/images/bar_1.gif
deleted file mode 100755
index 85ed01b1d2..0000000000
Binary files a/main/css/steel_grey/images/bar_1.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/bar_1m.gif b/main/css/steel_grey/images/bar_1m.gif
deleted file mode 100755
index b4c6e5a25c..0000000000
Binary files a/main/css/steel_grey/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/bar_1r.gif b/main/css/steel_grey/images/bar_1r.gif
deleted file mode 100755
index 88a01c1920..0000000000
Binary files a/main/css/steel_grey/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/bar_1u.gif b/main/css/steel_grey/images/bar_1u.gif
deleted file mode 100755
index b4c6e5a25c..0000000000
Binary files a/main/css/steel_grey/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/blue_arrow.png b/main/css/steel_grey/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/steel_grey/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/steel_grey/images/button_accept.gif b/main/css/steel_grey/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/steel_grey/images/button_accept.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_add.gif b/main/css/steel_grey/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/steel_grey/images/button_add.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_back.gif b/main/css/steel_grey/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/steel_grey/images/button_back.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_back.jpg b/main/css/steel_grey/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/steel_grey/images/button_back.jpg and /dev/null differ
diff --git a/main/css/steel_grey/images/button_delete.gif b/main/css/steel_grey/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/steel_grey/images/button_delete.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_login.gif b/main/css/steel_grey/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/steel_grey/images/button_login.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_minus.gif b/main/css/steel_grey/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/steel_grey/images/button_minus.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_next.gif b/main/css/steel_grey/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/steel_grey/images/button_next.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_plus.gif b/main/css/steel_grey/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/steel_grey/images/button_plus.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_refresh.gif b/main/css/steel_grey/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/steel_grey/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_search.gif b/main/css/steel_grey/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/steel_grey/images/button_search.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/button_upload.gif b/main/css/steel_grey/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/steel_grey/images/button_upload.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/Sorting icons.psd b/main/css/steel_grey/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/steel_grey/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/back_disabled.jpg b/main/css/steel_grey/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/steel_grey/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/back_enabled.jpg b/main/css/steel_grey/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/steel_grey/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/favicon.ico b/main/css/steel_grey/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/steel_grey/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/forward_disabled.jpg b/main/css/steel_grey/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/steel_grey/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/forward_enabled.jpg b/main/css/steel_grey/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/steel_grey/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/sort_asc.png b/main/css/steel_grey/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/steel_grey/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/sort_asc_disabled.png b/main/css/steel_grey/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/steel_grey/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/sort_both.png b/main/css/steel_grey/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/steel_grey/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/sort_desc.png b/main/css/steel_grey/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/steel_grey/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/steel_grey/images/dataTable/sort_desc_disabled.png b/main/css/steel_grey/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/steel_grey/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/steel_grey/images/help2.png b/main/css/steel_grey/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/steel_grey/images/help2.png and /dev/null differ
diff --git a/main/css/steel_grey/images/index.html b/main/css/steel_grey/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/steel_grey/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/steel_grey/images/loading.gif b/main/css/steel_grey/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/steel_grey/images/loading.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/portal.png b/main/css/steel_grey/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/steel_grey/images/portal.png and /dev/null differ
diff --git a/main/css/steel_grey/images/refresh.png b/main/css/steel_grey/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/steel_grey/images/refresh.png and /dev/null differ
diff --git a/main/css/steel_grey/images/shadow.gif b/main/css/steel_grey/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/steel_grey/images/shadow.gif and /dev/null differ
diff --git a/main/css/steel_grey/images/tab-left.png b/main/css/steel_grey/images/tab-left.png
deleted file mode 100755
index aba3ccaba0..0000000000
Binary files a/main/css/steel_grey/images/tab-left.png and /dev/null differ
diff --git a/main/css/steel_grey/images/tab-repeat.png b/main/css/steel_grey/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/steel_grey/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/steel_grey/images/tab-right.png b/main/css/steel_grey/images/tab-right.png
deleted file mode 100755
index aa93d58138..0000000000
Binary files a/main/css/steel_grey/images/tab-right.png and /dev/null differ
diff --git a/main/css/steel_grey/images/tab.png b/main/css/steel_grey/images/tab.png
deleted file mode 100755
index 99e75c9385..0000000000
Binary files a/main/css/steel_grey/images/tab.png and /dev/null differ
diff --git a/main/css/steel_grey/images/white_arrow.png b/main/css/steel_grey/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/steel_grey/images/white_arrow.png and /dev/null differ
diff --git a/main/css/steel_grey/learnpath.css b/main/css/steel_grey/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/steel_grey/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/steel_grey/online.css b/main/css/steel_grey/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/steel_grey/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/steel_grey/print.css b/main/css/steel_grey/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/steel_grey/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/steel_grey/scorm.css b/main/css/steel_grey/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/steel_grey/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/steel_grey/scormfs.css b/main/css/steel_grey/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/steel_grey/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/steel_grey/screen.css b/main/css/steel_grey/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/student.png b/main/css/student.png
deleted file mode 100755
index 666c496583..0000000000
Binary files a/main/css/student.png and /dev/null differ
diff --git a/main/css/tasty_olive/chat.css b/main/css/tasty_olive/chat.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/tasty_olive/chat.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/tasty_olive/dataTable.css b/main/css/tasty_olive/dataTable.css
deleted file mode 100755
index 9983117920..0000000000
--- a/main/css/tasty_olive/dataTable.css
+++ /dev/null
@@ -1,543 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- * Note: dataTable.css was later released as part of the jquery.dataTables
- * plugin, released itself as GPLv2. As such, we believe this copyright is no
- * longer an issue and will try to upgrade to a later version of dataTables
- * in the near future. -- Yannick Warnier, Chamilo project leader, 2014-04
- * See https://support.chamilo.org/issues/7043
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * images/dataTable/ - relative to this CSS file.
- */
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables features
- */
-
-.dataTables_wrapper {
- position: relative;
- min-height: 302px;
- clear: both;
- _height: 302px;
- zoom: 1; /* Feeling sorry for IE */
-}
-
-.dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 250px;
- height: 30px;
- margin-left: -125px;
- margin-top: -15px;
- padding: 14px 0 2px 0;
- border: 1px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 14px;
- background-color: white;
-}
-
-.dataTables_length {
- width: 40%;
- float: left;
-}
-
-.dataTables_filter {
- width: 50%;
- float: right;
- text-align: right;
-}
-
-.dataTables_info {
- width: 60%;
- float: left;
-}
-
-.dataTables_paginate {
- width: 44px;
- * width: 50px;
- float: right;
- text-align: right;
-}
-
-/* Pagination nested */
-.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
-}
-
-.paginate_disabled_previous {
- background-image: url('images/dataTale/back_disabled.jpg');
-}
-
-.paginate_enabled_previous {
- background-image: url('images/dataTable/back_enabled.jpg');
-}
-
-.paginate_disabled_next {
- background-image: url('images/dataTable/forward_disabled.jpg');
-}
-
-.paginate_enabled_next {
- background-image: url('images/dataTable/forward_enabled.jpg');
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
-
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-
-table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- * cursor: hand;
-}
-
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-
-table.display td {
- padding: 3px 10px;
-}
-
-table.display td.center {
- text-align: center;
-}
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
-
-.sorting_asc {
- background: url('images/dataTable/sort_asc.png') no-repeat center right;
-}
-
-.sorting_desc {
- background: url('images/dataTable/sort_desc.png') no-repeat center right;
-}
-
-.sorting {
- background: url('images/dataTable/sort_both.png') no-repeat center right;
-}
-
-.sorting_asc_disabled {
- background: url('images/dataTable/sort_asc_disabled.png') no-repeat center right;
-}
-
-.sorting_desc_disabled {
- background: url('images/dataTable/sort_desc_disabled.png') no-repeat center right;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-
-
-tr.odd {
- background-color: #E2E4FF;
-}
-
-tr.even {
- background-color: white;
-}
-
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-
-.dataTables_scrollBody {
- *margin-top: -1px;
-}
-
-.top, .bottom {
- padding: 15px;
- background-color: #F5F5F5;
- border: 1px solid #CCCCCC;
-}
-
-.top .dataTables_info {
- float: none;
-}
-
-.clear {
- clear: both;
-}
-
-.dataTables_empty {
- text-align: center;
-}
-
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-
-tfoot input.search_init {
- color: #999;
-}
-
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-
-
-.example_alt_pagination div.dataTables_info {
- width: 40%;
-}
-
-.paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
-}
-
-.paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
-}
-
-.paging_full_numbers span.paginate_button {
- background-color: #ddd;
-}
-
-.paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
-}
-
-.paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
-}
-
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-
-
-/*
- * Sorting classes for columns
- */
-/* For the standard odd/even */
-tr.odd td.sorting_1 {
- background-color: #D3D6FF;
-}
-
-tr.odd td.sorting_2 {
- background-color: #DADCFF;
-}
-
-tr.odd td.sorting_3 {
- background-color: #E0E2FF;
-}
-
-tr.even td.sorting_1 {
- background-color: #EAEBFF;
-}
-
-tr.even td.sorting_2 {
- background-color: #F2F3FF;
-}
-
-tr.even td.sorting_3 {
- background-color: #F9F9FF;
-}
-
-
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-
-table.display tr.gradeU {
- background-color: #ddd;
-}
-
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
diff --git a/main/css/tasty_olive/default.css b/main/css/tasty_olive/default.css
deleted file mode 100755
index 4c387c06cf..0000000000
--- a/main/css/tasty_olive/default.css
+++ /dev/null
@@ -1,2698 +0,0 @@
-/*****************************************************
- * MAIN TASTY OLIVE *
- *****************************************************/
-/* Adding default generic style for non chamilo_X themes */
-@import url('../base.css');
-
-/* Redefining html styles */
-body {
- /* hack ignored by non-IE to enable ie to support :hover on button */
- behavior:url("/main/css/csshover3.htc");
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-
-/*
------------------------------------------------------------------------------
-Side-Menu Slider (JQuery) see banner.inc.php
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 10px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#879DAA;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .report a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#8fd400;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-ul#navigation .student a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#b27651 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding-bottom: 8px;
-}
-
-
-ul#navigation .user-online a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#ccbc67 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-/* Other colors for other tabs in the earth tones */
- ul#navigation .user-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#fac97a ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-ul#navigation .student-connect a {
- -moz-border-radius:8px 0 0 8px;
- -moz-box-shadow:0 2px 2px #000000;
- background-color:#d0d5d1 ;
- background-position:center center;
- background-repeat:no-repeat;
- border:1px solid #FFFFFF;
- display:block;
- height:44px;
- margin-left:1px;
- opacity:0.6;
- width:65px;
- padding: 6px 0 8px 6px;
-}
-
-
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-.clear {
- clear: both;
- line-height:0px;
- height: 0;
-}
-
-/*
------------------------------------------------------------------------------
-Menu Slide JQuery
------------------------------------------------------------------------------
-*/
-ul#navigation {
- position: fixed;
- margin: 0px;
- padding: 0px;
- top: 110px;
- right: -10px;
- list-style: none;
- z-index:9999;
-}
-
-ul#navigation li {
- width: 73px;
-}
-
-ul#navigation li a {
- display: block;
- margin-left: 1px;
- width: 65px;
- height: 60px;
- background-color:#CFCFCF;
- background-repeat:no-repeat;
- background-position:center center;
- border:1px solid #AFAFAF;
- -moz-border-radius:10px 0px 0px 10px;
- -webkit-border-bottom-right-radius: 10px;
- -webkit-border-top-right-radius: 10x;
- -khtml-border-bottom-right-radius: 10px;
- -khtml-border-top-right-radius: 10px;
- -moz-box-shadow: 0px 4px 3px #000;
- opacity: 0.6;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
- -webkit-box-shadow: 0px 4px 3px #000;
-}
-
-ul#navigation .help a{
- background-image: url(images/help2.png);
-}
-
-/*****************************************************
- * REDEFINED HTML TAGS *
- *****************************************************/
-img {
- border: none;
-}
-p, blockquote, ol, ul {
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
-}
-/* the following for regular elements */
-a {
- text-decoration: none;
- font-weight : bold;
- color : #8e975b;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
-}
-a:hover {
- text-decoration: none;
- color: #a8a7a7;
- font-weight: bold;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #8e975b;
-}
-/* user_portal course status icon */
-.coursestatusicons {
- border: 0px solid #000;
- float: left;
- padding-right: 5px;
- width: auto;
-}
-/* user_portal course list */
-.courses {
- list-style-type: none;
- margin-bottom: 5px;
- height: 30px;
-}
-/* user_portal session list */
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 0px;
- font-size:135%;
-}
-.session_course_item .item_closed, .userportal-course-item-title .item_closed {
- font-size:80%;
-}
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-
-#institution {
- float: left;
-}
-
-/*****************************************************
- * TABS OF THE HEADER *
- *****************************************************/
-.subnav .navbar-inner {
- background-color: #4C4C4C; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4C4C4C), color-stop(100%,#747474)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #4C4C4C 0%, #747474 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #4C4C4C 0%,#747474 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#747474',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #4C4C4C 0%, #747474 100%); /* W3C */
-}
-.subnav .nav > li > a {
- color:white;
-}
-
-.subnav #current a {
- background-color: #8E975B; /* Old browsers */
- background-repeat: repeat-x; /* Repeat the gradient */
- background-image: -moz-linear-gradient(top, #8E975B 0%, #B7BD93 100%); /* FF3.6+ */
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8E975B), color-stop(100%,#B7BD93)); /* Chrome,Safari4+ */
- background-image: -webkit-linear-gradient(top, #8E975B 0%, #B7BD93 100%); /* Chrome 10+,Safari 5.1+ */
- background-image: -ms-linear-gradient(top, #8E975B 0%,#B7BD93 100%); /* IE10+ */
- background-image: -o-linear-gradient(top, #8E975B 0%,#B7BD93 100%); /* Opera 11.10+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8E975B', endColorstr='#B7BD93',GradientType=0 ); /* IE6-9 */
- background-image: linear-gradient(top, #8E975B 0%, #B7BD93 100%); /* W3C */
-}
-.subnav .nav > #current > a, .subnav .nav > #current > a:hover {
- color: white;
-}
-.subnav a:hover {
- color: #a8a7a7;
-}
-.subnav .nav > li > a {
- border-left: none;
- border-right: none;
-}
-
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
- clear: right;
- margin-left: auto;
- margin-right: auto;
- width: 98%;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-footer {
- background-color: #434343;
- background-image: url(images/tab-repeat.png);
- background-repeat:repeat-x;
- font-size: 12px;
- color:#ffffff;
- min-height: 50px;
- overflow:hidden;
- width: 100%;
-}
-footer a:link, footer a:visited {
- color:#fff;
-}
-.push {
- height: 3em; /* Very important */
-}
-
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 190px 0 0;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#toolnav {
- float:right;
- margin:-7px 0 0 -5%;
- overflow:hidden;
- padding:0;
- width:180px;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-
-/* --- course navigation menu as a definition list --- */
-#swap_menu_link {
- float: left;
-}
-#toolnavbox {
- margin: 0 0 0 10px;
- padding: 0;
- float: left;
- border: 1px solid #4271b5;
-}
-#toolnavbox dl {
- width: 160px;
- margin: 0 auto;
- padding: 0;
- background: transparent;
- text-align: center;
-}
-#toolnavbox dt {
- margin: 0;
- padding: 0;
- font-weight: bold;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#toolnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #E5EDF9;
-}
-#toolnav img {
- float: left;
- width: 25px;
- height: 25px;
- margin: 0 4px 0 0;
-}
-#toolnavlist a, #toolnavlist a:link {
- background: #E5EDF9;
- color: #4171b5;
- padding: 5px 5px 5px 10px;
- margin: 0;
- text-decoration: none;
- display: block;
- line-height:24px;
-}
-#toolnavlist a:hover {
- background: #fff;
- color:#4171b5;
-}
-#toolnavlist a#here {
- background: #fff;
- color:#4171b5;
-}
-/* --- end of course navigation menu section --- */
-/*
-this lets the navigation menu appear to the left:
-#center { margin: 0 0 0 180px; padding: 10px 0 40px 0;
- min-height: 300px; }
-
-#toolnav { float: left; width: 180px; padding: 20px 0 0 0;
- margin-left: -5%;
-}
-#toolnav { float: right; width: 180px; padding: 0; margin: 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left
-}*/
-
-
-/* LOGIN AND LANGUAGE FORM */
-#lang_form {
- text-align: left;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
-}
-#formLogin label {
- margin: 4px 6px;
-}
-#formLogin input {
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- color: #f00;
-}
-input.mainoption {
- font-weight : bold;
-}
-input.liteoption {
- font-weight : normal;
-}
-/*****************************************************
- * COURSE HOMEPAGE *
- *****************************************************/
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #636363;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.Authoringview, .courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #636363;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-weight: bold;
- color: #636363;
- background-color: #fff;
- padding: 0 4px;
-}
-/*****************************************************
- * AGENDA *
- *****************************************************/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #bbb;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: center;
-}
-#agenda .title a {
- color: #fff;
-}
-#agenda .agendaitem {
-}
-#smallcalendar .title {
- background-color: #dcdcdc;
- font-weight: bold;
- padding: 2px;
- color: #666;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #666;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list .title {
- background-color: #dcdcdc;
- font-weight: bold;
- color: #666;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #bbb;
-}
-#agenda_list .title a:link, #agenda_list #title a:visited {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #666;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list .title a:hover {
- background-color: #dcdcdc;
- font-weight: bold;
- font-size: 11px;
- color: #f3840d;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #ccc;
- border-collapse: collapse;
- background-color: #FFFFC0;
-}
-
-#agenda_list th {
- background-color:#E5EDF9;
- border:1px solid gray;
- padding-right:12px;
-}
-
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #dcdcdc;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #dcdcdc;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-
-/*****************************************************
- * DISPLAY MESSAGES *
- *****************************************************/
-/* normal and erro message-box */
-.normal-message {
- border: 1px solid #8e975b;
- color: #8e975b;
- background-color: #EFEFEF;
-}
-.warning-message {
- border: 1px solid #FF6600;
- color: #666666;
- background-color: #FFCD82;
-}
-.confirmation-message {
- border: 1px solid #1F8323;
- color: #1F8323;
- background-color: #EFEFEF;
-}
-.error-message {
- border: 1px solid #FF0000;
- color: #FF0000;
- background-color: #EFEFEF;
-}
-/**********************************************
- * DOCUMENT MODULE *
- **********************************************/
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-.document_owner {
- text-align: right;
-}
-/**********************************************
- * DROPBOX MODULE *
- **********************************************/
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/**********************************************
- * CHAT MODULE *
- **********************************************/
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* the following for the grayed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- line-height: 14px;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 8px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- border: 1px solid #636363;
- background-image: url(images/tab-repeat.png);
- background-position:bottom;
- color: #FFFFFF;
- font-weight: bold;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid #636363;
- background-color: #8e975b;
- color: #FFF;
-}
-.data_table th a {
- color: #fff;
-}
-.data_table th a:hover {
- color: #a8a7a7;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-.data_table td.border {
- padding: 5px;
- vertical-align: top;
- border: 1px solid gray;
-}
-.data_table td.none {
- padding: 5px;
- vertical-align: top;
- border-right:none;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.redText {
- color:red;
-}
-.data_table td.borderRight {
- border-right:1px solid gray;
- border-bottom: none;
- border-left:none;
-}
-.data_table td.borderLeft {
- border-left:1px solid gray;
- border-bottom: none;
- border-right:none;
-}
-.data_table td.noLink {
- color: gray;
-}
-.data_table tr.tableName {
- padding: 5px;
- border: 1px solid gray;
- background-color: #e6e6ff;
- text-align:left;
-}
-.data_table tr.total {
- padding: 5px;
- border: 1px solid gray;
- background-color: #ffffcc;
- text-align:left;
-}
-.data_table th.head {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #ffffcc;
-}
-
-.data_table_pagination {
- width:100%;
- margin-top: 8px;
-}
-
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Report section */
-div.report_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.report_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
- min-height:200px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-.sessions_list {
- line-height: 20px;
- margin-top: 20px;
-}
-.sessions_list_inactive {
- line-height: 20px;
-}
-.session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 5px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box {
- border: 1px solid #DCE5F3;
- /* font-weight: bold; */
- color: #666;
- list-style-type: none;
- margin:5px 5px 10px 0px;
- padding: 5px;
- background-color:#FFF;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-.sub_session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_box_title {
- margin-bottom: 10px;
- background-color:#F9F9F9;
-}
-.session_course_item {
- margin: 0px;
- margin-bottom:20px;
-}
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-/***************************************************************
- * DOKEOS CONFIG SETTINGS OF THE PLATFORM ADMIN SECTION *
- ***************************************************************/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/*****************************************************
- * ANNOUNCEMENTS *
- *****************************************************/
-.announcements_datum {
- font-style: italic;
- color: #666666;
-}
-/*****************************************************
- * SYSTEM ANNOUNCEMENTS *
- *****************************************************/
-div.system_announcement {
- padding: 10px;
- border: 1px solid #ddd;
- -moz-border-radius-topright : 5px;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- min-height:20px;
-}
-.system_announcement {
- background: #eee url('images/headertables.jpg') repeat-x top center;
- font: bold 100% arial, sans-serif, sans;
-
-}
-.system_announcement_content {
- font: normal 100% 'Lucida Grande', verdana, Arial, sans-serif, sans;
-}
-.system_announcements {
- background: transparent url('images/systemenouvelles.jpg') no-repeat top left;
- padding-top: 10px;
- padding-bottom: 10px;
- width: 90%;
-}
-.system_announcements h3 {
-
-}
-
-.system_announcement_title {
- font-weight: bold;
- font-size: 120%;
- float:left;
-}
-
-.system_announcement_date {
- font-color: #ccc;
- float:right;
-}
-/*****************************************************
- * THE NEW FORUM *
- *****************************************************/
-/* **** FORUM CATEGORY **** */
-.forum_category {
- background-color: #0066CC;
- color: #fff;
-}
-.forum_category a {
- color: #fff;
-}
-.forum_category_header {
- background-color: #0066CC;
- color: #fff;
-}
-tr.forum_category_header a {
- color: #fff;
-}
-/* **** FORUM **** */
-.forum_header {
- background-color: #EFEFEF;
-}
-/* **** THREAD **** */
-.forum_threadheader {
- color: #aaa;
- background-color: #F7F7F7;
-}
-tr.forum_threadheader td {
-}
-.forum-thread-header {
- color: #000000;
- background-color: #F7F7F7;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-.forum-thread-body {
- color: #000000;
- background-color: #FFFFFF;
- border-left: 1px solid #aaa;
- border-right: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- border-top: 1px solid #aaa;
-}
-/* **** POST **** */
-.quote {
- background-color: #EFEFEF;
-}
-.forum_message_left {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
-}
-.forum_message_left_2_be_approved {
- width: 150px;
- vertical-align: top;
- border-right: 1px solid #aaa;
- background-color: #F7F7F7;
- color: #999;
-}
-.forum_message_post_title {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_title_2_be_approved {
- color: #999;
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-.forum_message_post_text {
- margin-bottom: 10px;
- vertical-align: top;
-}
-.forum_message_post_text_2_be_approved {
- color: #999;
- margin-bottom: 10px;
- vertical-align: top;
-}
-.current {
- font-weight: bold;
-}
-.structure {
- font-weight: bold;
- background-color: #F7F7F7;
- height: 20px;
-}
-a.forum_group_link {
- font-weight: lighter;
- display:inline;
-}
-.forum_description {
- color: #000;
- font-weight: normal;
-}
-.forum_title {
- color: #000;
- font-size: 14px;
-}
-.forum_low_description {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.forum_attach_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-/* **** BLOG **** */
-span.blog_title {
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
-}
-span.blog_subttitle {
-}
-td.blog_left {
- margin-right: 5px;
- padding-right: 5px;
- border-right: 1px solid #dddddd;
-}
-td.blog_right {
- padding-left: 10px;
-}
-td.blog_menu_title {
- background-color: #dddddd;
- color: #1657A9;
- font-weight: bold;
- font-size: 11px;
- padding: 2px;
-}
-td.blog_menu {
- border-bottom: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- padding: 10px;
-}
-td.blog_menu ul {
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 15px;
- padding: 0;
-}
-td.blog_menu ul li {
-}
-span.blogpost_title {
- display: block;
- font-size: 18px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_date {
- display: block;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_info {
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 5px;
-}
-table.newBlog {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.newTask {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #f6f6f6;
-}
-table.new_comment {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
-}
-div.blogpost_comment {
- border-top: 1px dashed #dddddd;
- border-right: 1px dashed #dddddd;
- border-bottom: 1px dashed #dddddd;
- border-left: 1px dashed #dddddd;
- margin-bottom: 10px;
- padding: 10px;
- background-color: white;
- z-index: -1;
-}
-span.blogpost_comment_title {
- display: block;
- font-size: 14px;
- font-weight: bold;
- color: #1657A9;
- padding-bottom: 5px;
-}
-span.blogpost_comment_date {
- display: block;
- font-size: 10px;
- font-weight: bold;
- color: #333333;
- padding-bottom: 10px;
-}
-span.blogpost_comment_info {
- font-size: 10px;
- display: block;
- color: #333333;
- border-top: 1px solid #dddddd;
- margin-top: 10px;
-}
-div.blogpost {
- border: 1px solid #DDDDDD;
- background-color: #ECECEC;
- margin-bottom: 15px;
- padding: 10px;
-}
-div.comments {
- border: 1px solid #dddddd;
- margin-bottom: 10px;
- margin-top: 10px;
- padding: 10px;
- background-color: #F4F4F4;
- margin-left:50px;
-}
-.attachment_comment {
- color: #737780;
- font-style: italic;
- font-weight: normal;
-}
-.link {
- text-decoration: none;
- font-weight : bold;
- color : #1657A9;
- cursor: pointer
-}
-.link:hover {
- text-decoration: none;
- color: #abd9f1;
- font-weight: bold;
- cursor: pointer
-}
-/*****************************************************
- * INSTALLATION *
- *****************************************************/
-#installation_steps {
- float:left;
- background-color: #EFEFEF;
-}
-.current_step {
- font-weight: bold;
-}
-.RequirementHeading {
- margin-right:10px;
-}
-.RequirementHeading h1 {
- color:#0066CC;
- font-size:1.2em;
- font-weight: bold;
- border-bottom: 1px solid #0066CC;
-}
-.RequirementText {
- color:#666;
- font-size:1.0em;
- font-weight: normal;
- float:right;
- width:200px;
-}
-.RequirementContent {
- color:#000;
- font-size:1.0em;
- font-weight: normal;
-}
-.RequirementContent table {
- border: 1px solid #ccc;
- width: 400px;
-}
-.RequirementContent table th {
- border-bottom: 1px solid #ccc;
- text-align: left;
-}
-.requirements-item {
- width: 50%;
- background-color:#f7f7f7;
- padding-left:2px;
-}
-.requirements-value {
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-size: 11px
-}
-.xsmall {
- font-size: 11px
-}
-.xxsmall {
- font-size: 9px
-}
-/*
- * TABBED INTERFACE
- */
-#tabbed_menu {
- width: 100%;
- height: 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: #666666;
- margin-bottom: 20px;
-}
-#tabbed_menu #tabbed_menu_tabs li {
- margin: 0px 10px;
- padding: 0px;
- display: inline;
- list-style-type: none;
-}
-#tabbed_menu #tabbed_menu_tabs a:link, #tabbed_menu_tabs a:visited {
- float: left;
- background: #f3f3f3;
- font-weight: bold;
- padding: 2px 10px 2px 10px;
- margin-right: 4px;
- border: 1px solid #cccccc;
- border-bottom: 1px solid #666666;
- text-decoration: none;
- color: #666;
-}
-#tabbed_menu #tabbed_menu_tabs a:link.active, #tabbed_menu_tabs a:visited.active {
- border: 1px solid #666666;
- border-bottom: 1px solid #fff;
- background: #fff;
- color: #000;
-}
-.skip {
- display: none;
-}
-#WCAG-editor {
- border: 1px #DCDCDC solid;
- background-color: #F0F0F0;
- width: 100%;
-}
-#WCAG-editor .title {
- padding: 2px;
- background-color: #DCDCDC;
- text-align: center;
- color: #000000;
- font-weight: bold;
-}
-#WCAG-editor .body {
- padding-top: 5px;
- padding-left: 5px;
- padding-right: 13px;
- padding-bottom: 5px;
-}
-#WCAG-editor textarea {
- margin-left: 0px;
- margin-right: 0px;
- width: 100%;
- height: 180px;
- border: 1px #DCDCDC solid;
-}
-#WCAG-editor input {
- width: 100%;
-}
-/* don't work on IE 6 */
-#WCAG-editor input[type="checkbox"], #WCAG-editor input[type="radio"], #WCAG-editor input[type="submit"] {
- width: auto;
-}
-/* only for IE6 */
-#WCAG-editor #submit, #WCAG-editor #visible_teacher, #WCAG-editor #visible_student, #WCAG-editor #visible_guest {
- width: auto;
-}
-#WCAG-content img {
- float: left;
- margin-right: 5px;
- margin-bottom: 5px;
-}
-#WCAG-content p {
- text-align: justify;
-}
-/* hack for IE < 7 */
-
-#course_description input {
- width: auto;
-}
-#course_description #imagefile, #course_description #imageLabel, #course_description #link, #course_description #linkLabel {
- width: 100%;
-}
-.WCAG-form textarea {
- width: 100%;
- height: 180px;
-}
-/* Survey */
-#survey_title {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-#survey_subtitle {
- background-color:#264269;
- color:#FFF;
- padding:2px;
- border: 1px solid #264269;
-}
-.survey_content {
- background-color:#EFEFEF;
- color:#264269;
- padding:5px;
- border: 1px solid #264269;
-}
-.survey_question_wrapper {
- border: 1px solid #4271b5;
-}
-.survey_question {
- background-color:#4271b5;
- color:#FFFFFF;
- padding:5px;
-}
-.survey_question_options {
- background-color:#FFF;
- color:#000;
- padding:5px;
-}
-.survey_export_link {
- float: right;
-}
-/*
-------------------------------------------------------------------------------^M
- sessions
-------------------------------------------------------------------------------^M
-*/
-
-#ajax_list_coachs {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- margin-top:-23px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_courses {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#ajax_list_users {
- position:absolute;
- border:1px solid #4171B5;
- margin:0px;
- padding:0px;
- margin-left:200px;
- background-color:#FFFFFF;
- height:auto;
- overflow:auto;
-}
-#chat_login_name {
- color : #4171b5;
-}
-/* Quizzes tool */
-.quiz_export_link {
- float: right;
-}
-
-/*
- Learning path
-*/
-#show_audiorecorder_div {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:2px;
- width:350px;
-}
-/* Glossary tool */
-.glossary-term {
- margin: 1em;
- background-color: #ffe99b;
- padding: 0.5em 0.5em 1.8em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-title {
- margin: 2em 0 1em 0.5em;
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-desc {
- margin-left: 1em;
-}
-.glossary-term-action-links {
- float: right;
-}
-.glossary-term-edit-form {
- margin: 1em;
- background-color: #FFE4C4;
- padding: 0.5em 0.5em 2em 0;
- -moz-border-radius: 0.5em;
-}
-.glossary-term-edit-desc {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-term-edit-title {
- font-weight: bold;
- font-size: 120%;
-}
-.glossary-add-form {
- font-weight: bold;
- font-size: 120%;
- margin: 1em;
-}
-.glossary-orderby-link {
- float:right;
- margin: 1em;
-}
-.glossary-msg-error {
- color: #FF0000;
- display :none;
- font-weight: normal;
- font-size: 80%;
-}
-/* Notebook */
-.notebook-add-form {
- margin: 1em;
- background-color: #c3d9ff;
- padding: 1em 1em;
-}
-.notebook-add-desc-textarea {
- background-color: #f2f5f8;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-add-title-text {
- background-color: #f2f5f8;
- border-color: #ffe99b;
-}
-.notebook-edit-desc-textarea {
- background-color: #e0ecff;
- border-color: #ffe99b;
- overflow: hidden;
-}
-.notebook-edit-title-text {
- background-color: #e0ecff;
- border-color: #ffe99b;
-}
-.notebook-msg-error {
- color: #FF0000;
- display :none;
- background-color: #ffe99b;
- width: 40%;
-}
-.notebook-list {
- margin: 1em 1em 0em 1em;
- background-color: #79b;
- padding: 0.3em 0.3em;
- -moz-border-radius: 0.5em;
-}
-.notebook-title-list {
- color : #fff;
- padding: 0.3em 0.3em;
- font-weight: bold;
- font-size: 120%;
-}
-.notebook-desc-list {
- margin: 0em;
- background-color: #f2f5f8;
- padding: 0.5em 0.3em 2em 0.3em;
- border: 1px solid #79b;
-}
-.notebook-term-action-links {
- padding: 0.3em 0.3em;
- width: 50%;
- color : #fff;
-}
-.notebook-orderby-link {
- text-align:right;
- margin-right: 1em;
-}
-.notebook-search-title {
- text-align:right;
- margin: 1em;
-}
-.notebook-date-information {
- color : #fff;
- padding: 0.3em;
- font-size: 120%;
- font-weight: bold;
-}
-/* Gradebook */
-.resource-deleted {
- color:#990000;
-}
-.gradebook-table-header {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(240, 240, 240) none repeat scroll 0% 0%;
-}
-.gradebook-table-body {
- border: 1px solid rgb(153, 153, 153);
- background: rgb(255, 255, 255) none repeat scroll 0% 0%;
-}
-.label_result {
- float: left;
- width: 25%;
- text-align: left;
- padding-top:8px;
-}
-.formw_result {
- width: 75%;
- float:left;
-}
-/* actions */
-.actions_lp {
- background:#F8F8F8;
- height:29px;
-}
-.actions_lp img {
- vertical-align:middle;
-}
-.actions_lp span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions_lp form {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions {
- background:#efefef;
- border-bottom:1px dotted #8e975b;
- border-top:1px dotted #8e975b;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions img {
- /*display:inline-block;*/
- border: none;
- text-decoration: none;
- /*background-color: #efefef;*/
- padding-right: 5px;
- vertical-align:middle;
-}
-.actions a {
- display:inline-block;
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions span {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions form {
- margin-right: 10px;
- vertical-align:middle;
-}
-/* big actions */
-.actionsbig {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- background-color:#efefef;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.content_table {
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
- float:left;
- width:100%;
-}
-.actionsbig a {
- float:left;
- padding-left:12px;
- padding-right:12px;
- text-align:center;
-}
-.actions img {
- vertical-align:middle;
-}
-.actions a {
- margin-right: 10px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border-bottom:1px dotted #999999;
- border-top:1px dotted #999999;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}
-/*****************************************************
- * BUTTONS *
- *****************************************************/
-
-button:hover input[type="submit"]:hover {
- background-color:#a8a7a7;
- color:#545454;
- border-style: inset;
-}
-/* button with image */
-button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back, input[type="submit"].submit_next {
- padding-left:30px;
- background-position:10px;
- background-repeat:no-repeat;
-}
-/*including "save" image*/
-button.save {
- background-image:url(images/button_accept.gif);
-}
-/*including "add" image*/
-button.add {
- background-image:url(images/button_add.gif);
-}
-/*including "cancel" image*/
-button.cancel {
- background-image:url(images/button_delete.gif);
-}
-/*including "search" image*/
-button.search {
- background-image:url(images/button_search.gif);
-}
-/*including "login" image*/
-button.login {
- background-image:url(images/button_login.gif);
- margin:2px 5px 3px 5px !important;
-}
-/*including "plus" image*/
-button.plus {
- background-image:url(images/button_plus.gif);
-}
-/*including "minus" image*/
-button.minus {
- background-image:url(images/button_minus.gif);
-}
-/*including "next" image*/
-button.next,input[type="submit"].submit_next {
- background-image:url(images/button_next.gif);
-}
-/*including "back" image*/
-button.back {
- background-image:url(images/button_back.gif);
-}
-/*including "refresh" image*/
-button.refresh {
- background-image:url(images/button_refresh.gif);
-}
-/*including "upload" image*/
-button.upload {
- background-image:url(images/button_upload.gif);
-}
-.icon_image_content {
- width:70px;
- cursor:hand;
- height:6em;
- text-align: center;
- padding-right: 10px;
- padding-left: 0px;
- border: 1px dotted #ccc;
- background-color: #eee;
- margin-right: 0.2em;
- margin-top: 0.1em;
- -moz-border-radius-topleft : 5px;
- -moz-border-radius-bottomright : 5px;
- -moz-border-radius-bottomleft : 5px;
- -moz-border-radius-topright : 5px;
-}
-.icon_image_content:hover {
- background-color: #fff;
- border: 1px solid #ccc;
-}
-.question_menu {
- list-style:none;
- float:left;
- padding:0px;
- margin:-2px;
- min-height:100px;
-}
-.question_menu li {
- float:left;
- margin:0px;
-}
-#exercise_admin {
- margin: 0;
- padding: 0;
- border: 0;
-}
-div#friend-header {
- float:left;
- width:100%;
- line-height: 2.1em;
-}
-div#friend-header a {
- padding-right:6px;
-}
-div#friend-container {
- float:left;
-}
-div.image_friend_network {
- float:left;
- border:1px solid #CCCCCC;
- margin:2px;
- padding:4px;
- background: #EFEFEF;
- height:125px;
- width:81px;
- z-index:5;
-}
-div.image_friend_network span {
- overflow:hidden;
- display:block;
- height:92px;
- margin: 0px 0px;
-}
-div.image_friend_network img {
- vertical-align:middle;
-}
-div.image_friend_network center.friend {
- overflow:hidden;
- height:30px;
-}
-.friend_invitations {
- float:left;
- margin: 0 0 4px 12px;
-}
-button.arrowr, input.arrowr {
- background-image:url(images/2rightarrow.gif);
-}
-button.arrowl, input.arrowl {
- background-image:url(images/2leftarrow.gif);
-}
-
-.u-m-answer {
- width:100%;
-}
-.u-m-answer p {
- margin:2px;
-}
-.refresh {
- background-image:url(images/refresh.png);
- background-repeat:no-repeat;
- padding-left:20px;
- padding-bottom:2px;
-}
-.portal {
- background-image:url(images/portal.png);
- background-repeat:no-repeat;
- padding-left:28px;
- padding-bottom:10px;
- padding-top:8px;
-}
-
-.legal-terms {
- height:150px;
- overflow:auto;
- background-color:#eee;
- width:500px;
-}
-
-
-/* UI improvements for 1.8.6.2 this should be move to the chamilo theme and reproduce in all CSS*/
-
-* {
- outline :none;
-}
-
-/*
-input, select, textarea {
- -moz-border-radius-bottomleft:5px;
- -moz-border-radius-bottomright:5px;
- -moz-border-radius-topleft:5px;
- -moz-border-radius-topright:5px;
- -x-system-font:none;
- border:1px solid #CCCCCC;
- color:#666666;
- font-family:Arial,Helvetica,sans-serif;
- font-size:120%;
- font-size-adjust:none;
- font-stretch:normal;
- font-style:normal;
- font-variant:normal;
- font-weight:normal;
- line-height:normal;
- padding:5px;
-}
-input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
- background-image:url(images/shadow.gif);
-}
-.independent_course_item a {
- font-size:135%;
-}
-.session_course_item a {
- font-size:120%;
-}
-*/
-
-#maincontent .courseslist li {
- margin-bottom:8px;
-}
-/*
-a.read {
- font-weight:normal;
-}
-.actions {
- background:#efefef;
- border:1px solid #ccc;
- padding:2px;
- margin-bottom: 5px;
- vertical-align:middle;
-}
-.actions-title {
- background:#efefef;
- border:1px solid #ccc;
- padding:4px;
- margin-bottom: 5px;
- font-size:14px;
- font-weight:bolder;
- vertical-align:middle;
-}*/
-
-
-/* GROUP TOOL */
-
-#group_description {
- margin: 10px 0px 10px 0px;
-}
-
-#group_privacy {
- margin: 10px 0px 10px 0px;
-}
-
-#group_permissions {
- -moz-background-clip:border;
- -moz-background-inline-policy:continuous;
- -moz-background-origin:padding;
- -moz-border-radius-bottomleft:8px;
- -moz-border-radius-bottomright:8px;
- -moz-border-radius-topleft:8px;
- -moz-border-radius-topright:8px;
- background:#EEE none repeat scroll 0 0;
-
- margin: 20px 0px 20px 0px;
-}
-
-#group_permissions ul {
- list-style-image:none;
- list-style-position:outside;
- list-style-type:none;
- margin:0;
- padding:0;
-}
-
-#group_permissions ul li {
- margin: 10px 0px 10px 5px;
-}
-
-/* Groups boxes */
-
-.groups_grid_container {
- width:100%;
-}
-.groups_grid_item {
- width:80px;
- float:left;
- margin:5px;
-}
-.groups_grid_element_0 { width:100px; float:left; text-align:center; margin-bottom:5px;}
-.groups_grid_element_1 { width:100px; float:left; text-align:left; margin-bottom:5px;}
-.groups_grid_element_2 { width:150px; float:left;}
-
-/*POPULAR GROUP*/
-
-.popular_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.popular_grid_element_0 {
- width:600px;
- height:98px;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*NEWEST GROUP*/
-
-.newest_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: auto;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:90%;
-}
-
-.newest_grid_element_1 {
- width:600px;
- height:98x;
- padding-left:10px;
- padding-right:10px;
- overflow:hidden;
-}
-
-/*MY GROUPS*/
-
-.mygroups_grid_item {
- background: none repeat scroll 0 0 #FFFFFF;
- border: 1px solid #E5E5E5;
- border-radius: 11px 11px 11px 11px;
-
- -webkit-border-radius: 11px 11px 11px 11px;
- -opera-border-radius: 11px 11px 11px 11px;
- -moz-border-radius: 11px 11px 11px 11px;
-
- box-shadow: 0 4px 18px #C8C8C8;
- -webkit-box-shadow: 0 4px 18px #C8C8C8;
- -opera-box-shadow: 0 4px 18px #C8C8C8;
- -moz-box-shadow: 0 4px 18px #C8C8C8;
-
- float: left;
- height: 88px;
- margin: 0 8px 15px 15px;
- padding: 16px 12px 5px;
- width:600px;
-}
-
-.box_description_group_member {
- color: #999999;
- font-size: 10px;
-}
-
-.mygroups_grid_element_1 {
- width:600px;
- height:100px;
- overflow:hidden;
-}
-
-.box_description_group_title h3 {
- margin-bottom:4px;
-}
-
-.box_description_group_title {
- float:right;width:80%;
-}
-.box_description_group_content {
- float:right;
- width:80%;
- margin-top:5px;
- /* height:45px;*/
- font-family:Verdana, Geneva, sans-serif;
- font-size:12px;
- color:#666666;
-}
-.box_description_group_actions {
- float:right;
- width:80%;
- text-align:right;
- margin-top:4px;
- margin-right:4px;
-}
-
-#menu {
- -moz-border-radius: 10px; border: 1px solid #e1e1e0;
- -webkit-border-radius: 10px; border: 1px solid #e1e1e0;
- -opera-border-radius: 10px; border: 1px solid #e1e1e0;
-
- margin-top:20px;
- /* margin-right:10px; */
- margin-bottom:0px;
-
- /*padding-left:10px;
- padding-right:10px;*/
- padding-top:5px;
- padding-bottom:0px;
-
- width:200px;
- float: right;
- min-height: 150px;
-
-}
-
-/* INVITATIONS */
-
-.invitation_confirm {
- border-top:1px solid #D8DFEA;
-}
-.invitation_image {
- width:110px;
-}
-
-
-/* DASHBOARD */
-
-/* Head section */
-#head {
- background-color: #000;
- height: 100px;
-}
-#head h1 {
- line-height: 100px;
- color: #FFF;
- text-align: center;
- text-indent: -9999em
-}
-/* End Head Section */
-
-/* Columns section */
-#columns .column {
- float: left;
- width: 50%;
- /* Min-height: */
- min-height: 400px;
- height: auto !important;
- height: 400px;
-}
-
-#columns ul, #columns ol {margin:0; padding:0; list-style:none; border:none;}
-
-
-
-
-
-/* To add in 1.8.7*/
-
-.session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-.sub_session_box_title span {
- font-size: 130%;
- font-weight: bold;
-}
-
-#session_category_title {
- font-size: 140%;
- font-weight: bold;
- padding: 2px 0px 5px 5px;
-}
-
-/* fixes the * */
-span.form_required {
- padding-right:5px;
-}
-
-.userportal-course-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:10px 10px 5px 10px;
- height:40px;
- margin:5px;
-}
-.userportal-course-item-title {
- font-size:135%;
-}
-.courseadminview-activity-3col, .platformadminview-activity-3col {
- -moz-border-radius:5px 5px 5px 5px;
- border:1px solid #E1E1E0;
- float:left;
- margin:0px 20px 10px 2px;
- padding:11px;
- width:220px;
- height:330px;
-}
-
-.courseadminview-activity-3col ul {
- padding:0px 20px 10px 4px;
- list-style-type:none;
- height:240px;
- margin-left:0px;
- margin: 0px 0px 0px 0px ;
-}
-
-.courseadminview-activity-3col ul li {
- padding:4px 0px 4px 0px;
-}
-
-#activity-3col {
- width: 800px ;
- margin-left: auto ;
- margin-right: auto ;
-}
-
-
-.userportal-catalog-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-catalog-item .catalog_box li span {
- font-size:130%;
- font-weight:bold;
- margin-left:5px;
-}
-
-.userportal-session-item {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- background-color:#F9F9F9;
- padding:5px 10px 10px 6px;
- /* height:40px; */
-}
-
-.userportal-session-category-item {
- -webkit-border-radius: 10px;
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px 5px 5px 40px;
- padding: 5px;
- margin-bottom: 10px;
-}
-.session_box_title {
- margin-bottom: 7px;
-}
-.session_box_coach {
-}
-.session_course_item {
- /* padding: 0px; */
- margin: 7px 0px;
-}
-
-.session_course_item .courses {
- margin-bottom: 5px;
- height:35px;
-}
-
-/* New forum table */
-
-
-.forum_table_title {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border-left: 1px solid gray;
- border-top: 1px solid gray;
- border-right: 1px solid gray;
- padding:5px;
-}
-
-.forum_table_title th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-
-
-.forum_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
- border: 1px solid gray;
- margin-bottom:15px;
-}
-
-.forum_table .forum_head{
- padding:5px;
- text-align: left;
- font-size:14px;
-
-}
-
-.forum_table th {
- padding-right: 12px;
- /*border: 1px solid gray;*/
- background-color: #E5EDF9;
-}
-.forum_table tr.row_odd {
- background-color: #F2F2F2;
-}
-.forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #E5EDF9;
-}
-.forum_table tr.row_even {
- background-color: #fff;
-}
-.forum_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-
-.post {
- border: 1px solid gray;
- margin-bottom:5px;
-}
-/* Text resize icons in header */
-.resize_font { /* the canvas */
- margin: 0 5px 0 5px;
-}
-.reset_font {
- font-size: 1.2em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.reset_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.increase_font {
- font-size: 1.8em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.increase_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-.decrease_font {
- font-size: 0.6em;
- color: gray;
- border: 1px solid white;
- padding: 2px;
-}
-.decrease_font:hover {
- border: 1px solid black;
- cursor: pointer;
-}
-
-
-.online_grid_item {
- float:left;
- margin:10px;
- text-align:center;
-}
-.online_grid_element_0 {
- width: 100px;
- height: 100px;
- overflow: hidden;
-}
-/* input values to crop the image: top, right, bottom, left */
-.online_grid_element_0 img{
- width: 200px;
- margin: -10px 0 0 -50px;
- /* height: 150px; */
-}
-.online_grid_element_1, .online_grid_element_2 {
- font-size:10px;
-}
-
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
\ No newline at end of file
diff --git a/main/css/tasty_olive/frames.css b/main/css/tasty_olive/frames.css
deleted file mode 100755
index 0a83276c83..0000000000
--- a/main/css/tasty_olive/frames.css
+++ /dev/null
@@ -1,1069 +0,0 @@
-body {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 10px;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-#header {
- width: 100%;
- padding: 0;
- margin: 0;
-}
-/* Header 1: Containing title, portal and organization */
-#header1 {
- font-size: 12px;
- padding: 4px;
- background-color: #264269;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header1 a {
- color: #ffffff;
- text-decoration: none;
-}
-#header1 a:hover {
- text-decoration: underline;
-}
-#sitename {
- margin: 0;
- font-weight: bold;
-}
-#institution {
- float: left;
- font-weight: bold;
-}
-#my_courses {
- float: right;
- font-weight: bold;
-}
-/* Header 2: Containing My Courses, My Profile,... */
-#header2 {
- font-size: 12px;
- padding: 4px;
- background-color: #4271B5;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header2 .banner_links {
- margin: 0;
-}
-#header2 a {
- text-decoration: none;
- color: #fff;
- background: transparent;
- font-weight:normal;
- font-size: 12px;
-}
-#header2 input.logout {
- /* makes an input appear like a link in this header */
- margin: 0;
- padding: 0;
- background-color: transparent;
- border: none;
- color: #fff;
- font-size: 12px;
- font-weight:normal;
- font-family: verdana, arial, helvetica, sans-serif;
-}
-#header2 a:hover, #header2 input.logout:hover {
- border-bottom: 1px solid #fff;
-}
-#logout {
- float: right;
- width:20%;
- text-align:right;
-}
-/* Header 3: Containing breadcrumbs, online users, student/teacher view, help */
-#header3 {
- position: relative; /* to avoid the IE peekabo bug*/
- font-size: 12px;
- font-weight: normal;
- padding: 4px;
- background-color: #90AFDD;
- color: #fff;
- border-bottom: 1px solid white;
-}
-#header3 a {
- color: #ffffff;
- text-decoration: none;
- font-weight:normal;
-}
-#header3 a:hover {
- text-decoration: underline;
-}
-/* Header3Right: online users, student/teacher view, help */
-#Header3Right ul {
- position: relative; /* to avoid the IE peekabo bug*/
- float: right;
- width: 50%;
- margin: 0;
- padding: 0;
- list-style-type: none;
- text-align: right;
-}
-#Header3Right ul li {
- display: inline;
-}
-#Header3Right ul li a {
- padding: 4px 6px 4px 4px;
- color:#fff;
-}
-/* Header 4: not used */
-#header4 {
- background-color: #fff;
- color: #009;
- padding: 4px;
- margin-bottom: 2px;
-}
-#header4 a {
- color: #4171b5;
-}
-#header4 a:hover {
- text-decoration: none;
- color: #f00;
-}
-/* The tool shortcuts */
-#toolshortcuts {
- text-align: right;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" classes for menu/navigation section in main index.php */
-.menu {
- float: right;
- width: 20%;
- padding: 0 0 6px 0;
- background-color: #E5EDF9;
- border: 1px solid #4171B5;
-}
-.menucaption {
- font-size: 12px;
- font-weight: bold;
- padding-left: 12px;
-}
-.menusection {
- width: auto;
- margin: 24px 6px 0 6px;
- padding-left: 10px;
- border: 1px solid #4171B5;
-}
-.menusectioncaption {
- position: relative;
- top: -9px;
- background-color: #E5EDF9;
- font-size: 12px;
- padding: 0 8px 0 4px;
-}
-.menulist {
- list-style: none;
- margin: 0 0 12px 0;
- padding: 0;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#loginform label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#loginform input {
- display: block;
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-#center {
- margin: 0 0 0 180px;
- padding: 10px 0 40px 0;
- min-height: 300px;
-}
-#left {
- float: left;
- width: 180px;
- padding: 20px 0 0 0;
- margin-left: -5%; /* the difference to make the left colum appear flush left */
-}
-/* --- left navigation box menu as a definition list --- */
-#leftnavbox {
- margin: 0;
- padding: 0;
- float:left;
-}
-#leftnavbox dl {
- width: 160px;
- margin: 12px auto 4px auto;
- padding: 0 0 10px 0;
- background: transparent;
- font-size: 12px;
- text-align: center;
-}
-#leftnavbox dt {
- margin: 0;
- padding: 1px 2px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #000;
- border-bottom: 1px solid #fff;
- background: transparent;
-}
-#leftnavbox dd {
- margin: 0;
- padding: 0;
- color: #009;
- text-align: left;
- border-bottom:1px solid #fff;
- background: #ccf;
-}
-#leftnavlist a, #leftnavlist a:link {
- display: block;
- color: #fff;
- text-decoration: none;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- width:140px;
- border: 1px solid #009;
-}
-#leftnavlist a:visited {
- color:#eee;
- text-decoration: none;
- display: block;
- padding: 2px 5px 2px 10px;
- background: #4171B5;
- color: #eee;
- width:140px;
-}
-#leftnavlist a:hover {
- background: #fff;
- color:#4171B5;
- display: block;
-}
-/* --- end of left side definition list menu section --- */
-
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar #title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar #title a {
- color: #fff;
-}
-#agenda_select {
- list-style: none;
- border: 0px solid green;
- margin: 30px 0 0 0;
- padding: 0 0 0 10px;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-#smallcalendar {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-size: 11px;
- font-weight: bold;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_week {
- background-color: #f5f5f5;
- text-align: center;
- font-size: 11px;
- border-collapse: collapse;
-}
-#smallcalendar .days_weekend {
- background-color: #e6e6e6;
- text-align: center;
- font-size: 11px;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-#smallcalendar .days_today {
- width: 12%;
- text-align: center;
- font-size: 11px;
- border: 1px solid #FA8500;
- border-collapse: collapse;
- background-color: #FFCA8D;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:hover {
- text-decoration: none;
- color: red;
- font-weight: bold
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/* Form elements - some general styling*/
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-weight: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcements ul {
- list-style-type: none;
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/* tips Abbr-plugin for FCKeditor */
-abbr {
- border-bottom: 1px dotted rgb(102, 102, 102);
- background-color:#F00;
- cursor: help;
-}
diff --git a/main/css/tasty_olive/images/2leftarrow.gif b/main/css/tasty_olive/images/2leftarrow.gif
deleted file mode 100755
index 3c561583fb..0000000000
Binary files a/main/css/tasty_olive/images/2leftarrow.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/2rightarrow.gif b/main/css/tasty_olive/images/2rightarrow.gif
deleted file mode 100755
index e2b04d9624..0000000000
Binary files a/main/css/tasty_olive/images/2rightarrow.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/bar_1.gif b/main/css/tasty_olive/images/bar_1.gif
deleted file mode 100755
index 938ae0c354..0000000000
Binary files a/main/css/tasty_olive/images/bar_1.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/bar_1m.gif b/main/css/tasty_olive/images/bar_1m.gif
deleted file mode 100755
index 4919e31b08..0000000000
Binary files a/main/css/tasty_olive/images/bar_1m.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/bar_1r.gif b/main/css/tasty_olive/images/bar_1r.gif
deleted file mode 100755
index 3bfc397e10..0000000000
Binary files a/main/css/tasty_olive/images/bar_1r.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/bar_1u.gif b/main/css/tasty_olive/images/bar_1u.gif
deleted file mode 100755
index d5a56d957d..0000000000
Binary files a/main/css/tasty_olive/images/bar_1u.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/blue_arrow.png b/main/css/tasty_olive/images/blue_arrow.png
deleted file mode 100644
index c40ba9fc31..0000000000
Binary files a/main/css/tasty_olive/images/blue_arrow.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_accept.gif b/main/css/tasty_olive/images/button_accept.gif
deleted file mode 100755
index b3618202a4..0000000000
Binary files a/main/css/tasty_olive/images/button_accept.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_add.gif b/main/css/tasty_olive/images/button_add.gif
deleted file mode 100755
index 7e4c53733a..0000000000
Binary files a/main/css/tasty_olive/images/button_add.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_back.gif b/main/css/tasty_olive/images/button_back.gif
deleted file mode 100755
index 7ff8ccb25d..0000000000
Binary files a/main/css/tasty_olive/images/button_back.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_back.jpg b/main/css/tasty_olive/images/button_back.jpg
deleted file mode 100755
index b2a8df3a8e..0000000000
Binary files a/main/css/tasty_olive/images/button_back.jpg and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_delete.gif b/main/css/tasty_olive/images/button_delete.gif
deleted file mode 100755
index e07331a7c9..0000000000
Binary files a/main/css/tasty_olive/images/button_delete.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_login.gif b/main/css/tasty_olive/images/button_login.gif
deleted file mode 100755
index 7788ea9fe1..0000000000
Binary files a/main/css/tasty_olive/images/button_login.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_minus.gif b/main/css/tasty_olive/images/button_minus.gif
deleted file mode 100755
index 350b7ecc1a..0000000000
Binary files a/main/css/tasty_olive/images/button_minus.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_next.gif b/main/css/tasty_olive/images/button_next.gif
deleted file mode 100755
index e816758985..0000000000
Binary files a/main/css/tasty_olive/images/button_next.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_plus.gif b/main/css/tasty_olive/images/button_plus.gif
deleted file mode 100755
index 6332fefea4..0000000000
Binary files a/main/css/tasty_olive/images/button_plus.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_refresh.gif b/main/css/tasty_olive/images/button_refresh.gif
deleted file mode 100755
index 8268958a19..0000000000
Binary files a/main/css/tasty_olive/images/button_refresh.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_search.gif b/main/css/tasty_olive/images/button_search.gif
deleted file mode 100755
index d9e4ccf177..0000000000
Binary files a/main/css/tasty_olive/images/button_search.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/button_upload.gif b/main/css/tasty_olive/images/button_upload.gif
deleted file mode 100755
index 3d91ac4404..0000000000
Binary files a/main/css/tasty_olive/images/button_upload.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/Sorting icons.psd b/main/css/tasty_olive/images/dataTable/Sorting icons.psd
deleted file mode 100755
index 53b2e06850..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/Sorting icons.psd and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/back_disabled.jpg b/main/css/tasty_olive/images/dataTable/back_disabled.jpg
deleted file mode 100755
index 1e73a546e3..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/back_disabled.jpg and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/back_enabled.jpg b/main/css/tasty_olive/images/dataTable/back_enabled.jpg
deleted file mode 100755
index a6d764c79c..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/back_enabled.jpg and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/favicon.ico b/main/css/tasty_olive/images/dataTable/favicon.ico
deleted file mode 100755
index 6eeaa2a0d3..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/favicon.ico and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/forward_disabled.jpg b/main/css/tasty_olive/images/dataTable/forward_disabled.jpg
deleted file mode 100755
index 28a9dc53fa..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/forward_disabled.jpg and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/forward_enabled.jpg b/main/css/tasty_olive/images/dataTable/forward_enabled.jpg
deleted file mode 100755
index 598c075f13..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/forward_enabled.jpg and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/sort_asc.png b/main/css/tasty_olive/images/dataTable/sort_asc.png
deleted file mode 100755
index a56d0e2190..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/sort_asc.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/sort_asc_disabled.png b/main/css/tasty_olive/images/dataTable/sort_asc_disabled.png
deleted file mode 100755
index b7e621ef1c..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/sort_asc_disabled.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/sort_both.png b/main/css/tasty_olive/images/dataTable/sort_both.png
deleted file mode 100755
index 839ac4bb5b..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/sort_both.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/sort_desc.png b/main/css/tasty_olive/images/dataTable/sort_desc.png
deleted file mode 100755
index 90b295159d..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/sort_desc.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/dataTable/sort_desc_disabled.png b/main/css/tasty_olive/images/dataTable/sort_desc_disabled.png
deleted file mode 100755
index 2409653dc9..0000000000
Binary files a/main/css/tasty_olive/images/dataTable/sort_desc_disabled.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/help2.png b/main/css/tasty_olive/images/help2.png
deleted file mode 100755
index c3c07e15de..0000000000
Binary files a/main/css/tasty_olive/images/help2.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/index.html b/main/css/tasty_olive/images/index.html
deleted file mode 100755
index aa7b9c934b..0000000000
--- a/main/css/tasty_olive/images/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/main/css/tasty_olive/images/loading.gif b/main/css/tasty_olive/images/loading.gif
deleted file mode 100755
index 82290f4833..0000000000
Binary files a/main/css/tasty_olive/images/loading.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/portal.png b/main/css/tasty_olive/images/portal.png
deleted file mode 100755
index 3afac5dc64..0000000000
Binary files a/main/css/tasty_olive/images/portal.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/refresh.png b/main/css/tasty_olive/images/refresh.png
deleted file mode 100755
index 3fd71d6e59..0000000000
Binary files a/main/css/tasty_olive/images/refresh.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/shadow.gif b/main/css/tasty_olive/images/shadow.gif
deleted file mode 100755
index fc02f26719..0000000000
Binary files a/main/css/tasty_olive/images/shadow.gif and /dev/null differ
diff --git a/main/css/tasty_olive/images/tab-left.png b/main/css/tasty_olive/images/tab-left.png
deleted file mode 100755
index a22a321371..0000000000
Binary files a/main/css/tasty_olive/images/tab-left.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/tab-repeat.png b/main/css/tasty_olive/images/tab-repeat.png
deleted file mode 100755
index 71a3dc9e2e..0000000000
Binary files a/main/css/tasty_olive/images/tab-repeat.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/tab-right.png b/main/css/tasty_olive/images/tab-right.png
deleted file mode 100755
index c138fbbcce..0000000000
Binary files a/main/css/tasty_olive/images/tab-right.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/tab.png b/main/css/tasty_olive/images/tab.png
deleted file mode 100755
index 4a9fced51d..0000000000
Binary files a/main/css/tasty_olive/images/tab.png and /dev/null differ
diff --git a/main/css/tasty_olive/images/white_arrow.png b/main/css/tasty_olive/images/white_arrow.png
deleted file mode 100644
index 8b46a3d421..0000000000
Binary files a/main/css/tasty_olive/images/white_arrow.png and /dev/null differ
diff --git a/main/css/tasty_olive/learnpath.css b/main/css/tasty_olive/learnpath.css
deleted file mode 100755
index ca07a1942f..0000000000
--- a/main/css/tasty_olive/learnpath.css
+++ /dev/null
@@ -1,217 +0,0 @@
-div.text {
- margin-left : 6;
- margin-right : 6;
- margin-top : 5;
- margin-bottom : 5;
- text-align : justify;
-}
-span.messagesmall {
- font-style : italic;
- color : Red;
-}
-/* newscorm/learnpath */
-
-div.lp_actions {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- padding:3px;
-}
-div.lp_actions img {
- margin-right:5px;
-}
-div.lp_small_form {
- background:#F8F8F8;
- border:1px solid #999999;
- padding:10px;
-}
-div.lp_small_form input {
- font-size:10px;
-}
-div.lp_manipulate {
- background:#F8F8F8;
- border-bottom:1px dotted #999999;
- margin-bottom:0px;
- padding:3px 0 3px 10px;
-}
-div.lp_manipulate a {
- padding-right:10px;
-}
-div.lp_message {
- background:#FEC880;
- border:1px solid #E28C15;
- font-size:12px;
- padding:10px;
-}
-div.lp_resource_header {
- cursor: pointer;
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_header_end {
- background:#F0F0F0;
- border:1px solid #999999;
- font-weight:bold;
- padding:10px;
- width:350px;
-}
-div.lp_resource_elements {
- background:#FAFAFA;
- border:1px solid #999999;
- border-bottom:0;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements_end {
- background:#FAFAFA;
- border:1px solid #999999;
- border-top: 0px;
- display:none;
- padding:5px 10px;
- width:350px;
-}
-div.lp_resource_elements div {
- padding:3px;
-}
-div.lp_tree {
- height:100%;
- padding:3px 10px 3px 0;
- overflow-x : auto;
- overflow-y : scroll;
- width:190px;
-}
-hr {
- background:#999999;
- border:0;
- color:#999999;
- height:1px;
- margin:10px auto;
- width:75%;
-}
-option.bottom {
- border-top:1px solid #999999;
- margin-top:2px;
- padding-top:2px;
-}
-option.top {
- border-bottom:1px solid #999999;
- margin-bottom:2px;
- padding-bottom:2px;
-}
-p.lp_action {
- margin:5px 0;
-}
-p.lp_text {
- margin-top:0px;
-}
-p.lp_title {
- font-weight:bold;
- margin-top:5px;
- padding-left:7px;
-}
-table.lp_build {
- font-size:12px;
- height:400px;
- width:100%;
-}
-table.lp_build td {
- vertical-align:top;
-}
-table.lp_build td.tree {
- border-right:1px solid #999999;
- width:205px;
-}
-table.lp_build td.workspace {
- padding: 0px;
- padding-left:5px;
- width:auto;
-}
-table.lp_form {
- font-size:12px;
- margin:0 10px;
- width:auto;
-}
-table.lp_form td {
- height:25px;
- padding:5px;
- vertical-align:top;
- width:auto;
-}
-table.lp_form td.label {
- padding-top:7px;
- text-align:right;
-}
-table.lp_form td.radio {
- width:300px;
-}
-table.lp_form td.exercise {
- width:50px;
-}
-table.lp_form th {
- background:#F8F8F8;
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
-}
-table.lp_overview th.exercise {
- width:50px;
-}
-table.lp_form input, table.lp_form select, table.lp_form textarea {
- background:#F8F8F8;
- border:1px solid #999999;
- font-family:Arial, Verdana, Helvetica, sans-serif;
- font-size:12px;
- padding:1px 2px;
- width:300px;
-}
-table.lp_form td.radio input, table.lp_form td.exercise input {
- width:auto;
-}
-table.lp_form .small_form {
- background:#FFFFFF;
-}
-table.lp_form select {
- padding:0;
-}
-table.lp_form input.button {
- width:75px;
-}
-table.lp_overview {
- font-size:12px;
- width:100%;
-}
-table.lp_overview td {
- border-bottom:1px solid #999999;
- border-top:1px solid #999999;
- height:20px;
- padding:3px;
- vertical-align:middle;
- width:auto;
-}
-table.lp_overview td.title {
- width:200px;
-}
-table.lp_overview td.actions {
- text-align:center;
- width:100px;
-}
-table.lp_overview td.move {
- text-align:center;
- width:50px;
-}
-table.lp_overview th {
- background:#FFFFFF;
- padding-left:3px;
- text-align:center;
-}
-table.lp_overview tr {
- background:#F8F8F8;
-}
-table.lp_overview tr:hover {
- background:#E5EDF9;
-}
-table.lp_overview img {
- margin-left:3px;
-}
diff --git a/main/css/tasty_olive/online.css b/main/css/tasty_olive/online.css
deleted file mode 100755
index 9c903cd910..0000000000
--- a/main/css/tasty_olive/online.css
+++ /dev/null
@@ -1,91 +0,0 @@
-body {
- background-color: #FFFFFF;
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- margin: 3px;
- padding: 0px;
-}
-td, p, li {
- color: #000000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-a:link {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:visited {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:hover {
- color: #FF0000;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a:active {
- color: #4171b5;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:link {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:visited {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:hover {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-a.master:active {
- color: #800080;
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- text-decoration: underline;
-}
-form {
- margin: 0px;
-}
-input, select, textarea {
- font-family: verdana, arial, helvetica, sans-serif;
- font-size: 11px;
-}
-ul {
- list-style-position: inside;
- list-style-type: square;
- margin-left: 5px;
- padding-left: 0px;
-}
-li {
- padding-bottom: 5px;
-}
-.master {
- color: #800080;
-}
-.question {
- color: #FF8600;
-}
diff --git a/main/css/tasty_olive/print.css b/main/css/tasty_olive/print.css
deleted file mode 100755
index d1b8d92bb9..0000000000
--- a/main/css/tasty_olive/print.css
+++ /dev/null
@@ -1,917 +0,0 @@
-/* Print Style Sheet for Dokeos (in progress ...)
- first default style sheet
- 2004-07-18 by Wolfgang Schneider
- (info@ws-webservice.de / webmaster@bibelcenter.de)
- updated on 2005-02-25 by Olivier Brouckaert
- (oli.brouckaert@dokeos.com)
- update on 2005-03-01 by Wolfgang Schneider
- update on 2005-05-27 by Patrick Cool
- update to print.css on 2005-01-05 by Jeroen Coupe
- */
-
-body {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 12px;
- color: #000;
- margin: 0;
- padding: 0;
- background-color: #fff;
-}
-img {
- border: none;
-}
-#outerframe {
- position: relative; /* do not remove, fixes a bug in IE */
- border: 1px solid #fff;
- background-color: #fff;
-}
-/* Hides from IE5-mac \*/
-* html #outerframe {
- height: 1%;
-}
-/* End hide from IE5-mac */
-
-/*****************************************************
- * HEADER STYLES *
- *****************************************************/
-
-
-#my_courses {
- background-color: #fff;
- color: #009;
-}
-/*show the institution*/
-#header1 {
- padding: 2px;
- float: right;
-}
-#my_courses {
- display: none;
-}
-#header2 {
- display: none;
-}
-.subnav {
- display: none;
-}
-/* show the way to the printed document (breadcrumbs)*/
-#header4 {
- padding: 2px;
- border-bottom: 1px solid #4171B5;
-}
-#header4 a {
- color: #4171b5;
-}
-#toolshortcuts {
- display:none;
-}
-/*****************************************************
- * FOOTER STYLES *
- *****************************************************/
-#footer {
- padding: 8px;
- border-top: 1px solid #4171B5;
- background-color: #E5EDF9;
- font-size: 12px;
-}
-#footer .copyright {
- float: right;
-}
-/*****************************************************
- * MAIN STYLES *
- *****************************************************/
-#main {
- position: relative; /* to avoid the IE peekabo bug*/
- margin: 0px auto;
- margin-top: 10px;
- width: 98%;
- padding: 0px 10px 10px 10px;
- background-color: #fff;
- min-height: 320px;
-}
-/* for content section in main index.php file */
-.maincontent {
- float: left;
- width: 78%;
- padding: 4px;
- background-color: #fff;
-}
-/* "menu" doesn't show in printed version*/
-.menu {
- display: none;
-}
-#lang_form {
- text-align: left;
- font-size: 12px;
- margin: 2px 0 10px 0;
- padding: 2px;
-}
-#lang_form input, #lang_form select {
- font-size: 12px;
-}
-#formLogin label {
- font-size: 12px;
- margin: 4px 6px;
-}
-#formLogin input {
- font-size: 13px;
- margin: 4px 6px;
-}
-#login_fail {
- margin: 0 6px 6px 6px;
- padding: 4px;
- border: 1px solid #f00;
- background-color: #fff;
- font-size: 12px;
- color: #f00;
-}
-/*** layout divs for course and tool pages (being tested in some pages) ****/
-#contentfloatholder {/* also makes the right "sliding" tab */
- /*background: url(../pics/sidebar-r.gif) repeat-y 100% 0;
-background: url(../pics/bg_fountain.jpg) no-repeat 100% 0; */
-float: left;
- width: 100%;
- position: relative;
-}
-#contentfloatholder:after {
- /* this is for NN6 to clear floats */
-content: ".";
- display: block;
- height: 0px;
- clear: both;
- visibility: hidden;
-}
-#centerwrap {
- float: left;
- width: 100%;
- margin-right: -95%;/* this needs to be less than 100% for Moz/Mac which thinks
- it's empty otherwise. The difference is made up by putting a
- negative left margin on the left float:
- Note IE/Mac doesn't like this method ~ it wants the 100% so it can
- be fed in using IE only CSS below becasue IE/Win also works with the 100% method.
- */
-}
-/*no navigation options need to be showed in the print version */
-#toolnav {
- display:none;
-}
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html #toolnav {
- margin-right: 0px;
-}
-* html #center {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-
-/* various sections in course-home.php file */
-#toolremove {
- width: 40%;
- color: #f00;
- font-weight: bold;
- margin: 10px auto;
- padding: 10px;
- border: 2px solid #f00;
-}
-#courseintro {
- clear: both;
- width: 80%;
- margin: 10px auto;
- padding: 10px;
- border-bottom: 1px solid #4171B5;
-}
-#courseintro_icons {
- clear: both;
- width: 80%;
- margin: 10px auto;
-}
-.everybodyview {
- position: relative; /* to avoid the IE peekabo bug ?*/
- width: 80%;
- margin: 10px auto;
- padding: 10px;
-}
-.courseadminview, .platformadminview {
- position: relative;
- width: 80%;
- margin: 25px auto 10px;
- padding: 10px;
- border: 1px solid #4171B5;
-}
-.viewcaption {
- position: relative;
- top: -20px;
- font-size: 12px;
- font-weight: bold;
- color: #4171B5;
- background-color: #fff;
- padding: 0 4px;
-}
-/***********************************/
-
-/* ===================================================
- AGENDA STYLES
-===================================================*/
-
-/* ---------------------------------------------------
- check if these are still used or not
------------------------------------------------------*/
-#agenda {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.agenda_month_divider {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: center;
-}
-#agenda #title a {
- color: #fff;
-}
-#agenda .agendaitem {
- font-size: 12px;
-}
-#smallcalendar .title {
- background-color: #4171B5;
- font-weight: bold;
- padding: 2px;
- color: #fff;
- text-align: center;
- font-size: 11px;
-}
-#smallcalendar .title a {
- color: #fff;
-}
-/*agenda select not visible on print*/
-#agenda_select {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the agenda (day, week, month view)
------------------------------------------------------*/
-#agenda_list {
- width: 100%;
- margin: 0 auto;
- border: 1px solid #fff;
- border-collapse: collapse;
-}
-/*The caption of the calendar (displays the month and the << and >> links*/
-#agenda_list #title {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
- border: 1px solid #264269;
-}
-#agenda_list #title a:link, #agenda_list #title a:visited {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #fff;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-#agenda_list #title a:hover {
- background-color: #4171B5;
- font-weight: bold;
- font-size: 12px;
- color: #ff0000;
- text-align: left;
- padding: 2px 10px;
- text-align: center;
-}
-/* The cells with the name of the days of the weeks (mon->sun)*/
-#agenda_list .weekdays {
- background-color: #D3DFF1;
- text-align: center;
- font-weight: bold;
- border: 1px solid #264269;
- border-collapse: collapse;
-}
-/* The cells for the days (1->31) */
-#agenda_list .days_week {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #f5f5f5;
-}
-#agenda_list .days_weekend {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #e6e6e6;
-}
-#agenda_list .days_today {
- height: 40px;
- width: 12%;
- text-align: left;
- vertical-align: top;
- border: 1px solid #264269;
- border-collapse: collapse;
- background-color: #FFCA8D;
- color: #CC3300;
- font-weight: bold;
-}
-/* text in the cells: display of agenda items (visible)*/
-#agenda_list .data {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotbold {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .text {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/*text in the cells: display of agenda items (invisible)*/
-#agenda_list .data_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .datanotbold_hidden {
- background-color: #eee;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-#agenda_list .text_hidden {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
- color: #999999;
-}
-/*text in the cells: display of agenda items (highlighted)*/
-#agenda_list .datanow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: bold;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .datanotboldnow {
- background-color: #FFCC00;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-#agenda_list .textnow {
- background-color: #fff;
- text-align: left;
- padding: 2px 10px;
- font-weight: normal;
- border: 0px solid #4171B5;
- border-collapse: collapse;
-}
-/* ---------------------------------------------------
- styles for the mini agenda
------------------------------------------------------*/
-/* mini agenda invisible in print */
-
-#smallcalendar {
- display:none;
-}
-/*without this the small calendar's space isn't liberated, because the table width is hardcoded in the php*/
-#layoutHulp {
- display:none;
-}
-/* ---------------------------------------------------
- styles for the personal agenda
------------------------------------------------------*/
-.personal_agenda {
- color: #008000;
-}
-.personal_agenda a:link, .personal_agenda a:visited {
- color: #008000;
-}
-a.personal_agenda:link, a.personal_agenda:visited {
- color: #008000;
-}
-.personal_agenda a:hover, .personal_agenda a:hover {
- color: #666666;
-}
-a.personal_agenda:hover, a.personal_agenda:hover {
- color: #666666;
-}
-/* normal and erro message-box */
-.normal-message, .error-message {
- position: relative;
- margin: 10px auto;
- margin-left: -250px;
- width: 500px;
- left: 50%;
- right: 50%;
- border-width: 1px;
- border-style: solid;
- padding: 5px;
-}
-.normal-message {
- border: 1px solid #FF8001;
- color: #000;
- background-color: #FDC77E;
-}
-.error-message {
- border: 1px solid #3F70AC;
- color: #000;
- background-color: #FDC273;
-}
-#message {
- margin: 0 auto;
- text-align: center;
-}
-#message select {
- margin: 10px 0;
- width: 220px;
-}
-#message textarea {
- margin: 10px 0;
-}
-#message td {
- padding: 4px;
-}
-/* styles from the document.php file */
-.comment {
- margin-left: 30px;
-}
-.invisible {
- color: #999;
-}
-.invisible a:link, .invisible a:visited {
- color: #999;
-}
-a.invisible:link, a.invisible:visited {
- color: #999;
-}
-/* styles from the upload.php file */
-dl.upload_option {
- margin: 1em 0;
- padding: 0;
-}
-.upload_option dt {
- font-weight:bold;
- margin:0;
-}
-.upload_option dd {
- margin:0;
-}
-/* styles from dropbox.php file */
-.dropbox_detail {
- font-size: small
-}
-.dropbox_date {
- font-style: italic
-}
-.dropbox_person {
- font-weight: bold
-}
-.dropbox_listTitle {
- color: #000000;
-}
-.dropbox_feedback {
- font-size: x-small;
- height: 50px;
- width: 200px;
- overflow: auto
-}
-.dropbox_feedbacks {
- height: 250px;
- width: 100%;
- overflow: auto
-}
-/* styles for chat / conference tools */
-#chat_entermessage {
- background-color: #D6E5FA;
- border-top: 1px solid #4171B5;
- padding: 5px;
- margin: 0;
-}
-/* styles for general formatting */
-.clear {
- clear: both;
- line-height: 0px;
- height: 0;
-}
-p, blockquote, ol, ul {
- font-size: 12px;
-}
-h1 {
- font-size: 21px;
-}
-h2 {
- font-size: 18px;
-}
-h3 {
- font-size: 15px;
- margin-top:0px;
- padding-top:0px;
-}
-h4 {
- font-size: 12px;
-}
-h5, h6 {
- font-family: verdana, arial, helvetica, sans-serif;
-}
-/* the following for regular elements */
-a:link {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:visited {
- text-decoration: none;
- font-weight : bold;
- color : #4171b5;
-}
-a:active {
- text-decoration: none;
- font-weight : bold;
- color : #f00;
-}
-input.link_alike {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #4171b5;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-input.link_alike:hover {
- background-color: #FFFFFF;
- border-width: 0px;
- color: #FF0000;
- font-weight: bold;
- text-align: left;
- padding: 0px;
- margin: 0px;
-}
-/* the following for the greyed out elements */
-a.nobold:link, a.nobold:visited, a.nobold:active {
- font-weight: normal;
- color: #999;
- margin: 0 0 0 25px;
-}
-a.nobold:hover {
- font-weight: normal;
- color: #999;
- text-decoration: underline;
- margin: 0 0 0 25px;
-}
-.note {
- margin: 6px;
- font-size: 12px;
- line-height: 14px;
- font-family: verdana, arial, helvetica, sans-serif;
- background-color: #FFF089;
- color: #4171B5;
- border: 1px solid #4171B5;
- padding: 4px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.alternativeBgDark {
- background-color: #ccf;
- border: 1px solid #4171B5;
- border-collapse: collapse;
-}
-.myagendatoday {
- background-color: #FFCA8D;
- border-collapse: collapse;
- font-family: verdana, arial, helvetica, sans-serif;
- color: #CC3300;
- font-weight: bold;
-}
-/*****************************************************
- * FORM STYLES *
- *****************************************************/
-div.row {
- clear: both;
- padding-top: 5px;
-}
-div.row div.form_header {
- white-space: nowrap;
- padding: 2px;
- background-color: #E5EDF9;
- border: 1px solid #4271B5;
-}
-div.row div.label {
- display: inline;
- float: left;
- width: 18%;
- text-align: right;
-}
-div.row div.formw {
- display: inline;
- width: 80%;
-}
-[dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
- float: left;
- text-align: right;
-}
-[dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
- float: right;
- text-align: left;
-}
-span.form_required {
- color: #f00;
-}
-span.form_error {
- color: #f00;
- font-size: x-small;
- margin: 2px;
-}
-/* Form elements - some general styling */
-select, textarea {
- color : #000;
- border: 1px solid #000;
-}
-input.checkbox {
- border-width: 0;
-}
-input.mainoption {
- font-weight : bold;
-} /* Main submit button */
-input.liteoption {
- font-weight : normal;
-} /* None-bold submit button */
-select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
- cursor: pointer;
- font-size: 12px;
-}
-input[text] {
- font-size: 12px;
-}
-/************************************************************
- styles below here are not necessarily used in the current
- release and the CVS files, they are from earlier versions,
- and have been left untouched for anyone needing them in
- their own platform ...
-*************************************************************/
-.topBanner a:link, .topBanner a:active, .topBanner a:visited {
- text-decoration:none;
- color:white;
-}
-.topBanner table {
- text-decoration:none;
-}
-.topBanner a:hover {
- text-decoration:underline;
-}
-.topBanner td {
- border-top: solid White 1px;
-}
-.alternativeBgLight {
- background-color: #f5f5f5;
-}
-.alternativeBgDark {
- background-color: #e6e6e6
-}
-.forms {
- letter-spacing: normal;
- text-align: justify;
- text-indent: 3pt;
- word-spacing: normal;
- padding: 2px 5px;
-}
-.formsTips {
- text-align: justify;
- text-indent: 15pt;
- word-spacing: normal;
-}
-/*
-input.forms { letter-spacing: normal; text-align: justify; text-indent: 3pt; word-spacing: normal;
-padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
-*/
-.warn {
- border: thin double Silver;
- margin-left: 15px;
- margin-right: 15px;
- font-family: serif;
- color: Red;
- padding-left: 25px;
-}
-.small {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 11px
-}
-.xxsmall {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 9px
-}
-/*****************************************************
- * DATA TABLE STYLES *
- *****************************************************/
-.cell_header {
- background-color: #EEEEFF;
- font-weight:bold;
- text-align:left;
- padding-left:5px;
-} /* header cell in data table in tools */
-.data_table {
- border-collapse: collapse;
- width: 100%;
- padding: 5px;
-}
-.data_table th {
- padding-right: 20px;
- border: 1px solid gray;
- background-color: #E5EDF9;
-}
-.data_table tr.row_odd {
- background-color: #fafafa;
-}
-.data_table tr.row_odd:hover, .data_table tr.row_even:hover {
- background-color: #f0f0f0;
-}
-.data_table tr.row_even {
- background-color: #fff;
-}
-.data_table td {
- padding: 5px;
- vertical-align: top;
- border-bottom: 1px solid #b0b0b0;
- border-right: 1px dotted #e1e1e1;
- border-left: 1px dotted #e1e1e1;
-}
-/* admin page tool list definitions */
-.tool_list dt {
- font-weight: bold;
-}
-.tool_list dd {
- margin: 0;
- padding: 4px 0 0 10px;
-}
-/* divs for category list / platform news on home page */
-.home_cats {
- width: 45%;
- float: left;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-.home_news {
- width: 45%;
- float: right;
- position: relative;
- margin: 0;
- padding: 0px;
- padding-top: 8px;
- background: #fff;
-}
-label.left {
- float: left;
- width: 15em;
- margin: 0 0 0.5em 0;
-}
-form br {
- clear: both;
-}
-/* Fix for alignment problem in IE-Win browsers */
-/* Hide from IE5-mac. Only IE-win sees this. \*/
-* html .label {
- margin-right: 10px;
-}
-* html .data {
- height: 1%;
- margin-left: 0;
-}
-/* End hide from IE5/mac */
-
-.radio, .checkbox {
- margin: 0;
- padding: 0;
- border: none;
- background-color: transparent;
-}
-.required {
- color: #f00;
- font-weight: bold;
-}
-/* Admin section */
-div.admin_section {
- width: 40%;
- float: left;
- padding: 5px;
- margin: 10px 20px;
-}
-div.admin_section h4 {
- margin: 0;
- border-bottom: 1px solid gray;
- width: 100%;
-}
-.user_course_category {
- background-color: #efefef;
- border: 1px solid #666;
- font-weight: bold;
- color: #666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* Styles for the Dokeos Config Settings of the platform admin section*/
-.sectiontitle {
- background-color: #EFEFEF;
- border: 1px solid #cccccc;
- font-weight: bold;
- color: #666666;
- list-style-type: none;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectioncomment {
- color: #000000;
- margin: 5px;
- padding: 5px;
- font-size: 11px;
-}
-.sectionvalue {
- list-style-type: none;
- margin: 5px;
- padding: 5px;
-}
-/* New Announcements Tool */
-.announcements_datum {
- font-size: 12px;
- font-style: italic;
- color: #666666;
-}
-/* System announcements on homepage */
-div.system_announcements {
-}
-div.system_announcements h3 {
-}
-div.system_announcement {
- margin: 5px;
-}
-div.system_announcement_title {
-}
-div.system_announcement_content {
- margin-left: 20px;
- border-left: 1px solid gray;
- padding-left: 5px;
-}
-/*****************************************************
- * special print ccs classes *
- *****************************************************/
-
- a.full_url_print:after {
- content: "(" attr(href) ")";
- font-size: 75%;
-}
-/* to make it in visible in the printed version*/
-.print_invisible {
- display:none;
-}
diff --git a/main/css/tasty_olive/scorm.css b/main/css/tasty_olive/scorm.css
deleted file mode 100755
index 5cc79a74df..0000000000
--- a/main/css/tasty_olive/scorm.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/* copy of default_scorm.css */
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
-}
-
-.inner_lp_toc .scorm_item_1 a,
-.inner_lp_toc .scorm_item_2 a {
- font-size: 13px;
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item_1 a.chapter_module,
-.inner_lp_toc .scorm_item_2 a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-.inner_lp_toc .scorm_item_highlight {
- font-weight:bold;
- border:1px solid #999;
- background-color: #999;
- background-image:none;
- margin-right: 0px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-.inner_lp_toc .scorm_item_highlight a {
- color:#fff;
- margin-right: 1px;
- text-decoration: none;
- font-weight: bold;
-}
-
-.inner_lp_toc .scorm_item_section {
- border:1px solid #222;
- background:#333;
- font-weight:bold;
- color:#fff;
- text-shadow:0 -1px 1px #000;
- background-image:-webkit-gradient(linear,left top,left bottom,from(#555),to(#333));
- background-image:-webkit-linear-gradient(top,#555,#333);
- background-image:-moz-linear-gradient(top,#555,#333);
- background-image:-ms-linear-gradient(top,#555,#333);
- background-image:-o-linear-gradient(top,#555,#333);
- background-image:linear-gradient(top,#555,#333);
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
-}
-
-.inner_lp_toc .scorm_item_section .scorm_item:before
-{
- content : url('../lp_section.png'); /* from main/newscorm/lp_controller.php file */
- vertical-align: text-top;
- margin-right : 5px;
-}
-
-.scorm_section_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_section_level_1 {
- padding : 0 0.5em 0 2em;
-}
-
-.scorm_section_level_2 {
- padding : 0 0.5em 0 4em;
-}
-
-.scorm_section_level_3 {
- padding : 0 0.5em 0 6em;
-}
-
-.scorm_section_level_4 {
- padding : 0 0.5em 0 8em;
-}
-
-.scorm_section_level_5 {
- padding : 0 0.5em 0 10em;
-}
-
-.scorm_item_level_0 {
- padding : 0 0 0 0;
-}
-
-.scorm_item_level_1 {
- padding : 0 1.5em 0 1.5em;
-}
-
-.scorm_item_level_2 {
- padding : 0 1.5em 0 3em;
-}
-.scorm_item_level_3 {
- padding : 0 1.5em 0 4.5em;
-}
-
-.scorm_item_level_4 {
- padding : 0 1.5em 0 6em;
-}
-
-.scorm_item_level_5 {
- padding : 0 1.5em 0 7.5em;
-}
-
-.scorm_item.scorm_item_level_2 > a, .scorm_item.scorm_item_level_3 > a, .scorm_item.scorm_item_level_4 > a, .scorm_item.scorm_item_level_5 > a{
- font-weight: normal;
-}
-/* end of copy of default_scorm.css */
-
-
-.scormpage {
- height: 100%;
-}
-.scormpage .menu {
- width: 180px;
- float: left;
- margin: 1px;
- padding: 0px;
- margin-top: 0px;
- padding-top: 0px;
-}
-.lp_toc {
- background-color: white;
- height: 380px;
- width: 99%;
- border-right: 1px none;
-}
-
-.inner_lp_toc {
- overflow: auto;
- background-color: white;
- height: 210px;
- /*padding: 10px;*/
-}
-.inner_lp_toc .scorm_item_section {
- border:none;
- background:#333;
- font-weight:normal;
- color:#fff;
- text-shadow:none;
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- text-decoration: none;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 10px;
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
-}
-
-.inner_lp_toc .scorm_item {
- font-size: 13px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-
-}
-.inner_lp_toc .scorm_item.scorm_item_level_1{
- background: url(../../img/archive.png) no-repeat;
-}
-
-
-.inner_lp_toc .scorm_title {
- font-weight: bold;
- background:#ccc;
- font-size: 14px;
- color: #444;
-}
-.inner_lp_toc .scorm_title_text {
- margin-left: 10px;
-}
-.inner_lp_toc .scorm_status_img {
- margin:0px;
- margin-left: -10px;
- width:10px;
-}
-.lp_navigation {
- overflow: auto;
- background-color: white;
- height: 44px;
- width:180px;
- padding-top: 4px;
- padding-bottom:0px;
- border: none;
- margin-top: -18px;
- border-top: 1px dotted black;
- border-bottom: 1px dotted black;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- margin-top: -20px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 0px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-.scormpage .menu .notification {
- background-color: white;
- height: 50px;
-}
-.scormpage .menu .notification .message {
- background-color: white;
- height: 50px;
- width: 180px;
- border: none;
-}
-.scormpage .content {
- /*float: left;
- width: 60%;*/
- margin-top: 0px;
- padding-top: 0px;
- padding-left: 180px;
- background-color: white;
-}
-.iframe {
- border: 0px solid black;
- height: 100%;
- width: 95%;
- margin: 0px;
- padding-right: 0px;
- overflow: auto;
- vertical-align: top;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#msg_div_id {
- padding-left: 17px;
- padding-top: 4px;
-}
-
-#learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-#learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
-}
-#learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
-}
-#scorm_title {
- font-weight: bold;
- background:none;
- font-size: 20px;
- background-image: none;
- color: #0088aa;
- padding-top: 15px;
- padding-bottom: 15px;
-}
-#learning_path_main #control {
- opacity: 1;
-}
-.buttons a img:hover{
-opacity: 0.7;
-}
-#author_image{
- background-color: #d7eef4;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- border: 1px solid #b4cbff;
- margin-top: 10px;
-}
-#author_icon img{
- background-color: #fff;
- padding: 5px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-#author_image .progresstext{
- font-size: 20px;
- color: #0088AA;
- font-weight: bold;
-}
-#learning_path_left_zone #header {
- font-size: 18px;
- margin-top: 10px;
-}
-#learning_path_left_zone .no-border{
- background: none;
- color: #0088AA;
-}
-.progress {
- height: 18px;
- margin-bottom: 18px;
- overflow: hidden;
- background-color: #f7f7f7;
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
- background-repeat: repeat-x;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
-}
-.progress-striped .bar {
- background-color: #149BDF;
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-
-/*STYLES PROCESS LESSION*/
-.inner_lp_toc .scorm_item a {
- margin-right: 1px;
- padding-bottom: 2px;
- text-decoration: none;
- color: #2F3E46;
-}
-
-.inner_lp_toc .scorm_item a.chapter_module {
- font-weight: normal;
- margin-right: 10px;
-}
-
-.scorm_item_1,
-.scorm_item_2 {
- font-size: 16px;
- margin-left: 10px;
- margin-right:10px;
- text-decoration: none;
- border-color: rgba(255, 255, 255, 0.3);
-}
-.scorm_item_1 {
- border-bottom: 1px solid #CCCCCC;
- color:#444;
- text-shadow:0 1px 1px #f6f6f6;
- background: none;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
-}
-.scorm_item_2 {
- border-bottom: 1px solid #CCCCCC;
- color: #444444;
- text-shadow: 0 1px 1px #F6F6F6;
- margin-right: 1px;
- padding: 10px 0px 10px 0px;
- background-image:none;
-}
-.scorm_item_1.scorm_item_highlight.scorm_completed,
-.scorm_item_2.scorm_item_highlight.scorm_completed {
- background-image: url("images/white_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
- color: white;
-}
-.scorm_item_1.scorm_item_normal.scorm_completed,
-.scorm_item_2.scorm_item_normal.scorm_completed {
- background-image: url("images/blue_arrow.png") !important;
- background-position: 270px center !important;
- background-repeat: no-repeat;
-}
-#learning_path_main #control {
- background-image: none;
- background-color: #d7eef4;
- bottom: 0;
- height: 34px;
- margin-bottom: auto;
- margin-left: auto;
- margin-right: auto;
- margin-top: auto;
- padding-bottom: 8px;
- padding-left: 0;
- padding-right: 0;
- padding-top: 8px;
- position: absolute;
- text-align: center;
- width: 100%;
- border-top:1px solid #00AAD4;
-}
-
-#author_name {
- color: #666666;
- float: left;
- font-size: 13px;
- margin-top: 2px;
- text-align: center;
- width: 100%;
- padding-top: 10px;
- padding-bottom: 5px;
-}
-.mejs-container{
- background: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.mejs-container .mejs-controls{
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #45484d; /* Old browsers */
-background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */
-background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
-}
-.mejs-controls .mejs-time-rail .mejs-time-loaded{
- background: #333;
- background: rgba(50,50,50,0.8);
- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
- background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
- background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
-}
-.mejs-controls .mejs-time-rail .mejs-time-current{
- background: #a9e4f7; /* Old browsers */
- background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
-}
diff --git a/main/css/tasty_olive/scormfs.css b/main/css/tasty_olive/scormfs.css
deleted file mode 100755
index fa290279dd..0000000000
--- a/main/css/tasty_olive/scormfs.css
+++ /dev/null
@@ -1,82 +0,0 @@
-.scormpage {
-}
-.scormpage .menu {
- width: 180px;
- padding: 0px;
- font-size: small;
- position: absolute;
- background-color: white;
-}
-.scormpage .menu .lp_nav {
- height: 50px;
- width: 160px;
- padding-top: 4px;
- padding-bottom:0px;
- /*
- margin-left: 10px;
- margin-right: 10px;
-*/
- margin-top: 0px;
-}
-.lp_navigation_elem {
- padding-left: 15px;
- padding-top: 0px;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .progresstext {
- font-size: smaller;
-}
-/*.scormpage .menu */
-.lp_navigation_elem .buttons {
- margin-left: 5px;
- margin-right: 0em;
- margin-top: 0.4em;
-}
-#msg_div_id {
- padding-left: 10px;
- padding-top: 4px;
-}
-.scormpage .menu .notification {
- height: 50px;
- margin-left: 15px;
- margin-right: 15px;
-}
-.scormpage .menu .notification .message {
- height: 50px;
- width: 140px;
- border: none;
-}
-.scormpage .menu .notification .lp_log {
- height: 100px;
- width: 180px;
- border: none;
- overflow: auto;
-}
-.scormpage .content .iframe {
- /*
- border: none;
- height: 700px;
- margin: 0px;
- padding-right: 0px;
- margin-right: 0%;
- margin-left: 0%;
- */
- /* trying the absolute mode */
- position: fixed;
- bottom:0;
- left:0;
- width: 100%;
- height: 100%;
-}
-.scormpage .footer {
- clear: both;
-}
-#image_preview {
- padding-left: 17px;
-}
-#author_name {
- padding-left: 5px;
- padding-top: 5px;
- font-size: 11px;
- color:#888;
-}
diff --git a/main/css/tasty_olive/screen.css b/main/css/tasty_olive/screen.css
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/main/css/teacher.png b/main/css/teacher.png
deleted file mode 100755
index 5987a0042a..0000000000
Binary files a/main/css/teacher.png and /dev/null differ
diff --git a/main/css/thematic.png b/main/css/thematic.png
deleted file mode 100644
index 8a9e590ad2..0000000000
Binary files a/main/css/thematic.png and /dev/null differ
diff --git a/main/inc/lib/template.lib.php b/main/inc/lib/template.lib.php
index 843c03cf82..32da52350f 100755
--- a/main/inc/lib/template.lib.php
+++ b/main/inc/lib/template.lib.php
@@ -330,6 +330,7 @@ class Template
*/
public function set_header($status)
{
+ $status = false;
$this->show_header = $status;
$this->assign('show_header', $status);
@@ -474,8 +475,8 @@ class Template
// Base CSS
$css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).'base.css');
- // Default CSS responsive design
- $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).'bootstrap-responsive.css');
+ // Default CSS Bootstrap
+ $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).'bootstrap.css');
//Extra CSS files
$css[] = api_get_path(WEB_LIBRARY_PATH).'javascript/thickbox.css';
@@ -485,11 +486,11 @@ class Template
$css[] = api_get_path(WEB_LIBRARY_PATH).'javascript/chat/css/chat.css';
}
- $css[] = api_get_path(WEB_CSS_PATH).'font_awesome/css/font-awesome.css';
+ $css[] = api_get_path(WEB_CSS_PATH).'font-awesome.css';
$css[] = api_get_path(WEB_LIBRARY_PATH).'javascript/mediaelement/mediaelementplayer.css';
//THEME CSS STYLE
- $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).'responsive.css');
- $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).$this->theme.'/default.css');
+ // $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).'responsive.css');
+ // $css[] = api_get_cdn_path(api_get_path(WEB_CSS_PATH).$this->theme.'/default.css');
if ($this->show_learnpath) {
$css[] = api_get_path(WEB_CSS_PATH).$this->theme.'/learnpath.css';
@@ -816,7 +817,7 @@ class Template
$this->assign('user_notifications', $total_invitations);
- //Breadcrumb
+ //Block Breadcrumb
$breadcrumb = return_breadcrumb($interbreadcrumb, $language_file, $nameTools);
$this->assign('breadcrumb', $breadcrumb);