Tidak ada ringkasan suntingan
Tidak ada ringkasan suntingan
Tag: Pengembalian manual
 
(20 revisi perantara oleh pengguna yang sama tidak ditampilkan)
Baris 1: Baris 1:
/* CSS yang ada di sini akan diterapkan pada semua kulit. */
/* ================================
/* Dropdown header menu */
  🌐 Dropdown Header Menu (Fix Bullet)
.custom-sites-dropdown {
  ================================ */
   position: relative;
 
/* Hilangkan bullet marker pada dropdown custom */
li.vector-menu-content-item.vector-dropdown.custom-sites-dropdown::marker {
   content: none;
}
}


/* Tombol dropdown */
.custom-sites-dropdown .dropdown-toggle {
.custom-sites-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
   cursor: pointer;
   cursor: pointer;
   font-weight: 600;
   font-weight: 600;
  color: #0073aa;
   text-decoration: none;
   text-decoration: none;
   padding: 0 0.5em;
   padding: 0 0.5em;
Baris 17: Baris 24:
}
}


/* Isi dropdown */
.custom-sites-dropdown .dropdown-menu {
.custom-sites-dropdown .dropdown-menu {
   display: none;
   display: none;
Baris 30: Baris 38:
   border-radius: 8px;
   border-radius: 8px;
   z-index: 999;
   z-index: 999;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
}


.custom-sites-dropdown.open .dropdown-menu {
.custom-sites-dropdown.open .dropdown-menu {
   display: block;
   display: block;
  opacity: 1;
  transform: translateY(0);
}
}


Baris 43: Baris 56:
   display: block;
   display: block;
   padding: 0.5em 1em;
   padding: 0.5em 1em;
  color: #202122;
   text-decoration: none;
   text-decoration: none;
   white-space: nowrap;
   white-space: nowrap;
}
}


/* Hilangkan separator (tanda titik •) default di kanan atas Vector 2022 */
.custom-sites-dropdown .dropdown-menu li a:hover {
.vector-header-end .vector-user-links .vector-menu-content-list > li:first-child {
  background: #f0f0f0;
   display: none !important;
  text-decoration: underline;
}
 
/* Tampilkan kembali link login/user */
li#pt-login,
li#pt-userpage,
li#pt-anonlogin {
   display: list-item !important;
  list-style: none;
  font-size: initial !important;
}
}