Browse Source

Merge pull request #389 from zbalkan/master

Fixed color issue with links in Groups tab under Settings
pull/392/head
GilbN 3 years ago
committed by GitHub
parent
commit
ce362286be
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/ISSUE_TEMPLATE/bug_report.md
  2. 15
      css/base/guacamole/guacamole-base.css

2
.github/ISSUE_TEMPLATE/bug_report.md

@ -12,6 +12,7 @@ A clear and concise description of what the bug is.
**Theme Install Method** (Don't skip)
- Docker run / Compose Config
- If using docker mods share your container logs..
- Webserver subfilter Config
- Stylus Config
@ -19,6 +20,7 @@ A clear and concise description of what the bug is.
- Version
- Branch
- Container
- Logs
**To Reproduce**
Steps to reproduce the behavior:

15
css/base/guacamole/guacamole-base.css

@ -352,6 +352,7 @@ textarea {
.user a:visited,
.user-group a:visited,
.connection a:visited,
.connection-group a:visited {
text-decoration: none;
@ -448,6 +449,7 @@ textarea {
}
.user a:visited,
.user-group a:visited,
.connection a:visited,
.connection-group a:visited {
text-decoration: none;
@ -463,6 +465,7 @@ a.ng-binding:hover:not(.add-user):not(.button) {
}
.user a,
.user-group a,
.connection a,
.connection-group a,
a.ng-binding:not(.add-user):not(.button) {
@ -484,6 +487,18 @@ textarea {
background: #666;
}
img.collapse {
filter: invert(1);
}
img.expand {
filter: invert(1);
}
.icon.user-group {
filter: invert(1);
}
/* USER SETTINGS */
.page-tabs .page-list li a[href],
.section-tabs li a {

Loading…
Cancel
Save