https://linen.dev logo
Join Discord
Powered by
# haxe-ui
  • b

    bright-gpu-74537

    03/14/2023, 5:10 PM
    im not even sure anything other than src & assets would be persisted (ill have to check the code)
  • f

    full-journalist-82607

    03/14/2023, 5:12 PM
    Yeah it doesn't bother me much .. I just noticed it when using .css or properties because I'm used to put them in other folders. But it could be useful to have other folders persisted ( when you import a project)
  • b

    bright-gpu-74537

    03/14/2023, 5:12 PM
    yeah, ill see about it... super low priority though...
  • f

    full-journalist-82607

    03/14/2023, 5:15 PM
    I don't care, I now have save on firefox. I'm happy. I always had to copy the code from firefox to chromium . I wonder how long it's been working ... maybe it's not recent as I think.
  • b

    bright-gpu-74537

    03/14/2023, 5:18 PM
    i havent updated the builder in a while
  • f

    full-journalist-82607

    03/14/2023, 5:18 PM
    Must be a firefox update then 🙂
  • b

    bright-gpu-74537

    03/14/2023, 5:18 PM
    could be, yeah
  • f

    full-journalist-82607

    03/14/2023, 6:00 PM
    hum, it seems max-width and max-height doesn't work well with images http://haxeui.org/builder/?8362d36a ( and just saw that image center alignments have the same problem you corrected with paddings)
  • r

    refined-laptop-39041

    03/15/2023, 12:53 AM
    Two questions: 1) How do I get the menu to always be on the top, I am just using menubar. 2) How can I have the border vanish on the top bar where the sidebar is so it is flush
  • r

    refined-laptop-39041

    03/15/2023, 12:56 AM
    Oh, I fixed the first issue lol
  • f

    full-journalist-82607

    03/15/2023, 6:23 AM
    @refined-laptop-39041 I would maybe do something like
    Copy code
    css
    .menubar:with-sidebar {
        border-bottom-width: 0px;
        filter: none;;
    }
    and when there is a sidebar apply the class "with-sidebar" to the menubar
  • b

    bright-gpu-74537

    03/15/2023, 6:57 AM
    im not sure i follow tbh... can you maybe show a builder example of what you are trying to do? Probably too early in the morning, but im not understanding 🙂
  • b

    bright-gpu-74537

    03/15/2023, 6:58 AM
    > 1) How do I get the menu to always be on the top isnt it already? > 2) How can I have the border vanish on the top bar where the sidebar is so it is flush border of what? I cant understand from the screen Also, is there a space between the menu button and the menu item?
  • b

    bright-gpu-74537

    03/15/2023, 8:31 AM
    min / max w / h have a few issues currently (in general)
  • f

    full-journalist-82607

    03/15/2023, 9:49 AM
    Oh okay. I think I may use workaround by code for my usecase 🙂 . BTW, here are some bugs with adding classes and removing classes http://haxeui.org/builder/?1fb7e825 ( basically icons and filters)
  • h

    happy-agent-4114

    03/15/2023, 8:12 PM
    is there a simple way to set the default font for the entire page
  • h

    happy-agent-4114

    03/15/2023, 8:12 PM
    I feel like I'm overcomplicating this
  • f

    full-journalist-82607

    03/15/2023, 8:42 PM
    haxeui does it simply like this to change the font of all the app
    Copy code
    xml
    .label, .textfield, .textarea {
        font-size: 13px;
    }
    What's a page ?
  • h

    happy-agent-4114

    03/15/2023, 8:52 PM
    I was targeting html5 so i used the wrong wording lol
  • h

    happy-agent-4114

    03/15/2023, 8:53 PM
    I tried that with a TTF font as
    Copy code
    css
    * {
        font-name: 'assets/fonts/main.ttf';
    }
    and it didn't do anything
  • f

    full-journalist-82607

    03/15/2023, 8:55 PM
    Sorry haxeui does this for html5
    Copy code
    css
    .button, .label, .textarea, .textfield {
        font-name: "Arial";
        __font-size: 13px;
    }
  • f

    full-journalist-82607

    03/15/2023, 8:56 PM
    I wonder if it's the setting from assets that doesn't work ? Don't really know fonts works on html5
  • f

    full-journalist-82607

    03/15/2023, 8:57 PM
    You can check this page maybe it could help @happy-agent-4114 https://community.haxeui.org/t/custom-font-ttf-override-for-html5-composite/395/2
  • b

    bright-gpu-74537

    03/15/2023, 8:59 PM
    ☝️ yoplala to the rescue 🙂
  • b

    bright-gpu-74537

    03/15/2023, 8:59 PM
    one tiny note about this:
    *
    will match every component... not a huge deal, but its more expensive than yoplalas example
  • b

    bright-gpu-74537

    03/15/2023, 9:00 PM
    i should probably remove that
    __font-size: 13px;
    (its just something i use to "comment out" css)
  • f

    full-journalist-82607

    03/15/2023, 9:01 PM
    Not sure I understand the commenting out part 🙂
  • b

    bright-gpu-74537

    03/15/2023, 9:02 PM
    well, i just mean i do "__font-size" when i want to remove the prop but not actually remove it (usually when im testing something)
  • b

    bright-gpu-74537

    03/15/2023, 9:02 PM
    kinda like going "OLD_font-size" or something
  • f

    full-journalist-82607

    03/15/2023, 9:05 PM
    ah okay, I understand better now 🙂
1...159815991600...1687Latest