Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 828 Bytes

CSSSAMPLE.md

File metadata and controls

41 lines (35 loc) · 828 Bytes

自定义CSS的一些例子

自定义的CSS会注入到<head>的<style>里面一般来说优先级已经比较高了 如果不生效尝试加!important后缀

.test{
  width:100px;
  width:100px!important;
}

1、添加聊天背景

.box{
  background-image:url(file:///home/user/Pictures/welcome.png);
  background-size:60%;
  background-position:right;
  background-repeat:no-repeat;
}

img

2、改变气泡颜色

.bubble.bubble_default{
  background-color: #97c9eb;
}
.bubble.left:after{
  border-right-color: #97c9eb;
}
.bubble.bubble_primary{
  background-color: #fcd3f3;
}
.bubble.bubble_primary.right:after{
  border-left-color: #fcd3f3;
}

img