插件标记优化

feat/task1-c-wallet
gongfuxiang 2019-07-18 23:15:18 +08:00
parent 29b55e58cf
commit efdd76547f
1 changed files with 20 additions and 2 deletions

View File

@ -802,8 +802,19 @@ button { outline: none !important; }
*
*/
.plugins-tag {
background: #333;
border: 3px solid #e90000;
text-align: center;
padding: 5px;
width: 15px;
height: 15px;
border-radius: 50%;
cursor: pointer;
display: -webkit-inline-box;
}
.plugins-tag, .plugins-tag span {
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.plugins-tag span {
font-size: 16px;
@ -811,9 +822,16 @@ button { outline: none !important; }
color: #e90000;
text-shadow: 1px 1px #bfbfbf;
background: #ffdfdf;
padding: 5px 8px;
padding: 2px 6px;
border-radius: 3px;
border: 1px solid #ffd4d4;
position: absolute;
margin: -12px 0 0 -5px;
z-index: 2;
display: none;
}
.plugins-tag:hover span {
display: block;
}
/**