1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 00:45:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

截图按钮样式

This commit is contained in:
xiao_io
2022-02-09 13:55:41 +08:00
parent c9fed6e6d9
commit b7ccc41532
5 changed files with 46 additions and 20 deletions

View File

@@ -161,6 +161,21 @@ body {
}
#popup #btnScreenshot {
position: absolute;
top: 0;
right: 0;
top: 1px;
right: 5px;
width: 64px;
height: 27px;
color: #fff;
font-weight: 500;
cursor: pointer;
background-color: #71b0f3;
border: none;
border-radius: 4px;
}
#popup #btnScreenshot:hover {
background-color: #6FC6FF;
}
#popup #btnScreenshot:active {
transform: translate(0px, 1px);
box-shadow: 0px 1px 0px 0px;
}

View File

@@ -171,7 +171,22 @@ body {
}
#btnScreenshot{
position: absolute;
top: 0;
right: 0;
top: 1px;
right: 5px;
width: 64px;
height: 27px;
color: #fff;
font-weight: 500;
cursor: pointer;
background-color: #71b0f3;
border: none;
border-radius: 4px;
}
#btnScreenshot:hover{
background-color: #6FC6FF;
}
#btnScreenshot:active{
transform: translate(0px, 1px);
box-shadow: 0px 1px 0px 0px;
}
}