No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. loop
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    loop

    @loop

    0
    Reputation
    379
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    loop Follow

    Latest posts made by loop

    • RE: [0.14] print css

      Sorry about the delay. Should anyone have the same issues using rails with webpacker and quasar, check that your layout says:

      <%= stylesheet_pack_tag 'application', media: 'all' %>
      

      rather than:

      <%= stylesheet_pack_tag 'application' %>
      

      If that is so, print css aren’t loaded!

      posted in Framework
      L
      loop
    • RE: [0.14] print css

      Hello,

      Thanks for the suggestions. I hadn’t actually seen the printing related classes… cool, but still they don’t seem to solve my problem, being the fact that i get lots of nested divs spanning many pages. Possibly this is due to me trying to straight out print a SPA made with a q-layout with two levels of tabs and tonnes of form controls. I’m trying to make simpler display-only components and it’s looking a lot better.

      posted in Framework
      L
      loop
    • 0.15 with rails

      Hello,

      I’m using 0.14 with rails assets pipeline and got it working fine. I don’t get quasar cli but don’t miss it much, and vue-loader gives me tree shaking, single file components and the like.

      Tried 0.15 and could not get it to work at all. I tried both umd (no tree shaking, and did not work with rails asset pipeline) and direct (no no).

      Any idea or suggestions?

      posted in Framework
      L
      loop
    • RE: [0.14] print css

      Sorry, the “all divs with border” bit was for getting an idea of what was taking up 500+ pages; It seems to be all sort of stuff, some of which has to do with q-layout itself

      posted in Framework
      L
      loop
    • [0.14] print css

      Hello,

      I’m using quasar 0.14 inside of a rails app. Using quasar-mat css, tried printing, first results are pretty horrible; I use some pretty standard:

      @media print {
        div {
          border: 1px solid grey;
        }
        header,
        footer {
          display:none;
        }
        body {
          overflow: auto;
          height: auto;
        }
        .scroll-y {
           height: auto;
           overflow: visible;
        }
        aside {
          display: none !important;
        }
      }
      

      but it comes out at 500 pages (they’re 3 at most), i don’t get any flex styled two column layout (I don’t get any layout at all actually, components come out squeezed and line-print styled) and got some stray textareas at page number 200+

      Any suggestions on sensible print css?

      Thanks

      posted in Framework
      L
      loop