Newer
Older
gnexus-creds-extension / src / content.css
.gnexus-creds-autofill-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 32px);
  pointer-events: none;
}

.gnexus-creds-autofill-card {
  pointer-events: auto;
  background: #161b22;
  border: 1px solid #30363d;
  border-top: 2px solid #58a6ff;
  color: #c9d1d9;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 14px;
  border-radius: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  padding: 16px 20px;
  min-width: 300px;
  max-width: 460px;
  width: 100%;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.gnexus-creds-autofill-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.gnexus-creds-autofill-card-exit {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

.gnexus-creds-autofill-title {
  font-weight: 600;
  color: #58a6ff;
  word-break: break-word;
  margin-bottom: 14px;
  font-size: 15px;
}

.gnexus-creds-autofill-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 14px;
}

.gnexus-creds-autofill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #30363d;
}

.gnexus-creds-autofill-row:last-child {
  border-bottom: none;
}

.gnexus-creds-autofill-row-title {
  font-size: 13px;
  color: #c9d1d9;
  word-break: break-word;
}

.gnexus-creds-autofill-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.gnexus-creds-autofill-btn {
  background: #238636;
  border: none;
  color: #fff;
  padding: 7px 16px;
  border-radius: 0;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.gnexus-creds-autofill-btn-secondary {
  background: transparent;
  border: 1px solid #30363d;
  color: #7d8590;
}

.gnexus-creds-autofill-btn:hover {
  opacity: 0.85;
}