Skip to content

Commit b10c2f0

Browse files
[RTY-260028]: name change tiny to RZRO
1 parent 88ca329 commit b10c2f0

File tree

4 files changed

+50
-6
lines changed

4 files changed

+50
-6
lines changed

app/static/css/tiny.css

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,13 +364,13 @@ body.dark-theme .app-header {
364364
font-weight: bold;
365365
}
366366

367-
.original-url {
367+
/*.original-url {
368368
color: var(--text-secondary);
369369
font-size: 0.8rem;
370370
white-space: nowrap;
371371
overflow: hidden;
372372
text-overflow: ellipsis;
373-
}
373+
}*/
374374

375375

376376
.hero {
@@ -745,4 +745,48 @@ body.dark-theme .footer-bottom a {
745745
gap: 1rem;
746746
text-align: center;
747747
}
748+
}
749+
750+
751+
/* ===============================
752+
HOME PAGE FIX — LONG URL WRAP
753+
(does NOT affect table)
754+
================================= */
755+
/*.recent-tray .recent-item .original-url,
756+
.recent-tray .recent-item .original-url a {
757+
white-space: normal !important;
758+
word-break: break-word !important;
759+
overflow-wrap: anywhere !important;
760+
line-break: anywhere !important;
761+
display: block;
762+
}
763+
764+
.recent-tray .recent-item {
765+
max-width: 20px;
766+
}*/
767+
768+
769+
/* allow wrapping */
770+
.recent-tray .recent-item .original-url,
771+
.recent-tray .recent-item .original-url a {
772+
display: -webkit-box;
773+
-webkit-box-orient: vertical;
774+
775+
-webkit-line-clamp: 3;
776+
/* ⭐ change 2 or 3 lines here */
777+
line-clamp: 3;
778+
779+
overflow: hidden;
780+
text-overflow: ellipsis;
781+
782+
white-space: normal;
783+
word-break: break-word;
784+
overflow-wrap: anywhere;
785+
}
786+
787+
/* IMPORTANT — remove width restriction */
788+
.recent-tray .recent-item {
789+
min-width: 0;
790+
/* allows shrinking inside flex/grid */
791+
max-width: 100%;
748792
}

app/templates/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<footer class="big-footer">
22
<div class="footer-grid">
33
<div class="footer-brand">
4-
<h3>🔗 tiny URL</h3>
4+
<h3>🔗 RZRO.link</h3>
55
<p>Advanced link optimization engine built on Python and optimized for Ubuntu environments. Secure, fast, and
66
scalable.</p>
77
</div>
@@ -35,7 +35,7 @@ <h4>Legal</h4>
3535
<div class="footer-bottom">
3636
<div>© 2026 Recursive Zero Pvt Ltd. All rights reserved.</div>
3737
<div class="footer-meta">
38-
<span>v2.4.0-stable</span>
38+
<span>v1.1.1-stable</span>
3939
<a href="https://github.com/recursivezero/tiny">GitHub</a>
4040
</div>
4141
</div>

app/templates/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<header class="app-header">
22
<div class="header-left">
33
<div class="app-logo">🔗</div>
4-
<span class="app-name">RIZO.link</span>
4+
<span class="app-name">RZRO.link</span>
55
</div>
66
<nav class="header-nav">
77
<a href="/" class="nav-link active">Home</a>

app/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "layout.html" %} {% block content %}
22
<main class="main-layout">
33
<div class="hero-input-card">
4-
<h1>tiny URL</h1>
4+
<h1>Shorten Your Links</h1>
55
<form method="POST" id="shortenForm" action="/shorten">
66
<div class="input-wrapper"> <input type="text" name="original_url" placeholder="Paste your long link here..."
77
value="{{ original_url or '' }}" required> <button type="submit" class="btn-primary">Shorten</button> </div>

0 commit comments

Comments
 (0)