mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-09 19:57:49 +02:00

* Extract bookmark view contexts * Implement basic partial updates for bookmark list and tag cloud * Refactor confirm button JS into web component * Refactor bulk edit JS into web component * Refactor tag autocomplete JS into web component * Refactor bookmark page JS into web component * Refactor global shortcuts JS into web component * Update tests * Add E2E test for partial updates * Add partial updates for archived bookmarks * Add partial updates for shared bookmarks * Cleanup helpers * Improve naming in bulk edit * Refactor shared components into behaviors * Refactor bulk edit components into behaviors * Refactor bookmark list components into behaviors * Update tests * Combine all scripts into bundle * Fix E2E CI
29 lines
450 B
SCSS
29 lines
450 B
SCSS
// Content area component
|
|
section.content-area {
|
|
|
|
.content-area-header {
|
|
border-bottom: solid 1px $border-color;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 16px;
|
|
|
|
h2 {
|
|
line-height: 1.8rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Confirm button component
|
|
span.confirmation {
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
|
|
span.confirmation .btn.btn-link {
|
|
color: $error-color !important;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|