Ticket #822 (closed defect: fixed)

Opened 7 years ago

Last modified 5 years ago

Toolbar CSS problem with dropdowns stops buttons from flowing under them

Reported by: Mike Owned by: gogo
Priority: normal Milestone: 0.95
Component: Plugin_TableOperations Version:
Severity: normal Keywords: table alignment
Cc:

Description

Hi Guys,

This might be a really stupid question, but how do I align the start of the Insert Table button to the left. Cant seem to find it.

http://www.zenithcreations.com.au/table-misaligned.gif

this.toolbar =

[

popupeditor?, ["separator","formatblock","fontname","fontsize","bold","italic","underline","strikethrough"], ["separator","forecolor","hilitecolor","textindicator"], ["separator","subscript","superscript"], ["linebreak","separator","justifyleft","justifycenter","justifyright","justifyfull"], ["insertorderedlist","insertunorderedlist","outdent","indent"], ["separator","inserthorizontalrule","createlink","insertimage","inserttable"], ["linebreak","separator","undo","redo","selectall"], (HTMLArea.is_gecko ? [] : ["cut","copy"]), ["linebreak","separator","clearfonts","removeformat","toggleborders"], ["linebreak","separator","htmlmode","showhelp"]

Is there somewhere else I should be looking at?

Thanx in advance Mike

Change History

Changed 7 years ago by mharrisonline

At some point this year, there was an update to the stylesheet that made the height of each toolbar row taller, and created problems below dropdown menus that prevent buttons from flowing under them. The problem goes away if you use an older stylesheet...

Changed 7 years ago by mharrisonline

  • summary changed from table operations alignment to Toolbar CSS problem with dropdowns stops buttons from flowing under them

Changed 7 years ago by gocher

htmlarea.css:

change from

.htmlarea .toolbar select:active { 
  margin-top: 2px;
  margin-bottom: 1px;
  color: ButtonText;
}

to

.htmlarea .toolbar select:active { 
  margin-top: 0px;
  margin-bottom: 1px;
  color: ButtonText;
  position: relative;
  top: 2px;
}

Changed 5 years ago by ray

  • milestone set to 0.95

maybe this will become important for 0.95

Changed 5 years ago by ray

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.