Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2021-06-02 08:18:35 +0300
committerGitHub <noreply@github.com>2021-06-02 08:18:35 +0300
commitee6a31812ba449802ba929db689c12e413197004 (patch)
tree196c04edbde51a7dabc4d905f8acc27690aae7d5
parent719f54caa7dd9207c3f70408d8f90692c1e5fcfa (diff)
parent4cbbf351248ef792f12078abce2d0d8dbd10b6b2 (diff)
Merge pull request #1686 from nextcloud/fix/print1.9.3-beta4b1.9.3-beta4
fix printing layout
-rw-r--r--CHANGELOG.md4
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json2
-rw-r--r--src/js/assets/scss/print.scss9
4 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a3dd745..907c457b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -22,6 +22,10 @@ All notable changes to this project will be documented in this file.
… and more minor fixes and optimizations
+## [1.9.3 - beta4] - 2021-06-02
+### Changes and fixes
+- [fix] #1686 - Fixing a print issue, when printing in list layout
+
## [1.9.2 - beta3] - 2021-05-31
### Changes and fixes
- [fix] #1560 - First day of week is wrong in date picker (#1674)
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 3d87d36b..540f6c22 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
<name>Polls</name>
<summary>A polls app, similar to doodle/dudle with the possibility to restrict access.</summary>
<description>A polls app, similar to doodle/dudle with the possibility to restrict access (members, certain groups/users, hidden and public).</description>
- <version>1.9.2</version>
+ <version>1.9.3</version>
<licence>agpl</licence>
<author>Vinzenz Rosenkranz</author>
<author>René Gieling</author>
diff --git a/package.json b/package.json
index 5faa46d7..1f774da7 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "polls",
"description": "Polls app for nextcloud",
- "version": "1.9.2",
+ "version": "1.9.3",
"authors": [
{
"name": "Vinzenz Rosenkranz",
diff --git a/src/js/assets/scss/print.scss b/src/js/assets/scss/print.scss
index cde3110a..36578627 100644
--- a/src/js/assets/scss/print.scss
+++ b/src/js/assets/scss/print.scss
@@ -5,12 +5,15 @@
}
.vote-item {
+ background: none !important;
&.active > .icon{
border: none !important;
}
> .icon {
background: none !important;
+ width: initial !important;
+ height: initial !important;
&::after {
content: '❌';
}
@@ -33,9 +36,15 @@
.vote-table .vote-table__users {
overflow-x: initial !important;
min-width: initial !important;
+ }
+
+ .table-view .vote-table__votes,
+ .table-view .vote-table .vote-table__users {
max-width: 200px;
}
+
+
.app-content {
background-color: transparent !important;
[class*='area__'] {