Conflicts: cms/djangoapps/contentstore/management/commands/import.py cms/djangoapps/contentstore/views.py cms/envs/common.py cms/envs/dev.py cms/envs/test.py cms/static/sass/README.txt cms/static/sass/_base.scss cms/static/sass/_calendar.scss cms/static/sass/base-style.scss cms/templates/base.html cms/templates/index.html cms/templates/widgets/header.html cms/templates/widgets/module-dropdown.html cms/templates/widgets/navigation.html cms/templates/widgets/problem-edit.html cms/urls.py common/djangoapps/pipeline_mako/__init__.py common/djangoapps/util/views.py common/lib/capa/capa_problem.py common/lib/capa/templates/textinput_dynamath.html common/lib/mitxmako/middleware.py common/lib/mitxmako/shortcuts.py common/lib/mitxmako/template.py common/lib/xmodule/capa_module.py common/lib/xmodule/seq_module.py common/lib/xmodule/setup.py common/lib/xmodule/test_files/symbolicresponse.xml common/lib/xmodule/test_files/test_files/symbolicresponse.xml common/lib/xmodule/tests/__init__.py common/lib/xmodule/tests/test_files/symbolicresponse.xml common/lib/xmodule/vertical_module.py common/lib/xmodule/video_module.py common/lib/xmodule/x_module.py lms/djangoapps/courseware/content_parser.py lms/djangoapps/courseware/grades.py lms/djangoapps/courseware/module_render.py lms/djangoapps/courseware/views.py lms/static/coffee/spec/helper.coffee lms/static/coffee/spec/modules/video/video_player_spec.coffee lms/static/coffee/spec/modules/video/video_volume_control_spec.coffee lms/static/coffee/src/modules/problem.coffee lms/static/coffee/src/modules/sequence.coffee lms/static/coffee/src/modules/video/video_player.coffee lms/static/coffee/src/modules/video/video_volume_control.coffee lms/static/js/vendor/jquery-1.6.2.min.js lms/static/js/vendor/jquery-ui-1.8.16.custom.min.js lms/static/sass/application.scss lms/static/sass/courseware/_sequence-nav.scss lms/static/sass/courseware/_video.scss lms/templates/main.html lms/urls.py rakefile requirements.txt
139 lines
2.4 KiB
SCSS
139 lines
2.4 KiB
SCSS
div.book-wrapper {
|
|
@extend .table-wrapper;
|
|
|
|
section.book-sidebar {
|
|
@extend .sidebar;
|
|
@extend .tran;
|
|
@include box-sizing(border-box);
|
|
|
|
ul#booknav {
|
|
font-size: 12px;
|
|
|
|
a {
|
|
color: #000;
|
|
|
|
&:hover {
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
li {
|
|
background: none;
|
|
padding-left: 30px;
|
|
|
|
div.hitarea {
|
|
background-image: url('../images/treeview-default.gif');
|
|
margin-left: -22px;
|
|
position: relative;
|
|
top: 4px;
|
|
|
|
&:hover {
|
|
filter: alpha(opacity=60);
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
> li {
|
|
border-bottom: 1px solid #d3d3d3;
|
|
@include box-shadow(0 1px 0 #eee);
|
|
padding: 7px 7px 7px 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
section.book {
|
|
@extend .content;
|
|
|
|
nav {
|
|
@extend .topbar;
|
|
@extend .clearfix;
|
|
|
|
a {
|
|
@extend .block-link;
|
|
padding: 0 lh();
|
|
}
|
|
|
|
ul {
|
|
@extend .clearfix;
|
|
|
|
li {
|
|
background-color: darken($cream, 4%);
|
|
|
|
&.last {
|
|
display: block;
|
|
float: left;
|
|
|
|
a {
|
|
border-left: 0;
|
|
border-right: 1px solid darken(#f6efd4, 20%);
|
|
@include box-shadow(inset -1px 0 0 lighten(#f6efd4, 5%));
|
|
}
|
|
}
|
|
|
|
&.next {
|
|
display: block;
|
|
float: right;
|
|
}
|
|
|
|
&:hover {
|
|
background: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.bottom-nav {
|
|
border-bottom: 0;
|
|
border-top: 1px solid #EDDFAA;
|
|
margin-bottom: -(lh());
|
|
margin-top: lh();
|
|
}
|
|
}
|
|
|
|
section.page {
|
|
text-align: center;
|
|
|
|
img {
|
|
border: 1px solid $border-color;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.closed {
|
|
section.book-sidebar {
|
|
width: flex-grid(.6);
|
|
|
|
header#open_close_accordion {
|
|
padding: 0;
|
|
|
|
a {
|
|
background-image: url('../images/slide-right-icon.png');
|
|
}
|
|
|
|
h2 {
|
|
padding: 0;
|
|
visibility: hidden;
|
|
width: 10px;
|
|
}
|
|
}
|
|
|
|
ul#booknav {
|
|
max-height: 100px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
visibility: hidden;
|
|
width: 10px;
|
|
}
|
|
}
|
|
|
|
section.course-content {
|
|
width: flex-grid(11.5) + flex-gutter();
|
|
}
|
|
}
|
|
}
|