Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CBlue/CGreen: V3.0 compatible with Cinnamon 6.4 #834

Merged
merged 4 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CBlue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Versions

* 3.0: compatibility with Cinnamon 6.4.
* 2.12: weather applet touch-up.
* 2.11: increase font size, small changes to menu appearance, calendar, panel-lauchers...
* 2.10: fixed a display bug in workspace names.
Expand Down
44 changes: 33 additions & 11 deletions CBlue/files/CBlue/cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
}
.popup-menu-item:insensitive {
background-color: rgb(82, 148, 226);
background: none;
}
.popup-combobox-item {
spacing: 1em;
Expand Down Expand Up @@ -390,6 +391,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
.window-caption {
background-color: rgba(53, 57, 69, 0.75);
color: #ccc;
border-radius: 25px;
font-weight: bold;
padding: .5em;
spacing: .5em;
Expand Down Expand Up @@ -729,16 +731,23 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
#altTabPopup {
padding: 8px;
spacing: 16px;
background-color: rgba(0, 0, 0, 0.3);
background-color: rgba(53, 57, 69, 0.75);
}
#altTabPopup .switcher-list .item-box:selected {
background-color: rgba(82, 148, 226, 1);
}
.resize-popup, .workspace-switch-osd, .info-osd, .media-keys-osd, #Tooltip, #LookingGlassDialog {
color: #ccc;
background-color: rgba(53, 57, 69, 0.75);
border-radius: 55px;
text-align: center;
padding: 16px;
}
.switcher-list {
background: rgba(53, 57, 69, 0.75);
box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.75);
border: 0px solid #a5a5a5;
border-radius: 1px;
border-radius: 25px;
padding: 20px;
font-size: 9pt;
color: white;
Expand All @@ -750,7 +759,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
background-gradient-direction: horizontal;
background-gradient-start: rgba(53, 57, 69, 0.75);
background-gradient-end: rgba(53, 57, 69, 0);
border-radius: 24px;
border-radius: 25px;
border-radius-topright: 1px;
border-radius-bottomright: 1px;
width: 60px;
Expand All @@ -759,7 +768,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
background-gradient-direction: horizontal;
background-gradient-start: rgba(53, 57, 69, 0);
background-gradient-end: rgba(53, 57, 69, 0.75);
border-radius: 24px;
border-radius: 25px;
border-radius-topleft: 1px;
border-radius-bottomleft: 1px;
width: 60px;
Expand Down Expand Up @@ -855,13 +864,24 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
font-weight: bold;
font-size: 48pt;
}
.workspace-switch-osd-indicator {
background-color: #22242d;
padding: 7px;
margin: 7px;
border-radius: 14px;
}
.workspace-switch-osd-indicator:active {
background-color: #5294e2;
padding: 7px;
margin: 7px;
}
/* ===================================================================
* Run dialog (Alt+F2)
* ===================================================================*/
.run-dialog-label {
font-size: 12pt;
text-align: center;
color: white;
color: #ccc;
font-weight: bold;
padding-bottom: 5px;
}
Expand All @@ -881,7 +901,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
font-size: 12pt;
width: 250px;
height: 25px;
color: white;
color: #ccc;
padding-left: 7px;
background-color: rgb(82, 148, 226);
selection-background-color: rgba(53, 57, 69, 0.75);
Expand Down Expand Up @@ -1511,16 +1531,17 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
color: #5294e2;
}
.hourly-time {
padding: 0px 7px;
padding: 0px 8px;
}
.hourly-box {
padding: 0px 25px;
/* padding: 0px 10px;*/
}
/* ===================================================================
* User Applet and CinnVIIStarkMenu
* ===================================================================*/
.user-icon, .hover-user-icon {
border-radius: 1px;
border-radius: 45px;
border: 2px solid #5294e2;
}
/* ===================================================================
Expand Down Expand Up @@ -1650,8 +1671,9 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
* Workspace OSD (Ctl+Alt+Up)
* ===================================================================*/
.expo-workspaces-name-entry {
padding: 5px;
color: #fff;
padding: 8px;
color: #ccc;
border-radius: 25px;
font-weight: bold;
background-color: rgba(53, 57, 69, 0.75);
selected-color: white;
Expand All @@ -1675,7 +1697,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
* Button Menu
* ===================================================================*/
/*This option works only applica to any applet that is in the left corner*/
#panelLeft .applet-box:first-child:active {
#panelLeft .applet-box:first-child:active {
background-color: rgba(82, 148, 226, 0);
}
/* ===================================================================
Expand Down
2 changes: 1 addition & 1 deletion CBlue/files/CBlue/cinnamon/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cinnamon-theme": {
"name": "CBlue",
"author": "Bundy01",
"version": "2.12",
"version": "3.0",
"type": "custom",
"thumbnail": "thumbnail.png",
"url": ""
Expand Down
1 change: 1 addition & 0 deletions CGreen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Versions

* 3.0: compatibility with Cinnamon 6.4.
* 2.12: weather applet touch-up.
* 2.11: increase font size, small changes to menu appearance, calendar, panel-lauchers...
* 2.10: fixed a display bug in workspace names.
Expand Down
46 changes: 34 additions & 12 deletions CGreen/files/CGreen/cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
}
.popup-menu-item:insensitive {
background-color: rgb(46, 179, 152);
background: none;
}
.popup-combobox-item {
spacing: 1em;
Expand Down Expand Up @@ -390,6 +391,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
.window-caption {
background-color: rgba(27, 36, 32, 0.75);
color: #ccc;
border-radius: 25px;
font-weight: bold;
padding: .5em;
spacing: .5em;
Expand Down Expand Up @@ -729,16 +731,23 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
#altTabPopup {
padding: 8px;
spacing: 16px;
background-color: rgba(0, 0, 0, 0.3);
background-color: rgba(27, 36, 32, 0.75);
}
#altTabPopup .switcher-list .item-box:selected {
background-color: rgb(46, 179, 152);
}
.resize-popup, .workspace-switch-osd, .info-osd, .media-keys-osd, #Tooltip, #LookingGlassDialog {
color: #ccc;
background-color: rgba(27, 36, 32, 0.75);
border-radius: 55px;
text-align: center;
padding: 16px;
}
.switcher-list {
background: rgba(27, 36, 32, 0.75);
box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.75);
border: 0px solid #a5a5a5;
border-radius: 1px;
border-radius: 25px;
padding: 20px;
font-size: 9pt;
color: white;
Expand All @@ -750,7 +759,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
background-gradient-direction: horizontal;
background-gradient-start: rgba(27, 36, 32, 0.75);
background-gradient-end: rgba(27, 36, 32, 0);
border-radius: 24px;
border-radius: 25px;
border-radius-topright: 1px;
border-radius-bottomright: 1px;
width: 60px;
Expand All @@ -759,7 +768,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
background-gradient-direction: horizontal;
background-gradient-start: rgba(27, 36, 32, 0);
background-gradient-end: rgba(27, 36, 32, 0.75);
border-radius: 24px;
border-radius: 25px;
border-radius-topleft: 1px;
border-radius-bottomleft: 1px;
width: 60px;
Expand Down Expand Up @@ -849,19 +858,30 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
text-align: center;
}
.workspace-osd {
background-color: rgba(53, 57, 69, 0);
background-color: rgba(27, 36, 32, 0);
box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.75);
color: #fff;
font-weight: bold;
font-size: 48pt;
}
.workspace-switch-osd-indicator {
background-color: #071603;
padding: 7px;
margin: 7px;
border-radius: 14px;
}
.workspace-switch-osd-indicator:active {
background-color: #2eb398;
padding: 7px;
margin: 7px;
}
/* ===================================================================
* Run dialog (Alt+F2)
* ===================================================================*/
.run-dialog-label {
font-size: 12pt;
text-align: center;
color: white;
color: #ccc;
font-weight: bold;
padding-bottom: 5px;
}
Expand All @@ -881,7 +901,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
font-size: 12pt;
width: 250px;
height: 25px;
color: white;
color: #ccc;
padding-left: 7px;
background-color: rgb(46, 179, 152);
selection-background-color: rgba(27, 36, 32, 0.75);
Expand Down Expand Up @@ -1511,16 +1531,17 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
color: #2eb398;
}
.hourly-time {
padding: 0px 7px;
padding: 0px 8px;
}
.hourly-box {
padding: 0px 25px;
/* padding: 0px 10px;*/
}
/* ===================================================================
* User Applet and CinnVIIStarkMenu
* ===================================================================*/
.user-icon, .hover-user-icon {
border-radius: 1px;
border-radius: 45px;
border: 2px solid #2eb398;
}
/* ===================================================================
Expand Down Expand Up @@ -1650,8 +1671,9 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
* Workspace OSD (Ctl+Alt+Up)
* ===================================================================*/
.expo-workspaces-name-entry {
padding: 5px;
color: #fff;
padding: 8px;
color: #ccc;
border-radius: 25px;
font-weight: bold;
background-color: rgba(27, 36, 32, 0.75);
selected-color: white;
Expand All @@ -1675,7 +1697,7 @@ StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover {
* Button Menu
* ===================================================================*/
/*This option works only applica to any applet that is in the left corner*/
#panelLeft .applet-box:first-child:active {
#panelLeft .applet-box:first-child:active {
background-color: rgba(46, 179, 152, 0);
}
/* ===================================================================
Expand Down
2 changes: 1 addition & 1 deletion CGreen/files/CGreen/cinnamon/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cinnamon-theme": {
"name": "CGreen",
"author": "Bundy01",
"version": "2.12",
"version": "3.0",
"type": "custom",
"thumbnail": "thumbnail.png",
"url": ""
Expand Down