MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 409: Line 409:
   display: inline-flex;
   display: inline-flex;
   align-items: center;
   align-items: center;
   gap: 6px;
   gap: 10px;
   margin-left: 8px;
   margin-left: 12px;
  opacity: 0.8;
  padding-left: 12px;
}
}
/* Icon tuning */
/* Icon tuning */
.icon {
.icon {
   width: 14px;
   width: 18px;
   height: 14px;
   height: 18px;
   transform: translateY(1px); /* subtle baseline fix */
  background-size: contain;
   transform: translateY(2px);
}
}
.verse-action-btn {
.verse-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
   cursor: pointer;
   cursor: pointer;
   opacity: 0.6;
   opacity: 0.75;
   transition: all 0.15s ease;
   transition: all 0.2s ease;
}
}


/* Hover */
.verse-action-btn:hover {
.verse-action-btn:hover {
   opacity: 1;
   opacity: 1;
   transform: scale(1.1);
  background-color: rgba(0,0,0,0.05);
   transform: scale(1.05);
}
}