mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00

also remove the code that adds a "return to XXX user" link that was supposed to be removed in MDL-23911 , otherwise the link would become visible after the bug fix (but not functional).
35 lines
2.3 KiB
CSS
35 lines
2.3 KiB
CSS
/** JavaScript state rules **/
|
|
.jsenabled .block_settings.dock_on_load,
|
|
.block_settings .block_tree_box .requiresjs {display:none;}
|
|
.jsenabled .block_settings .block_tree_box .requiresjs {display:inline;}
|
|
|
|
/** General display rules **/
|
|
.block_settings .block_tree {margin:5px;padding-left:0px;overflow:visible;}
|
|
.block_settings .block_tree li {margin:0;list-style: none;}
|
|
.block_settings .block_tree li ul {padding-left:18px;margin:0;}
|
|
|
|
.block_settings .block_tree li.item_with_icon > p {position:relative;}
|
|
.block_settings .block_tree li.item_with_icon > p img {vertical-align:middle;position:absolute;left:0;top:-1px; width: 16px; height: 16px;}
|
|
|
|
.block_settings .block_tree .tree_item {padding-left: 21px;margin:3px 0px;text-align:left;}
|
|
|
|
.block_settings .block_tree .tree_item.branch {background-image: url([[pix:t/expanded]]);background-position: 0 10%;background-repeat: no-repeat;}
|
|
.block_settings .block_tree .active_tree_node {font-weight:bold;}
|
|
.jsenabled .block_settings .block_tree .tree_item.branch {cursor:pointer;}
|
|
.jsenabled .block_settings .block_tree .tree_item.emptybranch {background-image: url([[pix:t/collapsed_empty]]);background-position: 0 10%;background-repeat: no-repeat;}
|
|
.jsenabled .block_settings .block_tree .collapsed ul {display: none;}
|
|
.jsenabled .block_settings .block_tree .collapsed .tree_item.branch {background-image: url([[pix:t/collapsed]]);}
|
|
|
|
/** Internet explorer specific rules **/
|
|
.ie6 .block_settings .block_tree .tree_item {width:100%;}
|
|
|
|
/** Overide for RTL layout **/
|
|
.dir-rtl .block_settings .block_tree {padding-right:0px;}
|
|
.dir-rtl .block_settings .block_tree li ul {padding-left:0;padding-right: 18px;}
|
|
.dir-rtl .block_settings .block_tree .tree_item {padding-right: 21px; padding-left: 0; text-align:right;}
|
|
.dir-rtl .block_settings .block_tree .tree_item.branch {background-position: center right;}
|
|
.dir-rtl .block_settings .block_tree li.item_with_icon > p img { right: 0; left: auto;}
|
|
.jsenabled .block_settings .block_tree .tree_item.branch.loadingbranch {background-image:url([[pix:i/loading_small]]);}
|
|
|
|
.jsenabled.dir-rtl .block_settings .block_tree .tree_item.emptybranch {background-image: url([[pix:t/collapsed_empty_rtl]]);background-position: center right;}
|
|
.jsenabled.dir-rtl .block_settings .block_tree .collapsed .tree_item.branch {background-image: url([[pix:t/collapsed_rtl]]);}
|