Skip to content

Commit

Permalink
Format CSS with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker committed Sep 23, 2024
1 parent ed57da3 commit 95f489e
Show file tree
Hide file tree
Showing 32 changed files with 2,159 additions and 2,087 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ format:
black bookmarks
black siteroot
npx prettier bookmarks/frontend --write
npx prettier bookmarks/styles --write
6 changes: 4 additions & 2 deletions bookmarks/styles/bookmark-details.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
gap: var(--unit-2);
}

& a.weblink img, & a.weblink svg {
& a.weblink img,
& a.weblink svg {
flex: 0 0 auto;
width: 16px;
height: 16px;
Expand Down Expand Up @@ -110,7 +111,8 @@
gap: var(--unit-2);
}

& .status .form-group, .status .form-switch {
& .status .form-group,
.status .form-switch {
margin: 0;
}

Expand Down
59 changes: 30 additions & 29 deletions bookmarks/styles/bookmark-form.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
.bookmarks-form-page {
section {
max-width: 550px;
margin: 0 auto;
}
section {
max-width: 550px;
margin: 0 auto;
}
}

.bookmarks-form {
& .has-icon-right > input, & .has-icon-right > textarea {
padding-right: 30px;
}
& .has-icon-right > input,
& .has-icon-right > textarea {
padding-right: 30px;
}

& .form-icon.loading {
visibility: hidden;
}
& .form-icon.loading {
visibility: hidden;
}

& .form-group .clear-button {
display: none;
padding: 0;
border: none;
height: auto;
font-size: var(--font-size-sm);
}
& .form-group .clear-button {
display: none;
padding: 0;
border: none;
height: auto;
font-size: var(--font-size-sm);
}

& .form-input-hint.bookmark-exists {
display: none;
color: var(--warning-color);
}
& .form-input-hint.bookmark-exists {
display: none;
color: var(--warning-color);
}

& .form-input-hint.auto-tags {
display: none;
color: var(--success-color);
}
& .form-input-hint.auto-tags {
display: none;
color: var(--success-color);
}

& details.notes textarea {
box-sizing: border-box;
}
}
& details.notes textarea {
box-sizing: border-box;
}
}
Loading

0 comments on commit 95f489e

Please sign in to comment.