Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Various improvements to commits
Merged did:key:z6MkkfM3...sVz5 opened 2 years ago
  • Make commit title in commit page semibold
  • Remove extra space between FileLocationChange components
  • Increase hit area on commit teaser title

check check-visual check-unit-test check-httpd-api-unit-test check-e2e check-build

👉 Preview
👉 Workflow runs
👉 Branch on GitHub

3 files changed +13 -3 91866f62 8ba5d4e7
modified src/views/projects/Changeset/FileLocationChange.svelte
@@ -19,7 +19,6 @@
  .wrapper {
    border: 1px solid var(--color-border-default);
    border-radius: var(--border-radius-small);
-
    margin-bottom: 2rem;
    line-height: 1.5rem;
  }
  .header {
modified src/views/projects/Commit.svelte
@@ -32,6 +32,7 @@
  .title {
    display: flex;
    align-items: center;
+
    font-weight: var(--font-weight-semibold);
  }
  .description {
    font-family: var(--font-family-monospace);
modified src/views/projects/Commit/CommitTeaser.svelte
@@ -49,6 +49,14 @@
  .summary {
    font-size: var(--font-size-small);
  }
+
  .summary::after {
+
    content: "";
+
    position: absolute;
+
    top: -10px;
+
    right: 0px;
+
    bottom: -10px;
+
    left: -10px;
+
  }
  .summary:hover {
    text-decoration: underline;
  }
@@ -68,8 +76,10 @@
          node: baseUrl,
          commit: commit.id,
        }}>
-
        <div class="summary" use:twemoji>
-
          <InlineMarkdown fontSize="regular" content={commit.summary} />
+
        <div class="clickable-area" style="position: relative;">
+
          <div class="summary" use:twemoji>
+
            <InlineMarkdown fontSize="regular" content={commit.summary} />
+
          </div>
        </div>
      </Link>
      {#if commit.description}