diff --git a/static/js/pandora/helpDialog.js b/static/js/pandora/helpDialog.js
index 2cb614ea2..bd0e4f6fe 100644
--- a/static/js/pandora/helpDialog.js
+++ b/static/js/pandora/helpDialog.js
@@ -115,9 +115,9 @@ pandora.ui.helpDialog = function() {
});
$text = Ox.Element()
+ .addClass('OxTextPage')
.css({
padding: '16px',
- lineHeight: '16px',
overflowY: 'scroll',
MozUserSelect: 'text',
WebkitUserSelect: 'text'
diff --git a/static/js/pandora/iconDialog.js b/static/js/pandora/iconDialog.js
index 9f8a6f95d..76f8de2c3 100644
--- a/static/js/pandora/iconDialog.js
+++ b/static/js/pandora/iconDialog.js
@@ -22,6 +22,7 @@ pandora.ui.iconDialog = function(options) {
)
.append(
$('
')
+ .addClass('OxTextPage')
.css({position: 'absolute', left: '96px', top: '16px', width: options.width - 112 + 'px'})
.html(options.text)
),
diff --git a/static/js/pandora/infoView.0xdb.js b/static/js/pandora/infoView.0xdb.js
index d8c042b22..f2d1c6305 100644
--- a/static/js/pandora/infoView.0xdb.js
+++ b/static/js/pandora/infoView.0xdb.js
@@ -115,6 +115,7 @@ pandora.ui.infoView = function(data) {
.appendTo($reflection),
$text = Ox.Element()
+ .addClass('OxTextPage')
.css({
position: 'absolute',
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
diff --git a/static/js/pandora/infoView.indiancinema.js b/static/js/pandora/infoView.indiancinema.js
index aca63dc8a..c5c6213ef 100644
--- a/static/js/pandora/infoView.indiancinema.js
+++ b/static/js/pandora/infoView.indiancinema.js
@@ -117,6 +117,7 @@ pandora.ui.infoView = function(data) {
.appendTo($reflection),
$text = Ox.Element()
+ .addClass('OxTextPage')
.css({
position: 'absolute',
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
diff --git a/static/js/pandora/infoView.js b/static/js/pandora/infoView.js
index edf7ede10..11757a014 100644
--- a/static/js/pandora/infoView.js
+++ b/static/js/pandora/infoView.js
@@ -107,8 +107,8 @@ pandora.ui.infoView = function(data) {
})
.appendTo($left),
- $center = Ox.Element({
- })
+ $center = Ox.Element()
+ .addClass('OxTextPage')
.css({
position: 'absolute',
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
diff --git a/static/js/pandora/infoView.padma.js b/static/js/pandora/infoView.padma.js
index a7fe36146..60a334ad1 100644
--- a/static/js/pandora/infoView.padma.js
+++ b/static/js/pandora/infoView.padma.js
@@ -106,6 +106,7 @@ pandora.ui.infoView = function(data) {
.appendTo($reflection),
$data = $('
')
+ .addClass('OxTextPage')
.css({
position: 'absolute',
left: margin + 'px',
@@ -114,8 +115,8 @@ pandora.ui.infoView = function(data) {
})
.appendTo($left),
- $center = Ox.Element({
- })
+ $center = Ox.Element()
+ .addClass('OxTextPage')
.css({
position: 'absolute',
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
diff --git a/static/js/pandora/siteDialog.0xdb.js b/static/js/pandora/siteDialog.0xdb.js
index 7705900a7..6cebcc7ef 100644
--- a/static/js/pandora/siteDialog.0xdb.js
+++ b/static/js/pandora/siteDialog.0xdb.js
@@ -12,7 +12,9 @@ pandora.ui.siteDialog = function(section) {
Ox.getObjectById(tabs, section).selected = true;
var $tabPanel = Ox.TabPanel({
content: function(id) {
- var $content = Ox.Element().css({padding: '16px', overflowY: 'auto'});
+ var $content = Ox.Element()
+ .addClass('OxTextPage')
+ .css({padding: '16px', overflowY: 'auto'});
if (id == 'contact') {
pandora.$ui.contactForm = pandora.ui.contactForm().appendTo($content);
} else if (id == 'news') {
diff --git a/static/js/pandora/siteDialog.js b/static/js/pandora/siteDialog.js
index 583038d01..a94019062 100644
--- a/static/js/pandora/siteDialog.js
+++ b/static/js/pandora/siteDialog.js
@@ -12,7 +12,9 @@ pandora.ui.siteDialog = function(section) {
Ox.getObjectById(tabs, section).selected = true;
var $tabPanel = Ox.TabPanel({
content: function(id) {
- var $content = Ox.Element().css({padding: '16px', overflowY: 'auto'});
+ var $content = Ox.Element()
+ .addClass('OxTextPage')
+ .css({padding: '16px', overflowY: 'auto'});
if (id == 'contact') {
pandora.$ui.contactForm = pandora.ui.contactForm().appendTo($content);
} else if (id == 'news') {