Skip to content
Snippets Groups Projects
Commit bce3d7fe authored by strentini's avatar strentini
Browse files

OO-1, OO-2 : fix SCORM decorators in SCORM-navigation tree ( I decided to use...

OO-1, OO-2 : fix SCORM decorators in SCORM-navigation tree ( I decided to use the same icons as in course-editor, although we are not that happy with the "incomplete icon" )

--HG--
branch : 80-patch
parent 7bea585a
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,8 @@ body.b_full_screen { ...@@ -118,8 +118,8 @@ body.b_full_screen {
margin: 5px; border:1px solid #ddd; padding:0; margin: 5px; border:1px solid #ddd; padding:0;
@include o-border-radius(5px); @include o-border-radius(5px);
@include o-box-shadow(0,1px,2px,lightGrey); @include o-box-shadow(0,1px,2px,lightGrey);
background: #ebebeb url(../images/brasato/eportfolio/artefaktbg.png) top left repeat-x; // old legacy olat: background: #ebebeb url(../images/brasato/eportfolio/artefaktbg.png) top left repeat-x;
@include o-gradient-white();
div.b_preview_link { border:none; } div.b_preview_link { border:none; }
div.b_preview_link div.b_preview_wrapper_loading { background:transparent url(../openolat/images/ajax-loader.gif) no-repeat top left; } div.b_preview_link div.b_preview_wrapper_loading { background:transparent url(../openolat/images/ajax-loader.gif) no-repeat top left; }
} }
...@@ -129,19 +129,27 @@ div#b_preview_wrapper div#b_preview_wrapper_message { float:right; padding-left: ...@@ -129,19 +129,27 @@ div#b_preview_wrapper div#b_preview_wrapper_message { float:right; padding-left:
/* SCORM */ /* SCORM */
div.o_scorm {} div.o_scorm {}
div.o_scorm a.b_link_close { padding-right:20px; } div.o_scorm a.b_link_close { padding-right:20px; }
div.o_scorm div.o_scorm_navigation { float: right; display: inline; padding: 3px; background: #272727 url(../images/brasato/resizer_bg.gif) repeat-x center; border: 1px solid #504D4E; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;} div.o_scorm div.o_scorm_navigation {
float: right;
display: inline;
padding: 3px;
// old, legacy, olat: background: #272727 url(../images/brasato/resizer_bg.gif) repeat-x center;
@include o-gradient-glassy(#fefefe,#e3e3e3,#cfcfcf,#f3f3f3);
border: 1px solid #504D4E;
@include o-border-radius(3px);
margin:0.2em;
}
div.o_scorm div.o_scorm_navigation a { margin: 0 2px; } div.o_scorm div.o_scorm_navigation a { margin: 0 2px; }
div.o_scorm div.o_scorm_navigation a.o_scorm_previous_icon{ background-image: url(../openolat/images/brasato/move_left.png); } div.o_scorm div.o_scorm_navigation a.o_scorm_previous_icon{ background-image: url(../openolat/images/arrow_left_big.png); }
div.o_scorm div.o_scorm_navigation a.o_scorm_previous_icon:hover{ background-image: url(../images/brasato/move_left_over.png); } div.o_scorm div.o_scorm_navigation a.o_scorm_next_icon{ background-image: url(../openolat/images/arrow_right_big.png); }
div.o_scorm div.o_scorm_navigation a.o_scorm_next_icon{ background-image: url(../images/brasato/move_right.png); }
div.o_scorm div.o_scorm_navigation a.o_scorm_next_icon:hover{ background-image: url(../images/brasato/move_right_over.png); }
div.o_scorm div.o_scorm_navigation a.hover { background-color: none;} div.o_scorm div.o_scorm_navigation a.hover { background-color: none;}
div.o_scorm div.o_scorm_content { } div.o_scorm div.o_scorm_content { }
div.o_scorm div.o_scorm_content iframe { } div.o_scorm div.o_scorm_content iframe { }
/* menu icon decorators */ /* menu icon decorators */
.o_scorm_completed { top: 6px; left: 6px; background-image: url(../images/olat/scorm/completed.png); } .o_scorm_completed,.o_scorm_passed { top: 6px; left: 6px; background-image: url("../openolat/images/decorator/deco_ok.png"); }
.o_scorm_failed { top: 6px; left: 6px ! important; background-image: url(../images/olat/scorm/failed.png); } .o_scorm_failed { top: 6px; left: 6px ! important; background-image: url("../openolat/images/decorator/deco_error.png"); }
.o_scorm_incomplete { top: 6px; left: 6px; background-image: url(../images/olat/scorm/incomplete.png); } .o_scorm_incomplete { top: 6px; left: 6px; background-image: url("../openolat/images/decorator/deco_warn.png"); }
.o_scorm_not_attempted { top: 6px; left: 6px; background-image: url(../images/olat/scorm/not_attempted.png); } .o_scorm_not_attempted { top: 6px; left: 6px; background-image: none; }
.o_scorm_passed { top: 6px; left: 6px; background-image: url(../images/olat/scorm/passed.png); }
\ No newline at end of file
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment