Advertisement
Guest User

reply,modify,remove buttons

a guest
Jul 11th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.33 KB | None | 0 0
  1. /*----------------------------------------------
  2.     reply,modify,remove buttons
  3. -----------------------------------------------*/
  4. img.reply_button,
  5. img.modify_button,
  6. img.remove_button{
  7.     height: 26px;
  8.     opacity: 0.6;
  9. }
  10.  
  11. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;quote=']:hover img.reply_button,
  12. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;msg=']:hover img.modify_button,
  13. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=deletemsg;topic=']:hover img.remove_button {
  14.     opacity: 1;
  15.     /*background: #ddd;
  16.     background: #ffeb3b*/
  17. }
  18.  
  19. img.reply_button {
  20.     content: url(https://i.ibb.co/ckFn6tg/quote.png);
  21. }
  22. img.modify_button {
  23.     content: url(https://i.ibb.co/6yRX1S9/edit-document.png);
  24. }
  25. img.remove_button {
  26.     content: url(https://i.ibb.co/TH3573d/delete.png);
  27. }
  28.  
  29. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;quote=']:before,
  30. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;msg=']:before,
  31. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=deletemsg;topic=']:before {
  32.     background: #000;
  33.     color: #fff;
  34.     position: absolute;
  35.     display: none;
  36.     text-align: center;
  37.     top: -26px;
  38.     padding: 2px 5px;
  39.     border-radius: 3px;
  40.     font-size: 12px;
  41. }
  42.  
  43. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;quote=']:before {
  44.     content: 'اقتباس';
  45. }
  46. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;msg=']:before {
  47.     content: 'تعديل';
  48. }
  49.  
  50. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=deletemsg;topic=']:before {
  51.     content: 'حذف';
  52. }
  53.  
  54. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;quote=']:hover:before,
  55. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;msg=']:hover:before,
  56. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=deletemsg;topic=']:hover:before {
  57.     display: inline;
  58. }
  59.  
  60. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;quote='],
  61. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=post;msg='],
  62. div[id^='ignmsgbttns'] a[href^='https://bitcointalk.org/index.php?action=deletemsg;topic=']
  63. {
  64.     position: relative;
  65. }
  66. /* end reply,modify,remove buttons */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement