-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b28e32
commit 41022b0
Showing
2 changed files
with
45 additions
and
46 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,66 @@ | ||
/* framed version */ | ||
/* :::::::::::::::::::::::: */ | ||
/* :::: Framed version :::: */ | ||
/* :::::::::::::::::::::::: */ | ||
|
||
/*.desktop-label-nonempty-active { | ||
/* empty inactive state | ||
.desktop__label { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
background-color: rgba(128, 128, 128, 0.7); | ||
color: rgba(207, 207, 207, 1); | ||
border: 1px solid rgba(207, 207, 207, 0.7); | ||
border-radius: 4px; | ||
} | ||
.desktop-label-nonempty-inactive { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
padding: 0 4px; | ||
background-color: rgba(76, 76, 76, 0.7); | ||
color: rgba(207, 207, 207, 0.7); | ||
border: 1px solid rgba(207, 207, 207, 0.7); | ||
border: 1px solid rgba(207, 207, 207, 0); | ||
border-radius: 4px; | ||
} | ||
.desktop-label-empty-active { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
background-color: rgba(128, 128, 128, 0.7); | ||
color: rgba(207, 207, 207, 1); | ||
border: 1px solid rgba(207, 207, 207, 0); | ||
border-radius: 4px; | ||
.desktop__label.desktop__label--occupied { | ||
background-color: rgba(96, 96, 96, 0.7); | ||
border: 1px solid rgba(207, 207, 207, 0.7); | ||
} | ||
.desktop-label-empty-inactive { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
background-color: rgba(76, 76, 76, 0.7); | ||
color: rgba(207, 207, 207, 0.7); | ||
border: 1px solid rgba(207, 207, 207, 0); | ||
border-radius: 4px; | ||
}*/ | ||
.desktop__label.desktop__label--active { | ||
color: rgba(207, 207, 207, 1); | ||
background-color: rgba(128, 128, 128, 0.7); | ||
} */ | ||
|
||
/* non-framed version */ | ||
/* :::::::::::::::::::::::: */ | ||
/* :: Non-framed version :: */ | ||
/* :::::::::::::::::::::::: */ | ||
|
||
.desktop-label-nonempty-active { | ||
.desktop__label { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
background-color: rgba(154, 154, 154, 0.7); | ||
|
||
padding: 0 4px; | ||
|
||
background-color: rgba(0, 0, 0, 0); | ||
border-radius: 4px; | ||
} | ||
|
||
.desktop-label-nonempty-inactive { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
.desktop__label.desktop__label--occupied { | ||
background-color: rgba(96, 96, 96, 0.7); | ||
border-radius: 4px; | ||
} | ||
|
||
.desktop-label-empty-active { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
.desktop__label.desktop__label--active { | ||
background-color: rgba(154, 154, 154, 0.7); | ||
border-radius: 4px; | ||
} | ||
|
||
.desktop-label-empty-inactive { | ||
margin-left: 0px; | ||
margin-right: 8px; | ||
background-color: rgba(0, 0, 0, 0.0); | ||
border-radius: 4px; | ||
/* :::::::::::::::::::::::: */ | ||
/* ::::: i3 - version ::::: */ | ||
/* :::::::::::::::::::::::: */ | ||
|
||
/* .desktop__label { | ||
padding: 8px 6px; | ||
background-color: transparent; | ||
color: rgba(255, 255, 255, 0.6); | ||
} | ||
.desktop__label.desktop__label--occupied { | ||
color: white; | ||
} | ||
.desktop__label.desktop__label--active { | ||
background-color: rgba(255, 255, 255, 0.2); | ||
} */ |