mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-11 06:25:31 +00:00
Fixed CSS for IE in categories editor of preferences window.
Monotone-Parent: 39c75e19bf860149cbc9f36ece8744fbd26e0134 Monotone-Revision: 5a7e429f43453ecb7e1ca7ac57a0e13f01a7d0be Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-11-26T01:09:50 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -96,7 +96,7 @@
|
||||
const:id="firstWeek"
|
||||
string="itemFirstWeekText" selection="userFirstWeek"
|
||||
/></label><br/>
|
||||
<span class="caption"><var:string label:value="Categories"/></span>
|
||||
<label><var:string label:value="Categories"/></label>
|
||||
<div id="categoriesListWrapper"
|
||||
><table id="categoriesList" cellspacing="0">
|
||||
<thead>
|
||||
|
||||
@@ -58,7 +58,8 @@ DIV.colorBox
|
||||
width: 1em; }
|
||||
|
||||
TR.categoryListRow
|
||||
{ background: #CCDDEC; }
|
||||
{ background: #CCDDEC;
|
||||
cursor: pointer; }
|
||||
|
||||
TD.categoryListCell
|
||||
{ -moz-user-select: none; }
|
||||
|
||||
@@ -143,9 +143,9 @@ function makeEditable (element) {
|
||||
element.removeClassName ("categoryListCell");
|
||||
var tmp = element.innerHTML;
|
||||
element.innerHTML = "";
|
||||
var textField = new Element ("input", {"type": "text",
|
||||
"width": "100%"});
|
||||
var textField = new Element ("input", {"type": "text"});
|
||||
textField.value = tmp;
|
||||
textField.setStyle({ width: '98%' });
|
||||
textField.observe ("keydown", interceptEnter);
|
||||
element.appendChild (textField);
|
||||
textField.focus ();
|
||||
|
||||
@@ -328,9 +328,6 @@ DIV#headerArea
|
||||
TABLE#categoriesList
|
||||
{ width: auto; }
|
||||
|
||||
DIV#categoriesListWrapper
|
||||
{ top: 92px; }
|
||||
|
||||
DIV#windowButtons
|
||||
{ bottom: 11px; }
|
||||
|
||||
@@ -365,9 +362,6 @@ DIV#toolbar
|
||||
INPUT#statusPercent
|
||||
{ width: 2em !important; }
|
||||
|
||||
DIV.bottomToolbar
|
||||
{ position: relative; display: block; }
|
||||
|
||||
DIV#referencesListWrapper
|
||||
{ margin-bottom: 0px; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user