mirror of
https://github.com/gantry/gantry5.git
synced 2026-08-19 01:15:04 -05:00
Tweaked various RTL issues in admin (fixes #1195)
This commit is contained in:
+2
-1
@@ -8,7 +8,8 @@
|
||||
- Icons Picker will now show the title of each icon when hovering to see the preview
|
||||
- Updated Google Fonts library
|
||||
1. [](#bugfix)
|
||||
- Fixed loss of settings for Particles / Modules menu items when moved to a different menu level (#1243)
|
||||
- Fixed loss of settings for Particles / Modules menu items when moved to a different menu level (#1243)
|
||||
- Various Admin RTL tweaks (#1195)
|
||||
|
||||
# 5.2.14
|
||||
## 15/04/2016
|
||||
|
||||
+31
@@ -7194,6 +7194,37 @@ html.g5-dialog-open {
|
||||
background: #be6464;
|
||||
}
|
||||
|
||||
[dir="rtl"] #g5-container .g-selectize-control.g-single .g-selectize-input:after {
|
||||
right: inherit;
|
||||
left: 23px;
|
||||
}
|
||||
[dir="rtl"] #g5-container .settings-block.search i,
|
||||
[dir="rtl"] #g5-container .g-colorpicker i {
|
||||
right: inherit;
|
||||
left: 10px;
|
||||
}
|
||||
[dir="rtl"] #g5-container .card h4 .enabler {
|
||||
float: left;
|
||||
}
|
||||
[dir="rtl"] #g5-container .float-right, [dir="rtl"] #g5-container .lm-blocks [data-lm-blocktype="container"] .container-wrapper .container-actions {
|
||||
float: left !important;
|
||||
}
|
||||
[dir="rtl"] #g5-container .float-left, [dir="rtl"] #g5-container .lm-blocks [data-lm-blocktype="container"] .container-wrapper .container-title {
|
||||
float: right !important;
|
||||
}
|
||||
[dir="rtl"] #g5-container .settings-block .settings-param-field {
|
||||
margin-left: 0;
|
||||
margin-right: 175px;
|
||||
}
|
||||
[dir="rtl"] #g5-container #g-changelog ul li {
|
||||
padding-left: 0;
|
||||
padding-right: 6rem;
|
||||
}
|
||||
[dir="rtl"] #g5-container #g-changelog ul li:before {
|
||||
margin-left: 1rem;
|
||||
margin-right: -6rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=g-admin.css.map */
|
||||
|
||||
@@ -87,3 +87,6 @@
|
||||
|
||||
// Tooltips
|
||||
@import "admin/tooltips";
|
||||
|
||||
// RTL
|
||||
@import "admin/rtl";
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
[dir="rtl"] {
|
||||
#g5-container {
|
||||
.g-selectize-control.g-single .g-selectize-input:after {
|
||||
right: inherit;
|
||||
left: 23px;
|
||||
}
|
||||
|
||||
.settings-block.search i,
|
||||
.g-colorpicker i {
|
||||
right: inherit;
|
||||
left: 10px;
|
||||
}
|
||||
|
||||
.card h4 .enabler {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float-right {
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
.settings-block .settings-param-field {
|
||||
margin-left: 0;
|
||||
margin-right: 175px;
|
||||
}
|
||||
|
||||
#g-changelog ul li {
|
||||
padding-left: 0;
|
||||
padding-right: 6rem;
|
||||
|
||||
&:before {
|
||||
margin-left: 1rem;
|
||||
margin-right: -6rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user