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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
17 additions and
0 deletions
-
.github/ISSUE_TEMPLATE/bug_report.md
-
css/base/guacamole/guacamole-base.css
|
|
@ -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: |
|
|
|
|
|
@ -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 { |
|
|
|