Merge pull request #9 from ruudwelten/battery

Add full battery icon and increase charge on regular battery
This commit is contained in:
Astrit Malsija 2019-12-26 21:04:01 +01:00 committed by GitHub
commit 5952a50f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 37 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

33
icons/battery-full.css Normal file
View File

@ -0,0 +1,33 @@
.gg-battery-full {
box-sizing: border-box;
position: relative;
display: block;
width: 20px;
height: 12px;
transform: scale(var(--ggs,1));
border: 2px solid;
border-radius: 3px;
margin-left: -3px
}
.gg-battery-full::after,
.gg-battery-full::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
height: 6px;
background: currentColor;
top: 1px
}
.gg-battery-full::before {
right: -4px;
border-radius: 3px;
width: 4px
}
.gg-battery-full::after {
width: 14px;
left: 1px
}

View File

@ -28,6 +28,6 @@
}
.gg-battery::after {
width: 6px;
width: 8px;
left: 1px
}