1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 19:59:15 +00:00

toggleMark, togglePub: refactor implementation

shorten marked/published img CSS classes
This commit is contained in:
Andrew Dolgov
2018-12-01 08:20:09 +03:00
parent 3325979bf0
commit a2ef54cd92
7 changed files with 53 additions and 82 deletions

File diff suppressed because one or more lines are too long

View File

@@ -561,14 +561,14 @@ body.ttrss_main {
border-radius : 4px;
}
img.markedPic, img.pubPic {
img.marked-pic, img.pub-pic {
cursor : pointer;
vertical-align : middle;
opacity : 0.5;
transition : opacity 0.25s;
}
img.markedPic:hover, img.pubPic:hover {
img.marked-pic:hover, img.pub-pic:hover {
opacity : 1;
}