Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 19 additions & 8 deletions unitylibs/core/widgets/inline-action/inline-action.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
display: flex;
box-sizing: border-box;
padding: 16px;
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 20px;
overflow: hidden;
background: rgb(41 41 41 / 60%);
Expand Down Expand Up @@ -325,15 +326,22 @@
background: #1473e6;
color: #fff;
font-size: 17px;
font-weight: 600;
font-weight: 700;
cursor: pointer;
line-height: 26px;
font-family: var(--body-font-family);
}

.ia-download-btn :is(svg, img) {
width: 18px;
height: 18px;
width: 21px;
height: 21px;
}

.ia-download-btn span {
display: inline-block;
width: fit-content;
padding-right: 0.5px;
padding-left: 0.5px;
}

.ia-reupload-btn svg,
Expand Down Expand Up @@ -425,6 +433,7 @@
}

.unity-inline-action .action-button {
min-height: 26px;
font-family: var(--body-font-family);
border-radius: 999px;
border: 0;
Expand Down Expand Up @@ -723,14 +732,14 @@
margin: 0;
margin-top: auto;
align-self: flex-end;
padding: 7px 18px 8px 18px;
padding: 7px 16px 8px 16px;
border: 2px solid var(--ia-white);
border-radius: 999px;
background: transparent;
color: #fff;
font-family: var(--body-font-family);
font-size: 17px;
font-weight: 800;
font-weight: 700;
cursor: pointer;
appearance: none;
line-height: 26px;
Expand All @@ -743,13 +752,15 @@

.unity-inline-action .ia-edit-in-firefly > span {
flex: 0 1 auto;
margin-left: 0.5px;
margin-right: 0.5px;
}

.unity-inline-action .ia-edit-in-firefly :is(picture, svg, img) {
display: block;
flex: 0 0 18px;
width: 18px;
height: 18px;
flex: 0 0 21px;
width: 21px;
height: 21px;
}

.unity-inline-action .ia-edit-in-firefly svg {
Expand Down
Loading