Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #24341 from anefzaoui/bug-1058793
Browse files Browse the repository at this point in the history
Bug 1058793 - [RTL] New System Update notification need RTL support
  • Loading branch information
rvandermeulen committed Sep 24, 2014
2 parents 6d87102 + 590d076 commit 4de939d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
7 changes: 6 additions & 1 deletion apps/system/style/fake-notification.css
Expand Up @@ -4,7 +4,6 @@
font: 1.8rem/1.8rem auto;
color: #e7e7e7;
overflow: hidden;

border-bottom: .1rem solid rgba(255, 255, 255, .05);
}

Expand Down Expand Up @@ -51,3 +50,9 @@
.notification.attention-notification {
background-color: rgba(0, 202, 242, 0.3);
}

/* RTL View */

html[dir="rtl"] .fake-notification [data-icon] {
float: right;
}
28 changes: 26 additions & 2 deletions apps/system/style/update_manager/update_manager.css
Expand Up @@ -26,7 +26,10 @@
}

#update-manager-container > .title-container {
margin: 1.4rem 0 0 3.7rem;
margin-top: 1.4rem;
margin-bottom: 0;
-moz-margin-start: 3.7rem;
-moz-margin-end: 0;
}

#update-manager-container > .title-container > span {
Expand Down Expand Up @@ -102,7 +105,7 @@
#updates-download-dialog ul {
list-style: none;
margin-top: 0.4rem;
padding-left: 0;
-moz-padding-start: 0;
}

#updates-download-dialog li {
Expand Down Expand Up @@ -193,3 +196,24 @@
#updates-download-dialog[data-online="true"][data-nowifi="true"][data-data-connection-inline-warning="true"] #updates-data-connection-warning {
visibility: visible;
}

/* RTL View */

html[dir="rtl"] #update-manager-toaster > .icon {
float: right;
}

html[dir="rtl"] #update-manager-toaster > .message {
left: unset;
right: 5rem;
}

html[dir="rtl"] #updates-download-dialog label {
float: left;
}

html[dir="rtl"] #updates-download-dialog label.required {
left: 0.5rem;
right: unset;
text-align: left;
}

0 comments on commit 4de939d

Please sign in to comment.