美文网首页
ionic2更改android下actionsheet样式为io

ionic2更改android下actionsheet样式为io

作者: 待花谢花开 | 来源:发表于2017-06-15 09:04 被阅读0次

注释或者删除main.css中的以下代码

.action-sheet-md .action-sheet-container {
  padding: .8rem 0;
  background: #fafafa;
}

.action-sheet-md .action-sheet-title {
  padding: 11px 16px 17px;
  font-size: 1.6rem;
  text-align: left;
  color: #757575;
}

.action-sheet-md .action-sheet-button {
  position: relative;
  overflow: hidden;
  padding: 0 16px;
  min-height: 4.8rem;
  font-size: 1.6rem;
  text-align: left;
  color: #222;
  background: transparent;
}

.action-sheet-md .action-sheet-button.activated {
  background: #f1f1f1;
}

.action-sheet-md .action-sheet-icon {
  margin: 0 32px 0 0;
  padding: 0;
  width: 2.3rem;
  font-size: 2.4rem;
  text-align: center;
  vertical-align: middle;
}

.action-sheet-md .action-sheet-group {
  overflow: hidden;
}

.action-sheet-md .action-sheet-group .button-inner {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.action-sheet-md .action-sheet-selected {
  font-weight: bold;
}

然后添加以下代码到main.css中

.action-sheet-md {
  text-align: center;
}

.action-sheet-md .action-sheet-container {
  padding: 0 10px;
}

.action-sheet-md .action-sheet-group {
  overflow: hidden;
  margin-bottom: 8px;
  border-radius: 13px;
  background: #f9f9f9;
}

.action-sheet-md .action-sheet-group:last-child {
  margin-bottom: 10px;
}

.action-sheet-md .action-sheet-title {
  padding: 1.5rem;
  border-bottom: 0.55px solid #d6d6da;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: #8f8f8f;
}

.action-sheet-md .action-sheet-button {
  margin: 0;
  padding: 18px;
  min-height: 5.6rem;
  border-bottom: 0.55px solid #d6d6da;
  font-size: 2rem;
  color: #007aff;
  background: transparent;
}

.action-sheet-md .action-sheet-button:last-child {
  border-bottom: 0;
}

.action-sheet-md .action-sheet-button.activated {
  margin-top: -0.55px;
  border-top: 0.55px solid #ebebeb;
  border-bottom-color: #ebebeb;
  background: #ebebeb;
}

.action-sheet-md .action-sheet-selected {
  font-weight: bold;
  background: #fff;
}

.action-sheet-md .action-sheet-destructive {
  color: #f53d3d;
}

.action-sheet-md .action-sheet-cancel {
  font-weight: 600;
  background: #fff;
}

相关文章

网友评论

      本文标题:ionic2更改android下actionsheet样式为io

      本文链接:https://www.haomeiwen.com/subject/kxdyqxtx.html