GithubHelp home page GithubHelp logo

Comments (2)

dhilt avatar dhilt commented on August 14, 2024 1

@sesellis Thanks for the issue and especially for stackblitz demo. With the help of your demo the problem could be investigated quite quickly. Let's look at the result html:

screen shot 2018-11-06 at 06 09 25

Some divs have _ngcontent-c36 attribute, some don't. The styles you defined in app.component.css are being applied with this attribute mention:

.viewport.horizontal[_ngcontent-c36] div[_ngcontent-c36] {
    display: inline-block;
}

And all internal containers created by the *uiScroll directive (<div ui-scroll>, <div data-padding-backward>, <div data-sid="X"> and <div data-padding-forward>) don't have such attribute, and display: inline-block; rule is not applied.

The _ngcontent-cX attributes are being added by the Angular itself in case the encapsulation strategy is set to ViewEncapsulation.Emulated value (which is the default). It means that all divs you defined in the app.component.htm will be marked with _ngcontent-cX attribute, where X is unique for this component. Divs I listed before (without this attribute) are parts of internal *uiScroll component creating run-time. So, we have a styles encapsulation conflict and I see two solutions.

First, change encapsulation strategy of the host component:

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ],
  encapsulation: ViewEncapsulation.None // .Native or .ShadowDom values are fine too
})

Second, move the CSS rule that we are interested in to the global styles.css:

.viewport.horizontal div {
  display: inline-block;
}

from ngx-ui-scroll.

sesellis avatar sesellis commented on August 14, 2024

Excellent description and solution recommendations!

Sam

from ngx-ui-scroll.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.