Removes deprecated CSS styles related to the legacy icons from context_menu.css (#43206).

git-svn-id: https://svn.redmine.org/redmine/trunk@24329 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2026-01-19 07:09:09 +00:00
parent 445c2c82b1
commit 0d75b3ec60
3 changed files with 5 additions and 2 deletions

View File

@@ -46,7 +46,6 @@
}
#context-menu li>a { flex-grow: 1; }
#context-menu a.disabled, #context-menu a.disabled:hover {color: var(--oc-gray-5);}
#context-menu li a.submenu:not(:has(+ span)) { padding-right:16px; background:url("/arrow_right.png") right no-repeat;}
#context-menu li a.submenu { padding-left: 28px;}
#context-menu li:hover { border:1px solid var(--oc-blue-8); background-color:var(--oc-blue-0); border-radius:3px; }
#context-menu a:hover {color:var(--oc-blue-9);}

View File

@@ -6,7 +6,6 @@
#context-menu li.folder ul { left:auto; right:168px; }
#context-menu li.folder>ul { left:auto; right:148px; }
#context-menu li a.submenu:not(:has(+ span)) { background:url("/arrow_left.png") left no-repeat; }
#context-menu li.folder ul li a:not(.icon) {padding-right: 28px;}
#context-menu li a.submenu {
padding-right: 28px;

View File

@@ -205,3 +205,8 @@ body.controller-repositories li.change.change-M:not(:has(svg)) { background-imag
body.controller-repositories li.change.change-C:not(:has(svg)) { background-image: url(/bullet_blue.png); }
body.controller-repositories li.change.change-R:not(:has(svg)) { background-image: url(/bullet_purple.png); }
body.controller-repositories li.change.change-D:not(:has(svg)) { background-image: url(/bullet_delete.png); }
/* For context_menu.css and context_menu_rtl.css */
#context-menu li a.submenu:not(:has(+ span)) { padding-right:16px; background:url("/arrow_right.png") right no-repeat;}
html[dir="rtl"] #context-menu li a.submenu:not(:has(+ span)) { background:url("/arrow_left.png") left no-repeat; }