Created
September 12, 2016 00:24
-
-
Save reliq/2f8b673f17a850781e2e58b7fa6390bd to your computer and use it in GitHub Desktop.
Better look for batterymonitor@pdcurtis (BAMS) (Linux Mint)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
These settings govern the width of the Applet and the space taken by the font. | |
Changes may be required with some themes to avoid the display width being exceeded | |
which leads to jitter with high network speeds and resolutions | |
or to allow a reduced size width to save panel space. | |
*/ | |
.bam-normal { | |
background-color: rgba(0,255,0,0); | |
border-radius: 0; | |
font-size: 80%; | |
font-weight: 400; | |
color: rgba(255,255,255,0.8); | |
} | |
.bam-alert { | |
background-color: rgba(255,165,0, 0.3); | |
border-radius: 0; | |
} | |
.bam-alert2 { | |
background-color: rgba(255,255,255,0.2); | |
border-radius: 0; | |
} | |
.bam-limit-exceeded { | |
background-color: rgba(255,0,0,0.3); | |
border-radius: 0; | |
} | |
.bam-limit-exceeded2 { | |
background-color: rgba(255,255,255,0.5); | |
border-radius: 0; | |
} | |
/* | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment