0

ブートストラップとトップコートの 2 つの CSS スタイルを使用したいと考えています。角度スライド メニュー機能 (ng-mobile-menu) を使用します。ブートストラップcdnを追加すると. スライド メニューの背景色が短くなるため、トップコート メニューをオーバーライドします。 mobile-menu/demo/#/skinny . それを追加する必要があります (リンク rel の変更順序は関係ありません):

<link rel="stylesheet" href="topcoat/css/topcoat-mobile-dark.min.css"/>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0./css/bootstrap.min.css"/>
<link rel="stylesheet" href="ng-mobile-menu.min.css"/>
<style>
html, body {
  margin:0;
  padding:0;
  height: 100%;
}

#menubutton {
  padding: 0 1.25rem;
  font-size: 16px;
  /* vertically center button text */
  line-height: 3rem;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #454545;
  text-shadow: 0 1px #fff;
  background-color: white;
  -webkit-box-shadow: inset 0 1px #fff;
  box-shadow: inset 0 1px #fff;
  border: 1px solid #a5a8a8;
}
</style>
4

1 に答える 1