Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
/* Custom search button */
/* Custom search button */
.custom-search-btn {
/* Style your new span "button" */
    background: #0066ff;
.citizen-search-trigger {
    color: white;
  display: inline-block; /* Makes the span respect padding/margins */
    padding: 6px 14px;
  padding: 10px 15px;
    border-radius: 6px;
  font-size: 16px;
    cursor: pointer;
  color: white;
    display: inline-block;
  background-color: #007bff;
    font-weight: 600;
  border: none;
    margin: 4px 0;
  border-radius: 5px;
  cursor: pointer;         /* Makes the mouse cursor change to a pointer */
  user-select: none;       /* Prevents text from being selected on click */
  transition: background-color 0.2s;
}
}
.custom-search-btn:hover {
 
    background: #0050cc;
.citizen-search-trigger:hover {
  background-color: #0056b3;
}
}

Revision as of 15:46, 8 November 2025

/* Custom search button */
/* Style your new span "button" */
.citizen-search-trigger {
  display: inline-block; /* Makes the span respect padding/margins */
  padding: 10px 15px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;          /* Makes the mouse cursor change to a pointer */
  user-select: none;        /* Prevents text from being selected on click */
  transition: background-color 0.2s;
}

.citizen-search-trigger:hover {
  background-color: #0056b3;
}