Bug 471778 - Employ platform-based CSS to give Mac users enough space to type into their uniquely annoying type="search" boxes.

r=gijs
ChatZilla only.


git-svn-id: svn://10.0.0.236/trunk@256398 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
silver%warwickcompsoc.co.uk
2009-03-02 20:41:48 +00:00
parent b99770860f
commit 56652bd0ec
2 changed files with 8 additions and 0 deletions

View File

@@ -131,6 +131,10 @@ function onLoad()
window[m] = client.mainWindow[m];
}
// Set the <dialog>'s class so we can do platform-specific CSS.
var dialog = document.getElementById("chatzilla-window");
dialog.className = "platform-" + client.platform;
var tree = document.getElementById("channelList");
channelTreeBoxObject = tree.treeBoxObject;

View File

@@ -41,6 +41,10 @@
width: 12em;
}
.platform-Mac #rightPanel {
width: 18em;
}
#loadContainer {
margin: 0;
}