1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-24 09:55:33 +02:00

MDL-48243 theme_bootstrapbase: Fixed inconsistancy between LTR/RTL LESS

This commit is contained in:
Mary Evans 2014-12-01 17:11:48 +00:00
parent d87bcfb325
commit d0508fdc09
2 changed files with 11 additions and 11 deletions
theme/bootstrapbase
less/moodle
style

@ -38,7 +38,7 @@
height: 12px;
}
img.actionmenu {
width:auto;
width: auto;
}
}
}
@ -233,19 +233,19 @@
// RTL styles for blocks in general.
.block {
.header {
text-align:right;
text-align: right;
h2 {
text-align:right;
}
.commands {
text-align: left;
> * {
margin-left:0;
margin-right:3px;
}
text-align: right;
}
.block_action {
float: left;
> * {
margin-left: 0;
margin-right: 3px;
}
}
.commands {
text-align: left;
}
}
}

File diff suppressed because one or more lines are too long