From 9f650b191e172ff7a723e687e79a3408f21da3a4 Mon Sep 17 00:00:00 2001 From: Allie Crevier Date: Mon, 30 Mar 2020 18:23:20 -0700 Subject: [PATCH] align export link left --- securedrop_client/gui/widgets.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/securedrop_client/gui/widgets.py b/securedrop_client/gui/widgets.py index a31189088..6b7ef0429 100644 --- a/securedrop_client/gui/widgets.py +++ b/securedrop_client/gui/widgets.py @@ -2119,7 +2119,6 @@ class FileWidget(QWidget): } QPushButton#export_print { border: none; - padding: 0px 8px; font-family: 'Source Sans Pro'; font-weight: 500; font-size: 13px; @@ -2139,7 +2138,6 @@ class FileWidget(QWidget): color: #05a6fe; } QLabel#file_name { - padding-bottom: 2px; font-family: 'Source Sans Pro'; font-weight: 600; font-size: 13px; @@ -2231,7 +2229,7 @@ def __init__( file_options_layout = QHBoxLayout() self.file_options.setLayout(file_options_layout) file_options_layout.setContentsMargins(0, 0, 0, 0) - file_options_layout.setSpacing(0) + file_options_layout.setSpacing(8) file_options_layout.setAlignment(Qt.AlignLeft) self.download_button = QPushButton(_(' DOWNLOAD')) self.download_button.setObjectName('download_button')