diff options
author | Go MAEDA <maeda@farend.jp> | 2019-09-14 00:33:05 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-09-14 00:33:05 +0000 |
commit | 0d4fbfe3405494a8c6e7ef2ec91dacc2f145a4a3 (patch) | |
tree | ed256bb1f9793235fe125a1a0ea416f2565ee64e /public | |
parent | 81d6e24a8fca881aa9d2e6adbe31c9738b37a527 (diff) | |
download | redmine-0d4fbfe3405494a8c6e7ef2ec91dacc2f145a4a3.tar.gz redmine-0d4fbfe3405494a8c6e7ef2ec91dacc2f145a4a3.zip |
Add clear query icon next to selected query in sidebar (#31640).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18468 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 45bcc3d39..b2eb47167 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -94,6 +94,8 @@ div#wrapper, div#wrapper2, div#wrapper3 { min-height: inherit; } #sidebar ul li, ul.flat li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;} #sidebar div.wiki ul {margin:inherit; padding-left:40px;} #sidebar div.wiki ul li {list-style-type:inherit;} +#sidebar a.icon-only {opacity: 0.4; margin-left: 5px;} +#sidebar a.icon-only:hover {opacity: 1;} #content { flex-grow: 1; background-color: #fff; margin: 0px; padding: 6px 10px 10px 10px; overflow-x: auto;} html>body #content { min-height: 600px; } @@ -406,8 +408,6 @@ body.controller-issues .query-totals {margin-top:-2.3em;} td.center {text-align:center;} #watchers select {width: 95%; display: block;} -#watchers a.delete {opacity: 0.4; margin-left: 5px;} -#watchers a.delete:hover {opacity: 1;} #watchers img.gravatar {margin: 0 4px 2px 0;} span#watchers_inputs {overflow:auto; display:block;} @@ -1515,6 +1515,7 @@ td.gantt_selected_column .gantt_hdr,.gantt_selected_column_container { .icon-sorted-desc { background-image: url(../images/arrow_up.png); } .icon-toggle-plus { background-image: url(../images/bullet_toggle_plus.png) } .icon-toggle-minus { background-image: url(../images/bullet_toggle_minus.png) } +.icon-clear-query { background-image: url(../images/close_hl.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); } |