Issue #1902872 by echoz, keyhitman, kim.pepper, Shyamala: Tips for Text format filters have excessive left|right padding on narrow screens.

8.0.x
webchick 2013-02-08 22:55:56 -08:00
parent db71811059
commit 29a70d15d6
2 changed files with 16 additions and 1 deletions

View File

@ -12,4 +12,12 @@
}
.filter-help a {
background-position: left center;
padding: 0 0 0 20px;
}
/**
* Improve filter tips position.
*/
.tips {
padding-right: 0;
}

View File

@ -32,7 +32,7 @@
}
.filter-help a {
background: transparent url(../../misc/help.png) right center no-repeat; /* LTR */
padding: 0 20px;
padding: 0 20px 0 0; /* LTR */
}
.text-format-wrapper .description {
@ -45,3 +45,10 @@
padding-bottom: 0;
padding-top: 0;
}
/**
* Improve filter tips position.
*/
.tips {
padding-left: 0; /* LTR */
}