Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Several styles fixes #206

Merged
merged 3 commits into from
Jul 7, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions news/202.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix checkbox and label alignment on the searchbox.
[vincentfretin]
2 changes: 2 additions & 0 deletions news/203.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix File icon missing on folder_factories view (from toolbar: Add new... -> More...).
[vincentfretin]
12 changes: 12 additions & 0 deletions plonetheme/barceloneta/theme/less/barceloneta-compiled.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions plonetheme/barceloneta/theme/less/contents.plone.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@

.outer-wrapper {
.contenttype-file::before { content: none; }

/* On folder_factories view, from toolbar: Add new... -> More... */
#quickAdd .contenttype-file::before { content: '\e811'; }
}

.contenttype-file #crud-edit-File-widgets-view_title::before {
Expand Down
10 changes: 9 additions & 1 deletion plonetheme/barceloneta/theme/less/header.plone.less
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,15 @@
max-width: 50%;
padding-top: 0;
position: relative;
.searchSection {display: inherit;} //yes for non mobile
.searchSection {
display: inherit; //yes for non mobile
input[type="checkbox"] {
margin: 0;
}
label {
vertical-align: middle;
}
}
[type="text"] {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
Expand Down