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

fix(github) - Fixed a lot of missing UI changes and adjusted some existing changes #173

Merged
merged 5 commits into from
Aug 15, 2023
Merged
Changes from 1 commit
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
134 changes: 130 additions & 4 deletions styles/github/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@name Github Catppuccin
@namespace github.com/catppuccin/userstyles/styles/github
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/github
@version 1.2.4
@version 1.2.5
@description Soothing pastel theme for GitHub
@author Catppuccin
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/github/catppuccin.user.css
Expand Down Expand Up @@ -976,7 +976,6 @@

.bPgnBp,
.jMyfUO,
.hfRvxg,
.cBrzIN {
color: @text;
}
Expand Down Expand Up @@ -1431,6 +1430,13 @@
}

/* Tree Fix */

/* Weird barely visible outlines | Can be removed if intentional*/
.brFBoI, .ldUAkr {
border: 1px solid @base;

}
soradotwav marked this conversation as resolved.
Show resolved Hide resolved

/* Buttons */
.bJYdrf:hover {
background-color: @mantle;
Expand All @@ -1449,14 +1455,67 @@
background-color: @surface1;
border-color: @surface1;
}
}
}

.eOIzRT {
background-color: @base;

&:hover {
background-color: @surface0;
}
}



.hNNRLM svg {
color: @text;
}

.react-last-commit-history-group:hover {
background-color: @base;
color: @text;
}

.hfRvxg {
color: @subtext1;

&:hover {
color: @text;
}
}

/* Scrolling top menu */
.lbYguI {
border-radius: 6px;
}

.hPsWZB {
background-color: @mantle;
}

.hMOAua {
color: @subtext1;

&:hover {
background-color: @mantle;
border: 1px solid @surface1;
color: @text;
}
}

/* Fullscreen Sidebar Fixes*/
.hMCjFU, .jcKsih , .hpgNiv {
background-color: @base;
color: @text;
border: 1px solid @surface1;

&:hover {
background-color: @surface0;
}
}

/* Dropdown Menus */
.jfOCiu, .gNXjVV, .iGzDhH {
.jfOCiu, .gNXjVV, .iGzDhH, .Overlay {
background-color: @mantle;
border: 1px solid @surface1;
border-radius: 6px;
Expand Down Expand Up @@ -1502,6 +1561,73 @@
background-color: @surface1;
}

select option, optgroup {
background-color: @mantle;
border: 1px solid @surface1;
border-radius: 6px;
box-shadow: var(--shadow-floating-large, var(--color-shadow-large));

}

.hUQSCH {
background-color: @base;
color: @subtext1;
border-color: @surface1;

&:hover {
background-color: @mantle;
border-color: @surface1;
}
}

/* Add File Menu */
.dQPLyc {
background-color: transparent;
border: 1px solid @surface1;
}

.ktGGEf {
background-color: @base;
border: 1px solid @surface1;
}

.gkfBtX {
background-color: @mantle;
border-radius: 6px 0px 0px 0px;
border-bottom: 1px solid @surface1;
}

.jproXT {
background-color: transparent;
border-color: transparent;
color: @subtext1;

&:hover {
color: @text;
}

&:focus-within {
border-color: transparent;
box-shadow: none;
color: @text;
}
}

.wLDmP {
background-color: @mantle;
border: 1px solid @surface1;
soradotwav marked this conversation as resolved.
Show resolved Hide resolved
}

.eNSiNz .segmentedControl-content, .gKuCoB .segmentedControl-content {
background-color: @base;
}

/* Notification Menu Fix */
.notifications-list-item.notification-read, .notifications-list-item.notification-archived {
background-color: @base !important;
border-radius: 6px
}

soradotwav marked this conversation as resolved.
Show resolved Hide resolved
/* Loading Bar Color */
.turbo-progress-bar {
background-color: @accent-color;
Expand Down