Skip to content

Commit

Permalink
Merge pull request #4423 from minrk/fix-custom
Browse files Browse the repository at this point in the history
move rtl fixes to page.less from custom.css
  • Loading branch information
minrk authored Mar 6, 2019
2 parents 07cdcaf + b4328ea commit e80c770
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
14 changes: 14 additions & 0 deletions notebook/static/base/less/page.less
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,17 @@ span#login_widget > .button,
margin-right: @padding-base-horizontal;
}
}

/* rtl fixes for the error, connecting, and renaming window */

[dir="rtl"] .modal-footer {
text-align : left !important;
}

[dir="rtl"] .close {
float : left;
}

[dir="rtl"] .fa-step-forward::before {
content: "\f048";
}
15 changes: 1 addition & 14 deletions notebook/static/custom/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,6 @@ Placeholder for custom user CSS
mainly to be overridden in profile/static/custom/custom.css
This will always be an empty file in IPython
This will always be an empty file
*/

/*for the error , connecting & renaming window*/

[dir="rtl"] .modal-footer {
text-align : left !important;
}

[dir="rtl"] .close {
float : left;
}

[dir="rtl"] .fa-step-forward::before {
content: "\f048";
}

0 comments on commit e80c770

Please sign in to comment.