mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 20:55:10 +00:00
WORK
This commit is contained in:
parent
6567d71ce8
commit
2d6afef6d2
1 changed files with 4 additions and 4 deletions
|
|
@ -25,8 +25,8 @@ class Components::Uploads::Row < Components::Base
|
||||||
attr_reader :upload, :compact, :admin
|
attr_reader :upload, :compact, :admin
|
||||||
|
|
||||||
def compact_content
|
def compact_content
|
||||||
div(style: "flex: 1; min-width: 0;") do
|
div(style: "flex: 1; min-width: 0; cursor: pointer;", data: { batch_select_toggle: upload.id }) do
|
||||||
div(style: "font-size: 14px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer;", data: { batch_select_toggle: upload.id }) do
|
div(style: "font-size: 14px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;") do
|
||||||
render Primer::Beta::Octicon.new(icon: file_icon_for(upload.content_type), size: :small, mr: 1)
|
render Primer::Beta::Octicon.new(icon: file_icon_for(upload.content_type), size: :small, mr: 1)
|
||||||
plain upload.filename.to_s
|
plain upload.filename.to_s
|
||||||
end
|
end
|
||||||
|
|
@ -47,10 +47,10 @@ class Components::Uploads::Row < Components::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def full_content
|
def full_content
|
||||||
div(style: "flex: 1; min-width: 0;") do
|
div(style: "flex: 1; min-width: 0; cursor: pointer;", data: { batch_select_toggle: upload.id }) do
|
||||||
div(style: "display: flex; align-items: center; gap: 8px; margin-bottom: 8px; min-width: 0;") do
|
div(style: "display: flex; align-items: center; gap: 8px; margin-bottom: 8px; min-width: 0;") do
|
||||||
render Primer::Beta::Octicon.new(icon: file_icon_for(upload.content_type), size: :small)
|
render Primer::Beta::Octicon.new(icon: file_icon_for(upload.content_type), size: :small)
|
||||||
div(style: "flex: 1; min-width: 0; font-size: 14px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer;", data: { batch_select_toggle: upload.id }) do
|
div(style: "flex: 1; min-width: 0; font-size: 14px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;") do
|
||||||
plain upload.filename.to_s
|
plain upload.filename.to_s
|
||||||
end
|
end
|
||||||
render(Primer::Beta::Label.new(scheme: :secondary)) { plain upload.provenance.titleize }
|
render(Primer::Beta::Label.new(scheme: :secondary)) { plain upload.provenance.titleize }
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue