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:
authordartcafe <github@dartcafe.de>2021-06-02 08:39:28 +0300
committerdartcafe <github@dartcafe.de>2021-06-02 08:39:28 +0300
commita92b54328a472a55008ea8e7b74d85760fcc213a (patch)
tree71041e63708e8029d99d2a6cf2a640751cd26952
parentee6a31812ba449802ba929db689c12e413197004 (diff)
fix counter in print layout1.9.3-beta4c
Signed-off-by: dartcafe <github@dartcafe.de>
-rw-r--r--src/js/assets/scss/print.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/js/assets/scss/print.scss b/src/js/assets/scss/print.scss
index 36578627..92a81fe1 100644
--- a/src/js/assets/scss/print.scss
+++ b/src/js/assets/scss/print.scss
@@ -43,6 +43,31 @@
max-width: 200px;
}
+ .counter--icon{
+ .yes {
+ background: none !important;
+ &::before {
+ content: '✔';
+ padding-right: 4px;
+ }
+ }
+
+ .maybe {
+ background: none !important;
+ &::before {
+ content: '❔';
+ padding-right: 4px;
+ }
+ }
+
+ .no {
+ background: none !important;
+ &::before {
+ content: '❌';
+ padding-right: 4px;
+ }
+ }
+ }
.app-content {