mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-54671 css: reformat css
This commit is contained in:
parent
5a1728df39
commit
c5ec7b698b
@ -1,8 +1,28 @@
|
||||
#page-report-progress-index #completion-progress th,
|
||||
#page-report-progress-index #completion-progress td {padding:2px 4px;font-weight:normal;border-right: 1px solid #EEE;}
|
||||
#page-report-progress-index .progress-actions {text-align:center;list-style:none;}
|
||||
#page-report-progress-index .completion_pagingbar {margin:1em 0;text-align:center;}
|
||||
#page-report-progress-index .completion_prev {display:inline;margin-right:2em;}
|
||||
#page-report-progress-index .completion_pagingbar p {display:inline;margin:0;}
|
||||
#page-report-progress-index .completion_next {display:inline;margin-left:2em;}
|
||||
#page-report-progress-index.dir-rtl #completion-progress th svg {direction:ltr;}
|
||||
#page-report-progress-index #completion-progress th, #page-report-progress-index #completion-progress td {
|
||||
padding: 2px 4px;
|
||||
font-weight: normal;
|
||||
border-right: 1px solid #EEE;
|
||||
}
|
||||
#page-report-progress-index .progress-actions {
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
}
|
||||
#page-report-progress-index .completion_pagingbar {
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
#page-report-progress-index .completion_prev {
|
||||
display: inline;
|
||||
margin-right: 2em;
|
||||
}
|
||||
#page-report-progress-index .completion_pagingbar p {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
}
|
||||
#page-report-progress-index .completion_next {
|
||||
display: inline;
|
||||
margin-left: 2em;
|
||||
}
|
||||
#page-report-progress-index.dir-rtl #completion-progress th svg {
|
||||
direction: ltr;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -32,6 +32,7 @@
|
||||
margin-top: -0.2em;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.form-autocomplete-suggestions li {
|
||||
list-style-type: none;
|
||||
padding: 0.2em;
|
||||
@ -39,10 +40,12 @@
|
||||
cursor: pointer;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.form-autocomplete-suggestions li:hover {
|
||||
background-color: #00E;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.form-autocomplete-suggestions li[aria-selected=true] {
|
||||
background-color: #555;
|
||||
color: #FFF;
|
||||
@ -55,13 +58,16 @@
|
||||
cursor: pointer;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.dir-rtl .form-autocomplete-downarrow {
|
||||
right: -1.5em;
|
||||
left: inherit;
|
||||
}
|
||||
|
||||
.form-autocomplete-selection:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.form-autocomplete-selection [data-active-selection=true] {
|
||||
padding: 0.5em;
|
||||
font-size: large;
|
||||
|
@ -1,24 +1,87 @@
|
||||
.block {border:1px solid;margin-bottom:1em;}
|
||||
.block .header h2 { padding: .2em 0 0 .2em; margin: 0;word-wrap: break-word;}
|
||||
.block .header .block_action {float:right;margin:4px 0 3px 0;vertical-align:top;}
|
||||
.block {
|
||||
border: 1px solid;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.block .header h2 {
|
||||
padding: .2em 0 0 .2em;
|
||||
margin: 0;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.block .header .block_action {
|
||||
float: right;
|
||||
margin: 4px 0 3px 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.block .header .block_action img,
|
||||
.block .header .block_action input {margin:0 3px; width: 12px; height: 12px;}
|
||||
.block .content {padding:4px;}
|
||||
.jsenabled .block.hidden .content {display: none;}
|
||||
.block .content .userpicture {width:16px;height:16px;margin-right:6px;}
|
||||
.block .content .list li.listentry {clear:both;}
|
||||
.block .content .list .c0 {display:inline;}
|
||||
.block .content .list .c1 {margin-left:5px;display:inline;}
|
||||
.block .footer {margin-bottom: 4px;}
|
||||
.block_navigation .block_tree li {overflow:hidden;}
|
||||
.block_calendar_upcoming .footer { margin-top: .5em; }
|
||||
.block .header .block_action input {
|
||||
margin: 0 3px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.block .content {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.jsenabled .block.hidden .content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.block .content .userpicture {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.block .content .list li.listentry {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.block .content .list .c0 {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.block .content .list .c1 {
|
||||
margin-left: 5px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.block .footer {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.block_navigation .block_tree li {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.block_calendar_upcoming .footer {
|
||||
margin-top: .5em;
|
||||
}
|
||||
|
||||
/** block_list blocks need column stuffs **/
|
||||
.block.list_block .unlist > li > .column {display:inline-block;}
|
||||
.ie6 .block.list_block .unlist .column {display:inline;}
|
||||
.block.list_block .unlist > li > .column {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.block.beingmoved {border-width: 2px;border-style: dashed;}
|
||||
.blockmovetarget {display: block;height: 1em;margin-bottom: 1em;border-width: 2px;border-style: dashed;}
|
||||
.ie6 .block.list_block .unlist .column {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.block.beingmoved {
|
||||
border-width: 2px;
|
||||
border-style: dashed;
|
||||
}
|
||||
|
||||
.blockmovetarget {
|
||||
display: block;
|
||||
height: 1em;
|
||||
margin-bottom: 1em;
|
||||
border-width: 2px;
|
||||
border-style: dashed;
|
||||
}
|
||||
|
||||
.block-region block.invisible .header h2 {
|
||||
opacity: 0.5;
|
||||
@ -26,13 +89,26 @@
|
||||
}
|
||||
|
||||
.block .block-hider-show,
|
||||
.block .block-hider-hide {cursor:pointer;}
|
||||
.block .block-hider-show,
|
||||
.block.hidden .block-hider-hide {display:none;}
|
||||
.block.hidden .block-hider-show {display:inline;}
|
||||
.block .block-hider-hide {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.block_completionstatus .generaltable { border: 0px; }
|
||||
.block_completionstatus .generaltable .cell { border: 0px; }
|
||||
.block .block-hider-show,
|
||||
.block.hidden .block-hider-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.block.hidden .block-hider-show {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.block_completionstatus .generaltable {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
.block_completionstatus .generaltable .cell {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
.block-region {
|
||||
min-height: 400px;
|
||||
@ -44,13 +120,16 @@
|
||||
text-align: right;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.editing .block .header .commands > a {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.editing .block .header .commands .icon img {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.editing .block .header .commands img.actionmenu {
|
||||
width: auto;
|
||||
}
|
||||
@ -59,9 +138,11 @@
|
||||
.dir-rtl .block .header h2 {
|
||||
padding: .2em .2em 0 0;
|
||||
}
|
||||
.dir-rtl .block .header .block_action { float: left;}
|
||||
|
||||
.dir-rtl .block .header .block_action {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dir-rtl.editing .block .header .commands {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
@ -1,71 +1,281 @@
|
||||
/** Calendar **/
|
||||
.calendartable {width: 100%;}
|
||||
.calendartable th,
|
||||
.calendartable td {width:14%;vertical-align:top;text-align: center;border-width:1px;}
|
||||
.calendartable {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.calendar_event_course {background-color:#FFD3BD;}
|
||||
.calendar_event_global {background-color:#D6F8CD;}
|
||||
.calendar_event_group {background-color:#FEE7AE;}
|
||||
.calendar_event_user {background-color:#DCE7EC;}
|
||||
.calendartable th,
|
||||
.calendartable td {
|
||||
width: 14%;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.calendar_event_course {
|
||||
background-color: #FFD3BD;
|
||||
}
|
||||
|
||||
.calendar_event_global {
|
||||
background-color: #D6F8CD;
|
||||
}
|
||||
|
||||
.calendar_event_group {
|
||||
background-color: #FEE7AE;
|
||||
}
|
||||
|
||||
.calendar_event_user {
|
||||
background-color: #DCE7EC;
|
||||
}
|
||||
|
||||
.path-calendar .calendar-controls .previous,
|
||||
.path-calendar .calendar-controls .next,
|
||||
.path-calendar .calendar-controls .current {display: block;float: left;width: 12%;}
|
||||
.path-calendar .calendar-controls .previous {text-align: left;}
|
||||
.path-calendar .calendar-controls .current {text-align: center;width: 76%;}
|
||||
.path-calendar .calendar-controls .next {text-align: right;}
|
||||
.path-calendar .calendar-controls .current {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
.path-calendar .calendar-controls .previous {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.path-calendar .calendar-controls .current {
|
||||
text-align: center;
|
||||
width: 76%;
|
||||
}
|
||||
|
||||
.path-calendar .calendar-controls .next {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.path-calendar {
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar {
|
||||
vertical-align: top;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .bottom {
|
||||
text-align: center;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .heightcontainer {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .calendarmonth {
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .calendarmonth ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .calendarmonth ul li {
|
||||
list-style-type: none;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .calendarmonth td {
|
||||
height: 5em;
|
||||
}
|
||||
|
||||
.path-calendar {}
|
||||
.path-calendar .maincalendar {vertical-align: top;padding:0;}
|
||||
.path-calendar .maincalendar .bottom {text-align: center;padding:5px 0 0 0;}
|
||||
.path-calendar .maincalendar .heightcontainer {height: 100%;position: relative;}
|
||||
.path-calendar .maincalendar .calendarmonth {width:98%;margin:10px auto;}
|
||||
.path-calendar .maincalendar .calendarmonth ul {margin:0;}
|
||||
.path-calendar .maincalendar .calendarmonth ul li {list-style-type:none;margin-top: 4px;}
|
||||
.path-calendar .maincalendar .calendarmonth td {height: 5em;}
|
||||
.path-calendar .maincalendar .calendar-controls .previous,
|
||||
.path-calendar .maincalendar .calendar-controls .next{width: 30%;}
|
||||
.path-calendar .maincalendar .calendar-controls .current {width: 39.95%;}
|
||||
.path-calendar .maincalendar .controls {width:98%;margin:10px auto;}
|
||||
.path-calendar .maincalendar .eventlist {margin:0;}
|
||||
.path-calendar .maincalendar .eventlist .event {width:100%;margin-bottom:10px;border-spacing:0px;border-collapse:separate;border-width:1px;border-style:solid;list-style-type: none;}
|
||||
.path-calendar .maincalendar .eventlist .event > img {float:left;}
|
||||
.path-calendar .maincalendar .eventlist .event > img {float:right;}
|
||||
.path-calendar .maincalendar .eventlist .event .name {float:left;margin:0;}
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .name {float:right;}
|
||||
.path-calendar .maincalendar .eventlist .event .date {float:right;}
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .date {float:left;}
|
||||
.path-calendar .maincalendar .eventlist .event .subscription {float:left;clear:left;}
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .subscription {float:right;clear:right;}
|
||||
.path-calendar .maincalendar .eventlist .event .course {float:left;clear:left;}
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .course {float:right;clear:right;}
|
||||
.path-calendar .maincalendar .eventlist .event .side {width:32px;}
|
||||
.path-calendar .maincalendar .eventlist .event .commands a { margin: 0 3px;}
|
||||
.path-calendar .maincalendar .eventlist .description {clear: both;}
|
||||
.path-calendar .maincalendar .header {overflow:hidden;}
|
||||
.path-calendar .maincalendar .header .buttons {float: right;}
|
||||
.dir-rtl.path-calendar .maincalendar .header .buttons {float: left;}
|
||||
.path-calendar .filters table {border-collapse:separate;border-spacing: 2px;width: 100%;}
|
||||
#page-calendar-export .indent {padding-left: 20px;}
|
||||
.path-calendar div.cal_courses_flt { float: left; }
|
||||
.dir-rtl.path-calendar div.cal_courses_flt { float: right; }
|
||||
.path-calendar .cal_courses_flt label { margin-right: .45em; }
|
||||
.dir-rtl.path-calendar .cal_courses_flt label { margin-left: .45em; margin-right: 0; }
|
||||
.path-calendar .maincalendar .calendar-controls .next {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .calendar-controls .current {
|
||||
width: 39.95%;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .controls {
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
border-spacing: 0px;
|
||||
border-collapse: separate;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event > img {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event > img {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .name {
|
||||
float: left;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .name {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .date {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .date {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .subscription {
|
||||
float: left;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .subscription {
|
||||
float: right;
|
||||
clear: right;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .course {
|
||||
float: left;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .maincalendar .eventlist .event .course {
|
||||
float: right;
|
||||
clear: right;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .side {
|
||||
width: 32px;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .event .commands a {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .eventlist .description {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .header {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.path-calendar .maincalendar .header .buttons {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .maincalendar .header .buttons {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.path-calendar .filters table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-calendar-export .indent {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.path-calendar div.cal_courses_flt {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar div.cal_courses_flt {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.path-calendar .cal_courses_flt label {
|
||||
margin-right: .45em;
|
||||
}
|
||||
|
||||
.dir-rtl.path-calendar .cal_courses_flt label {
|
||||
margin-left: .45em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.block .minicalendar {
|
||||
width: 100%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.block .minicalendar {width:100%;margin:10px auto;}
|
||||
.block .minicalendar th,
|
||||
.block .minicalendar td {padding:2px;font-size:0.8em;}
|
||||
.block .minicalendar caption {font-size: inherit;font-weight: inherit;line-height: inherit;text-align: center;}
|
||||
.block .minicalendar td.weekend {color:#A00;}
|
||||
.block .calendar-controls .previous {text-align: left;display: block;float: left;width: 12%;}
|
||||
.block .calendar-controls .current {float:left;text-align: center;display: block;width:76%;}
|
||||
.block .calendar-controls .next {text-align: right;display: block;float: left;width: 12%;}
|
||||
.block .calendar_filters ul {list-style: none; margin: 0;}
|
||||
.block .calendar_filters li { margin-bottom: .2em;}
|
||||
.block .calendar_filters li span img { padding: 0 .2em;}
|
||||
.block .calendar_filters .eventname { padding-left: .2em;}
|
||||
.dir-rtl .block .calendar_filters .eventname { padding-right: .2em; padding-left: 0; }
|
||||
.block .content h3.eventskey {margin-top:0.5em;}
|
||||
.block .minicalendar td {
|
||||
padding: 2px;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.block .minicalendar caption {
|
||||
font-size: inherit;
|
||||
font-weight: inherit;
|
||||
line-height: inherit;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.block .minicalendar td.weekend {
|
||||
color: #A00;
|
||||
}
|
||||
|
||||
.block .calendar-controls .previous {
|
||||
text-align: left;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
.block .calendar-controls .current {
|
||||
float: left;
|
||||
text-align: center;
|
||||
display: block;
|
||||
width: 76%;
|
||||
}
|
||||
|
||||
.block .calendar-controls .next {
|
||||
text-align: right;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
.block .calendar_filters ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.block .calendar_filters li {
|
||||
margin-bottom: .2em;
|
||||
}
|
||||
|
||||
.block .calendar_filters li span img {
|
||||
padding: 0 .2em;
|
||||
}
|
||||
|
||||
.block .calendar_filters .eventname {
|
||||
padding-left: .2em;
|
||||
}
|
||||
|
||||
.dir-rtl .block .calendar_filters .eventname {
|
||||
padding-right: .2em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.block .content h3.eventskey {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.ical-link {
|
||||
font-size: 10px;
|
||||
@ -80,6 +290,7 @@
|
||||
margin: 3px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ical-link:hover,
|
||||
.ical-link:active,
|
||||
.ical-link:focus,
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -2,49 +2,158 @@
|
||||
* Whilst the dock isn't supported by the base theme this CSS is here so that those
|
||||
* themes that do want to use the dock will have a starting point at least
|
||||
*/
|
||||
|
||||
/* Put a margin on the body if the dock is shown */
|
||||
body.has_dock {margin-left:30px;}
|
||||
body.has_dock {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
/** For the dock itself */
|
||||
#dock {width:30px;position:fixed;top:0px;left:0px;height:100%;background-color:#FFF;border-right:1px solid #000;z-index:5000;}
|
||||
#dock.nothingdocked {visibility: hidden;display:none;}
|
||||
#dock .dockeditem .firstdockitem {margin-top:1em;}
|
||||
#dock .dockedtitle {border-bottom:1px solid #000;border-top:1px solid #000;cursor:pointer;}
|
||||
#dock .dockedtitle h2 {font-size:0.80em;line-height:100%;text-align:center;}
|
||||
#dock .dockedtitle .filterrotate {margin-left:8px;}
|
||||
#dock .controls {position:absolute;bottom:1em;text-align:center;width:100%;}
|
||||
#dock .controls img {cursor:pointer;}
|
||||
#dock {
|
||||
width: 30px;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height: 100%;
|
||||
background-color: #FFF;
|
||||
border-right: 1px solid #000;
|
||||
z-index: 5000;
|
||||
}
|
||||
|
||||
#dock.nothingdocked {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#dock .dockeditem .firstdockitem {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#dock .dockedtitle {
|
||||
border-bottom: 1px solid #000;
|
||||
border-top: 1px solid #000;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#dock .dockedtitle h2 {
|
||||
font-size: 0.80em;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#dock .dockedtitle .filterrotate {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
#dock .controls {
|
||||
position: absolute;
|
||||
bottom: 1em;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#dock .controls img {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/** For the panel the docked blocks are shown in */
|
||||
#dockeditempanel {min-width:200px;position:relative;z-index:12000;left:100%;}
|
||||
#dockeditempanel.dockitempanel_hidden {display:none;}
|
||||
#dockeditempanel .dockeditempanel_content {background-color:#fff;border:1px solid #000;z-index:12050;}
|
||||
#dockeditempanel .dockeditempanel_bd {overflow:auto;width:100%;}
|
||||
#dockeditempanel .dockeditempanel_bd .block_docked {margin:10px;}
|
||||
#dockeditempanel .dockeditempanel_bd .block_navigation .block_tree li {overflow:visible;}
|
||||
#dockeditempanel .dockeditempanel_hd {border-bottom:1px solid #000;}
|
||||
#dockeditempanel .dockeditempanel_hd h2 {display:block;margin:0;padding-right:1em;}
|
||||
#dockeditempanel .dockeditempanel_hd .commands {display:block;text-align:right;}
|
||||
#dockeditempanel {
|
||||
min-width: 200px;
|
||||
position: relative;
|
||||
z-index: 12000;
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
#dockeditempanel.dockitempanel_hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_content {
|
||||
background-color: #fff;
|
||||
border: 1px solid #000;
|
||||
z-index: 12050;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_bd {
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_bd .block_docked {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_bd .block_navigation .block_tree li {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd {
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd h2 {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd .commands {
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd .commands > a,
|
||||
#dockeditempanel .dockeditempanel_hd .commands > span { margin:0 3px; }
|
||||
#dockeditempanel .dockeditempanel_hd .commands > span {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd .commands img,
|
||||
#dockeditempanel .dockeditempanel_hd .commands input {vertical-align:middle; width: 12px; height: 12px;}
|
||||
#dockeditempanel .dockeditempanel_hd .commands .hidepanelicon img { cursor:pointer; }
|
||||
#dockeditempanel .dockeditempanel_hd .commands input {
|
||||
vertical-align: middle;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
#dockeditempanel .dockeditempanel_hd .commands .hidepanelicon img {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/** IE 6 doesn't support fixed pos elements **/
|
||||
.ie6 #dockeditempanel {position:absolute;}
|
||||
.ie6 #dockeditempanel {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* right align the DOCK panel
|
||||
------------------------------*/
|
||||
.dir-rtl #dockeditempanel .dockeditempanel_hd .commands {text-align: left;}
|
||||
.dir-rtl #dockeditempanel {right: 100%;}
|
||||
.dir-rtl #dock {left:auto;right: 0%; border-left: 1px solid #DDD;}
|
||||
.dir-rtl #dock .dockedtitle { border-bottom: 1px solid #DDD;border-top: 1px solid #EEE; cursor: pointer;}
|
||||
body.dir-rtl.has_dock {margin-left: 0px; margin-right: 30px}
|
||||
.dir-rtl #dockeditempanel .dockeditempanel_hd .commands {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dir-rtl #dockeditempanel {
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
.dir-rtl #dock {
|
||||
left: auto;
|
||||
right: 0%;
|
||||
border-left: 1px solid #DDD;
|
||||
}
|
||||
|
||||
.dir-rtl #dock .dockedtitle {
|
||||
border-bottom: 1px solid #DDD;
|
||||
border-top: 1px solid #EEE;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
body.dir-rtl.has_dock {
|
||||
margin-left: 0px;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
/* Test span used to calculate positioning of docked item labels */
|
||||
.transform-test-node { position:absolute;line-height:normal; }
|
||||
.transform-test-node {
|
||||
position: absolute;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/* Hide the move icon for blocks which are docked */
|
||||
#dock .editing_move,
|
||||
|
@ -1 +1,3 @@
|
||||
body {font:13px/1.231 arial,helvetica,clean,sans-serif;}
|
||||
body {
|
||||
font: 13px/1.231 arial, helvetica, clean, sans-serif;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,101 +1,142 @@
|
||||
/*** Grades ***/
|
||||
.allcoursegrades {width: 100%;text-align: right;padding: 4px 0px 5px 0px;}
|
||||
.allcoursegrades {
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
padding: 4px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.core_grades_notices .singlebutton {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.path-grade-edit .buttons {text-align:center;}
|
||||
.path-grade-edit-tree .idnumber {margin-left: 15px;}
|
||||
.path-grade-edit-tree .movetarget {position: relative;width: 80px;height: 16px;}
|
||||
.path-grade-edit .buttons {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .idnumber {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .movetarget {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades thead th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-rowspan {
|
||||
padding: 0;
|
||||
width: 24px;
|
||||
min-width: 24px;
|
||||
max-width: 24px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .category td.column-name {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades td.column-name {
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-name h4 img.icon {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-name img.smallicon {
|
||||
margin: 0 .3em;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .category input[type="text"],
|
||||
.path-grade-edit-tree .setup-grades .category .column-range,
|
||||
.path-grade-edit-tree .setup-grades .categoryitem,
|
||||
.path-grade-edit-tree .setup-grades .courseitem {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .emptyrow {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades.generaltable .levelodd {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades.generaltable .leveleven {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level3 {
|
||||
padding-left: 37px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level4 {
|
||||
padding-left: 66px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level5 {
|
||||
padding-left: 95px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level6 {
|
||||
padding-left: 124px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level7 {
|
||||
padding-left: 153px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level8 {
|
||||
padding-left: 182px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level9 {
|
||||
padding-left: 211px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-weight.level10 {
|
||||
padding-left: 240px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level2 {
|
||||
padding-left: 37px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level3 {
|
||||
padding-left: 66px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level4 {
|
||||
padding-left: 95px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level5 {
|
||||
padding-left: 124px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level6 {
|
||||
padding-left: 153px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level7 {
|
||||
padding-left: 182px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level8 {
|
||||
padding-left: 211px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level9 {
|
||||
padding-left: 240px;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree .setup-grades .column-range.level10 {
|
||||
padding-left: 269px;
|
||||
}
|
||||
@ -103,131 +144,307 @@
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades thead th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .category td.column-name {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades td.column-name {
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-name h4 img.icon {
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight input[type="checkbox"] {
|
||||
margin-right: 0;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-select input[type="checkbox"] {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level3 {
|
||||
padding-left: 0;
|
||||
padding-right: 37px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level4 {
|
||||
padding-left: 0;
|
||||
padding-right: 66px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level5 {
|
||||
padding-left: 0;
|
||||
padding-right: 95px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level6 {
|
||||
padding-left: 0;
|
||||
padding-right: 124px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level7 {
|
||||
padding-left: 0;
|
||||
padding-right: 153px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level8 {
|
||||
padding-left: 0;
|
||||
padding-right: 182px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level9 {
|
||||
padding-left: 0;
|
||||
padding-right: 211px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-weight.level10 {
|
||||
padding-left: 0;
|
||||
padding-right: 240px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level2 {
|
||||
padding-left: 0;
|
||||
padding-right: 37px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level3 {
|
||||
padding-left: 0;
|
||||
padding-right: 66px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level4 {
|
||||
padding-left: 0;
|
||||
padding-right: 95px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level5 {
|
||||
padding-left: 0;
|
||||
padding-right: 124px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level6 {
|
||||
padding-left: 0;
|
||||
padding-right: 153px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level7 {
|
||||
padding-left: 0;
|
||||
padding-right: 182px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level8 {
|
||||
padding-left: 0;
|
||||
padding-right: 211px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level9 {
|
||||
padding-left: 0;
|
||||
padding-right: 240px;
|
||||
}
|
||||
|
||||
.dir-rtl.path-grade-edit-tree .setup-grades .column-range.level10 {
|
||||
padding-left: 0;
|
||||
padding-right: 269px;
|
||||
}
|
||||
|
||||
#grade-report-toggles {text-align: center;}
|
||||
#grade-aggregation-help dt {margin-top: 15px;}
|
||||
#grade-aggregation-help dd.example {margin-top: 7px;}
|
||||
#grade-aggregation-help code {display: block;margin-top: 7px;}
|
||||
.gradeexportlink {padding: 2em;text-align: center;}
|
||||
#grade-report-toggles {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.gradetreebox {margin-top:10px;overflow-x:auto;overflow-y:hidden;}
|
||||
.gradetreebox #gradetreesubmit {margin-bottom:1em;text-align: center;}
|
||||
#grade-aggregation-help dt {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#grade-aggregation-help dd.example {
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
#grade-aggregation-help code {
|
||||
display: block;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.gradeexportlink {
|
||||
padding: 2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.gradetreebox {
|
||||
margin-top: 10px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.gradetreebox #gradetreesubmit {
|
||||
margin-bottom: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/** Advanced grading **/
|
||||
#page-grade-grading-manage #activemethodselector {text-align:center;margin-bottom:1em;}
|
||||
#page-grade-grading-manage #activemethodselector select {margin:0px 1em;}
|
||||
#page-grade-grading-manage .actions {text-align:center;}
|
||||
#page-grade-grading-manage .action {display:inline-block;width: 150px;background-color:#EEE;border:2px solid #CCC;
|
||||
margin:0.5em;padding:0.5em;text-align:center;-moz-border-radius:5px}
|
||||
#page-grade-grading-manage .action:hover {text-decoration:none;background-color:#F6F6F6;}
|
||||
#page-grade-grading-manage #actionresultmessagebox {background-color:#D2EBFF;width:60%;margin:1em auto 1em auto;text-align:center;
|
||||
padding:0.5em;border:2px solid #CCC;-moz-border-radius:5px;position:relative}
|
||||
#page-grade-grading-manage #actionresultmessagebox span {position:absolute;right:0px;top:-1.2em;color:#666;font-size:80%}
|
||||
#page-grade-grading-manage .definition-name .status {font-weight:normal;text-transform:uppercase;font-size:60%;padding:0.25em;border:1px solid #EEE;-moz-border-radius:5px;}
|
||||
#page-grade-grading-manage .definition-name .status.ready {background-color:#e7f1c3;border-color:#AAEEAA;}
|
||||
#page-grade-grading-manage .definition-name .status.draft {background-color:#f3f2aa;border-color:#EEEE22;}
|
||||
#page-grade-grading-manage .definition-preview {width:50%;margin:1em auto;border:1px solid #EEE; padding: 1em;}
|
||||
#page-grade-grading-pick .templatesearchform {}
|
||||
#page-grade-grading-pick .template-name {clear: both; padding:3px; background-color: #F6F6F6;}
|
||||
#page-grade-grading-pick .template-name .type {font-weight:normal;text-transform:uppercase;font-size:60%;padding:0.25em;border:1px solid #EEE;-moz-border-radius:5px;}
|
||||
#page-grade-grading-pick .template-name .type.shared {background-color:#e7f1c3;border-color:#AAEEAA}
|
||||
#page-grade-grading-pick .template-name .type.ownform {background-color:#d2ebff;border-color:#AACCEE}
|
||||
#page-grade-grading-pick .template-description {margin-bottom: 1em; padding: 0px 2em 0px 0px; margin-right:51%;}
|
||||
#page-grade-grading-pick .template-preview {width:50%; float:right; border:1px solid #EEE; padding: 1em; margin-bottom: 1em;}
|
||||
#page-grade-grading-pick .template-actions {margin-bottom: 1em; padding: 0px 2em 0px 0px; margin-right:51%;}
|
||||
#page-grade-grading-pick .template-actions .action {display:inline-block;margin:0.25em;padding:0.25em;border:2px solid transparent;}
|
||||
#page-grade-grading-pick .template-actions .action.pick {background-color:#EEE;border:2px solid #CCC;-moz-border-radius:3px}
|
||||
#page-grade-grading-pick .template-actions .action:hover {text-decoration:none;background-color:#F6F6F6;border:2px solid #CCC;-moz-border-radius:3px}
|
||||
#page-grade-grading-pick .template-actions .action .action-text {display:inline;}
|
||||
#page-grade-grading-pick .template-actions .action .action-icon {margin:0px 3px;}
|
||||
#page-grade-grading-pick .template-preview-confirm {width:50%;margin:1em auto;border:1px solid #EEE; padding: 1em;}
|
||||
#page-grade-grading-manage #activemethodselector {
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage #activemethodselector select {
|
||||
margin: 0px 1em;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .actions {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .action {
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
background-color: #EEE;
|
||||
border: 2px solid #CCC;
|
||||
margin: 0.5em;
|
||||
padding: 0.5em;
|
||||
text-align: center;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .action:hover {
|
||||
text-decoration: none;
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage #actionresultmessagebox {
|
||||
background-color: #D2EBFF;
|
||||
width: 60%;
|
||||
margin: 1em auto 1em auto;
|
||||
text-align: center;
|
||||
padding: 0.5em;
|
||||
border: 2px solid #CCC;
|
||||
-moz-border-radius: 5px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage #actionresultmessagebox span {
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
top: -1.2em;
|
||||
color: #666;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .definition-name .status {
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
font-size: 60%;
|
||||
padding: 0.25em;
|
||||
border: 1px solid #EEE;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .definition-name .status.ready {
|
||||
background-color: #e7f1c3;
|
||||
border-color: #AAEEAA;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .definition-name .status.draft {
|
||||
background-color: #f3f2aa;
|
||||
border-color: #EEEE22;
|
||||
}
|
||||
|
||||
#page-grade-grading-manage .definition-preview {
|
||||
width: 50%;
|
||||
margin: 1em auto;
|
||||
border: 1px solid #EEE;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .templatesearchform {
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-name {
|
||||
clear: both;
|
||||
padding: 3px;
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-name .type {
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
font-size: 60%;
|
||||
padding: 0.25em;
|
||||
border: 1px solid #EEE;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-name .type.shared {
|
||||
background-color: #e7f1c3;
|
||||
border-color: #AAEEAA;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-name .type.ownform {
|
||||
background-color: #d2ebff;
|
||||
border-color: #AACCEE;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-description {
|
||||
margin-bottom: 1em;
|
||||
padding: 0px 2em 0px 0px;
|
||||
margin-right: 51%;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-preview {
|
||||
width: 50%;
|
||||
float: right;
|
||||
border: 1px solid #EEE;
|
||||
padding: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions {
|
||||
margin-bottom: 1em;
|
||||
padding: 0px 2em 0px 0px;
|
||||
margin-right: 51%;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions .action {
|
||||
display: inline-block;
|
||||
margin: 0.25em;
|
||||
padding: 0.25em;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions .action.pick {
|
||||
background-color: #EEE;
|
||||
border: 2px solid #CCC;
|
||||
-moz-border-radius: 3px;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions .action:hover {
|
||||
text-decoration: none;
|
||||
background-color: #F6F6F6;
|
||||
border: 2px solid #CCC;
|
||||
-moz-border-radius: 3px;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions .action .action-text {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-actions .action .action-icon {
|
||||
margin: 0px 3px;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .template-preview-confirm {
|
||||
width: 50%;
|
||||
margin: 1em auto;
|
||||
border: 1px solid #EEE;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#page-grade-grading-pick .singlebutton,
|
||||
.path-grade-report-user h2 {
|
||||
clear:both;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/** pre-2.6 outcomes **/
|
||||
@ -236,8 +453,9 @@
|
||||
margin-right: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-grade-edit-outcome-course .courseoutcomes td {
|
||||
text-align:center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.path-grade-edit-tree table.setup-grades .column-weight {
|
||||
@ -253,9 +471,11 @@
|
||||
.path-grade-report-user .user-grade {
|
||||
border-color: black;
|
||||
}
|
||||
|
||||
.path-grade-report-user .user-grade.generaltable .levelodd {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
.path-grade-report-user .user-grade.generaltable .leveleven {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
@ -265,6 +485,7 @@
|
||||
.has_dock.path-grade-report-grader .gradeparent .sideonly.floating > .cell {
|
||||
padding-left: 35px;
|
||||
}
|
||||
|
||||
.path-grade-report-grader .gradeparent .clickable {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -284,4 +505,3 @@
|
||||
margin-left: 0;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
|
@ -1,42 +1,96 @@
|
||||
/** Message **/
|
||||
.message-discussion-noframes h1 {font-size:1em;}
|
||||
.message-discussion-noframes #userinfo .commands {font-size:0.8em;}
|
||||
.message-discussion-noframes h1 {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.message .noframesjslink {font-size:0.8em;}
|
||||
.message .link {font-size:0.8em;}
|
||||
.message-discussion-noframes #userinfo .commands {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.message .heading {font-size:1.0em;font-weight:bold;clear:both;}
|
||||
.message .noframesjslink {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.message .author {font-weight: bold;}
|
||||
.message .time {font-style: italic;}
|
||||
.message .text {}
|
||||
.message .link {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
#page-message-user .commands span {font-size:0.7em;}
|
||||
#page-message-user .name {font-weight: bold;font-size:1.1em;}
|
||||
table.message_search_results td {border-color:#DDDDDD;}
|
||||
.message .heading {
|
||||
font-size: 1.0em;
|
||||
font-weight: bold;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.message .time {color: #999999;}
|
||||
.message.me .author {color: #999999;}
|
||||
.message.other .author {color: #8888CC;}
|
||||
.message .author {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#page-message-messages {padding:10px;}
|
||||
#page-message-send .notifysuccess {padding:1px;}
|
||||
#page-message-send td.fixeditor {text-align:center;}
|
||||
.message .time {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.message .note {padding:10px;}
|
||||
table.message .searchresults td {padding:5px;}
|
||||
.message .text {
|
||||
}
|
||||
|
||||
#page-message-user .commands span {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
|
||||
#page-message-user .name {
|
||||
font-weight: bold;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
table.message_search_results td {
|
||||
border-color: #DDDDDD;
|
||||
}
|
||||
|
||||
.message .time {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.message.me .author {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.message.other .author {
|
||||
color: #8888CC;
|
||||
}
|
||||
|
||||
#page-message-messages {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#page-message-send .notifysuccess {
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
#page-message-send td.fixeditor {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.message .note {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
table.message .searchresults td {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.message .contactselector {
|
||||
width: 24%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dir-rtl .message .contactselector {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.message .contactselector .paging {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.message .message-contacts {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
@ -51,36 +105,52 @@ table.message .searchresults td {padding:5px;}
|
||||
left: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.dir-rtl .message .message-contacts li .pix {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.message .message-contacts li .contact {
|
||||
margin: 0 24% 0 25px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dir-rtl .message .message-contacts li .contact {
|
||||
text-align: right;
|
||||
margin: 0 25px 0 24%;
|
||||
}
|
||||
|
||||
.message .message-contacts li .contact.nolinks {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.dir-rtl .message .message-contacts li .contact.nolinks {
|
||||
margin-left: 5px;
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
.message .message-contacts li .link {
|
||||
float: right;
|
||||
max-width: 30%;
|
||||
}
|
||||
|
||||
.dir-rtl .message .message-contacts li .link {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.message .messagearea {padding-left:1%;border-left:1px solid LightGrey;width:74%;float:right;min-height:200px;}
|
||||
.message .messagearea .messagehistorytype {clear:both;padding-bottom:20px;}
|
||||
.message .messagearea {
|
||||
padding-left: 1%;
|
||||
border-left: 1px solid LightGrey;
|
||||
width: 74%;
|
||||
float: right;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistorytype {
|
||||
clear: both;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .user {
|
||||
vertical-align: top;
|
||||
@ -88,120 +158,233 @@ table.message .searchresults td {padding:5px;}
|
||||
min-width: 100px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .user:first-child {
|
||||
margin-left: 13%;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .user:last-child {
|
||||
margin-right: 13%;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .user:first-child {
|
||||
margin-right: 13%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .user:last-child {
|
||||
margin-left: 13%;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .user > div {
|
||||
text-align: center;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .between {
|
||||
float: left;
|
||||
width: 16px;
|
||||
margin: 0 3%;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .between,
|
||||
.dir-rtl .message .messagearea .messagehistory .user {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .heading,
|
||||
.message .messagearea .messagehistory h3 {width:100%;clear:both;}
|
||||
.message .messagearea .messagehistory .left {position:relative;margin-bottom:10px;width:50%;float:left;clear:both;}
|
||||
.dir-rtl .message .messagearea .messagehistory .left { float: right; }
|
||||
.message .messagearea .messagehistory .right {position:relative;margin-bottom:10px;width:50%;float:right;clear:both;}
|
||||
.dir-rtl .message .messagearea .messagehistory .right { float:left; }
|
||||
.message .messagearea .messagehistory h3 {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .left {
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
width: 50%;
|
||||
float: left;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .left {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .right {
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
width: 50%;
|
||||
float: right;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .right {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dir-ltr .message .messagearea .messagehistory .message {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.dir-ltr .message .messagearea .messagehistory .right .message {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .message {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .right .message {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .messageactive {
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .messagecontent .deleteicon {
|
||||
width: 20px;
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.dir-ltr .message .messagearea .messagehistory .messagecontent .deleteicon {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.dir-rtl .message .messagearea .messagehistory .messagecontent .deleteicon {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.message .messagearea .messagehistory .notification {padding:10px;background-color:#EEEEEE;margin-top:5px;}
|
||||
.message .messagearea .messagesend {padding-top:20px;clear:both;}
|
||||
.message .messagearea .messagesend .messagesendbox {width:100%}
|
||||
.message .messagearea .messagesend fieldset {padding:0px;margin:0;} /** bring the message send button closer to the message box */
|
||||
.message .messagearea .messagehistory .notification {
|
||||
padding: 10px;
|
||||
background-color: #EEEEEE;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagerecent {text-align:left;width:100%;}
|
||||
.message .messagearea .messagerecent .singlemessage {border-bottom:1px solid #D3D3D3;padding:10px;}
|
||||
.message .messagearea .messagerecent .singlemessage .otheruser span {padding:5px;}
|
||||
.message .messagearea .messagerecent .singlemessage .messagedate {float:right;}
|
||||
.message .messagearea .messagesend {
|
||||
padding-top: 20px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.message .hiddenelement {display:none;} /** not just using hidden as mform adds that class to its fieldset */
|
||||
.message .visible {display:inline;}
|
||||
.message .messagearea .messagesend .messagesendbox {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.message #usergroupselector.fieldset, .message #viewing {width: 100%;}
|
||||
.message .messagearea .messagesend fieldset {
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
} /** bring the message send button closer to the message box */
|
||||
|
||||
.messagesearchresults {margin-bottom:40px;}
|
||||
.messagesearchresults td {padding:0px 10px 0px 20px;}
|
||||
.messagesearchresults td span {white-space:nowrap;}
|
||||
.messagesearchresults td img.userpicture { padding-right: .45em; vertical-align: text-bottom; }
|
||||
.dir-rtl .messagesearchresults td img.userpicture { padding-left: .45em; padding-right: 0; }
|
||||
.messagesearchresults td span img { padding: 0 0 0 .45em; vertical-align: text-bottom; }
|
||||
.dir-rtl .messagesearchresults td span img { padding: 0 .45em 0 0; }
|
||||
.message .messagearea .messagerecent {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#newmessageoverlay {background-color:LightGrey;border:1px solid black;padding:20px;position:fixed;bottom:0;right:0;}
|
||||
#newmessageoverlay #usermessage {padding:10px;}
|
||||
.ie6 #newmessageoverlay {position:static;}
|
||||
.message .messagearea .messagerecent .singlemessage {
|
||||
border-bottom: 1px solid #D3D3D3;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagerecent .singlemessage .otheruser span {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.message .messagearea .messagerecent .singlemessage .messagedate {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.message .hiddenelement {
|
||||
display: none;
|
||||
} /** not just using hidden as mform adds that class to its fieldset */
|
||||
.message .visible {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.message #usergroupselector.fieldset,
|
||||
.message #viewing {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.messagesearchresults {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.messagesearchresults td {
|
||||
padding: 0px 10px 0px 20px;
|
||||
}
|
||||
|
||||
.messagesearchresults td span {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.messagesearchresults td img.userpicture {
|
||||
padding-right: .45em;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.dir-rtl .messagesearchresults td img.userpicture {
|
||||
padding-left: .45em;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.messagesearchresults td span img {
|
||||
padding: 0 0 0 .45em;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.dir-rtl .messagesearchresults td span img {
|
||||
padding: 0 .45em 0 0;
|
||||
}
|
||||
|
||||
#newmessageoverlay {
|
||||
background-color: LightGrey;
|
||||
border: 1px solid black;
|
||||
padding: 20px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#newmessageoverlay #usermessage {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ie6 #newmessageoverlay {
|
||||
position: static;
|
||||
}
|
||||
|
||||
/** Messenger send message dialog */
|
||||
.core_message-messenger-sendmessage-hidden {
|
||||
display:none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message.actions {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-area {
|
||||
height: 240px;
|
||||
max-height: 100%;
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-send {
|
||||
margin: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-notice-area {
|
||||
display: table;
|
||||
position: absolute;
|
||||
@ -212,24 +395,29 @@ table.message .searchresults td {padding:5px;}
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-notice {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-notice > div {
|
||||
background: #eee;
|
||||
padding: 5px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-footer {
|
||||
margin-top: 3px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.core_message-messenger-sendmessage .message-history {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.dir-rtl .core_message-messenger-sendmessage .message-send {
|
||||
float: left;
|
||||
}
|
||||
|
@ -27,83 +27,288 @@
|
||||
*
|
||||
****/
|
||||
|
||||
body {margin:auto 0px;width:auto;}
|
||||
#page {width:100%;position:relative;}
|
||||
#page-header {float:left;width:100%;}
|
||||
#page-content {clear:both;float:left;overflow:hidden;position:relative;width:100%;min-width:900px;}
|
||||
#page-content #region-main-box {float:left;left:200px;position:relative;width:200%;}
|
||||
#page-content #region-post-box {float:left;left:50%;margin-left:-400px;position:relative;width:100%;}
|
||||
#page-content #region-main-wrap {float:right;position:relative;right:100%;width:50%;}
|
||||
#page-content #region-main {margin-right:0px;margin-left:400px;overflow:hidden;}
|
||||
#page-content #region-pre {float:left;left:200px;overflow:hidden;position:relative;width:200px;margin-left:-50%;}
|
||||
#page-content #region-post {float:left;left:0px;overflow:hidden;position:relative;width:200px;}
|
||||
#page-content .region-content {padding:10px;}
|
||||
#page-footer {clear:both;float:left;width:100%;}
|
||||
body {
|
||||
margin: auto 0px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#page {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#page-header {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-content {
|
||||
clear: both;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-width: 900px;
|
||||
}
|
||||
|
||||
#page-content #region-main-box {
|
||||
float: left;
|
||||
left: 200px;
|
||||
position: relative;
|
||||
width: 200%;
|
||||
}
|
||||
|
||||
#page-content #region-post-box {
|
||||
float: left;
|
||||
left: 50%;
|
||||
margin-left: -400px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-content #region-main-wrap {
|
||||
float: right;
|
||||
position: relative;
|
||||
right: 100%;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#page-content #region-main {
|
||||
margin-right: 0px;
|
||||
margin-left: 400px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#page-content #region-pre {
|
||||
float: left;
|
||||
left: 200px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: 200px;
|
||||
margin-left: -50%;
|
||||
}
|
||||
|
||||
#page-content #region-post {
|
||||
float: left;
|
||||
left: 0px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
#page-content .region-content {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#page-footer {
|
||||
clear: both;
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Only side pre **/
|
||||
.side-pre-only #page-content #region-post-box {margin-left:-200px;}
|
||||
.side-pre-only #page-content #region-main {margin-left:200px;}
|
||||
.side-pre-only #page-content #region-pre {left:0px;}
|
||||
.side-pre-only #page-content #region-post {width:0px;}
|
||||
.side-pre-only #page-content #region-post-box {
|
||||
margin-left: -200px;
|
||||
}
|
||||
|
||||
.side-pre-only #page-content #region-main {
|
||||
margin-left: 200px;
|
||||
}
|
||||
|
||||
.side-pre-only #page-content #region-pre {
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.side-pre-only #page-content #region-post {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
/** Only side post **/
|
||||
.side-post-only #page-content #region-main-box {left:0px;}
|
||||
.side-post-only #page-content #region-post-box {margin-left:-200px;}
|
||||
.side-post-only #page-content #region-main {margin-left:200px;}
|
||||
.side-post-only #page-content #region-pre {width:0px;}
|
||||
.has_dock.side-post-only .page-middle #region-main {margin-left:200px;}
|
||||
.side-post-only #page-content #region-main-box {
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.side-post-only #page-content #region-post-box {
|
||||
margin-left: -200px;
|
||||
}
|
||||
|
||||
.side-post-only #page-content #region-main {
|
||||
margin-left: 200px;
|
||||
}
|
||||
|
||||
.side-post-only #page-content #region-pre {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.has_dock.side-post-only .page-middle #region-main {
|
||||
margin-left: 200px;
|
||||
}
|
||||
|
||||
/** Moving block when side pre only **/
|
||||
.blocks-moving.side-pre-only #page-content #region-post-box {margin-left:-400px;}
|
||||
.blocks-moving.side-pre-only #page-content #region-main {margin-left:400px;}
|
||||
.blocks-moving.side-pre-only #page-content #region-pre {left:200px;}
|
||||
.blocks-moving.side-pre-only #page-content #region-post {width:200px;}
|
||||
.blocks-moving.side-pre-only #page-content #region-post-box {
|
||||
margin-left: -400px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-main {
|
||||
margin-left: 400px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-pre {
|
||||
left: 200px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-post {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
/** Moving block when side-post-only **/
|
||||
.blocks-moving.side-post-only #page-content #region-main-box {left:200px;width:200%;}
|
||||
.blocks-moving.side-post-only #page-content #region-post-box {margin-left:-400px;}
|
||||
.blocks-moving.side-post-only #page-content #region-main {margin-left:400px;}
|
||||
.blocks-moving.side-post-only #page-content #region-pre {left:200px;width:200px;}
|
||||
.blocks-moving.side-post-only #page-content #region-post {left:0px;width:200px;}
|
||||
.blocks-moving.side-post-only #page-content #region-main-box {
|
||||
left: 200px;
|
||||
width: 200%;
|
||||
}
|
||||
|
||||
.blocks-moving.side-post-only #page-content #region-post-box {
|
||||
margin-left: -400px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-post-only #page-content #region-main {
|
||||
margin-left: 400px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-post-only #page-content #region-pre {
|
||||
left: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-post-only #page-content #region-post {
|
||||
left: 0px;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
/** No blocks whatsoever **/
|
||||
.content-only #page-content {min-width:0;}
|
||||
.content-only #page-content #region-main-box {left:0px;}
|
||||
.content-only #page-content #region-post-box {margin-left:0px;}
|
||||
.content-only #page-content #region-main {margin-left:0px;}
|
||||
.content-only #page-content #region-pre {left:0;width:0px;}
|
||||
.content-only #page-content #region-post {width:0;}
|
||||
.content-only #page-content {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main-box {
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-post-box {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-main {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-pre {
|
||||
left: 0;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.content-only #page-content #region-post {
|
||||
width: 0;
|
||||
}
|
||||
|
||||
/** Center block for My Moodle/Home **/
|
||||
#region-content.block-region .header { background-image: none; }
|
||||
#region-content.block-region .header {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/** Stabalise some IE6 behaviour **/
|
||||
.ie6 #region-pre .region-content,
|
||||
.ie6 #region-post .region-content {padding:0 !important;width:100%;float:none;}
|
||||
.ie6 #region-post .region-content {
|
||||
padding: 0 !important;
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.ie6 #region-pre .region-content .block,
|
||||
.ie6 #region-post .region-content .block {width:auto;padding:0;margin:10px;}
|
||||
.ie6 #region-post .region-content .block {
|
||||
width: auto;
|
||||
padding: 0;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/** Report layout **/
|
||||
.pagelayout-report #page {width:auto;position:relative;}
|
||||
.pagelayout-report #page-header {float:none;}
|
||||
.pagelayout-report #page-content {float:none;overflow:visible;width:auto;}
|
||||
.pagelayout-report #report-main-content {float:left;width:100%;}
|
||||
.pagelayout-report #report-main-content .region-content {margin-left:200px;}
|
||||
.pagelayout-report #report-main-content .region-content table {background-color:#FFF;}
|
||||
.pagelayout-report #report-region-wrap {width:0;float:right;position:relative;left:-100%;}
|
||||
.pagelayout-report #report-region-pre {width:200px;}
|
||||
.pagelayout-report #page-footer {float:none;}
|
||||
.pagelayout-report #page-content .region-content {overflow:visible;}
|
||||
.pagelayout-report #page {
|
||||
width: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pagelayout-report #page-header {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.pagelayout-report #page-content {
|
||||
float: none;
|
||||
overflow: visible;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.pagelayout-report #report-main-content {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.pagelayout-report #report-main-content .region-content {
|
||||
margin-left: 200px;
|
||||
}
|
||||
|
||||
.pagelayout-report #report-main-content .region-content table {
|
||||
background-color: #FFF;
|
||||
}
|
||||
|
||||
.pagelayout-report #report-region-wrap {
|
||||
width: 0;
|
||||
float: right;
|
||||
position: relative;
|
||||
left: -100%;
|
||||
}
|
||||
|
||||
.pagelayout-report #report-region-pre {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.pagelayout-report #page-footer {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.pagelayout-report #page-content .region-content {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/** Correct for content only **/
|
||||
.pagelayout-report.content-only #report-main-content .region-content {margin-left:0;}
|
||||
.pagelayout-report.content-only #report-main-content .region-content {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/** Correct for right to left languages **/
|
||||
.dir-rtl.pagelayout-report #report-main-content .region-content {margin-left:0;margin-right:200px;}
|
||||
.dir-rtl.pagelayout-report #report-region-wrap {left:0;}
|
||||
.dir-rtl.pagelayout-report #report-main-content .region-content {
|
||||
margin-left: 0;
|
||||
margin-right: 200px;
|
||||
}
|
||||
|
||||
.dir-rtl.pagelayout-report #report-region-wrap {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/** Stabalise IE6 behaviour on the report layout **/
|
||||
.ie6.pagelayout-report #report-main-content {float:none;width:auto;}
|
||||
.ie6.pagelayout-report #report-region-wrap {float:none;width:200px;left:auto;position:absolute;top:0;}
|
||||
.ie6.pagelayout-report #report-main-content {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.ie6.pagelayout-report #report-region-wrap {
|
||||
float: none;
|
||||
width: 200px;
|
||||
left: auto;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.ie6.pagelayout-report #report-region-pre,
|
||||
.ie6.pagelayout-report #report-region-pre .block {width:100%;}
|
||||
.ie6.pagelayout-report #report-region-pre .block {
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -1,26 +1,96 @@
|
||||
/* Question bank */
|
||||
.questionbank h2 {margin-top: 0;}
|
||||
.questioncategories h3 {margin-top: 0;}
|
||||
.questionbank h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#chooseqtypebox {margin-top: 1em;}
|
||||
#chooseqtype h3 {margin: 0 0 0.3em;}
|
||||
#chooseqtype .instruction {display: none;}
|
||||
#chooseqtype .fakeqtypes {border-top: 1px solid silver;}
|
||||
#chooseqtype .qtypeoption {margin-bottom: 0.5em;}
|
||||
#chooseqtype label {display: block;}
|
||||
#chooseqtype .qtypename img {padding: 0 0.3em;}
|
||||
#chooseqtype .qtypesummary {display: block;margin: 0 2em;}
|
||||
#chooseqtype .submitbuttons {margin: 0.7em 0;text-align: center;}
|
||||
.questioncategories h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer {display: none;}
|
||||
#chooseqtypebox {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer_c.yui-panel-container.shadow .underlay {background: none;}
|
||||
#qtypechoicecontainer.yui-panel .hd {color:#333333;letter-spacing: 1px;text-shadow: 1px 1px 1px #FFFFFF;border-radius: 10px 10px 0 0;border: 1px solid #CCCCCC;border-bottom: 1px solid #BBBBBB;background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#CCCCCC));background: -moz-linear-gradient(top, #FFFFFF, #CCCCCC);}
|
||||
#chooseqtype h3 {
|
||||
margin: 0 0 0.3em;
|
||||
}
|
||||
|
||||
#chooseqtype .instruction {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#chooseqtype .fakeqtypes {
|
||||
border-top: 1px solid silver;
|
||||
}
|
||||
|
||||
#chooseqtype .qtypeoption {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
#chooseqtype label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#chooseqtype .qtypename img {
|
||||
padding: 0 0.3em;
|
||||
}
|
||||
|
||||
#chooseqtype .qtypesummary {
|
||||
display: block;
|
||||
margin: 0 2em;
|
||||
}
|
||||
|
||||
#chooseqtype .submitbuttons {
|
||||
margin: 0.7em 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer_c.yui-panel-container.shadow .underlay {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer.yui-panel .hd {
|
||||
color: #333333;
|
||||
letter-spacing: 1px;
|
||||
text-shadow: 1px 1px 1px #FFFFFF;
|
||||
border-radius: 10px 10px 0 0;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-bottom: 1px solid #BBBBBB;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#CCCCCC));
|
||||
background: -moz-linear-gradient(top, #FFFFFF, #CCCCCC);
|
||||
}
|
||||
|
||||
#qtypechoicecontainer {
|
||||
font-size: 12px;
|
||||
color: #333333;
|
||||
background: #F2F2F2;
|
||||
border-radius: 10px;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-top: 0 none;
|
||||
-webkit-box-shadow: 5px 5px 20px 0px #666666;
|
||||
-moz-box-shadow: 5px 5px 20px 0px #666666;
|
||||
box-shadow: 5px 5px 20px 0px #666666;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype {
|
||||
width: 35em;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtypehead h3 {
|
||||
margin: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .qtypes {
|
||||
position: relative;
|
||||
border-bottom: 1px solid #BBBBBB;
|
||||
padding: 0.24em 0;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer {font-size: 12px;color: #333333;background: #F2F2F2;border-radius: 10px;border:1px solid #CCCCCC;border-top:0 none;-webkit-box-shadow: 5px 5px 20px 0px #666666;-moz-box-shadow: 5px 5px 20px 0px #666666;box-shadow: 5px 5px 20px 0px #666666;}
|
||||
#qtypechoicecontainer #chooseqtype {width: 35em;}
|
||||
#qtypechoicecontainer #chooseqtypehead h3 {margin: 0;font-weight: normal;}
|
||||
#qtypechoicecontainer #chooseqtype .qtypes {position: relative;border-bottom: 1px solid #BBBBBB;padding: 0.24em 0;}
|
||||
#qtypechoicecontainer #chooseqtype .alloptions {
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
@ -28,9 +98,25 @@
|
||||
max-height: calc(100vh - 8em);
|
||||
width: 60%;
|
||||
}
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption {margin-bottom: 0; padding: 0.3em 0 0.3em 1.6em;}
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption img {vertical-align: text-bottom;padding-left: 1em;padding-right: 0.5em;}
|
||||
#qtypechoicecontainer #chooseqtype .selected {background-color: #FFFFFF;box-shadow: 0px 0px 10px 0px #CCCCCC;-webkit-box-shadow: 0px 0px 10px 0px #CCCCCC;-moz-box-shadow: 0px 0px 10px 0px #CCCCCC;}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption {
|
||||
margin-bottom: 0;
|
||||
padding: 0.3em 0 0.3em 1.6em;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption img {
|
||||
vertical-align: text-bottom;
|
||||
padding-left: 1em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .selected {
|
||||
background-color: #FFFFFF;
|
||||
box-shadow: 0px 0px 10px 0px #CCCCCC;
|
||||
-webkit-box-shadow: 0px 0px 10px 0px #CCCCCC;
|
||||
-moz-box-shadow: 0px 0px 10px 0px #CCCCCC;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .instruction,
|
||||
#qtypechoicecontainer #chooseqtype .qtypesummary {
|
||||
display: none;
|
||||
@ -45,15 +131,33 @@
|
||||
padding: 1.5em 1.6em;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
#qtypechoicecontainer #chooseqtype .instruction,
|
||||
#qtypechoicecontainer #chooseqtype .selected .qtypesummary {display: block;}
|
||||
|
||||
#categoryquestions { margin: 0; }
|
||||
#qtypechoicecontainer #chooseqtype .instruction,
|
||||
#qtypechoicecontainer #chooseqtype .selected .qtypesummary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#categoryquestions {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#categoryquestions td,
|
||||
#categoryquestions th { padding: 0 0.2em; }
|
||||
#categoryquestions th { text-align: left; font-weight: normal; }
|
||||
.dir-rtl #categoryquestions th { text-align: right; }
|
||||
.questionbank .singleselect { margin: 0; }
|
||||
#categoryquestions th {
|
||||
padding: 0 0.2em;
|
||||
}
|
||||
|
||||
#categoryquestions th {
|
||||
text-align: left;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.dir-rtl #categoryquestions th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.questionbank .singleselect {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Question editing forms. */
|
||||
#page-question-addquestion #chooserdialogue,
|
||||
@ -61,76 +165,198 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
#combinedfeedbackhdr div.fhtmleditor {padding: 0;}
|
||||
#combinedfeedbackhdr div.fcheckbox {margin-bottom: 1em;}
|
||||
#combinedfeedbackhdr div.fhtmleditor {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#multitriesheader div.fitem_feditor {margin-top: 1em;}
|
||||
#multitriesheader div.fitem_fgroup {margin-bottom: 1em;}
|
||||
#multitriesheader div.fitem_fgroup fieldset.felement label {margin-left: 0.3em; margin-right: 0.3em;}
|
||||
#combinedfeedbackhdr div.fcheckbox {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
body.path-question-type .fitem_fgroup .accesshide {font: inherit;left: 0;position: static;padding-right:.3em}
|
||||
#multitriesheader div.fitem_feditor {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#multitriesheader div.fitem_fgroup {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#multitriesheader div.fitem_fgroup fieldset.felement label {
|
||||
margin-left: 0.3em;
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
|
||||
body.path-question-type .fitem_fgroup .accesshide {
|
||||
font: inherit;
|
||||
left: 0;
|
||||
position: static;
|
||||
padding-right: .3em;
|
||||
}
|
||||
|
||||
/* Questions being attempted. */
|
||||
.que {clear: left;text-align: left;margin: 0 auto 1.8em auto;}
|
||||
.dir-rtl .que {text-align: right;}
|
||||
.que {
|
||||
clear: left;
|
||||
text-align: left;
|
||||
margin: 0 auto 1.8em auto;
|
||||
}
|
||||
|
||||
.dir-rtl .que {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.que .info {
|
||||
float: left;
|
||||
width: 7em;
|
||||
padding: 0.5em;
|
||||
margin-bottom: 1.8em;
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.que h3.no {
|
||||
margin: 0;
|
||||
font-size: 0.8em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.que span.qno {
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.que .info > div {
|
||||
font-size: 0.8em;
|
||||
margin-top: 0.7em;
|
||||
}
|
||||
|
||||
.que .info .questionflag.editable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.que .info {float: left;width: 7em;padding:0.5em;margin-bottom: 1.8em;background: #eee;}
|
||||
.que h3.no {margin: 0;font-size: 0.8em;line-height: 1;}
|
||||
.que span.qno {font-size: 1.5em;font-weight:bold;}
|
||||
.que .info > div {font-size: 0.8em;margin-top: 0.7em;}
|
||||
.que .info .questionflag.editable {cursor:pointer;}
|
||||
.que .info .editquestion img,
|
||||
.que .info .questionflag img,
|
||||
.que .info .questionflag input {vertical-align: bottom;}
|
||||
.que .info .questionflag input {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.que .content {margin: 0 0 0 8.5em;}
|
||||
.que .content {
|
||||
margin: 0 0 0 8.5em;
|
||||
}
|
||||
|
||||
.que .formulation,
|
||||
.que .outcome,
|
||||
.que .comment,
|
||||
.que .history {padding: 0.5em;margin: 0 0 0.5em;}
|
||||
.que .formulation {background: #e4f1fa;}
|
||||
.que .outcome {background: #fff3bf;}
|
||||
.que .comment {background: #e0ffe0;}
|
||||
.que .history {background: #eee;}
|
||||
.que .history {
|
||||
padding: 0.5em;
|
||||
margin: 0 0 0.5em;
|
||||
}
|
||||
|
||||
.que .ablock {margin: 0.7em 0 0.3em 0;}
|
||||
.que .im-controls {margin-top: 0.5em;text-align: left;}
|
||||
.dir-rtl .que .im-controls {text-align: right;}
|
||||
.que .formulation {
|
||||
background: #e4f1fa;
|
||||
}
|
||||
|
||||
.que .outcome {
|
||||
background: #fff3bf;
|
||||
}
|
||||
|
||||
.que .comment {
|
||||
background: #e0ffe0;
|
||||
}
|
||||
|
||||
.que .history {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.que .ablock {
|
||||
margin: 0.7em 0 0.3em 0;
|
||||
}
|
||||
|
||||
.que .im-controls {
|
||||
margin-top: 0.5em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dir-rtl .que .im-controls {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.que .specificfeedback,
|
||||
.que .generalfeedback,
|
||||
.que .rightanswer,
|
||||
.que .im-feedback,
|
||||
.que .feedback,
|
||||
.que p {margin: 0 0 0.5em;}
|
||||
.que .qtext {margin-bottom: 1.5em;}
|
||||
.que p {
|
||||
margin: 0 0 0.5em;
|
||||
}
|
||||
|
||||
.que .qtext {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.que .correct {
|
||||
background-color: #afa;
|
||||
}
|
||||
|
||||
.que .correct {background-color: #afa;}
|
||||
.que .notanswered,
|
||||
.que .incorrect {background-color: #faa;}
|
||||
.que .partiallycorrect {background-color: #ff9;}
|
||||
.que .validationerror {color: #a00;}
|
||||
.que .incorrect {
|
||||
background-color: #faa;
|
||||
}
|
||||
|
||||
.que .partiallycorrect {
|
||||
background-color: #ff9;
|
||||
}
|
||||
|
||||
.que .validationerror {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
.que .grading,
|
||||
.que .comment,
|
||||
.que .commentlink,
|
||||
.que .history {margin-top: 0.5em;}
|
||||
.que .history {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.que .history h3 {margin: 0 0 0.2em;font-size: 1em;}
|
||||
.que .history table {width: 100%;margin: 0;}
|
||||
.que .history .current {font-weight: bold;}
|
||||
.que .history h3 {
|
||||
margin: 0 0 0.2em;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.que .questioncorrectnessicon { vertical-align: text-bottom; }
|
||||
.que input.questionflagimage { padding-right: 3px; }
|
||||
.dir-rtl .que input.questionflagimage { padding-left: 3px; padding-right: 0; }
|
||||
.que .history table {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.que .history .current {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.que .questioncorrectnessicon {
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.que input.questionflagimage {
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
.dir-rtl .que input.questionflagimage {
|
||||
padding-left: 3px;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
/* Miscellaneous. */
|
||||
.importerror {margin-top: 10px;border-bottom: 1px solid #555;}
|
||||
.mform .que.comment .fitemtitle {width: 20%;}
|
||||
.importerror {
|
||||
margin-top: 10px;
|
||||
border-bottom: 1px solid #555;
|
||||
}
|
||||
|
||||
.mform .que.comment .fitemtitle {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
#page-question-preview #techinfo {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
#page-mod-quiz-edit #categoryquestions .header {
|
||||
background: none;
|
||||
}
|
||||
@ -139,15 +365,18 @@ body.path-question-type .fitem_fgroup .accesshide {font: inherit;left: 0;positio
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.path-question-type #id_answerhdr .fitem_feditor .felement {
|
||||
margin-left: 16%;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
body#page-question-type-multichoice div[id^=fitem_id_] .fitemtitle {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.dir-rtl.path-question-type #id_answerhdr .fitem_feditor .felement {
|
||||
margin-right: 16%;
|
||||
margin-left: 0px;
|
||||
@ -161,8 +390,16 @@ body.path-question-type .fitem_fgroup .accesshide {font: inherit;left: 0;positio
|
||||
|
||||
/** Overide for RTL layout **/
|
||||
.dir-rtl #qtypechoicecontainer #chooseqtype .instruction,
|
||||
.dir-rtl #qtypechoicecontainer #chooseqtype .qtypesummary {right: 60%;left: 0%; border-left:0;border-right: 1px solid grey;}
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption {padding-right: 0.3em;}
|
||||
.dir-rtl #qtypechoicecontainer #chooseqtype .qtypesummary {
|
||||
right: 60%;
|
||||
left: 0%;
|
||||
border-left: 0;
|
||||
border-right: 1px solid grey;
|
||||
}
|
||||
|
||||
#qtypechoicecontainer #chooseqtype .qtypeoption {
|
||||
padding-right: 0.3em;
|
||||
}
|
||||
|
||||
body.path-question-type .mform fieldset.hidden {
|
||||
padding: 0;
|
||||
|
@ -2,22 +2,27 @@
|
||||
.tabtree ul {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tabtree li {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 {
|
||||
width: 100%;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 li.here {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 li.here a {
|
||||
position: relative;
|
||||
z-index: 102;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 li a {
|
||||
background: #f7f7f7;
|
||||
padding: 8px 10px 5px;
|
||||
@ -26,12 +31,15 @@
|
||||
border-color: #ddd;
|
||||
margin: 0 1px 0 0;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 .here a {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 li a:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 ul,
|
||||
.tabtree .tabrow0 div {
|
||||
font-weight: normal;
|
||||
@ -39,6 +47,7 @@
|
||||
padding: 0.25em 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 li.here .empty {
|
||||
display: block;
|
||||
height: 1px;
|
||||
@ -48,10 +57,12 @@
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
}
|
||||
|
||||
.tabtree .tabrow0 .tabrow1 {
|
||||
padding: 5px 0 2px;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.tabtree .tabrow1 li a,
|
||||
.tabtree .tabrow1 li a:link,
|
||||
.tabtree .tabrow1 li a:hover,
|
||||
@ -61,6 +72,7 @@
|
||||
padding: 0 10px;
|
||||
border: 0 none;
|
||||
}
|
||||
|
||||
.tabtree a.nolink,
|
||||
.tabtree a.nolink:hover,
|
||||
.tabtree .here ul a.nolink,
|
||||
@ -68,6 +80,7 @@
|
||||
color: #888;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tabtree .here a.nolink,
|
||||
.tabtree .here a.nolink:hover,
|
||||
.tabtree .here ul .here a.nolink,
|
||||
|
@ -1,71 +1,265 @@
|
||||
/*$$$$$$$$$$$$$$$$$ User $$$$$$$$$$$$$$$$$$$$*/
|
||||
.userprofile .fullprofilelink {text-align:center; margin:10px;}
|
||||
.userprofile .profilepicture {float:left; margin-right:20px;}
|
||||
.userprofile .description {margin-bottom:20px;}
|
||||
.userprofile dl {margin-top:10px; margin-left:0; width:100%;}
|
||||
.userprofile dl dt, .userprofile dl dd {padding-top:3px; padding-bottom:3px;}
|
||||
.userprofile dl dt {margin:0; font-weight:bold; display:block; float:left; width:110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.userprofile dl dd {margin:0; margin-left:120px;}
|
||||
.userprofile .profile_tree { column-count: 2; -webkit-column-count: 2; -moz-column-count: 2; }
|
||||
.userprofile .profile_tree section { display: inline-block; width: 100%; }
|
||||
.userprofile .fullprofilelink {
|
||||
text-align: center;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.user-box {margin:8px;width:115px;height:160px;text-align:center;float:left;clear: none;}
|
||||
.userprofile .profilepicture {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.userlist .action-icon img {vertical-align: middle;}
|
||||
.userprofile .description {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.userprofile dl {
|
||||
margin-top: 10px;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.userprofile dl dt,
|
||||
.userprofile dl dd {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
.userprofile dl dt {
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 110px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.userprofile dl dd {
|
||||
margin: 0;
|
||||
margin-left: 120px;
|
||||
}
|
||||
|
||||
.userprofile .profile_tree {
|
||||
column-count: 2;
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
}
|
||||
|
||||
.userprofile .profile_tree section {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.user-box {
|
||||
margin: 8px;
|
||||
width: 115px;
|
||||
height: 160px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.userlist .action-icon img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.userlist #showall {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
|
||||
.userlist .buttons {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.userlist .buttons label {
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.userlist table#participants {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.userlist #showall {margin: 10px 0px;}
|
||||
.userlist .buttons {text-align: center;}
|
||||
.userlist .buttons label {padding: 0 3px;}
|
||||
.userlist table#participants {text-align:center;}
|
||||
.userlist table#participants td,
|
||||
.userlist table#participants th {vertical-align: middle;text-align: left;padding: 4px;}
|
||||
.userlist table.controls {width: 100%;}
|
||||
.userlist table.controls tr {vertical-align: top;}
|
||||
.userlist table#participants th {
|
||||
vertical-align: middle;
|
||||
text-align: left;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.userlist table.controls {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.userlist table.controls tr {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.userlist table.controls td.right,
|
||||
.userlist table.controls td.left {padding: 4px;}
|
||||
.userlist table.controls .right {text-align: right;}
|
||||
.userlist table.controls td.left {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.userlist table.controls .right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.userinfobox {
|
||||
width: 100%;
|
||||
border: 1px solid;
|
||||
border-collapse: separate;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.userinfobox {width:100%;border:1px solid;border-collapse: separate;padding:10px;}
|
||||
.userinfobox .left,
|
||||
.userinfobox .side {width: 100px;vertical-align: top;}
|
||||
.userinfobox .userpicture {width: 100px;height: 100px;}
|
||||
.userinfobox .content {vertical-align: top;}
|
||||
.userinfobox .links {width: 100px;padding: 5px;vertical-align: bottom;}
|
||||
.userinfobox .links a {display: block;}
|
||||
.userinfobox .list td {padding: 3px;}
|
||||
.userinfobox .username {padding-bottom: 20px;font-weight: bold;}
|
||||
.userinfobox td.label {text-align:right;white-space: nowrap;vertical-align: top;font-weight:bold;}
|
||||
.groupinfobox {border:1px solid;}
|
||||
.groupinfobox .left {padding: 10px;width: 100px;vertical-align: top;}
|
||||
.userinfobox .side {
|
||||
width: 100px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.course-participation #showall {text-align:center;margin: 10px 0px;}
|
||||
#user-policy .noticebox {text-align:center;margin-left:auto;margin-right:auto;margin-bottom:10px;width:80%;height:250px;}
|
||||
#user-policy #policyframe {width:100%;height:100%;}
|
||||
.iplookup #map {margin:auto;}
|
||||
.userinfobox .userpicture {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.userselector select {width: 100%;}
|
||||
.userselector div {margin-top: 0.2em;}
|
||||
.userselector div label {margin-right: 0.3em;}
|
||||
.userinfobox .content {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.userinfobox .links {
|
||||
width: 100px;
|
||||
padding: 5px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.userinfobox .links a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.userinfobox .list td {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.userinfobox .username {
|
||||
padding-bottom: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.userinfobox td.label {
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
vertical-align: top;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.groupinfobox {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.groupinfobox .left {
|
||||
padding: 10px;
|
||||
width: 100px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.course-participation #showall {
|
||||
text-align: center;
|
||||
margin: 10px 0px;
|
||||
}
|
||||
|
||||
#user-policy .noticebox {
|
||||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 10px;
|
||||
width: 80%;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
#user-policy #policyframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.iplookup #map {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.userselector select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.userselector div {
|
||||
margin-top: 0.2em;
|
||||
}
|
||||
|
||||
.userselector div label {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
/* Next style does not work in all browsers but looks nicer when it does */
|
||||
.userselector .userselector-infobelow {font-size: 0.8em;}
|
||||
.userselector .userselector-infobelow {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
#userselector_options {padding:0.3em 0;}
|
||||
#userselector_options .collapsibleregioncaption {font-weight: bold;}
|
||||
#userselector_options p {margin:0.2em 0;text-align:left;}
|
||||
.dir-rtl #userselector_options p {text-align:right;}
|
||||
#userselector_options {
|
||||
padding: 0.3em 0;
|
||||
}
|
||||
|
||||
#userselector_options .collapsibleregioncaption {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#userselector_options p {
|
||||
margin: 0.2em 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dir-rtl #userselector_options p {
|
||||
text-align: right;
|
||||
}
|
||||
/** user full profile */
|
||||
#page-user-profile .messagebox {text-align:center;margin-left:auto;margin-right:auto;}
|
||||
#page-user-profile .messagebox {
|
||||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
/** user course profile */
|
||||
#page-course-view-weeks .messagebox {text-align:center;margin-left:auto;margin-right:auto;}
|
||||
#page-course-view-weeks .messagebox {
|
||||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/** Overide for RTL layout **/
|
||||
.dir-rtl .userprofile .profilepicture {float:right; margin-left:20px;margin-right:0px;}
|
||||
.dir-rtl .userprofile .profilepicture {
|
||||
float: right;
|
||||
margin-left: 20px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.dir-rtl .userlist table#participants td,
|
||||
.dir-rtl .userlist table#participants th {text-align: right;}
|
||||
.dir-rtl .userlist table#participants {margin: 0 auto;}
|
||||
.dir-rtl .userprofile dl dt {float:right; width:110px; margin-left:10px;}
|
||||
.dir-rtl .userprofile dl dd {margin-right: 120px;}
|
||||
#page-my-index.dir-rtl .block h3 { text-align: right;}
|
||||
.dir-rtl .userlist table#participants th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.dir-rtl .userlist table#participants {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dir-rtl .userprofile dl dt {
|
||||
float: right;
|
||||
width: 110px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.dir-rtl .userprofile dl dd {
|
||||
margin-right: 120px;
|
||||
}
|
||||
|
||||
#page-my-index.dir-rtl .block h3 {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#groupeditform .groups,
|
||||
#groupeditform .members {
|
||||
@ -74,10 +268,12 @@
|
||||
text-align: left;
|
||||
min-width: 175px;
|
||||
}
|
||||
|
||||
#groupeditform .groups select,
|
||||
#groupeditform .members select {
|
||||
min-width: 175px;
|
||||
}
|
||||
|
||||
.dir-rtl #groupeditform .groups,
|
||||
.dir-rtl #groupeditform .members {
|
||||
float: right;
|
||||
|
@ -114,7 +114,9 @@
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
|
||||
.plugincheckwrapper {text-align: center;}
|
||||
.plugincheckwrapper {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
/* Web services
|
||||
@ -124,10 +126,12 @@
|
||||
color: #ff6600;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
#page-admin-setting-webservicetokens .missingcaps {
|
||||
color: #ff6600;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
#page-admin-webservice-service_functions .functiondesc {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
.block {
|
||||
padding: 0
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.block .footer {
|
||||
@ -23,7 +23,10 @@
|
||||
text-align: left;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.dir-rtl .block h3 {text-align: right;}
|
||||
|
||||
.dir-rtl .block h3 {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Login
|
||||
------------------------------*/
|
||||
@ -34,19 +37,22 @@
|
||||
|
||||
.block_login #login_username,
|
||||
.block_login #login_password {
|
||||
width:90%;
|
||||
width: 90%;
|
||||
margin-bottom: 0.5em;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
.block_login .btn {
|
||||
margin-top:1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.block_login .footer {
|
||||
text-align: left;
|
||||
}
|
||||
.dir-rtl .block_login .footer {text-align: right;}
|
||||
|
||||
.dir-rtl .block_login .footer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* News
|
||||
-------------------------------*/
|
||||
|
@ -16,6 +16,7 @@ body {
|
||||
.sitetopic {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#site-news-forum h2,
|
||||
#frontpage-course-list h2,
|
||||
#frontpage-category-names h2,
|
||||
@ -52,7 +53,7 @@ body {
|
||||
|
||||
.noticebox .generalbox {
|
||||
border: none;
|
||||
margin:2em 0;
|
||||
margin: 2em 0;
|
||||
}
|
||||
|
||||
.expired,
|
||||
@ -233,14 +234,19 @@ body {
|
||||
|
||||
.userinfobox {
|
||||
border-color: #ddd;
|
||||
padding: 0
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.userinfobox .content {
|
||||
text-align: left;
|
||||
padding-left:10px
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.dir-rtl .userinfobox .content {
|
||||
text-align: right;
|
||||
padding-right: 10px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
.dir-rtl .userinfobox .content {text-align: right;padding-right:10px;padding-left:0px;}
|
||||
|
||||
.userinfobox .links {
|
||||
vertical-align: top;
|
||||
@ -252,13 +258,21 @@ body {
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
.dir-rtl .userinfobox .links a {text-align: right;}
|
||||
|
||||
.dir-rtl .userinfobox .links a {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.profilepicture {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.dir-rtl .profilepicture {float: right;margin-left: 10px;margin-right: 0px;}
|
||||
|
||||
.dir-rtl .profilepicture {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.descriptionbox {
|
||||
margin-left: 110px;
|
||||
@ -277,13 +291,15 @@ body {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.userprofile dl dt, .userprofile dl dd {
|
||||
.userprofile dl dt,
|
||||
.userprofile dl dd {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dir-rtl .userprofile dl dt, .dir-rtl .userprofile dl dd {
|
||||
.dir-rtl .userprofile dl dt,
|
||||
.dir-rtl .userprofile dl dd {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@ -319,7 +335,7 @@ body {
|
||||
}
|
||||
|
||||
#page-user-index .controls {
|
||||
width: 100%
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#page-user-index .controls .singleselect {
|
||||
@ -400,7 +416,7 @@ body {
|
||||
}
|
||||
|
||||
#tag-management-list {
|
||||
margin: 1em 0
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
#tagblogentries {
|
||||
@ -410,7 +426,7 @@ body {
|
||||
#tagblogentries li {
|
||||
list-style: none;
|
||||
padding: 0.25em 0;
|
||||
margin: 0
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Embedded Pages
|
||||
@ -449,17 +465,20 @@ body {
|
||||
}
|
||||
|
||||
.path-backup .mform .grouped_settings {
|
||||
margin:1em;
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
.path-backup .mform .grouped_settings .grouped_settings {
|
||||
margin:0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.mform .btn-cancel {
|
||||
color: #0000EE;
|
||||
text-decoration: none;
|
||||
}
|
||||
.mform .btn-cancel:hover, .mform .btn-cancel:focus {
|
||||
|
||||
.mform .btn-cancel:hover,
|
||||
.mform .btn-cancel:focus {
|
||||
color: #0000EE;
|
||||
text-decoration: none;
|
||||
}
|
||||
@ -508,7 +527,10 @@ table#user-grades tr.avg td.vmarked {
|
||||
.path-grade-report-grader form {
|
||||
text-align: left;
|
||||
}
|
||||
.path-grade-report-grader.dir-rtl form { text-align: right; }
|
||||
|
||||
.path-grade-report-grader.dir-rtl form {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Footer
|
||||
-----------------------*/
|
||||
@ -542,15 +564,18 @@ table#user-grades tr.avg td.vmarked {
|
||||
-------------------------*/
|
||||
|
||||
.userenrolment {
|
||||
font-size:90%;
|
||||
border:1px solid #999;
|
||||
font-size: 90%;
|
||||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
.userenrolment > tbody > tr:nth-of-type(odd) {
|
||||
background-color: #F9F9F9;
|
||||
}
|
||||
|
||||
.userenrolment > tbody > tr:nth-of-type(even) {
|
||||
background-color: #F3F3F3;
|
||||
}
|
||||
|
||||
.userenrolment td {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
@ -559,63 +584,78 @@ table#user-grades tr.avg td.vmarked {
|
||||
border-bottom-color: #E9E9E9;
|
||||
border-left-color: #F3F3F3;
|
||||
}
|
||||
|
||||
.userenrolment td.c0 {
|
||||
border-left-color:#999;
|
||||
border-left-color: #999;
|
||||
}
|
||||
|
||||
.userenrolment td.c4 {
|
||||
border-right-color:#999;
|
||||
border-right-color: #999;
|
||||
}
|
||||
|
||||
.userenrolment .col_userdetails {
|
||||
padding:3px;
|
||||
min-width:35%;
|
||||
padding: 3px;
|
||||
min-width: 35%;
|
||||
}
|
||||
|
||||
.userenrolment .col_role .roles {
|
||||
position:relative;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.userenrolment .col_role .role {
|
||||
line-height: 10px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.userenrolment .col_role .role a img {
|
||||
height:8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.userenrolment .col_role .addrole {
|
||||
background-color: #DDD;
|
||||
border: 1px outset #EEE;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
.userenrolment .col_group {
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.userenrolment .col_group .group {
|
||||
line-height:10px;
|
||||
font-size:10px;
|
||||
line-height: 10px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.userenrolment .col_group .group a img {
|
||||
height:8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.userenrolment .col_group .addgroup {
|
||||
background-color:#DDD;
|
||||
border:1px outset #EEE;
|
||||
-moz-border-radius:5px;
|
||||
background-color: #DDD;
|
||||
border: 1px outset #EEE;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
.userenrolment .col_enrol {
|
||||
max-width:300px;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.userenrolment .col_enrol .enrolment {
|
||||
border:1px outset #E6E6E6;
|
||||
background-color:#EEE;
|
||||
line-height:10px;
|
||||
font-size:10px;
|
||||
-moz-border-radius:5px;
|
||||
border: 1px outset #E6E6E6;
|
||||
background-color: #EEE;
|
||||
line-height: 10px;
|
||||
font-size: 10px;
|
||||
-moz-border-radius: 5px;
|
||||
}
|
||||
|
||||
.path-enrol .enrolusersbutton,
|
||||
.path-enrol .enrolcohortbutton {
|
||||
float:left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.path-enrol .enrolusersbutton.instance1,
|
||||
.path-enrol .enrolcohortbutton.instance1 {
|
||||
float:right;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Registration
|
||||
@ -634,4 +674,6 @@ table#user-grades tr.avg td.vmarked {
|
||||
margin: 10% auto;
|
||||
}
|
||||
|
||||
.path-grade-report.dir-rtl #graded_users_selector .singleselect {margin: 0px;}
|
||||
.path-grade-report.dir-rtl #graded_users_selector .singleselect {
|
||||
margin: 0px;
|
||||
}
|
||||
|
@ -99,6 +99,7 @@
|
||||
float:left;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
#page-course-publish-metadata .hubscreenshot img {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
@ -106,8 +107,8 @@
|
||||
#page-course-publish-metadata .hubdescription {}
|
||||
|
||||
#page-course-publish-metadata .hubinfo {
|
||||
display:block;
|
||||
margin-bottom:20px;
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#page-course-publish-metadata .hublink {}
|
||||
|
||||
@ -115,6 +116,6 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page-course-publish-backup .sharecoursecontinue {
|
||||
#page-course-publish-backup .sharecoursecontinue {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -3,11 +3,28 @@ body {
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,input,textarea {
|
||||
body,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
input,
|
||||
textarea {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
}
|
||||
@ -48,7 +65,8 @@ p {
|
||||
margin: 0 0 1em;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
ul,
|
||||
ol {
|
||||
margin: 0 1.5em 1.5em 1.5em;
|
||||
}
|
||||
|
||||
@ -72,7 +90,8 @@ dl dd {
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
abbr,
|
||||
acronym {
|
||||
border-bottom: 1px dotted #000;
|
||||
}
|
||||
|
||||
@ -97,7 +116,8 @@ strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
em, dfn {
|
||||
em,
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@ -105,11 +125,14 @@ dfn {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
pre,
|
||||
code {
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
pre, code, tt {
|
||||
pre,
|
||||
code,
|
||||
tt {
|
||||
font: 1.2em monospace;
|
||||
line-height: 1.5;
|
||||
margin: 1.5em 0;
|
||||
|
@ -13,8 +13,8 @@
|
||||
#urlintro,
|
||||
#pageintro,
|
||||
#resourceintro {
|
||||
border-color:#ddd;
|
||||
margin: 0 10% 3%
|
||||
border-color: #ddd;
|
||||
margin: 0 10% 3%;
|
||||
}
|
||||
|
||||
/* Forums
|
||||
@ -33,7 +33,10 @@
|
||||
text-align: left;
|
||||
border-right: 1px solid #ddd;
|
||||
}
|
||||
.path-mod-forum.dir-rtl .forumheaderlist th {text-align: right;}
|
||||
|
||||
.path-mod-forum.dir-rtl .forumheaderlist th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.forumnodiscuss,
|
||||
.path-mod-forum .forumheaderlist .replies {
|
||||
@ -60,7 +63,7 @@
|
||||
}
|
||||
|
||||
.forumolddiscuss {
|
||||
text-align:right;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Folder
|
||||
@ -163,7 +166,8 @@
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.path-mod-choice .results .header, .path-mod-choice td {
|
||||
.path-mod-choice .results .header,
|
||||
.path-mod-choice td {
|
||||
border-top: 1px solid;
|
||||
border-color: #ddd;
|
||||
}
|
||||
@ -175,14 +179,15 @@
|
||||
border-right: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.path-mod-choice .col1, .path-mod-choice .c0,
|
||||
.path-mod-choice .col1,
|
||||
.path-mod-choice .c0,
|
||||
.path-mod-choice .lastcol {
|
||||
border-left: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.path-mod-choice .lastrow td {
|
||||
border-bottom: 1px solid #ddd;
|
||||
border-top: 1px solid #ddd;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.path-mod-choice .count {
|
||||
@ -291,4 +296,6 @@
|
||||
|
||||
/* SCORM Player
|
||||
-------------------------*/
|
||||
#page-mod-scorm-player div.singleselect {margin: -20px 0 0;}
|
||||
#page-mod-scorm-player div.singleselect {
|
||||
margin: -20px 0 0;
|
||||
}
|
||||
|
@ -64,7 +64,7 @@
|
||||
}
|
||||
|
||||
.blocks-moving.side-post-only #page-content #region-pre {
|
||||
left: 210px;
|
||||
left: 210px;
|
||||
width: 210px;
|
||||
}
|
||||
|
||||
@ -74,17 +74,17 @@ left: 210px;
|
||||
|
||||
/** Moving block when side pre only **/
|
||||
.blocks-moving.side-pre-only #page-content #region-post-box {
|
||||
margin-left:-420px;
|
||||
margin-left: -420px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-main {
|
||||
margin-left:420px;
|
||||
margin-left: 420px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-pre {
|
||||
left:210px;
|
||||
left: 210px;
|
||||
}
|
||||
|
||||
.blocks-moving.side-pre-only #page-content #region-post {
|
||||
width:210px;
|
||||
width: 210px;
|
||||
}
|
@ -1,11 +1,27 @@
|
||||
/* Text Elements
|
||||
--------------------------*/
|
||||
|
||||
h1,h2,h3,h4,h5,h6,p,ul,ol,dl,input,textarea {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
input,
|
||||
textarea {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
}
|
||||
@ -66,7 +82,8 @@ dl dd {
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
abbr, acronym {
|
||||
abbr,
|
||||
acronym {
|
||||
border-bottom: 1px dotted #000;
|
||||
}
|
||||
|
||||
@ -91,7 +108,8 @@ strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
em, dfn {
|
||||
em,
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@ -99,11 +117,14 @@ dfn {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
pre,
|
||||
code {
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
pre, code, tt {
|
||||
pre,
|
||||
code,
|
||||
tt {
|
||||
font: 1.2em monospace;
|
||||
line-height: 1.5;
|
||||
margin: 1.5em 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user