li {
position: relative;
}
li:hover:after,
li.active:after {
display: block;
}
li:after {
position: absolute;
top: 50%;
right: 0;
display: none;
margin-top: -10px;
width: 0px;
height: 0px;
border-width: 10px 20px 10px 0;
border-style: solid;
border-color: transparent #ffffff transparent transparent;
content: "";
}
.test0 {
margin: 0
}
.test1 {
border: none
}
.test2 {
border: none
}
.test0 {
padding: 0
}
.test0 {
margin: 0
}
.test1, .test2 {
border: none
}
.test0 {
padding: 0
}
@echo off
setlocal ENABLEDELAYEDEXPANSION
Set Process=chrome
tasklist | Find /i "%Process%.exe" || (goto Else)
:THEN
TASKKILL /IM "%Process%.exe"
Exit
Goto end
:ELSE
//Тут пишем действие если хром не запущен (если оно нужно)
Exit