Separator line style

Hi
how can I change the style / type / look of a separator , I got a dot line and I need a full line , I looked at the CSS reference without any success
any help?
thanks

Looking at caspian.css contained in sdk/rt/lib/jfxrt.jar provides the following styles for a seperator.
.separator {
    -fx-skin: "com.sun.javafx.scene.control.skin.SeparatorSkin";
.separator .line {
    -fx-border-style: segments(0.166667em, 0.166667em);
    -fx-border-width: 0.083333em; /* 1 */
.separator:horizontal .line {
    -fx-background-color: null;
    -fx-padding: 0.083333em 0.0em 0.0em 0.0em; /* 1 0 0 0 */
    -fx-border-color: derive(-fx-background,-20%) transparent transparent transparent;
.separator:vertical .line {
    -fx-background-color: null;
    -fx-padding: 0.0em 0.083333em 0.0em 0.0em; /* 0 1 0 0 */
    -fx-border-color:  transparent derive(-fx-background,-20%) transparent transparent;
}Perhaps make your own stylesheet to override some of these settings with the style you want.

Similar Messages

  • How to create a report in Form line Style and can display Image field?

    Hi,
    In Report builder 10g, I would like to create a Report with Form Line Style and this report included a Image field.
    I can choose this Style only when Select Report type is Paper Layout. Because, If I choose Create both Web & Paper Layout or Create Web Layout only then in the next Style tab 03 option Form, Form letter and Mailing Label be Disabled.
    But in Paper Layout, my report can not display Image field.
    I tried with Web layout and all the other Styles (Except 03 mentioned be Disabled) then all Styles are displayed Imager field OK.
    How to create a report in Form line Style and can display Image field?
    I was change File Format property of my Image field from text to Image already in Property Inspector. But report only showed MM for my Image field.
    Thanks & regards,
    BACH
    Message was edited by:
    bachnp

    Here you go..Just follow these steps blindly and you are done.
    1) Create a year prompt with presentation variable as pv_year
    2) Create a report say Mid report with year column selected 3 times
    - Put a filter of pv_year presentation variable on first year column with a default value say @{pv_year}{2008}
    - Rename the second time column say YEAR+1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)+1
    - Rename the second time column say YEAR-1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)-1
    Now when you will run Mid Report, this will give you a records with value as 2008 2009 2007
    3) Create your main report with criteria as Year and Measure col
    - Change the fx for year column as CAST(TIME_DIM."YEAR" AS INT)
    - Now put a filter on year column with Filter based on results of another request and select these:
    Relationship = greater than or equal to any
    Saved Request = Browse Mid Report
    Use values in Column = YEAR-1
    - Again,put a filter on year column with Filter based on results of another request and select these:
    Relationship = less than or equal to any
    Saved Request = Browse Mid Report (incase it doesn't allow you to select then select any other request first and then select Mid Report)
    Use values in Column = YEAR+1
    This will select Year > = 2007 AND Year < = 2009. Hence the results will be for year 2007,2008,2009
    This will 100% work...
    http://i56.tinypic.com/wqosgw.jpg
    Cheers

  • How to put separator lines in menu items in a gui status ?

    Hi,
    I have created gui status for my z transaction
    I need the separator lines in the menu items like it is seen in std transactions
    For example, in any screen , in the Help menu, we can see the following.
    Application Help
    SAP Library
    Glossary
    (line)
    Release notes
    (line)
    SAP Service Marketplace
    could you please help me how to put the lines ?
    thanks

    Hi,
    Goto Your GUI status.click on your  MENU bar.
    under the menu bar you will have your own menu items.
    where ever you want separator line  do the following way.
    you will have 2 columns under menu bar
    1) code
    2) text.
    under code dont put anything.
    but under text column you put dashes and enter or select right click there and choose separator line.
    you will get separator line.
    activate and run the ztcode.you will get .
    code                                            text
    Application Help                         
    SAP Library
    Glossary
    Release notes
    SAP Service Marketplace
    Thanks
    Parvathi

  • Line items separed line(Uline) in SAP Script

    Dear Friends.
    I want to print a separated line (Uline) in-between each line item and the line should not come when it is last line item of the page.
    I am going to print in first page with 7 records and next all pages with 17 records.
    here I have written it for first page which is working but how to do with rest of the pages???
    Here I have taken a flag when the line item reach to 7th record, and i am using it in my form window as bellow:
    /: IF $GV_FLAG& = 'X' AND &PAGE& = '1'
    /: ELSE
    UN &sy-uline(151)&
    /: ENDIF
    The same i want  for rest of the pages.....but the remaining pages will have 17 records per a page..
    Could you pls suggest me on this...
    Thanks,
    Sridhar.

    Hi Sridhar,
    I am assuming that $GV_FLAG& is for 7 records, so take another falg like this for second page $GV_FLAG2& and count it for 17 records.
    [code]/: IF $GV_FLAG& = 'X' AND &PAGE& = '1'
    /: ELSE
    UN &sy-uline(151)&
    /: ENDIF
    /: IF $GV_FLAG2& = 'X' AND &PAGE& <> '1'
    /: ELSE
    UN &sy-uline(151)&
    /: ENDIF[/code]
    Regards
    Sudheer

  • Marker and line styles as a choice in drop down menu

    Is it possible to create a drop down choice menu(Choice xyz = new Choice(); ) in java AWT which has line styles or marker styles (no text)( basically these things are required to edit the graph) as choice options?

    /*  <applet code="ChoiceTest" width="400" height="400"></applet>
    *  use: >appletviewer ChoiceTest.java
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class ChoiceTest extends Applet
        ChoiceGraphicsPanel graphicsPanel;
        Choice choice;
        Checkbox rows, cols;
        String[] colorNames;
        public void init()
            graphicsPanel = new ChoiceGraphicsPanel();
            setLayout(new BorderLayout());
            add(getChoicePanel(), "North");
            add(graphicsPanel);
        private Panel getChoicePanel()
            rows = new Checkbox("rows", true);
            cols = new Checkbox("cols", false);
            colorNames = new String[] {
                "red", "green", "blue", "orange"
            choice = new Choice();
            for(int j = 0; j < colorNames.length; j++)
                choice.add(colorNames[j]);
            choice.addItemListener(new ChoiceListener());
            Panel panel = new Panel();
            ((FlowLayout)panel.getLayout()).setHgap(35);
            panel.add(choice);
            panel.add(rows);
            panel.add(cols);
            return panel;
        private class ChoiceListener implements ItemListener
            Color[] colors = {
                Color.red, Color.green.darker(), Color.blue, Color.orange
            public void itemStateChanged(ItemEvent e)
                if(e.getStateChange() == ItemEvent.SELECTED)
                    int index = choice.getSelectedIndex();
                    Color color = colors[index];
                    if(rows.getState())
                        graphicsPanel.setRowColor(color);
                    if(cols.getState())
                        graphicsPanel.setColColor(color);
        public static void main(String[] args)
            Applet applet = new ChoiceTest();
            final Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    f.dispose();
                    System.exit(0);
            f.add(applet);
            f.setSize(400,400);
            f.setLocation(200,200);
            applet.init();
            f.setVisible(true);
    class ChoiceGraphicsPanel extends Panel
        int rows, cols;
        Color rowColor, colColor;
        public ChoiceGraphicsPanel()
            rows = 4;
            cols = 4;
            rowColor = Color.red;
            colColor = Color.blue;
        public void paint(Graphics g)
            super.paint(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int w = getWidth();
            int h = getHeight();
            int xInc = w/cols;
            int yInc = h/rows;
            int y = 0;
            g2.setPaint(rowColor);
            for(int j = 0; j < rows; j++)
                g2.drawLine(0, y, w, y);
                y += yInc;
            int x = xInc;
            g2.setPaint(colColor);
            for(int j = 0; j < cols - 1; j++)
                g2.drawLine(x, 0, x, h);
                x += xInc;
        public void setRowColor(Color color)
            rowColor = color;
            repaint();
        public void setColColor(Color color)
            colColor = color;
            repaint();
    }

  • Flash line chart change line style.

    Hi guys,
    I am migrating charts in my application from SVG to Flash.
    For line charts in Flash, is there a way to change line style from solid to dashed or dotted?
    Thanks in advance.

    Hi,
    If you're using the new AnyChart then you can using bevel...not sure how its done with the old but it must be possible. Example here: http://anychart.com/products/anychart/docs/users-guide/Samples/Sample-Line-chart-Application-of-different-styles-to-chart-elements.xml
    <effects>
    <bevel enabled="true" highlight_opacity="0.4" shadow_opacity="0.4" distance="2"/>
    <drop_shadow enabled="true" opacity="0.3"/>
    </effects>Mike

  • Line style of Word tables is ignored. Broken lines or dotted lines appear as uninterrupted lines

    Bug in Adobe XI:
    The line style of Word tables is ignored. Broken lines or dotted lines in Word tables are shown as normal uninterrupted lines in PDF file.
    For example, in my Word document I choose the following line styles in tables: dotted line (.........................) or broken line ( - - - - - - - - - - - - ).
    In the PDF file, all lines are shown as normal uninterrupted lines (__________________), even if I zoom in 800% or more.
    Is there a solution for this problem? (In FreePDF, it works well, but FreePDF has other disadvantages and therfore is no solution for me.)

    Ok 1st one. The warning restriction message relates to this line in main.cf:
    smtpd_helo_restrictions = permit_sasl_authenticated  permit_mynetworks  check_helo_access hash:/etc/postfix/helo_access  reject_non_fqdn_hostname  reject_invalid_hostname  permit reject_invalid_helo_hostname
    The last reject occurs after the single word "permit" and is ignored.
    However, that's not the problem.
    I'm not exactly sure what's happening, but this might be a clue.
    It would appear that either postfix is not being able to create the socket for private/policy or it's somehow created with the wrong permissions.  You might need to ramp up the debug level to get a better idea.
    You could check if it's being created by "netstat -a | grep private/policy" in terminal.
    My guess is that it's not being created because there is no setup statement in your master.cf file, but I don't understand why postfix would be looking for it if it isn't set up.  Private/policy I think relates to grey listing.  Maybe gives you a hint.

  • Different line style in tables

    I've been looking for a way to change the line style of the lines in my tables, i.e. have dashed lines, but when I select the line in question and go the line style section of the graphics tab, there is only the standard solid line. Is it the case that you just cannot change the line styles of lines in tables? I use tables to layout a lot documents that I create and this missing feature would be quite an annoyance to me when it is something I was always able to do in Word.

    James,
    as Frank said, you cannot change the style of the lines in tables. You could send feedback to Apple to get this feature in a future version of Pages.
    As a workaround, you could mark a line and set the stroke to None. Then insert a line from the shapes menu and set it's stroke to the style you want. Set both the line and the table to "Fixed on page" in Wrap inspector. Then move the line to the place of the table you want it to be. If you group the line(s) and the table, you could set Object Placement back to "Moves with text".
    Obviously, it's best to use this workaround when you're quite sure that size an position of the row don't change to which you want to add the line object.
    If this information is useful to you, please mark it as "helpful" or "solved" using the little buttons in the titlebar of this message. Thank you.

  • Change line styles in an Excel graph

    I am using the report generation toolkit in LabVIEW 2009 and need to change the line styles of three lines on a graph in Excel.  I found the property node that allows me to change the line style but I am not sure what to pass into the varient.  I have tried the name (ie xlDash) and the integer value (ie -4115) but neither seem to work.  Has anyone tried this and can offer some advice.
    Thank you,
    AJL
    Solved!
    Go to Solution.

    I should have posted this sooner but I found my own solution.  I decided to read the properties from an excel graph and found that LV uses an integer thats value corresponds to where in the list in Excel the line style is.  IE continuous has a value of 1 since it is first in the drop down in Excel, Dash has a value of 2 since it is second in the list, etc.  One problem with this is that your code is  not very robust since the result can change if Microsoft changes the order of their drop down list in newer verisons of Excel. 

  • Separator line in alv grid custome toolbar

    I had created a toolbar in alv grid through CLASS cl_alv_grid_handler IMPLEMENTATION.
    I would like to separate the control by separator line please suggest me how to do the same.
    CLASS cl_alv_grid_handler IMPLEMENTATION.
      METHOD handle_toolbar.
        PERFORM handle_toolbar
          USING e_object.
      ENDMETHOD.
    FORM handle_toolbar
      USING i_object TYPE REF TO cl_alv_event_toolbar_set.
      DATA: ls_toolbar  TYPE stb_button.
    CLEAR : i_object->mt_toolbar.
      CLEAR: ls_toolbar.
      MOVE 'Add' TO ls_toolbar-function.
      MOVE icon_create TO ls_toolbar-icon.
      MOVE 'Add row' TO ls_toolbar-quickinfo.
      MOVE ' ' TO ls_toolbar-disabled.
    MOVE 'Add' TO ls_toolbar-text.
      APPEND ls_toolbar TO i_object->mt_toolbar.
      MOVE 'CHECK_DATA' TO ls_toolbar-function.
      MOVE icon_check TO ls_toolbar-icon.
      MOVE 'Check Entries' TO ls_toolbar-quickinfo.
      MOVE ' ' TO ls_toolbar-disabled.
      APPEND ls_toolbar TO i_object->mt_toolbar.
    Endform.

    Hi,
    Refer to the link given.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    Hope it helps.
    Regards,
    Rajesh Kumar

  • Creating Separation lines between rows of content

    I have several hundreds pages from a catalog we are creating that need separation lines between columns to segragate the products. I am wondering if there is an easy way to automate the creation of these.
    I tried using the Grid feature ( by drawing a frame and then using the left and up arrow keys to create the grids, but it creates a number of boxes where I need just separation lines. 
    I can create the seapration lines manually but this takes longer, even if I save them as a snippet and place multiple times.
    I am using Indesign CS6
    Please see the attached screen shot.
    http://www.wdautoparts.com/pdf/page-12-without.pdf
    With grids -
    http://www.wdautoparts.com/pdf/page-12-with.pdf
    Any suggestions for this noob would be greatly appreciated.
    Thanks

    Not sure whether this fits as a solution to your problem, but reading your post made me remember it:
    http://www.indiscripts.com/post/2009/09/introducing-indesign-column-rules

  • Nested Line Style affecting my GREP style

    Hello all.
    I'm formatting a large book at the moment and am trying out a "runt fixer" to prevent bad sentence breaks in columns. So far I have created a character style that only applies the "no-break" attribute, and have two GREP styles - one looking for a space and 8 characters or less before a full-stop, exclamation mark or question mark; and another looking for the 8 characters or less then a space after a full-stop, exclamation point or question mark. The codes are:
    \s.{1,8}[.!?]
    and
    (?<=[.?!]\s).{1,8}\s
    It works... nearly. It has issues when fullstops are used in numbers such as displaying currency, dates... but largely works for the text.
    The problem occurs when I go to the Drop Caps and Nested Styles feature, and use the "New Line Style" - in this instance it was used at the beginning of chapters to make the first line smallcaps. Instead, something strange happened to the second GREP style - it no longer worked.
    In case I'm not explaining myself properly, i've uploaded a sample of what is going on here: https://dl.dropboxusercontent.com/u/55743036/runt-issue.idml
    The first page is OK, but the second page displays the fault. I've colorised the GREPs so that it is clear what is not breaking at the end of a sentence and what is not breaking at the start of a sentence.
    Has anyone experienced this before or can tell me what is going on? it is my error or is it a bug?
    Colin

    @Colin – I thought, I could make it work, if I introduce another GREP Style BEFORE the one that is not working: A GREP Style, that is doing nothing (applying the character style "[None]" to a character like "§" that is simply not in the text. Did not work.
    Another attempt with InDesign CS5.5 OSX 10.6.8: I made a new paragraph style BASED ON the one that is not working. Changed nothing in that new one, just let it be based on the not working one.
    Now: THAT IS FINALLY WORKING! But in a different way I expected…
    "Will work" is based on "not working".
    Here all GREP Styles used in "Will work":
    Uwe

  • Adding separator lines or spaces in WebHelp ToC

    Is it possible - and not horribly complicated - to add separator lines or some empty spaces in WebHelp Table of Contents?
    I would like to group the "books" and top level topics, separating them somehow, but adding empty items or simple HTML like <br> or <hr> in the .hhc file is not doing anything.
    This is what the graphics designer is asking for:
    I am running RH7 and using a somewhat adjusted version of the "Default" skin.

    Hi Willam
    I'm guessing that what is meant is something like this:
    I'm wondering why someone couldn't just insert a page that links to a specific and innocuous topic and configure the TOC with a string of dashes or whatever. In this case it would look like this:
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcererStone Blog
    RoboHelp eBooks

  • "Editorial" Theme: Can't move the separator line

    I've spent the day trying to figure out Keynote. One thing I'm trying to do is fiddle with the "Editorial" theme masters. About a fourth of the area of the slides is wasted by an immense title across the top. I'd like smaller titles. I can easily shrink the font size and resize the box to make it narrower in height. However, the separator line stays put. If I click it, little marks appear on it, but there's no apparently way to drag it upward. Am I missing something? Thanks.

    The lines are locked. With the lines selected, go to Arrange>Unlock (or Command Option L).

  • Can't change plot line style for chart

    I am using LabVIEW 8.6. In my program, the user has the ability to enable or disable autoscaling for the x axis by right clicking the chart. I use a proprty node to turn the plot to a dashed line during an alarm condition. The issue I have is - if x autoscaling is disabled, the plot style is always solid for new data entering the chart regardless of the property node setting. If autoscaling is enabled, the line style changes as I expect.
    Attached is a simple program that illustrates the problem. I don't know if I am doing something wrong.
    Any comments will be appreciated.
    Thank you,
    Dave F
    Attachments:
    chart line test LV8.zip ‏10 KB

    Hi Dave, 
    I looked at your VI and I definitely see the behavior you mentioned.  However I believe this is expected.  The plot is actually still writing in the dashed line, however very compactly.  You can see this if you make your x range smaller(perhaps 0 to 10).  This shows the dashed line.  With autoscaling turned on, the graph is redrawn every loop iteration.  so the dashed line is easy to see when zoomed out.  
    I think a better solution for what you are trying to use plot color, line width, etc. Or if you definitely want it to do Line style, you can have it change line style to 0 and then back to 1 every loop iteration.  This will force it to redraw, but will add overhead to your code and slow it down slightly.  
    David_L | Certified LabVIEW Architect
    LabVIEW Tools Network | LabVIEW Tools Network Developer Center

Maybe you are looking for

  • Adobe acrobat 9.0 standard

    I just got a new laptop with Windows 8.1 and have been using Acrobat 9.0 standard for a very long time.  Found out from Adobe Chat that 9.0 standard is not available as an online download and that the CD must be used.  Could not find the CD for 9.0 b

  • F110 Automatic sent remittance advice to vendor per mail

    Hi, I have an question. Does somebody knows how to sent automatic remittance advices to vendors per mail after you have runned the payment in transaction F110? Thanks for you help! Regards, Edwin

  • What can filter data in a cube ?

    I have the following problem. I have 2 cubes based on the same datasource view. When I browse a certain dimension (just the dimension), they show different records. In one of the cubes some records seem to be filtered out I assumed this was probably

  • FCE/Sony DCR-HC3, doing it right

    I was just wondering if I do everything right. I've installed FCE, plugged in my sony HC3. When I start FCE I'm not able to control the camera through FCE. From one of the menus I'm able to start a capture. In Imovie controlling the cam from within t

  • Partition Problem / Blank Screen

    So lets begin, ~I started boot camp assistance to install Windows XP Pro SP2. ~I partitioned 32 Gb as recommended for FAT. ~I followed directions and got to the point where the "Windows XP Professional Setup" screen asks you to select the partition ~