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

added color correction to user profile name #11

Closed
wants to merge 1 commit into from
Closed
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
13 changes: 6 additions & 7 deletions themes/dark_theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,11 @@ footer {

.user.profile .ui.card .extra.content ul li:not(:last-child) {
border-bottom: 1px solid #111;
color: silver !important;
}

.ui.card > .content > .header, .ui.cards > .card > .content > .header {
color: silver !important;
}

.dashboard {
Expand Down Expand Up @@ -859,7 +864,6 @@ tr:hover a {
border-color: rgba(255, 228, 196, 0.25);
border-radius: 0;
background: #111;
-webkit-box-shadow: 0 0 0px 1px #2b2b2b;
box-shadow: 0 0 0px 1px #2b2b2b;
}

Expand Down Expand Up @@ -890,15 +894,13 @@ tr:hover a {
background: #1c1c1c none !important;
color: silver !important;
font-weight: 600;
-webkit-box-shadow: 0 0 0px 1px #2b2b2b;
box-shadow: 0 0 0px 1px #2b2b2b;
}

.ui.basic.button:hover,
.ui.basic.buttons .button:hover {
background: #1c1c1c !important;
color: rgba(196, 45, 45, 0.95) !important;
-webkit-box-shadow: 0 0 0px 1px #2b2b2b;
box-shadow: 0 0 0px 1px #2b2b2b;
}

Expand Down Expand Up @@ -931,7 +933,6 @@ tr:hover a {

.ui.buttons:not(.basic):not(.inverted) > .button,
.ui.buttons > .ui.button:not(.basic):not(.inverted) {
-webkit-box-shadow: 0 0 0px 1px #2b2b2b;
box-shadow: 0 0 0px 1px #2b2b2b;
}

Expand Down Expand Up @@ -963,6 +964,4 @@ footer {

.CodeMirror-cursor {
border-color: bisque;
}

/*# sourceMappingURL=dark_theme.css.map */
}/*# sourceMappingURL=dark_theme.css.map */
2 changes: 1 addition & 1 deletion themes/dark_theme.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions themes/dark_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,14 @@ footer {

.user.profile .ui.card .extra.content ul li:not(:last-child) {
border-bottom: 1px solid $mainBgColor;
color: silver !important;
}

.ui.card > .content > .header, .ui.cards > .card > .content > .header {
color: silver !important;
}


.dashboard {
padding-top: 80px;
}
Expand Down