1

我正在构建一个使用的组件,ng-content我发现当我使用:host >>>

例如 :

:host >>> .toolbar-brand{
  color: red;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}

:host >>> .nav-bar-menu-options.hlink, .nav-bar-menu-options.drop-down{
  font-weight: 500;
  text-decoration: none;
  position: relative;
  top: -6px;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 10px 0 10px;

  &.has-divider {
    border-right: 1px solid #b0bec5;
  }

}

:host >>> .nav-bar-menu-options.hlink:hover {
  text-decoration: underline;
  cursor: pointer;
}
:host >>> .fill-remaining-space {
  flex: 1 1 auto;
}
:host >>> .search-link {
  cursor: pointer;
}

:host >>>.search-input-container{
  position:relative;

  .search-link{
    position: absolute;
    top: 3px;
    left:30px;
  }
}

:host >>> .my-input{
  border-left: 1px solid #b0bec5;
  padding: 11px 75px 11px 60px;
  background: transparent;
  outline:none;
  margin-left: 20px;
  width: 100%;
  &::placeholder {

  }
}

谁能告诉我为什么我的.has-divider& 我的嵌套.search-link不起作用,以及为什么当我将内容放在 .scss 文件中并使用styleUrls它时不能与:host. 这是预期的还是可能的错误

理想情况下,我希望能够仍然使用嵌套的 scss 和外部 scss 文件

4

1 回答 1

2

>>>已知会导致 SASS 出现问题。改为使用/deep/

于 2016-11-07T19:00:54.530 回答