mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
Fix typo
This commit is contained in:
parent
ee86ae0537
commit
97a9e997db
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
// Right to left styles.
|
// Right to left styles.
|
||||||
// *** These styles are all going to be flipped by the r2 gem ***
|
// *** These styles are all going to be flipped by the r2 gem ***
|
||||||
// There may be a 'do not flip' flag that can be used, but I haven't found it.
|
// Adding the !important declaration to a rule prevents it from being flipped.
|
||||||
|
|
||||||
// Keep the topic admin menu on the page
|
// Keep the topic admin menu on the page
|
||||||
.rtl .topic-admin-menu {
|
.rtl .topic-admin-menu {
|
||||||
|
@ -33,10 +33,10 @@
|
||||||
}
|
}
|
||||||
.rtl code {
|
.rtl code {
|
||||||
direction: ltr !important;
|
direction: ltr !important;
|
||||||
text-aligh: left !important;
|
text-align: left !important;
|
||||||
}
|
}
|
||||||
.rtl .pull-left {
|
.rtl .pull-left {
|
||||||
float:right !important;
|
float: right !important;
|
||||||
}
|
}
|
||||||
.rtl .autocomplete {
|
.rtl .autocomplete {
|
||||||
left: 27px;
|
left: 27px;
|
||||||
|
|
Loading…
Reference in a new issue